/* ================================================================
   Brainiers — Custom Stylesheet
   Bootstrap 5 override + utility classes
   ================================================================ */

:root {
    --brand-primary:   #7c3aed;   /* violet-600 */
    --brand-secondary: #06b6d4;   /* cyan-500   */
    --brand-accent:    #f59e0b;   /* amber-500  */
    --brand-dark:      #0f0c1d;   /* near black */
    --brand-dark-2:    #1a1530;   /* card bg    */
    --brand-dark-3:    #241e3d;   /* border     */
    --text-muted-custom: #8b8ca8;
    --gradient-primary: linear-gradient(135deg, var(--brand-primary) 0%, #4f46e5 100%);
    --gradient-hero:    linear-gradient(135deg, #0f0c1d 0%, #1e1b4b 60%, #0f172a 100%);
    --transition-base:  all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-card:      16px;
    --radius-btn:       8px;
    --shadow-glow:      0 0 30px rgba(124, 58, 237, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #fff;
    color: #111827;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

img { max-width: 100%; height: auto; display: block; }

a { transition: var(--transition-base); }

/* ----------------------------------------------------------------
   Brand Colours
   ---------------------------------------------------------------- */
.bg-brand-dark    { background-color: var(--brand-dark) !important; }
.bg-brand-dark-2  { background-color: var(--brand-dark-2) !important; }
.text-brand       { color: var(--brand-primary) !important; }
.text-accent      { color: var(--brand-accent) !important; }

/* ----------------------------------------------------------------
   Brand Buttons
   ---------------------------------------------------------------- */
.btn-brand-primary {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-btn);
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.35);
}
.btn-brand-primary:hover, .btn-brand-primary:focus {
    background: linear-gradient(135deg, #6d28d9 0%, #4338ca 100%);
    color: #fff;
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.5);
    transform: translateY(-1px);
}

.btn-brand-outline {
    background: transparent;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
    border-radius: var(--radius-btn);
    font-weight: 600;
    transition: var(--transition-base);
}
.btn-brand-outline:hover, .btn-brand-outline:focus {
    background: var(--brand-primary);
    color: #fff;
    transform: translateY(-1px);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: var(--radius-btn);
    font-weight: 600;
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    background: #128c7e;
    color: #fff;
    transform: translateY(-1px);
}

/* ----------------------------------------------------------------
   Navbar
   ---------------------------------------------------------------- */
.navbar {
    padding: 1rem 0;
    transition: var(--transition-base);
    z-index: 1030;   /* above Bootstrap sticky-top (1020) so collapse panel is never clipped */
}

.brand-icon { color: var(--brand-accent); font-size: 1.5rem; line-height: 1; }
.brand-text { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.3rem; letter-spacing: -0.03em; }

.navbar-nav .nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.5rem 0.8rem !important;
    border-radius: 6px;
    transition: var(--transition-base);
}
.navbar-nav .nav-link:hover  { background: rgba(255,255,255,0.08); }
.navbar-nav .nav-link.active { background: rgba(124, 58, 237, 0.3); color: #fff !important; }

/* Desktop dropdown */
.dropdown-menu-dark { background: var(--brand-dark-2) !important; border: 1px solid var(--brand-dark-3) !important; min-width: 230px; }
.dropdown-item { font-size: 0.9rem; padding: 0.55rem 1rem; border-radius: 6px; transition: var(--transition-base); }
.dropdown-item:hover { background: rgba(124, 58, 237, 0.25) !important; color: #fff !important; }

/* Hamburger toggler — works with or without Bootstrap JS */
.navbar-toggler {
    padding: 0.4rem 0.6rem;
    border: 1.5px solid rgba(255,255,255,0.35) !important;
    border-radius: 8px;
    cursor: pointer;
    background: transparent;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(124,58,237,0.4); outline: none; }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2c255%2c255%2c0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
/* Mobile nav panel — always has background when open */
#mainNav.show,
#mainNav.collapsing {
    background-color: #1a1530;
    border-top: 1px solid #241e3d;
    border-radius: 0 0 14px 14px;
    padding: 0.5rem 0.5rem 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* ----------------------------------------------------------------
   Hero Section
   ---------------------------------------------------------------- */
.hero-section {
    background-color: #0f0c1d;
    background-image: linear-gradient(135deg, #0f0c1d 0%, #1e1b4b 60%, #0f172a 100%);
    color: #fff;
    padding: 7rem 0 5rem;   /* top accounts for sticky navbar (~70px) */
    position: relative;
}
/* dot-grid overlay — sits strictly behind content */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 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='%237c3aed' 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;
}
/* all direct children of the container stay above the overlay */
.hero-section .hero-inner {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.4);
    color: #c4b5fd;
    border-radius: 100px;
    padding: 0.35rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    color: #fff !important;
    margin-bottom: 1.25rem;
    line-height: 1.15;
    word-break: break-word;
}

.hero-title .highlight {
    background: linear-gradient(90deg, #f59e0b, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.05rem;
    color: #a5b4fc;
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.hero-stat { text-align: center; }
.hero-stat .num  { font-size: 1.8rem; font-weight: 800; color: #fff; font-family: 'Sora', sans-serif; }
.hero-stat .lbl  { font-size: 0.78rem; color: #8b8ca8; text-transform: uppercase; letter-spacing: 0.05em; }

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(124,58,237,0.35) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.floating-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-card);
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
    color: #e0e7ff;
    animation: float 4s ease-in-out infinite;
}
.floating-card:nth-child(2) { animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

/* ----------------------------------------------------------------
   Section Headings
   ---------------------------------------------------------------- */
.section-label {
    display: inline-block;
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    color: #111827;
}
.section-title-light { color: #fff; }
.section-sub { font-size: 1.05rem; color: #6b7280; max-width: 600px; margin: 0 auto; }

/* ----------------------------------------------------------------
   Course Cards
   ---------------------------------------------------------------- */
.course-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: var(--brand-primary);
}

.course-card-header {
    background: var(--gradient-hero);
    padding: 1.75rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.course-card-header::after {
    content: '';
    position: absolute; inset: 0;
    background: var(--gradient-primary);
    opacity: 0.6;
}
.course-card-header .icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
}
.course-card-header .name {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 0.75rem;
    position: relative;
    z-index: 1;
}

.course-card-body { padding: 1.5rem; flex: 1; }
.course-card-footer { padding: 1rem 1.5rem 1.5rem; }

.course-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brand-primary);
    font-family: 'Sora', sans-serif;
}
.course-price .period { font-size: 0.85rem; font-weight: 400; color: #6b7280; }

.course-meta { font-size: 0.82rem; color: #6b7280; }
.course-meta i { color: var(--brand-primary); width: 14px; }

.badge-flagship {
    background: linear-gradient(135deg, var(--brand-accent), #f97316);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ----------------------------------------------------------------
   Feature / Why Section
   ---------------------------------------------------------------- */
.feature-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-card);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-base);
}
.feature-card:hover {
    box-shadow: 0 12px 35px rgba(124, 58, 237, 0.1);
    border-color: #c4b5fd;
    transform: translateY(-4px);
}
.feature-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(79,70,229,0.1));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--brand-primary);
    margin: 0 auto 1rem;
}

/* ----------------------------------------------------------------
   Testimonials
   ---------------------------------------------------------------- */
.testimonial-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-card);
    padding: 1.75rem;
    position: relative;
    transition: var(--transition-base);
}
.testimonial-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.testimonial-card .quote { color: var(--brand-primary); font-size: 2rem; line-height: 1; margin-bottom: 0.75rem; }
.testimonial-stars { color: var(--brand-accent); letter-spacing: 2px; }
.testimonial-avatar {
    width: 48px; height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 1.1rem;
    flex-shrink: 0;
}

