/* ============================================
   SIMOBE Landing Page Styles
   ============================================ */

:root {
  --primary-color: #4f46e5;
  --primary-dark: #4338ca;
  --primary-light: #818cf8;
  --secondary-color: #0ea5e9;
  --accent-color: #f59e0b;
  --dark-color: #1e293b;
  --light-color: #f8fafc;
  --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  --gradient-secondary: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
  --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", "Inter", sans-serif;
  color: #334155;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navbar Layout */
.navbar-landing {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar-landing .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-landing .navbar-brand {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  text-decoration: none;
}

.navbar-collapse {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-actions {
  display: flex;
  align-items: center;
}

.navbar-toggler {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-color);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Button Icon Gap */
.btn-primary-landing i,
.btn-secondary-landing i,
.btn-cta i,
.btn-cta-outline i,
.btn-login i {
  margin-right: 0.5rem;
}

/* Workflow Content */
.workflow-content {
  padding: 1.5rem;
}

/* Responsive Navbar */
@media (max-width: 991px) {
  .navbar-toggler {
    display: block;
  }

  .navbar-collapse {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .navbar-collapse.show {
    display: flex;
  }

  .navbar-nav {
    flex-direction: column;
    width: 100%;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 1rem !important;
  }
}

/* ============================================
   Navbar Styles
   ============================================ */

.navbar-landing {
  padding: 1rem 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar-landing.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

.navbar-landing .logo-simobe {
  height: 40px;
  margin-right: 0.5rem;
}

.navbar-landing .navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
}

.navbar-landing .navbar-brand span {
  color: var(--primary-color);
}

.navbar-landing .nav-link {
  color: #64748b;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.navbar-landing .nav-link:hover {
  color: var(--primary-color);
}

.btn-login {
  background: var(--gradient-primary);
  border: none;
  color: white;
  padding: 0.625rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
  color: white;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
  min-height: 600px;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark-color);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

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

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary-landing {
  background: var(--gradient-primary);
  border: none;
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-primary-landing:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
  color: white;
}

.btn-secondary-landing {
  background: white;
  border: 2px solid #e2e8f0;
  color: var(--dark-color);
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-secondary-landing:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* ============================================
   Stats Section
   ============================================ */

.stats-section {
  padding: 4rem 0;
  background: var(--dark-color);
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.25rem;
}

.stat-label {
  color: #94a3b8;
  font-weight: 500;
}

/* ============================================
   Features Section
   ============================================ */

.features-section {
  padding: 6rem 0;
  background: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-color);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.feature-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.feature-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: -30px auto 1rem;
  position: relative;
  z-index: 1;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-color);
  text-align: center;
  margin-bottom: 0.75rem;
  padding: 0 1rem;
}

.feature-desc {
  color: #64748b;
  text-align: center;
  padding: 0 1.5rem 1.5rem;
  line-height: 1.7;
}

/* ============================================
   Workflow Section
   ============================================ */

.workflow-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.workflow-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.workflow-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.workflow-card-final {
  border: 2px solid #10b981;
}

.workflow-step {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  z-index: 2;
}

.workflow-step-final {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.workflow-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.workflow-card-body {
  padding: 1.5rem;
}

.workflow-badge {
  display: inline-block;
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.workflow-badge-success {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.workflow-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.workflow-card-desc {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.workflow-connector {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 1.5rem;
  z-index: 3;
}

.workflow-vertical-connector {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  color: var(--primary-color);
  font-size: 2rem;
}

/* ============================================
   Benefits Section
   ============================================ */

.benefits-section {
  padding: 6rem 0;
  background: white;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 16px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateX(10px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefit-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.25rem;
}

.benefit-desc {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================
   FAQ Section
   ============================================ */

.faq-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-header:hover {
  background: #f8fafc;
}

.faq-number {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.faq-question {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0;
}

.faq-icon {
  color: #94a3b8;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 1.5rem 1.5rem 4.5rem;
  color: #64748b;
  line-height: 1.7;
}

.faq-body p {
  margin: 0;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
  padding: 6rem 0;
  background: var(--gradient-primary);
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cta {
  background: white;
  color: var(--primary-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: var(--primary-color);
}

.btn-cta-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-cta-outline:hover {
  background: white;
  color: var(--primary-color);
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--dark-color);
  color: white;
  padding-top: 4rem;
}

.footer-main {
  padding-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-brand .logo-simobe {
  height: 40px;
  margin-right: 0.5rem;
}

.footer-brand span {
  color: var(--primary-light);
}

.footer-about {
  color: #94a3b8;
  line-height: 1.7;
  font-size: 0.875rem;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: white;
}

.footer-links a i {
  font-size: 0.625rem;
}

.footer-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(79, 70, 229, 0.2);
  color: var(--primary-light);
  padding: 0.375rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
}

.footer-feature-badge i {
  font-size: 0.625rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(79, 70, 229, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: 0.875rem;
  color: #94a3b8;
}

.footer-contact-text strong {
  display: block;
  color: white;
  font-weight: 600;
  margin-bottom: 0.125rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: #94a3b8;
  font-size: 0.875rem;
  margin: 0;
}

.footer-copyright i {
  color: #ef4444;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

/* ============================================
   Responsive Design - Enhanced
   ============================================ */

/* Global overflow fix for mobile */
html,
body {
  overflow-x: hidden;
}

/* Tablet breakpoint */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .workflow-connector {
    display: none;
  }

  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-6,
  .col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .d-lg-block,
  .d-lg-flex {
    display: none;
  }

  .d-none.d-lg-block,
  .d-none.d-lg-flex {
    display: none;
  }

  /* Navbar mobile styles */
  .navbar-toggler {
    display: block !important;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: none !important;
  }

  .navbar-collapse.show {
    display: flex !important;
  }

  .navbar-nav {
    flex-direction: column !important;
    width: 100%;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 1rem !important;
  }
}

/* Mobile breakpoint */
@media (max-width: 767px) {
  .hero-section {
    padding-top: 80px;
    min-height: auto;
    text-align: center;
  }

  .hero-title {
    font-size: 1.875rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-landing,
  .btn-secondary-landing {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-image {
    margin-top: 2rem;
    max-width: 100%;
  }

  /* Stats mobile - 2 columns */
  .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-3,
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .stat-item {
    padding: 1rem 0.5rem;
  }

  .stat-value {
    font-size: 2rem;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Features mobile */
  .feature-card {
    margin-bottom: 1.5rem;
  }

  /* Workflow mobile */
  .workflow-card {
    margin-bottom: 1rem;
  }

  /* Benefits mobile */
  .benefit-item {
    padding: 1rem;
  }

  /* FAQ mobile */
  .faq-header {
    padding: 1rem;
  }

  .faq-question {
    font-size: 0.9rem;
  }

  .faq-answer,
  .faq-body {
    padding-left: 3rem !important;
    padding-right: 1rem !important;
  }

  /* CTA mobile */
  .cta-title {
    font-size: 1.5rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta,
  .btn-cta-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Footer mobile */
  .footer-main {
    padding-bottom: 2rem;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-about {
    text-align: center;
  }

  .footer-title {
    margin-top: 1.5rem;
  }

  .footer-features {
    justify-content: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

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

  .footer-legal {
    justify-content: center;
  }

  .navbar-landing .navbar-nav {
    padding: 1rem 0;
  }

  .navbar-landing .btn-login {
    margin: 1rem 0;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Section spacing mobile */
  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .features-section,
  .workflow-section,
  .benefits-section,
  .faq-section {
    padding: 4rem 0;
  }
}

/* Small mobile breakpoint */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .stat-value {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 0.75rem;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  .feature-desc {
    font-size: 0.875rem;
  }

  .workflow-card-title {
    font-size: 1rem;
  }

  .workflow-card-desc {
    font-size: 0.8rem;
  }
}

/* Container utility */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Spacing utilities */
.mr-2 {
  margin-right: 0.5rem;
}

.ml-4 {
  margin-left: 1rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

/* Grid utilities */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

.col-lg-2 {
  flex: 0 0 16.666%;
  max-width: 16.666%;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

.col-lg-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

.col-lg-4 {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

.col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

.col-lg-8 {
  flex: 0 0 66.666%;
  max-width: 66.666%;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

.col-md-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

.col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

/* Display utilities */
.d-flex {
  display: flex;
}

.d-none {
  display: none;
}

.d-lg-block {
  display: block;
}

.d-lg-flex {
  display: flex;
}