/* =========================================================
   ROOT
========================================================= */

:root {

    --primary: #0b63f6;
    --primary-dark: #0849b8;

    --dark: #101828;
    --dark-2: #1d2939;

    --text: #344054;
    --muted: #667085;

    --light: #f8fafc;
    --border: #e4e7ec;

    --white: #ffffff;

    --success: #12b76a;

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;

    --shadow-sm:
        0 2px 8px rgba(16, 24, 40, .05);

    --shadow:
        0 10px 30px rgba(16, 24, 40, .08);

    --shadow-lg:
        0 25px 60px rgba(16, 24, 40, .12);

    --container: 1240px;

}


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {

    font-family: "Inter", sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.6;

    overflow-x: hidden;

}

img {
    max-width: 100%;
}

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: auto;

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    height: 78px;

    background: rgba(255,255,255,.94);

    backdrop-filter: blur(15px);

    border-bottom: 1px solid var(--border);

    position: sticky;

    top: 0;

    z-index: 1000;

}

.nav-container {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* LOGO */

.logo {

    display: flex;

    align-items: center;

    gap: 10px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 21px;

    font-weight: 800;

    color: var(--dark);

    white-space: nowrap;

}

.logo > span:last-child > span {
    color: var(--primary);
}

.logo-icon {

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            #0b63f6,
            #5b8def
        );

    border-radius: 10px;

    box-shadow:
        0 8px 20px rgba(11,99,246,.25);

}


/* NAV */

.main-nav {

    display: flex;

    align-items: center;

    gap: 30px;

    margin-left: auto;

}

.main-nav a {

    font-size: 14px;

    font-weight: 600;

    color: #475467;

    transition: .2s;

}

.main-nav a:hover {
    color: var(--primary);
}

.mobile-employer-link {
    display: none;
}


/* NAV ACTIONS */

.nav-actions {

    display: flex;

    align-items: center;

    gap: 16px;

}

.login-link {

    font-size: 14px;

    font-weight: 600;

    color: var(--dark);

}

.btn {

    min-height: 46px;

    padding: 0 20px;

    border-radius: 10px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    font-size: 14px;

    font-weight: 700;

    border: 1px solid transparent;

    transition:
        transform .2s,
        box-shadow .2s,
        background .2s;

}

.btn:hover {

    transform: translateY(-2px);

}

.btn-primary {

    background: var(--primary);

    color: white;

    box-shadow:
        0 8px 20px rgba(11,99,246,.2);

}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-dark {

    background: var(--dark);

    color: white;

}

.btn-dark:hover {
    background: #000;
}

.btn-white {

    background: white;

    color: var(--dark);

}

.btn-outline-white {

    border-color: rgba(255,255,255,.5);

    color: white;

}

.mobile-menu {

    display: none;

    border: 0;

    background: transparent;

    font-size: 22px;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    overflow: hidden;

    padding:
        90px 0
        100px;

    background:

        radial-gradient(
            circle at 15% 20%,
            rgba(11,99,246,.12),
            transparent 30%
        ),

        radial-gradient(
            circle at 85% 10%,
            rgba(71,190,255,.12),
            transparent 30%
        ),

        #f7faff;

}

.hero-background {

    position: absolute;

    width: 650px;
    height: 650px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(11,99,246,.04),
            rgba(97,210,255,.08)
        );

    right: -250px;
    top: -300px;

}

.hero-container {

    position: relative;

    z-index: 1;

}

.hero-content {

    max-width: 900px;

    margin: auto;

    text-align: center;

}

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 14px;

    border: 1px solid #d7e6ff;

    background: white;

    border-radius: 50px;

    color: var(--primary);

    font-size: 12px;

    font-weight: 700;

    box-shadow: var(--shadow-sm);

    margin-bottom: 25px;

}

.pulse-dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--success);

    box-shadow:
        0 0 0 5px rgba(18,183,106,.1);

}

.hero h1 {

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(
        44px,
        6vw,
        72px
    );

    line-height: 1.08;

    letter-spacing: -3px;

    color: var(--dark);

    margin-bottom: 22px;

}

.hero h1 span {

    color: var(--primary);

}

.hero p {

    max-width: 650px;

    margin: auto;

    font-size: 17px;

    color: var(--muted);

}


/* =========================================================
   HERO SEARCH
========================================================= */

