/* =============================================
   COLOR TOKENS
============================================= */
:root {
    --navy-blue: #002eea;
    --navy-dark: #060F1E;
    --navy-mid: #0B1F3B;
    --text-light: #333;
    --bg-light: #F4F6F9;
    --white: #ffffff;
    --border: #DDE3EC;
}

/* =============================================
   UTILITY
============================================= */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--navy-blue);
    margin-bottom: 14px;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--navy-blue);
    border-radius: 2px;
    flex-shrink: 0;
}

/* ============================================================
   HERO BANNER
   Full dark gradient with big title
============================================================ */
.jobs-hero {
    position: relative;
}

.hero-layout_outer {
    position: relative;
}

.hero-layout_outer img {
    width: 100%;
}

.hero-layout_inner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 9;
}

.jobs-hero::after {
    content: '';
    position: absolute;
    /* inset: 0; */
    background: #000000;
    pointer-events: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;

}

.hero-text {
    text-align: left;
}


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

.hero-layout {
    display: flex;
    align-items: baseline;
    flex-direction: column;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 136, 0.15);
    border: 1px solid rgba(212, 175, 136, 0.3);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
}

.hero-pill svg {
    color: var(--navy-blue);
}

.jobs-hero h1 {
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.accent {
    color: var(--navy-blue);
}

.jobs-hero p {
    font-size: 16px;
    color: var(--white);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 32px;
}

/* Hero right — stat cards */
.hero-stats {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px 28px;
    text-align: center;
    min-width: 150px;
    transition: background 0.2s;
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hs-num {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    display: block;
    margin-bottom: 4px;
}

.hs-lbl {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
}

.breadcrumb {
    position: absolute;
    right: 60px;
    bottom: 0px;
    background: #fff;
    padding: 14px 24px;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    z-index: 10;
    width: 100%;
    max-width: fit-content;
}
.breadcrumb a {
    color: var(--navy-blue);
    text-decoration: none;
    transition: .3s;
}
.breadcrumb span:first-of-type {
    color: #999;
}


/* ============================================================
   FILTER BAR
   Sticky search + category filters
============================================================ */
.filter-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(10, 37, 64, 0.06);
}

.filter-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: 40px;
    padding: 10px 18px;
    flex: 1;
    min-width: 220px;
    max-width: 340px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-box:focus-within {
    border-color: var(--navy-blue);
    box-shadow: 0 0 0 3px rgba(0, 107, 94, 0.10);
}

.search-box i {
    color: var(--muted);
    font-size: 14px;
    flex-shrink: 0;
}

.search-box input {
    border: none;
    outline: none;
    background: transparent;

    font-size: 14px;
    color: var(--navy-blue);
    width: 100%;
}

.search-box input::placeholder {
    color: var(--muted);
}

.filter-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
}

.f-chip {
    padding: 8px 18px;
    border-radius: 40px;

    font-size: 13px;
    font-weight: 500;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--navy-blue);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.f-chip:hover {
    border-color: var(--navy-blue);
    color: var(--navy-blue);
}

.f-chip.active {
    background: var(--navy-blue);
    border-color: var(--navy-blue);
    color: var(--white);
}

.jobs-count-badge {
    margin-left: auto;
    flex-shrink: 0;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 8px 18px;

    font-size: 13px;
    font-weight: 600;
    color: var(--navy-dark);
    white-space: nowrap;
}

.jobs-count-badge span {
    color: var(--navy-blue);
}

/* ============================================================
   MAIN LAYOUT — Jobs list + Sidebar
============================================================ */
.jobs-body {
    background: var(--bg-light);
    padding: 56px 0 80px;
}

.jobs-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 32px;
    align-items: start;
}

/* ============================================================
   JOB CARDS
============================================================ */
.job_available_main .jobs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
    width: 100%;
}

.job-card {
    background: var(--white);
    border-radius: 18px;
    border: 1.5px solid var(--border);
    padding: 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    transition: box-shadow 0.25s, transform 0.2s, border-color 0.25s;
}

.job-card:hover {
    box-shadow: 0 12px 40px rgba(10, 37, 64, 0.10);
    transform: translateY(-3px);
    border-color: transparent;
}

/* Featured card */
.job-card.featured {
    border-color: var(--navy-blue);
}

.job-card.featured .job-card-top {
    border-left: 4px solid var(--navy-blue);
}

.job-card-top {
    padding: 28px 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-left: 4px solid transparent;
    transition: border-color 0.25s;
}

.job-card:hover .job-card-top {
    border-left-color: var(--navy-blue);
}

.job-card.featured:hover .job-card-top {
    border-left-color: var(--navy-blue);
}

.job-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 14px;
    background: rgba(230, 240, 239, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--navy-dark);
    transition: background 0.25s, color 0.25s;
}

.job-icon svg {
    color: var(--navy-blue);
}

.job-meta {
    flex: 1;
    min-width: 0;
}