/* ----------------------------------------------------------------
   Form Styles
   ---------------------------------------------------------------- */
.form-section { background: var(--gradient-hero); padding: 5rem 0; }

.signup-card {
    background: var(--brand-dark-2);
    border: 1px solid var(--brand-dark-3);
    border-radius: var(--radius-card);
    padding: 2.5rem;
}

.form-control, .form-select {
    border-radius: 8px;
    border: 1.5px solid #d1d5db;
    padding: 0.65rem 0.9rem;
    font-size: 0.95rem;
    transition: var(--transition-base);
}
.form-control:focus, .form-select:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
    outline: none;
}
.form-label { font-weight: 500; font-size: 0.9rem; color: #374151; margin-bottom: 0.3rem; }

.signup-card .form-control,
.signup-card .form-select {
    background: rgba(255,255,255,0.06);
    border-color: var(--brand-dark-3);
    color: #e0e7ff;
}
.signup-card .form-control::placeholder { color: #6b7280; }
.signup-card .form-control:focus,
.signup-card .form-select:focus {
    background: rgba(255,255,255,0.1);
    border-color: var(--brand-primary);
    color: #fff;
}
.signup-card .form-label { color: #c4b5fd; }
.signup-card .form-select option { background: var(--brand-dark-2); color: #e0e7ff; }

/* ----------------------------------------------------------------
   Course Detail Page
   ---------------------------------------------------------------- */
.course-hero {
    background-color: #0f0c1d;
    background-image: linear-gradient(135deg, #0f0c1d 0%, #1e1b4b 60%, #0f172a 100%);
    padding: 6rem 0 4rem;   /* top pad for sticky navbar */
    color: #fff;
    position: relative;
}
.course-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    opacity: 0.12;
    pointer-events: none;
}
.course-hero .container { position: relative; z-index: 1; }

.course-sticky-sidebar {
    position: sticky;
    top: 90px;
}

.price-card {
    background: #fff;
    border: 2px solid var(--brand-primary);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}
.price-card-header { background: var(--gradient-primary); padding: 1.5rem; color: #fff; text-align: center; }
.price-card-body { padding: 1.5rem; }

.curriculum-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f3f4f6;
}
.curriculum-item:last-child { border-bottom: none; }
.curriculum-check { color: #10b981; flex-shrink: 0; margin-top: 2px; }

/* ----------------------------------------------------------------
   Community / WhatsApp Page
   ---------------------------------------------------------------- */
.community-hero {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #0f172a 100%);
    padding: 5rem 0;
    color: #fff;
    text-align: center;
}
.whatsapp-big-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    animation: pulse-green 2s ease-in-out infinite;
}
.whatsapp-big-btn:hover {
    background: #128c7e;
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.6);
}
@keyframes pulse-green {
    0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
    50%       { box-shadow: 0 8px 50px rgba(37, 211, 102, 0.65); }
}

/* ----------------------------------------------------------------
   Payment Page
   ---------------------------------------------------------------- */
.payment-method-card {
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-card);
    padding: 1.25rem;
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
}
.payment-method-card:hover, .payment-method-card.selected {
    border-color: var(--brand-primary);
    background: rgba(124,58,237,0.05);
}

/* ----------------------------------------------------------------
   Alert / Notice
   ---------------------------------------------------------------- */
.alert-brand {
    background: rgba(124,58,237,0.1);
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 10px;
    color: #4c1d95;
}

/* ----------------------------------------------------------------
   Dark section variant
   ---------------------------------------------------------------- */
.section-dark {
    background: var(--gradient-hero);
    color: #fff;
}
.section-dark .text-muted { color: var(--text-muted-custom) !important; }

/* ----------------------------------------------------------------
   Utilities
   ---------------------------------------------------------------- */
.hover-white:hover { color: #fff !important; }
.footer-link:hover { color: #fff !important; }

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

.rounded-card { border-radius: var(--radius-card); }
.shadow-glow   { box-shadow: var(--shadow-glow); }

.divider-line {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #e5e7eb, transparent);
}

/* Scroll to top button */
#scrollTop {
    position: fixed; bottom: 24px; right: 24px;
    width: 42px; height: 42px;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(124,58,237,0.4);
}
#scrollTop.visible { opacity: 1; pointer-events: auto; }
#scrollTop:hover   { transform: translateY(-3px); }

/* ----------------------------------------------------------------
   Alert & Flash messages
   ---------------------------------------------------------------- */
.alert { border-radius: 10px; }

/* ----------------------------------------------------------------
   Progress step indicator
   ---------------------------------------------------------------- */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
}
.step { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; position: relative; }
.step-circle {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700;
    background: #e5e7eb; color: #6b7280;
    transition: var(--transition-base);
}
.step.active .step-circle { background: var(--gradient-primary); color: #fff; }
.step.done   .step-circle { background: #10b981; color: #fff; }
.step-label { font-size: 0.7rem; color: #6b7280; white-space: nowrap; }
.step.active .step-label { color: var(--brand-primary); font-weight: 600; }
.step-line { width: 60px; height: 2px; background: #e5e7eb; margin-bottom: 1.2rem; }
.step-line.done { background: #10b981; }

/* ----------------------------------------------------------------
   Responsive tweaks
   ---------------------------------------------------------------- */

/* ================================================================
   Responsive Overrides
   ================================================================ */

/* Masterclass featured card — fixed left panel on md+ screens */
@media (min-width: 768px) {
    .masterclass-header { min-width: 260px; width: 260px; flex-shrink: 0; }
}

/* ---- Tablet (768px – 991px) ---- */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-section { padding: 6rem 0 4rem; }
}

/* ---- All non-desktop (<992px) ---- */
@media (max-width: 991px) {
    /* Larger touch targets in the collapsed nav */
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 8px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .navbar-nav .nav-item:last-child > .nav-link { border-bottom: none; }

    /* Courses dropdown — render inline, not floating */
    #mainNav .dropdown-menu {
        position: static !important;
        float: none !important;
        background: rgba(255,255,255,0.06) !important;
        border: 1px solid rgba(255,255,255,0.1) !important;
        margin: 0.25rem 0.5rem 0.5rem !important;
        border-radius: 10px !important;
        box-shadow: none !important;
    }
    #mainNav .dropdown-item { color: #c4b5fd !important; }
    #mainNav .dropdown-item:hover { background: rgba(124,58,237,0.25) !important; color: #fff !important; }

    /* Enrol Now — full-width */
    .navbar-nav .ms-lg-2 { margin-top: 0.75rem; margin-left: 0 !important; }
    .navbar-nav .ms-lg-2 .btn { width: 100%; text-align: center; justify-content: center; }

    /* Payment page — single column, no clipping */
    .payment-section { padding: 3rem 0 4rem !important; }
}

/* ---- Mobile (≤ 767px) ---- */
@media (max-width: 767px) {
    /* ---- Hero ---- */
    .hero-section { padding: 5rem 0 3.5rem; }
    .hero-title   { font-size: 2rem; }
    .hero-sub     { font-size: 0.95rem; max-width: 100%; }
    .hero-badge   { font-size: 0.72rem; }

    .hero-section .cta-buttons {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    .hero-section .cta-buttons .btn { width: 100%; justify-content: center; }

    .hero-stats         { gap: 1rem; }
    .hero-stat .num     { font-size: 1.4rem; }

    /* ---- Masterclass card ---- */
    .masterclass-header {
        width: 100% !important;
        min-width: 0 !important;
        padding: 1.5rem !important;
    }
    .masterclass-header .name {
        font-size: 1.1rem !important;
        word-break: break-word;
        white-space: normal;
    }
    .course-card-header { padding: 1.25rem; }

    /* Card footer — stack price + buttons */
    .course-card-footer.d-flex { flex-direction: column; align-items: flex-start !important; }
    .course-card-footer .d-flex.gap-2 { width: 100%; }
    .course-card-footer .d-flex.gap-2 .btn { flex: 1; text-align: center; justify-content: center; }

    /* ---- Forms ---- */
    .signup-card { padding: 1.5rem; }

    /* ---- WhatsApp button ---- */
    .whatsapp-big-btn { font-size: 1rem; padding: 0.85rem 1.5rem; }
}

/* ----------------------------------------------------------------
   Lazy loading (for images)
   ---------------------------------------------------------------- */
img[loading="lazy"] { opacity: 0; transition: opacity 0.4s; }
img[loading="lazy"].loaded { opacity: 1; }

/* ----------------------------------------------------------------
   Print
   ---------------------------------------------------------------- */
@media print {
    .navbar, footer, #scrollTop, .btn-brand-primary { display: none !important; }
}