.hero-search {

    display: flex;
    align-items: center;
    gap: 0;
    max-width: 1100px;
    margin: 40px auto 20px;
    padding: 8px;
    background: white;
    border: 1px solid #dfe6ef;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(16,24,40,.10);
    text-align: left;

}

.search-field {

    display: flex;

    align-items: center;

    gap: 14px;

    min-width: 0;
    padding: 12px 14px;

    flex: 1;

}

.search-field > i {

    color: var(--primary);

    font-size: 19px;

}
.hero-search .search-field:nth-of-type(1) {
    flex: 1.5;
}

.hero-search .search-field:nth-of-type(2) {
    flex: 1;
}

.hero-search .search-field:nth-of-type(3) {
    flex: 1;
}

.search-field label {

    display: block;

    font-size: 11px;

    color: var(--muted);

    font-weight: 600;

    margin-bottom: 2px;

}

.search-field input,
.search-field select {

    border: 0;

    outline: 0;

    width: 100%;

    background: transparent;

    font-size: 14px;

    font-weight: 600;

    color: var(--dark);

}

.search-field select {

    appearance: none;

}

.search-divider {

    width: 1px;

    height: 42px;

    background: var(--border);

}

.search-button {

    border: 0;

    min-height: 56px;

    padding: 0 25px;

    border-radius: 11px;

    background: var(--primary);

    color: white;

    font-weight: 700;

    display: flex;

    align-items: center;

    gap: 12px;

    white-space: nowrap;

    transition: .2s;
     flex-shrink: 0;

}

.search-button:hover {

    background: var(--primary-dark);

    transform: translateY(-1px);

}


/* POPULAR */

.popular-searches {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px;

    flex-wrap: wrap;

    font-size: 12px;

}

.popular-searches > span {

    color: var(--muted);

    font-weight: 600;

}

.popular-searches button {

    border: 0;

    background: transparent;

    color: var(--primary);

    font-size: 12px;

    font-weight: 600;

}


/* HERO STATS */

.hero-stats {

    display: flex;

    justify-content: center;

    gap: 18px;

    margin-top: 60px;

}

.stat-card {

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 15px 22px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 13px;

    box-shadow: var(--shadow-sm);

}

.stat-icon {

    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    background: #eef5ff;

    color: var(--primary);

    border-radius: 10px;

}

.stat-card strong {

    display: block;

    font-size: 16px;

    color: var(--dark);

}

.stat-card span {

    display: block;

    font-size: 11px;

    color: var(--muted);

}


/* =========================================================
   QUICK CATEGORIES
========================================================= */

.quick-categories {

    border-bottom: 1px solid var(--border);

    background: white;

}

.quick-grid {

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

}

.quick-item {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 22px 10px;

    color: var(--text);

    font-size: 12px;

    font-weight: 700;

    border-right: 1px solid var(--border);

    transition: .2s;

}

.quick-item:hover {

    background: #f8fbff;

    color: var(--primary);

}

.quick-item i {

    color: var(--primary);

}


/* =========================================================
   SECTIONS
========================================================= */

.section {

    padding: 100px 0;

}

.section-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;

}

.section-heading.centered {

    display: block;

    text-align: center;

}

.section-label {

    display: block;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 10px;

}

.section-heading h2,
.why-content h2,
.employer-content h2,
.newsletter h2 {

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(
        30px,
        4vw,
        44px
    );

    line-height: 1.15;

    letter-spacing: -1.5px;

    color: var(--dark);

    margin-bottom: 12px;

}

.section-heading p {

    color: var(--muted);

    font-size: 14px;

}

.text-link {

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

}


/* =========================================================
   CATEGORIES
========================================================= */

.categories-section {

    background: white;

}

.category-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;

}

.category-card {

    position: relative;

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 22px;

    border: 1px solid var(--border);

    border-radius: 16px;

    transition:
        transform .2s,
        box-shadow .2s,
        border-color .2s;

}

.category-card:hover {

    transform: translateY(-4px);

    border-color: #c8dcff;

    box-shadow: var(--shadow);

}

.category-icon {

    width: 50px;
    height: 50px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 13px;

    font-size: 19px;

}

.blue {
    background: #eef4ff;
    color: #386cf6;
}

.orange {
    background: #fff4e8;
    color: #f79009;
}

.purple {
    background: #f5f0ff;
    color: #7f56d9;
}

.green {
    background: #eafaf3;
    color: #039855;
}

