:root {
    --pc-blue: #004b87;
    --pc-red: #ce1126;
    --bg-light: #ffffff;
    --text-light: #212529;
    --card-bg: #f8f9fa;
    --e-global-color-primary: #005195;
}

body.dark-mode {
    --bg-light: #071018; /* #001a33; /* Deep Navy Blue Background */
    --text-light: #f8f9fa; /* Light Text */
    --card-bg: #002b4d; /* Navy Card Background */
    --lightbox-bg: #1a1a1a; /* Define a dark lightbox color */
}

/* Ensure logo background remains white in dark mode */
body.dark-mode .navbar-brand img.bg-white {
    background-color: #ffffff !important;
}

body {
    background-color: var(--bg-light);
    color: var(--text-light);
    transition: background-color 0.3s, color 0.3s;
}

.navbar { background-color: var(--pc-blue) !important; transition: all 0.3s; }
.btn-primary { background-color: var(--pc-blue); border-color: var(--pc-blue); }
.btn-outline-primary { color: var(--pc-blue); border-color: var(--pc-blue); }

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 75, 135, 0.7), rgba(0, 75, 135, 0.7)), url('../img/store-3.jpg');
    background-size: cover;
    background-position: center 0px; /* Start at the top */
    background-repeat: no-repeat;
    color: white;
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    /* Ensure the transition is smooth */
    will-change: background-position;
}

.hero-home { padding: 180px 0; }

.card { background-color: var(--card-bg); border: none; color: inherit; transition: transform 0.2s; }
.card:hover { transform: translateY(-5px); }