.job-top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.job-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.3;
}

.job-badge {
    padding: 4px 14px;
    border-radius: 20px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    white-space: nowrap;
}

.badge-contract {
    background: rgba(0, 46, 234, 0.08);
    color: var(--navy-blue);
}

.badge-fulltime {
    background: rgba(0, 107, 94, 0.1);
    color: var(--navy-blue);
}

.badge-new {
    background: rgba(212, 175, 136, 0.2);
    color: #8B6914;
}

.badge-featured {
    background: var(--navy-blue);
    color: #fff;
}

.job-tags {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.job-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

.job-tag svg {
    width: 20px;
    height: 20px;
    color: var(--navy-blue);
}

.job_data ul {
    padding-left: 30px;
}

.job_data h3 {
    margin-bottom: 15px;
}

.job_data ul li {
    list-style-type: disc;
}

.job-tag i {
    font-size: 11px;
    color: var(--navy-blue);
}

.job_data {
    margin-bottom: 15px;
    text-align: left;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}

.job_data img,
.job_data table,
.job_data pre,
.job_data iframe {
    max-width: 100%;
}

s .job-desc {

    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
}

/* Expandable skills section */
.job-card-footer {
    padding: 0 30px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.job-skills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.skill-chip {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 12px;

    font-size: 11.5px;
    font-weight: 600;
    color: var(--navy-dark);
    transition: background 0.2s, border-color 0.2s;
}

.job-card:hover .skill-chip {
    background: rgba(0, 107, 94, 0.06);
    border-color: rgba(0, 107, 94, 0.2);
}

.job-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--navy-blue);
    color: #fff;
    padding: 10px 24px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
    text-decoration: none;
}

.job-apply-btn svg {
    rotate: -40deg;
}

.job-apply-btn:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
}

.job-apply-btn.outline {
    background: transparent;
    border: 2px solid var(--navy-blue);
    color: var(--navy-blue);
}

.job-apply-btn.outline:hover {
    background: var(--navy-blue);
    color: #fff;
}

/* Divider between top and footer */
.job-divider {
    height: 1px;
    background: var(--border);
    margin: 0 30px 20px;
}

/* ============================================================
   SIDEBAR
============================================================ */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: sticky;
    top: 100px;
    align-self: start;
}

/* Quick apply / resume card */
.sb-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(10, 37, 64, 0.06);
}

.sb-card-head {
    padding: 22px 24px;
}

.sb-card-head.navy {
    background: linear-gradient(90deg, #00C6FF 0%, #0072FF 100%);
}

.sb-card-head.gold {
    background: linear-gradient(90deg, #00C6FF 0%, #0072FF 100%);
}

.sb-card-head h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.sb-card-head p {
    font-size: 14px;
    color: var(--white);
}

.sb-card-body {
    padding: 22px 24px;
}

/* Resume form */
.fg {
    margin-bottom: 14px;
}

.fg label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 5px;
}

.fg label span {
    color: #e53e3e;
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 9px;

    font-size: 13.5px;
    color: var(--navy-blue);
    background: #fff;
    outline: none;
    resize: none;
    transition: border-color .2s, box-shadow .2s;
    appearance: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--navy-blue);
    box-shadow: 0 0 0 3px rgba(0, 107, 94, 0.10);
}

.fg textarea {
    height: 80px;
}

/* File upload area */
.upload-area {
    border: 2px dashed var(--border);
    border-radius: 10px;
    padding: 22px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    margin-bottom: 14px;
}

.upload-area:hover {
    border-color: var(--navy-blue);
    background: rgba(0, 107, 94, 0.03);
}

.upload-area i {
    font-size: 28px;
    color: var(--muted);
    margin-bottom: 8px;
    display: block;
}

.upload-area p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.upload-area strong {
    color: var(--navy-dark);
    font-size: 13.5px;
    display: block;
    margin-bottom: 4px;
}

.btn-full {
    width: 100%;
    padding: 12px;
    background: var(--navy-blue);
    color: #fff;
    border: none;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
}

.btn-full:hover {
    background: var(--navy-mid);
    transform: translateY(-1px);
}

.btn-full.emerald {
    background: var(--navy-blue);
}

.btn-full.emerald:hover {
    background: var(--navy-blue);
}

.btn-full svg {
    rotate: -40deg;
}

.form-alert {
    border-radius: 9px;
    padding: 10px 12px;
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.4;
}

.form-alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.field-error {
    color: #dc2626;
    font-size: 12px;
    margin-top: 5px;
}

.selected-job-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: rgba(0, 107, 94, 0.06);
    border: 1px solid rgba(0, 107, 94, 0.18);
    border-radius: 9px;
    padding: 10px 12px;
    margin-bottom: 14px;
}

.selected-job-banner.is-hidden {
    display: none;
}

.selected-job-label {
    display: block;
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 2px;
}