.pink {
    background: #fff0f6;
    color: #db2777;
}

.yellow {
    background: #fff9e6;
    color: #d49b00;
}

.category-card h3 {

    font-size: 15px;

    color: var(--dark);

}

.category-card p {

    font-size: 12px;

    color: var(--muted);

}

.card-arrow {

    margin-left: auto;

    color: #98a2b3;

    font-size: 12px;

}


/* =========================================================
   JOBS
========================================================= */

.jobs-section {

    background: #f8fafc;

}

.jobs-layout {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 20px;

}

.featured-job-card {

    position: relative;

    padding: 30px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f5f9ff
        );

    border: 1px solid #dce7f7;

    border-radius: 20px;

    box-shadow: var(--shadow);

}

.featured-badge {

    display: inline-flex;

    padding: 6px 10px;

    background: #eaf2ff;

    color: var(--primary);

    border-radius: 50px;

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    margin-bottom: 22px;

}

.job-company-logo,
.job-logo {

    display: grid;
    place-items: center;

    background: var(--dark);

    color: white;

    font-weight: 800;

}

.job-company-logo {

    width: 58px;
    height: 58px;

    border-radius: 15px;

    margin-bottom: 25px;

}

.job-top,
.job-title-row {

    display: flex;

    justify-content: space-between;

    gap: 20px;

}

.job-top h3 {

    font-size: 20px;

    color: var(--dark);

    margin-bottom: 5px;

}

.company-name,
.job-title-row p {

    color: var(--muted);

    font-size: 13px;

}

.save-job {

    width: 38px;
    height: 38px;

    flex-shrink: 0;

    border: 1px solid var(--border);

    border-radius: 9px;

    background: white;

    color: #667085;

    transition: .2s;

}

.save-job:hover {

    color: #e11d48;

    border-color: #fbcfe8;

    background: #fff1f6;

}

.job-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin: 22px 0;

}

.job-meta span {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: var(--muted);

    font-size: 11px;

}

.job-meta i {

    color: var(--primary);

}

.job-tags {

    display: flex;

    gap: 7px;

    flex-wrap: wrap;

}

.job-tags span {

    padding: 6px 9px;

    background: #f2f4f7;

    border-radius: 6px;

    font-size: 10px;

    font-weight: 600;

    color: #475467;

}

.job-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 28px;

    padding-top: 20px;

    border-top: 1px solid var(--border);

}

.salary strong,
.small-salary {

    color: var(--dark);

    font-size: 16px;

}

.salary span {

    color: var(--muted);

    font-size: 11px;

}

.posted,
.job-bottom > span {

    font-size: 11px;

    color: var(--muted);

}


/* JOB LIST */

.job-list {

    display: flex;

    flex-direction: column;

    gap: 12px;

}

.job-card {

    display: flex;

    gap: 16px;

    padding: 21px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 15px;

    transition: .2s;

}

.job-card:hover {

    border-color: #cbdcff;

    box-shadow: var(--shadow-sm);

}

.job-logo {

    width: 48px;
    height: 48px;

    border-radius: 11px;

    flex-shrink: 0;

}

.purple-logo {
    background: #7f56d9;
}

.orange-logo {
    background: #f79009;
}

.green-logo {
    background: #039855;
}

.job-info {
    flex: 1;
}

.job-title-row h3 {

    font-size: 14px;

    color: var(--dark);

    margin-bottom: 3px;

}

.job-card .job-meta {

    margin: 13px 0;

}

.job-card .job-bottom {

    margin-top: 0;

    padding-top: 11px;

}

.job-card .job-bottom span {

    font-size: 10px;

}


/* =========================================================
   WHY SECTION
========================================================= */

.why-section {

    background: white;

}

.why-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 100px;

}

.why-content > p {

    max-width: 560px;

    color: var(--muted);

    font-size: 15px;

}

.feature-list {

    margin-top: 35px;

    display: flex;

    flex-direction: column;

    gap: 25px;

}

.feature-item {

    display: flex;

    gap: 15px;

}

.feature-icon {

    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    background: #eef5ff;

    color: var(--primary);

    border-radius: 11px;

}

.feature-item h3 {

    font-size: 14px;

    color: var(--dark);

    margin-bottom: 4px;

}

.feature-item p {

    font-size: 12px;

    color: var(--muted);

}


/* VISUAL */