.sticky-top { box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
#dark-mode-toggle { cursor: pointer; }

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Cards */
.feature-card {
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* Make circles around icons highly visible */
.feature-icon-circle {
    width: 80px;
    height: 80px;
    background: #ffffff !important; /* Pure white background */
    border: 4px solid #ffffff; /* Thick white border */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* Stronger shadow for visibility */
}

/* Artisan/Product Image Zoom */
.zoom-container {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.zoom-container img {
    transition: transform 0.5s ease;
}

.feature-card:hover .zoom-container img {
    transform: scale(1.1);
}

/* Badge for Staff Picks */
.badge-artisan {
    background-color: var(--pc-red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    position: absolute;
    top: 15px;
    right: 15px;
}

.section-accent {
    /* Top to Bottom Gradient using your base red and a high-contrast dark red */
    background: linear-gradient(to bottom, #9d202c 0%, #4a060b 100%);
    border: none;
}

/* Fix for card alignment */
.card-body-flex {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mt-auto-fix {
    margin-top: auto !important;
}

/* Subtle pattern for the Curated section to break up white space */
.bg-pattern {
    background-color: #fdfdfd;
    background-image: radial-gradient(#dee2e6 0.5px, transparent 0.5px);
    background-size: 20px 20px;
}

/* This forces the 'window' for the image to be identical on every card */
.zoom-container {
    height: 300px; /* Fixed height for all image containers */
    overflow: hidden;
    width: 100%;
    background-color: #f8f9fa; /* Background color fills any gaps if needed */
}

.card-body.d-flex.flex-column {
    flex-grow: 1; /* Tells the body to take up all remaining space */
}

/* This forces the image to fill the 300px container perfectly without distortion */
.zoom-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover; /* Crops the photo to fill the space instead of stretching it */
    object-position: center;
    transition: transform 0.5s ease;
}

/* Standardize image height for Local page cards */
.local-card-img {
    height: 250px; /* Adjust this value if you want them taller or shorter */
    width: 100%;
    object-fit: cover; /* This fills the area without stretching the photo */
    object-position: center; /* Keeps the focus in the middle */
}

/* Promo Callout Styling */
.promo-section {
    background: linear-gradient(135deg, var(--pc-blue) 0%, #003366 100%);
    position: relative;
    overflow: hidden;
}

/* Optional subtle background pattern overlay */
.promo-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 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.05'%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");
    pointer-events: none;
}

/* Promo Callout Red Styling */
.promo-section-red {
  background: linear-gradient(135deg, var(--pc-red) 0%, #a00000 100%); /* Red version */
  position: relative;
  overflow: hidden;
}

/* Optional subtle background pattern overlay (kept white, lowered opacity for contrast) */
.promo-section-red::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 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.05'%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");
  pointer-events: none;
}

.price-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 20px;
    display: inline-block;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.price-pill:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Custom Styling for Pharmacy Services Section */
.services-tabs .nav-link {
    color: var(--pc-blue);
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 600;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.services-tabs .nav-link.active {
    background-color: var(--pc-blue) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(0, 75, 135, 0.2);
}

.services-tabs .nav-link:hover:not(.active) {
    background-color: #f0f4f8;
    border-color: var(--pc-blue);
    color: var(--pc-blue) !important;
}

.tab-content-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--pc-red);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    min-height: 200px;
}

/* Booking Accordion Styling */
.booking-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.booking-accordion .accordion-button {
    font-weight: 700;
    color: var(--pc-blue);
    padding: 20px;
}

.booking-accordion .accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: var(--pc-red);
}

.booking-accordion .accordion-button i {
    font-size: 1.5rem;
    margin-right: 15px;
}

.btn-close {
    z-index: 10;
    transition: transform 0.2s ease;
}

.btn-close:hover {
    transform: scale(1.1);
    background-color: rgba(0,0,0,0.05);
}

.hero-title-branded {
    background-color: #ffffffe0;
    display: inline-block; /* Fits the background to the text length */
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
    border: 3px solid var(--pc-blue);
}

.text-black { color: #000000 !important; }
.text-pc-blue { color: var(--pc-blue) !important; }
.text-pc-red { color: var(--pc-red) !important; }
.text-e-global-color-primary { color: var(--e-global-color-primary) !important; }
.bg-e-global-color-primary { background: var(--e-global-color-primary) !important; }

/* --- Fancy Shrinking Navbar --- */

/* Initial Large State (at top of page) */
.navbar {
    transition: all 0.4s ease-in-out;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.navbar-brand img {
    transition: all 0.4s ease-in-out;
    height: 50px; /* 50% bigger than the 50px base */
}

.navbar .nav-link {
    transition: all 0.4s ease-in-out;
    font-size: 1.10rem; /* 50% bigger than standard bootstrap link size */
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

/* Shrunk State (triggered on scroll) */
.navbar.scrolled {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    background-color: rgba(0, 75, 135) !important; /* Slight transparency when scrolling */
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.navbar.scrolled .navbar-brand img {
    height: 33px; /* Return to original size */
}

.navbar.scrolled .nav-link {
    font-size: 0.95rem; /* Return to original size */
}

/* Ensure the Dark Mode Moon icon also scales */
#dark-mode-toggle {
    transition: all 0.4s ease-in-out;
}
.navbar.scrolled #dark-mode-toggle {
    font-size: 1.2rem !important;
}

/* --- NEW DARK MODE OVERRIDES (APPENDED ONLY) --- */

/* Fix for Sections that were staying white */
body.dark-mode .bg-light,
body.dark-mode .bg-white,
body.dark-mode .bg-pattern {
    background-color: var(--bg-light) !important;
    background-image: none !important;
}

/* Fix for Components/Accordions/Tabs */
body.dark-mode .tab-content-box,
body.dark-mode .accordion-item,
body.dark-mode .accordion-button {
    background-color: var(--card-bg) !important;
    color: var(--text-light) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Unreadable Text Overrides */
body.dark-mode .text-muted,
body.dark-mode .text-dark {
    color: #cbd5e0 !important;
}

body.dark-mode .services-tabs .nav-link:not(.active) {
    color: var(--text-light);
}

body.dark-mode #news-alert-section .row {
    background-color: rgba(0, 75, 135, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Stick the flyer sub-nav under the main site menu */
.flyer-nav-sticky {
    position: sticky !important;
    top: 70px !important; /* Matches the height of your shrunk main navbar */
    z-index: 1020 !important; /* Sits just below the main menu (1030) but above content */
    background: white;
    width: 100%;
    display: block;
}

/* Ensure the flyer content starts below the sticky nav */
#flipp-container {
    margin-top: 10px;
}

/* Target the corporate navigation bar injected by the script */
#flipp-container nav, 
nav:has(iframe.flippiframe) {
    position: sticky !important;
    top: 60px !important; /* This sits it perfectly under your shrunk header */
    z-index: 1020 !important; /* Above content, below main menu */
    background-color: #ffffff !important;
    display: block !important;
    width: 100% !important;
    height: 66px !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Dark Mode adjustment for the injected flyer nav */
body.dark-mode #flipp-container nav,
body.dark-mode nav:has(iframe.flippiframe) {
    background-color: var(--card-bg) !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Ensure the flyer content doesn't jump under the sticky nav */
.flipp-display-container {
    padding-top: 10px;
}
/* Force the dynamic flyer nav to be sticky */
#flipp-container nav[style*="position: absolute"] {
    position: sticky !important;
    top: 70px !important; /* Adjust to match your shrunk header height */
    z-index: 1020 !important;
    background: white !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
}

/* Ensure the flyer content starts below the sticky nav */
.flipp-display-container {
    padding-top: 5px;
}

/* Force the dynamic flyer aside panel to be sticky */
#flipp-container aside {
    position: sticky !important;
    top: 136px !important; /* 70px (header) + 66px (flyer nav) */
    z-index: 1010 !important;
    height: calc(100vh - 150px) !important; /* Prevents panel from being taller than screen */
    background: white !important;
}

/* Dark Mode adjustment for the aside panel */
body.dark-mode #flipp-container aside {
    background-color: var(--card-bg) !important;
}

/* Ensure the collapse button stays visible */
#flipp-collapse-button {
    z-index: 1011 !important;
}

/* myRxLink App Promo Styling */
.rxlink-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 75, 135, 0.1);
    transition: all 0.3s ease;
}

.rxlink-logo {
    height: 35px;
    width: auto;
    vertical-align: middle;
    margin-left: 10px;
}

.qr-wrap {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px dashed var(--pc-blue);
}

.qr-wrap img {
    width: 120px;
    height: 120px;
    margin-bottom: 8px;
}

.qr-note {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--pc-blue);
    letter-spacing: 1px;
}

/* Dark Mode Fix for App Promo */
body.dark-mode .rxlink-card {
    background-color: var(--card-bg) !important;
}

body.dark-mode .qr-wrap {
    background-color: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
}

body.dark-mode .qr-note {
    color: #ffffff;
}

/* Fixed 200px Height App Promo */
.rxlink-card {
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid rgba(0, 75, 135, 0.1);
    height: 150px; /* Force the 200px height */
    overflow: hidden;
    display: flex;
    align-items: center;
}

.rxlink-logo {
    height: 28px; /* Slightly smaller to fit 200px layout */
    width: auto;
    margin-left: 8px;
}

.qr-column {
    background: #f8f9fa;
    height: 100%;
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 1px dashed var(--pc-blue);
}

.qr-column img {
    width: 100px;
    height: 100px;
}

/* Dark Mode Fixes */
body.dark-mode .rxlink-card { background-color: var(--card-bg) !important; }
body.dark-mode .qr-column { background-color: rgba(255,255,255,0.05) !important; border-color: rgba(255,255,255,0.2) !important; }

/* --- Print Override Logic --- */
@media print {
    /* Hide everything that isn't the flyer */
    nav, footer, .hero-section, .rxlink-card, .section-accent, .btn, #dark-mode-toggle {
        display: none !important;
    }

    /* Reset container constraints so the flyer fills the paper */
    .container, .card, .card-body {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }

    body {
        background-color: white !important;
    }

    #flipp-container {
        width: 100% !important;
        min-height: auto !important;
    }
}