.selected-job-banner strong {
    font-size: 13.5px;
    color: var(--navy-dark);
}

.selected-job-clear {
    border: none;
    background: transparent;
    color: var(--navy-blue);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 6px;
}

.upload-area.has-error {
    border-color: #f87171;
}

.consent-row {
    margin-bottom: 16px;
}

.consent-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--navy-dark);
    line-height: 1.45;
    cursor: pointer;
}

.consent-label input[type="checkbox"] {
    appearance: auto;
    /* -webkit-appearance: checkbox; */
    width: 16px;
    height: 16px;
    min-width: 16px;
    padding: 0;
    margin: 2px 4px 0;
    border-radius: 3px;
    flex-shrink: 0;
    accent-color: var(--navy-blue);
    cursor: pointer;
    vertical-align: middle;
}

.consent-label .req {
    color: #e53e3e;
}

.job-card.is-selected {
    border-color: var(--navy-blue);
    box-shadow: 0 0 0 2px rgba(0, 107, 94, 0.12);
}

/* Job categories nav */
.sb-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sb-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
    background: var(--white);
}

.sb-nav-item:last-child {
    border-bottom: none;
}

.sb-nav-item:hover,
.sb-nav-item.active {
    background: linear-gradient(90deg, #002EEA 0%, #3358EE 100%);
}

.sb-nav-item:hover .sni-label,
.sb-nav-item.active .sni-label {
    color: #fff;
}

.sb-nav-item:hover .sni-count,
.sb-nav-item.active .sni-count {
    background: var(--navy-dark);
    color: var(--white);
}

.sni-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(230, 240, 239, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--navy-dark);
    flex-shrink: 0;
    transition: all 0.2s;
}

.sni-icon svg {
    color: var(--navy-blue);
}

.sni-label {

    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy-blue);
    flex: 1;
    transition: color 0.2s;
}

.sni-count {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 2px 10px;

    font-size: 11px;
    font-weight: 700;
    color: var(--navy-dark);
    transition: all 0.2s;
}

/* Why join card */
.why-join-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wj-item {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 13.5px;
    color: var(--navy-blue);
    font-weight: 500;
}

.wj-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--navy-blue);
    flex-shrink: 0;
}

/* ============================================================
   SECTION — WHY JOIN LMB (below jobs list)
============================================================ */
.why-join-section {
    background: url(https://teamwebdevelopers.com/lmb/public/storage/media/01KY52B9DHGNA035HM2PC9R7E3.webp);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}

.why-join-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.why-join-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(0, 107, 94, 0.2) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.wj-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 30px;
}

.wj-inner .eyebrow {
    color: var(--white);
}

.wj-inner .eyebrow::before {
    background: var(--white);
}

.wj-inner .eyebrow {
    justify-content: center;
}

.wj-inner h2 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-top: 6px;
}

.wj-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.wj-card {
    background: rgba(230, 240, 239, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    transition: background 0.25s, transform 0.25s;
}

.wj-card:hover {
    transform: translateY(-5px);
}

.wj-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: rgba(230, 240, 239, 1);
    border: 1px solid rgba(212, 175, 136, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--navy-blue);
    margin: 0 auto 20px;
    transition: background 0.25s;
}

.wj-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.wj-card p {

    font-size: 13.5px;
    color: var(--navy-dark);
    line-height: 1.7;
}

/* ============================================================
   CTA STRIP
============================================================ */
.cta-strip {
    background: url(https://teamwebdevelopers.com/lmb/public/storage/media/01KY4H86Z94PSVW9VRZ96PZ3NN.webp);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.cta-strip .cta-inner {
    position: relative;
    z-index: 2;
}

.cta-strip h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.25;
}

.cta-strip p {
    font-size: 15px;
    color: var(--white);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}


.btn-cta-white svg {
    color: var(--navy-blue);
    rotate: -40deg;
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.2s;
    background: transparent;
}

.btn-cta-outline:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1280px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 1100px) {
    .jobs-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

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

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-stat-card {
        min-width: unset;
        padding: 10px 10px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .jobs-hero h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

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

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

    .job-card-top {
        flex-direction: column;
        gap: 14px;
    }

    .job-top-row {
        flex-direction: column;
        gap: 8px;
    }

    .filter-inner {
        gap: 10px;
        justify-content: center;
        flex-direction: column;
    }

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

    .jobs-count-badge {
        display: none;
    }

    .why-join-section {
        padding: 60px 0;
    }

    .wj-inner h2 {
        font-size: 28px;
    }

    .cta-strip h2 {
        font-size: 26px;
    }

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

@media (max-width: 480px) {
    .jobs-hero h1 {
        font-size: 28px;
    }

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

    .hero-stats {
        flex-direction: unset;
        justify-content: center;
    }

    .hero-layout_outer img{
        height: 450px;
        object-fit: cover;
        object-position: center;
    }
    .cta-strip{
        padding: 20px 20px;
    }
}