.why-visual {

    position: relative;

    min-height: 440px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:

        radial-gradient(
            circle,
            #eaf2ff,
            transparent 65%
        );

}

.main-visual {

    width: 400px;

    padding: 25px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 18px;

    box-shadow: var(--shadow-lg);

}

.visual-header {

    display: flex;

    justify-content: space-between;

    font-size: 11px;

    color: var(--muted);

    padding-bottom: 18px;

    border-bottom: 1px solid var(--border);

}

.success {

    color: var(--success);

    font-weight: 700;

}

.visual-job {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 25px 0;

}

.visual-logo {

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    background: var(--dark);

    color: white;

    border-radius: 11px;

    font-weight: 800;

}

.visual-job strong,
.visual-job span {

    display: block;

}

.visual-job strong {

    color: var(--dark);

    font-size: 14px;

}

.visual-job span {

    color: var(--muted);

    font-size: 11px;

    margin-top: 3px;

}

.application-progress > div:first-child {

    display: flex;

    justify-content: space-between;

    font-size: 11px;

    color: var(--muted);

}

.application-progress strong {

    color: var(--primary);

}

.progress-bar {

    height: 8px;

    margin-top: 10px;

    background: #eef2f6;

    border-radius: 50px;

    overflow: hidden;

}

.progress-bar span {

    display: block;

    width: 75%;

    height: 100%;

    background: var(--primary);

}

.floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 13px;

    box-shadow: var(--shadow);

}

.applicants-card {

    top: 35px;

    right: 0;

}

.match-card {

    bottom: 45px;

    left: 0;

}

.floating-icon {

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    background: #eef5ff;

    color: var(--primary);

    border-radius: 9px;

}

.floating-card strong,
.floating-card span {

    display: block;

}

.floating-card strong {

    font-size: 13px;

    color: var(--dark);

}

.floating-card span {

    font-size: 9px;

    color: var(--muted);

}

.match-circle {

    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #eafaf3;

    color: var(--success);

    font-size: 11px;

    font-weight: 800;

}


/* =========================================================
   LOCATIONS
========================================================= */

.locations-section {

    background: #f8fafc;

}

.location-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 15px;

}

.location-card {

    position: relative;

    min-height: 180px;

    padding: 24px;

    display: flex;

    align-items: flex-end;

    background:
        linear-gradient(
            145deg,
            #0b63f6,
            #0b4ec4
        );

    color: white;

    border-radius: 17px;

    overflow: hidden;

    transition: .25s;

}

.location-card:hover {

    transform: translateY(-4px);

    box-shadow: var(--shadow-lg);

}

.location-card.large {

    grid-row: span 2;

    min-height: 375px;

}

.location-card:nth-child(2) {
    background:
        linear-gradient(
            145deg,
            #7f56d9,
            #5e35b1
        );
}

.location-card:nth-child(3) {
    background:
        linear-gradient(
            145deg,
            #039855,
            #027a48
        );
}

.location-card:nth-child(4) {
    background:
        linear-gradient(
            145deg,
            #f79009,
            #dc6803
        );
}

.location-card:nth-child(5) {
    background:
        linear-gradient(
            145deg,
            #344054,
            #101828
        );
}

.location-content {

    position: relative;

    z-index: 2;

}

.location-content span {

    font-size: 10px;

    opacity: .75;

}

.location-content h3 {

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 25px;

    margin: 2px 0;

}

.location-content p {

    font-size: 11px;

    opacity: .8;

}

.location-card > i {

    position: absolute;

    right: 22px;

    top: 22px;

    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255,255,255,.25);

    border-radius: 50%;

    font-size: 11px;

}


/* =========================================================
   COMPANIES
========================================================= */

.company-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

}

.company-card {

    padding: 27px 22px;

    text-align: center;

    border: 1px solid var(--border);

    border-radius: 16px;

    transition: .2s;

}

.company-card:hover {

    transform: translateY(-4px);

    box-shadow: var(--shadow);

}

.company-logo {

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin: 0 auto 17px;

    background: var(--dark);

    color: white;

    border-radius: 14px;

    font-weight: 800;

}

.company-orange {
    background: #f79009;
}

.company-green {
    background: #039855;
}

.company-purple {
    background: #7f56d9;
}

.company-card h3 {

    color: var(--dark);

    font-size: 14px;

    margin-bottom: 5px;

}

.company-card p {

    color: var(--muted);

    font-size: 11px;

    margin-bottom: 18px;

}

