/*
Theme Name: Admark Landing Page
Theme URI: https://admark.com
Author: Admark Team
Description: Premium Admark Landing Page WordPress Theme
Version: 1.0
Text Domain: admark
*/

:root {
    --primary-orange: #FF5500;
    --primary-orange-hover: #E04B00;
    --dark-navy: #0B132A;
    --navy-card: #141E38;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --bg-light: #FAFAFD;
    --bg-card-purple: #F4F3FB;
    --border-color: #E2E8F0;
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: #FFFFFF;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

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

h1, h2, h3 {
    color: var(--text-dark);
    font-family: var(--font-family);
}

.highlight {
    color: var(--primary-orange);
}

/* MAIN SECTION HEADINGS STYLE (29px, Weight 400, Letter-spacing 5.5%) */
.feature-content h2,
.callout-text-col h2,
.testimonial-right-col h2,
.blog-title,
.footer-text-col h2,
.how-section h2 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400 !important;
    font-size: 29px !important;
    line-height: 1.35 !important;
    letter-spacing: 0.055em !important;
}

/* BLOG CARD HEADER TITLE */
.blog-card-header h3 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    line-height: 1.35 !important;
    letter-spacing: 0 !important;
    color: #0F172A;
    margin: 0;
}

/* BUTTONS */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-orange);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
}

.btn-primary:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 85, 0, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 15px;
}

.btn-text {
    color: var(--text-dark);
    font-weight: 700;
    text-decoration: none;
    padding: 12px 16px;
    font-size: 14px;
    font-family: var(--font-family);
    transition: color 0.2s ease;
}

.btn-text:hover {
    color: var(--primary-orange);
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    font-family: var(--font-family);
}

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

.link-orange {
    color: var(--primary-orange);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    font-family: var(--font-family);
}

/* NAVBAR WITH BALANCED ADMARK LOGO (34px ICON, 22px TEXT) */
.navbar {
    padding: 20px 0;
    background: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-family);
    letter-spacing: -0.01em;
}

.logo-img {
    height: 34px;
    width: auto;
    display: block;
}

.desktop-nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.desktop-nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
    font-family: var(--font-family);
    position: relative;
}

.desktop-nav-links a:hover {
    color: var(--primary-orange);
}

.desktop-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

.desktop-nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.desktop-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* HAMBURGER TOGGLE BUTTON */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.hamburger-bar {
    width: 100%;
    height: 3px;
    background-color: #0F172A;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.nav-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

.nav-menu {
    display: none;
}

/* HERO SECTION (PURE WHITE BACKGROUND & ALL BLACK HEADING) */
.hero-section {
    padding: 72px 0 80px;
    background: #FFFFFF;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 56px;
    line-height: 51.5px;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: #0F172A;
}

.hero-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 480px;
    font-family: var(--font-family);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.cta-note {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    font-family: var(--font-family);
}

.hero-img {
    width: 100%;
    max-width: 560px;
    height: auto;
}

/* LOGOS SECTION - CONTINUOUS SINGLE LINE MARQUEE */
.logos-section {
    padding: 36px 0;
    border-top: 1px solid #F1F5F9;
    border-bottom: 1px solid #F1F5F9;
    background-color: #FFFFFF;
    overflow: hidden;
    white-space: nowrap;
}

.logos-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.logos-slide {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 64px;
    flex-shrink: 0;
    min-width: 100%;
    animation: marqueeScroll 25s linear infinite;
}

.logos-marquee:hover .logos-slide {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.client-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.85);
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}

.logo-recurly { height: 32px !important; }
.logo-xoxo { height: 26px !important; }
.logo-slack { height: 28px !important; filter: grayscale(100%) opacity(0.9); }
.logo-digitas { height: 32px !important; }
.logo-possible { height: 28px !important; }
.logo-wellcom { height: 32px !important; }
.logo-spotify { height: 28px !important; filter: grayscale(100%) opacity(0.9); }
.logo-chartmogul { height: 32px !important; }

/* FEATURES */
.feature-section {
    padding: 80px 0;
}

.feature-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.icon-wrapper-group-47 {
    margin-bottom: 16px;
}

.group-47-icon {
    width: 48px;
    height: auto;
    display: block;
}

.feature-content h2 {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
    font-family: var(--font-family);
}

.feature-img, .feature-img-2 {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
}