/* Style for our custom print button */
.btn-print-flyer {
    background-color: var(--pc-blue);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-print-flyer:hover {
    background-color: #003366;
    color: white;
    transform: scale(1.05);
}



/* MOBILE ALIGNMENT */
@media (max-width: 800px) {
    .img-rx {
        margin-top: 10px;
    }

    .feat-img {
        max-height: 400px  !important;    
    }
}

/* --- PHOTOSWIPE STYLING (Blue Container/75% Fix) --- */

/* 1. Set max height of the overall gallery window to 75% */
.pswp {
    --pswp-max-height: 75vh !important; /* CRITICAL FIX: Enforce 75% max height for the viewport */
}

/* 2. Style the Inner Image Wrapper (The Blue Box) */
.pswp__img {
    background: var(--pc-blue) !important; /* Blue background */
    border-radius: 15px !important;
    padding: 30px !important; /* Blue Frame Padding */
    object-fit: contain !important; /* Keep image proportional */
    max-width: 100% !important;
    max-height: 100% !important;
    height: auto !important;
    width: auto !important;
}

/* 3. Style the Caption */
.pswp-caption-box {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    text-align: center;
    width: 100%;
}

.pswp-caption-box h4 {
    color: white !important;
    font-weight: 700;
    margin-bottom: 5px;
}

.pswp-caption-box p {
    color: #f0f0f0;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Dark Mode Fix */
body.dark-mode .pswp__img {
    background: #004b87 !important;
}

/* --- Lightbox Customization --- */

/* 1. The Container holding the image */
.glightbox-clean .gslide-media {
    background-color: #ffffff !important; /* Solid White Background for PNGs */
    padding: 30px !important; /* Padding so image fits nicely */
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

/* 2. The Image Itself - Forced 75% Viewport Height */
.gslide-image img {
    min-height: 50vh !important; /* Exact 75% screen height */
    max-height: 75vh !important;
    width: auto !important;
    object-fit: contain;
    min-width: 0 !important; /* Prevents flexbox overflow issues */
}

/* 3. Caption Styling */
.gslide-title {
    color: #fff!important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    margin-bottom: 5px !important;
}

.gslide-desc {
    color: #ffffff !important;
    font-size: 0.95rem;
}

/* 4. Navigation Buttons (Make them pop) */
.gnext, .gprev, .gclose {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.gnext:hover, .gprev:hover, .gclose:hover {
    background-color: var(--pc-red);
}

.glightbox-clean .gslide-description {
    background: #000000cc !important;
    top: -110px;
}

/* Section 1: Image Link Grid */
.brand-link-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%;
    min-height: 250px;
}

.brand-link-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.brand-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.brand-link-card:hover img {
    transform: scale(1.05);
}

/* --- NEW PATTERN FOR HEALTH SECTION --- */
.bg-blue-pattern {
    background-color: var(--pc-blue);
    /* Subtle plus-sign pattern overlay */
    background-image: radial-gradient(#ffffff 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    color: white; /* Ensure initial text in this section is white */
}

/* --- SECTION 2: Info Cards --- */
.info-card {
    background: #ffffff; /* White card */
    border: 1px solid rgba(0, 75, 135, 0.1);
    border-radius: 10px;
    height: 100%;
    padding: 30px 20px;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.info-card:hover {
    background: var(--pc-red);
    color: white; /* Make all inherited text white on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Force all text inside the card to be white on hover */
.info-card:hover h3,
.info-card:hover p,
.info-card:hover .info-button {
    color: white !important;
}

.info-card:hover .info-button {
    background: white;
    color: var(--pc-blue);
    border-color: white;
}

.info-button {
    border: 2px solid var(--pc-blue);
    color: var(--pc-blue);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

/* Dark Mode Fixes for New Sections */
body.dark-mode .brand-link-card {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Fixes for Dark Mode (ensure buttons look right) */
body.dark-mode .info-card {
    background: var(--card-bg);
}

body.dark-mode .info-card:hover {
    background: var(--pc-red) !important;
    color: white;
}

body.dark-mode .info-card:hover .info-button {
    background: white !important;
    color: var(--pc-red) !important;
}

body.dark-mode .info-button {
    border-color: var(--pc-blue);
    color: var(--pc-blue);
    background: white;
}

/* Contact Page Specific Styles */
.contact-info-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card a {
    color: black !important;
    text-decoration: none;    
}

.contact-info-card:hover {
    background: var(--pc-blue);
    color: white;
}

.contact-info-card:hover a {
    color: white !important;    
}

.contact-info-card:hover h3,
.contact-info-card:hover i {
    color: #dc3545 !important;
}

.contact-info-card i {
    font-size: 2rem;
    color: var(--pc-blue);
    margin-bottom: 15px;
}

.map-container {
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Dark Mode Fixes for Contact */
body.dark-mode .contact-info-card {
    background: var(--card-bg);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .contact-info-card a {
    color: white !important;
}

body.dark-mode .contact-info-card:hover {
    background: var(--pc-red);
    color: white;
}

body.dark-mode .contact-info-card:hover h3,
body.dark-mode .contact-info-card:hover i {
    color: #fff !important;
}

body.dark-mode .contact-info-card i {
    color: var(--pc-red);
}

/* FIX: Force the button text color inside the already blue/hovered card to be blue against the white button */
.info-card:hover .info-button,
.info-card[style*="var(--pc-blue)"] .info-button {
    color: var(--pc-blue) !important;
}

body.dark-mode .product-cards {
    background-color: #104273 !important;
}

/* Ensure the H3 and Description blocks are consistent heights */
.info-card-title-fixed {
    height: 48px; /* Fixed height for 2 lines of large text */
    display: flex;
    align-items: center;
    vertical-align: top;
    justify-content: center;
    margin-bottom: 5px !important;
}

.info-card-desc-fixed {
    min-height: 40px; /* Fixed minimum height for 2 lines of small text */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    margin-bottom: 15px !important;
}

/* Ensure the button is always pushed to the bottom */
.info-card {
    /* Existing styles, plus these two key properties: */
    display: flex;
    flex-direction: column;
}


    
.about .section-header {
    margin-left: auto;
}
.about .section-header {
    margin-bottom: 30px;
}
.section-header {
    position: relative;
    width: 100%;
    /*max-width: 700px;*/
    margin: 0 auto 45px auto;
}
.section-header p {
    display: inline-block;
    margin-bottom: 10px;
    padding-bottom: 5px;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #E81C2E;
}
.section-header h2 {
    margin: 0;
    font-size: 45px;
    font-weight: 700;
    text-transform: capitalize;
}

.section-header p::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    left: 25%;
    bottom: 0;
    background: #E81C2E;
}