.company-card > span {

    color: var(--primary);

    font-size: 11px;

    font-weight: 700;

}


/* =========================================================
   CANDIDATE CTA
========================================================= */

.candidate-cta {

    padding: 80px 0;

    background:
        linear-gradient(
            120deg,
            #0b63f6,
            #0849b8
        );

    color: white;

    overflow: hidden;

}

.cta-container {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

}

.cta-label {

    display: block;

    font-size: 10px;

    letter-spacing: 1.5px;

    font-weight: 800;

    opacity: .75;

    margin-bottom: 10px;

}

.cta-container h2 {

    max-width: 600px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(
        30px,
        4vw,
        46px
    );

    line-height: 1.15;

    letter-spacing: -1.5px;

    margin-bottom: 15px;

}

.cta-container p {

    max-width: 550px;

    font-size: 14px;

    opacity: .8;

}

.cta-buttons {

    display: flex;

    gap: 12px;

    margin-top: 27px;

}

.cta-decoration {

    position: relative;

    width: 300px;
    height: 260px;

}

.cta-decoration > i {

    position: absolute;

    right: 60px;
    top: 70px;

    font-size: 90px;

    color: rgba(255,255,255,.15);

}

.circle {

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.15);

}

.circle-one {

    width: 240px;
    height: 240px;

    right: 0;

}

.circle-two {

    width: 170px;
    height: 170px;

    right: 35px;
    top: 35px;

}


/* =========================================================
   EMPLOYER
========================================================= */

.employer-section {

    padding: 85px 0;

    background: #f8fafc;

}

.employer-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

}

.employer-content {

    max-width: 600px;

}

.employer-content p {

    max-width: 550px;

    color: var(--muted);

    font-size: 14px;

    margin-bottom: 25px;

}

.employer-stats {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 35px;

}

.employer-stats strong,
.employer-stats span {

    display: block;

}

.employer-stats strong {

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 28px;

    color: var(--dark);

}

.employer-stats span {

    font-size: 10px;

    color: var(--muted);

}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter {

    padding: 70px 0;

    border-top: 1px solid var(--border);

}

.newsletter-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

}

.newsletter h2 {

    font-size: 30px;

}

.newsletter-form {

    display: flex;

    width: 480px;

    padding: 5px;

    border: 1px solid var(--border);

    border-radius: 12px;

}

.newsletter-form input {

    flex: 1;

    min-width: 0;

    border: 0;

    outline: 0;

    padding: 0 15px;

    font-size: 13px;

}

.newsletter-form button {

    border: 0;

    padding: 12px 18px;

    border-radius: 8px;

    background: var(--dark);

    color: white;

    font-size: 12px;

    font-weight: 700;

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    padding-top: 70px;

    background: #101828;

    color: white;

}

.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 60px;

}

.footer-logo {

    color: white;

}

.footer-brand > p {

    max-width: 300px;

    margin-top: 18px;

    color: #98a2b3;

    font-size: 12px;

}

.social-links {

    display: flex;

    gap: 8px;

    margin-top: 22px;

}

.social-links a {

    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border: 1px solid #344054;

    border-radius: 8px;

    color: #98a2b3;

    font-size: 12px;

}

.social-links a:hover {

    color: white;

    border-color: #667085;

}

.footer-column {

    display: flex;

    flex-direction: column;

    gap: 12px;

}

.footer-column h3 {

    font-size: 12px;

    margin-bottom: 7px;

}

.footer-column a {

    color: #98a2b3;

    font-size: 11px;

}

.footer-column a:hover {

    color: white;

}

.footer-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 22px 0;

    border-top: 1px solid #1d2939;

    color: #667085;

    font-size: 10px;

}

.footer-bottom div {

    display: flex;

    gap: 20px;

}


/* =========================================================
   TOAST
========================================================= */

.toast {

    position: fixed;

    right: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 17px;

    background: var(--dark);

    color: white;

    border-radius: 10px;

    font-size: 12px;

    box-shadow: var(--shadow-lg);

    transform:
        translateY(120px);

    opacity: 0;

    transition: .3s;

    z-index: 9999;

}

.toast.show {

    transform:
        translateY(0);

    opacity: 1;

}

.toast i {

    color: #32d583;

}


/* =========================================================
   BACK TOP
========================================================= */