/* BANNER CALLOUT (GET ADMARK) */
.callout-section {
    padding: 56px 0;
}

.callout-dark-card {
    background-color: #131B34;
    background-image: url('assets/callout-card-bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 36px;
    padding: 44px;
    position: relative;
    box-shadow: 0 20px 40px rgba(11, 19, 42, 0.15);
}

.speech-badge {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 36px;
    height: 36px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.callout-white-card {
    background: #FFFFFF;
    border-radius: 28px;
    display: grid;
    grid-template-columns: 320px 1fr;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.callout-img-col {
    background-color: #F6D670;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.callout-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.callout-text-col {
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.callout-text-col h2 {
    color: #1E293B;
    margin-bottom: 16px;
}

.callout-text-col p {
    color: #64748B;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 480px;
    font-family: var(--font-family);
}

.btn-orange-caps {
    background-color: #FF5500;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 14px 28px;
    border-radius: 8px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(255, 85, 0, 0.3);
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.btn-orange-caps:hover {
    background-color: #E04B00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 85, 0, 0.4);
}

/* HOW IT WORKS STEPPER */
.how-section {
    padding: 80px 0;
}

.how-section h2 {
    color: #2D3748;
    margin-bottom: 48px;
}

.stepper-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 2;
}

.step-node {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #CBD5E1;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-node .inner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #94A3B8;
}

.step-node.active-node {
    width: 36px;
    height: 36px;
    border: none;
    background-color: #FFE5D9;
    box-shadow: 0 0 0 4px #FFE5D9;
}

.active-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #FF5500;
}

.step-title {
    font-size: 12px;
    font-weight: 700;
    color: #CBD5E1;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: var(--font-family);
}

.step-title.active-title {
    color: #FF5500;
}

.step-track {
    flex: 1;
    height: 3px;
    margin: 0 4px;
    margin-bottom: 28px;
}

.step-track.dashed {
    border-top: 3px dashed #CBD5E1;
}

.step-track.solid-orange {
    background-color: #FF5500;
    height: 4px;
    border-radius: 2px;
}

/* TESTIMONIAL (PREVIEW YOUR BANNER ADS) */
.testimonial-section {
    padding: 72px 0;
}

.testimonial-card {
    background-color: #F8F5FF;
    border-radius: 36px;
    padding: 48px 56px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: center;
}

.testimonial-left-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.photo-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
}

.author-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.company-badge-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background-color: #0E172C;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.badge-img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    display: block;
}

.carousel-nav {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.nav-btn {
    width: 32px;
    height: 32px;
    border: 1.5px solid #CBD5E1;
    background: transparent;
    color: #64748B;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    font-family: var(--font-family);
}

.nav-btn:hover {
    border-color: #FF5500;
    color: #FF5500;
}

.testimonial-right-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* QUOTE MARK ICON */
.quote-mark {
    font-size: 110px;
    color: #8B5CF6;
    line-height: 0.65;
    margin-bottom: 12px;
    margin-left: -4px;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    display: block;
}

.testimonial-right-col h2 {
    color: #1E293B;
    margin-bottom: 16px;
}

.quote-text {
    color: #334155;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 480px;
    font-weight: 500;
    font-family: var(--font-family);
}

.author-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.small-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-text {
    font-size: 13px;
    color: #1E293B;
    font-family: var(--font-family);
}

.profile-text strong {
    font-weight: 800;
    letter-spacing: 0.5px;
}

.profile-text span {
    color: #64748B;
    font-weight: 400;
}

.read-more-link {
    color: #FF5500;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: 0.2s;
    font-family: var(--font-family);
}

.read-more-link:hover {
    color: #E04B00;
}

/* BLOG / STORIES SECTION */
.blog-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.blog-title {
    color: #1E293B;
    margin-bottom: 40px;
    text-align: left;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: #FFFFFF;
    border: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
}

.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding: 20px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 12px;
    margin-bottom: 10px;
}

.read-time {
    font-size: 11px;
    color: #94A3B8;
    white-space: nowrap;
    margin-top: 4px;
    font-family: var(--font-family);
}

.blog-content p {
    font-size: 13px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: var(--font-family);
}

.btn-see-more {
    display: inline-block;
    border: 2px solid #FF5500;
    color: #FF5500;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 12px 36px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.2s;
    font-family: var(--font-family);
}

.btn-see-more:hover {
    background-color: #FF5500;
    color: #FFFFFF;
}

/* FOOTER CTA */
.footer-cta {
    width: 100%;
    background-color: #131B34;
    background-image: url('assets/footer-cta-bg.svg');
    background-size: cover;
    background-position: center;
    padding: 44px 0;
    margin: 0;
    position: relative;
    overflow: visible;
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 580px;
    gap: 32px;
    align-items: center;
    position: relative;
}

.footer-text-col h2 {
    color: #FFFFFF;
    margin-bottom: 24px;
    max-width: 498px;
}

.footer-media-col {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    width: 100%;
}

.footer-avatars-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.left-avatar-group {
    position: absolute;
    left: -70px;
    top: -60px;
    width: 240px;
    height: 280px;
    pointer-events: none;
    z-index: 6;
}

.avatar-desk {
    position: absolute;
    top: 0px;
    right: 40px;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.arrow-curly {
    position: absolute;
    top: 25px;
    left: 70px;
    width: 48px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.avatar-pose {
    position: absolute;
    top: 100px;
    left: 10px;
    width: 135px;
    height: 135px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.footer-group-46 {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
    display: block;
    margin-top: -60px;
    margin-bottom: -16px;
    position: relative;
    z-index: 5;
    margin-left: auto;
}

/* ==========================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================== */

@media (max-width: 992px) {
    .desktop-nav-links, .desktop-nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: flex;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        padding: 32px 24px;
        gap: 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid #F1F5F9;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .mobile-nav-links a {
        text-decoration: none;
        color: var(--text-muted);
        font-weight: 500;
        font-size: 16px;
    }

    .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .mobile-nav-actions .btn-primary, .mobile-nav-actions .btn-text {
        width: 100%;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 42px !important;
        line-height: 48px !important;
    }

    .hero-content p {
        margin: 0 auto 32px auto;
    }

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

    .hero-media {
        display: flex;
        justify-content: center;
    }

    .feature-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .feature-content h2, .feature-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .icon-wrapper-group-47 {
        display: flex;
        justify-content: center;
    }

    .callout-white-card {
        grid-template-columns: 1fr;
    }

    .callout-img-col {
        height: 240px;
    }

    .callout-text-col {
        padding: 36px 28px;
        text-align: center;
        align-items: center;
    }

    .testimonial-card {
        grid-template-columns: 1fr;
        padding: 40px 32px;
        gap: 36px;
        text-align: center;
    }

    .testimonial-left-col {
        align-items: center;
    }

    .testimonial-right-col {
        align-items: center;
    }

    .quote-mark {
        margin-left: 0;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
    }

    .left-avatar-group {
        display: none;
    }

    .footer-text-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-text-col h2 {
        max-width: 100%;
        text-align: center;
    }

    .footer-media-col {
        justify-content: center;
        width: 100%;
    }

    .footer-avatars-wrapper {
        justify-content: center;
        width: 100%;
    }

    .footer-group-46 {
        margin-top: 0;
        margin-bottom: 0;
        max-width: 220px !important;
        width: 100%;
        height: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

/* MOBILE PHONE BREAKPOINT (max-width: 576px) */
@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    .hero-content h1 {
        font-size: 32px !important;
        line-height: 38px !important;
    }

    .feature-content h2,
    .callout-text-col h2,
    .testimonial-right-col h2,
    .blog-title,
    .footer-text-col h2,
    .how-section h2 {
        font-size: 24px !important;
        line-height: 32px !important;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .logos-slide {
        gap: 36px;
    }

    .client-logo {
        max-height: 28px;
    }

    .photo-wrapper {
        width: 220px;
        height: 220px;
    }

    .company-badge-box {
        width: 90px;
        height: 90px;
        right: -10px;
        bottom: -10px;
    }

    .stepper-bar {
        flex-direction: column;
        gap: 20px;
    }

    .step-track {
        width: 3px;
        height: 24px;
        margin: 0;
    }

    .step-track.dashed {
        border-top: none;
        border-left: 3px dashed #CBD5E1;
    }

    .footer-group-46 {
        max-width: 150px !important;
        width: 100%;
        height: auto;
    }
}

@media (max-width: 400px) {
    .footer-group-46 {
        max-width: 120px !important;
    }
}