.back-top {

    position: fixed;

    right: 22px;
    bottom: 22px;

    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border: 0;

    border-radius: 50%;

    background: var(--primary);

    color: white;

    box-shadow: var(--shadow);

    opacity: 0;

    visibility: hidden;

    transition: .3s;

    z-index: 500;

}

.back-top.show {

    opacity: 1;

    visibility: visible;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px) {

    .main-nav {
        gap: 18px;
    }

    .employer-btn {
        display: none;
    }

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

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

    .why-grid {
        gap: 50px;
    }

}


@media(max-width:850px) {

    .main-nav {

        position: absolute;

        top: 78px;

        left: 20px;
        right: 20px;

        display: none;

        flex-direction: column;

        align-items: flex-start;

        padding: 20px;

        background: white;

        border: 1px solid var(--border);

        border-radius: 14px;

        box-shadow: var(--shadow);

    }

    .main-nav.active {
        display: flex;
    }

    .mobile-employer-link {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .nav-register {
        display: none;
    }

    .hero-search {
        flex-direction: column;

        align-items: stretch;

        padding: 10px;
    }
    .hero-search .search-field {
        width: 100%;
        flex: none !important;
    }

    .search-divider {
        width: 100%;
        height: 1px;
    }

    .search-button {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {

        flex-wrap: wrap;

    }

    .quick-grid {

        grid-template-columns:
            repeat(3,1fr);

    }

    .why-grid {

        grid-template-columns: 1fr;

    }

    .why-visual {

        margin-top: 20px;

    }

    .location-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

    .location-card.large {

        grid-row: auto;

        min-height: 220px;

    }

    .company-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

    .employer-container {

        flex-direction: column;

        align-items: flex-start;

    }

    .newsletter-container {

        flex-direction: column;

        align-items: flex-start;

    }

    .newsletter-form {

        width: 100%;

    }

    .footer-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

}


@media(max-width:600px) {

    .container {

        width:
            calc(100% - 28px);

    }

    .site-header {

        height: 70px;

    }

    .main-nav {

        top: 70px;

    }

    .login-link {

        display: none;

    }

    .logo {

        font-size: 18px;

    }

    .logo-icon {

        width: 34px;
        height: 34px;

    }

    .hero {

        padding:
            60px 0
            65px;

    }

    .hero h1 {

        font-size: 42px;

        letter-spacing: -2px;

    }

    .hero p {

        font-size: 14px;

    }

    .hero-stats {

        display: grid;

        grid-template-columns:
            1fr;

    }

    .stat-card {

        justify-content: flex-start;

    }

    .quick-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

    .quick-item {

        border-bottom: 1px solid var(--border);

    }

    .section {

        padding: 70px 0;

    }

    .section-heading {

        display: block;

    }

    .section-heading .text-link {

        margin-top: 18px;

    }

    .category-grid {

        grid-template-columns: 1fr;

    }

    .featured-job-card {

        padding: 22px;

    }

    .job-card {

        padding: 17px;

    }

    .job-meta {

        flex-direction: column;

        align-items: flex-start;

    }

    .location-grid {

        grid-template-columns: 1fr;

    }

    .location-card,
    .location-card.large {

        min-height: 180px;

    }

    .company-grid {

        grid-template-columns:
            1fr 1fr;

    }

    .company-card {

        padding: 20px 12px;

    }

    .why-visual {

        min-height: 360px;

    }

    .main-visual {

        width:
            calc(100% - 20px);

    }

    .applicants-card {

        right: 0;

        top: 5px;

    }

    .match-card {

        left: 0;

        bottom: 15px;

    }

    .cta-container {

        display: block;

    }

    .cta-decoration {

        display: none;

    }

    .cta-buttons {

        flex-direction: column;

        align-items: stretch;

    }

    .employer-stats {

        width: 100%;

        gap: 15px;

    }

    .employer-stats strong {

        font-size: 21px;

    }

    .newsletter-form {

        flex-direction: column;

        border: 0;

        gap: 10px;

    }

    .newsletter-form input {

        height: 48px;

        border: 1px solid var(--border);

        border-radius: 9px;

    }

    .newsletter-form button {

        height: 48px;

    }

    .footer-grid {

        grid-template-columns:
            1fr 1fr;

        gap: 35px 20px;

    }

    .footer-brand {

        grid-column:
            1 / -1;

    }

    .footer-bottom {

        flex-direction: column;

        gap: 15px;

        align-items: flex-start;

    }

}