/* =========================================
   PROBEX DESIGN SYSTEM
========================================= */

:root {
    --probex-ink: #16212E;
    --probex-paper: #F6F5F1;
    --probex-slate: #5B6472;
    --probex-brass: #A9823E;
    --probex-line: #D9D7CE;
    --probex-card: #FFFFFF;
    --probex-blue: #164A70;
}


/* =========================================
   GLOBAL
========================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: var(--probex-paper);
    color: var(--probex-ink);
}

a {
    text-decoration: none;
}


/* =========================================
   HEADER
========================================= */

.probex-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.probex-header .navbar {
    min-height: 90px;
    padding: 20px 30px;
}


/* Logo */

.probex-header .navbar-brand {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #ffffff;
}


/* Navigation */

.probex-header .nav-link {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    padding: 10px 16px !important;
    transition: opacity 0.3s ease;
}

.probex-header .nav-link:hover {
    color: #ffffff;
    opacity: 0.7;
}


/* Navigation CTA */

.probex-nav-btn {
    background: #ffffff;
    color: var(--probex-ink);
    padding: 11px 22px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.probex-nav-btn:hover {
    background: var(--probex-brass);
    color: #ffffff;
}


/* =========================================
   HERO
========================================= */

.probex-hero {
    position: relative;
    min-height: 760px;

    display: flex;
    align-items: center;

    background-image: url("../images/hero.jfif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #ffffff;
}


/* Hero overlay */

.probex-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(22, 33, 46, 0.92) 0%,
            rgba(22, 33, 46, 0.72) 40%,
            rgba(22, 33, 46, 0.25) 75%,
            rgba(22, 33, 46, 0.10) 100%
        );
}


/* Make content sit above overlay */

.probex-hero .container {
    position: relative;
    z-index: 2;
}


/* =========================================
   HERO TYPOGRAPHY
========================================= */

.probex-eyebrow {
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: var(--probex-brass);

    margin-bottom: 18px;
}


.probex-hero-title {
    font-family: "Fraunces", serif;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.01em;

    max-width: 700px;
    margin: 0 0 24px;
}


.probex-hero-text {
    font-family: "Inter", sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.6;

    max-width: 600px;

    margin: 0 0 32px;

    color: rgba(255, 255, 255, 0.88);
}


/* =========================================
   HERO BUTTONS
========================================= */
/* =========================================
   HERO BUTTONS
========================================= */

.probex-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}


/* Primary CTA */

.probex-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    background-color: #A9823E !important;
    color: #FFFFFF !important;

    border: 1px solid #A9823E !important;

    padding: 15px 28px;

    border-radius: 4px;

    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;

    text-decoration: none;

    opacity: 1 !important;

    transition: all 0.3s ease;
}

.probex-btn-primary:hover {
    background-color: #FFFFFF !important;
    color: #16212E !important;

    border-color: #FFFFFF !important;

    transform: translateY(-2px);
}


/* Secondary CTA */

.probex-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    background-color: rgba(255, 255, 255, 0.08) !important;
    color: #FFFFFF !important;

    border: 1px solid rgba(255, 255, 255, 0.8) !important;

    padding: 15px 28px;

    border-radius: 4px;

    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;

    text-decoration: none;

    opacity: 1 !important;

    transition: all 0.3s ease;
}

.probex-btn-secondary:hover {
    background-color: #FFFFFF !important;
    color: #16212E !important;

    border-color: #FFFFFF !important;

    transform: translateY(-2px);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 991.98px) {

    .probex-header .navbar {
        padding: 18px 20px;
    }

    .probex-header .navbar-collapse {
        margin-top: 15px;
        padding: 20px;

        background: rgba(22, 33, 46, 0.97);

        border-radius: 4px;
    }

    .probex-header .nav-link {
        padding: 12px 0 !important;
    }

    .probex-nav-btn {
        display: inline-block;
        margin-top: 10px;
    }

    .probex-hero {
        min-height: 720px;
        background-position: center;
    }

    .probex-hero-title {
        font-size: 44px;
    }
}


@media (max-width: 767.98px) {

    .probex-header .navbar {
        min-height: 75px;
    }

    .probex-hero {
        min-height: 700px;
        align-items: flex-end;
        padding-bottom: 70px;
    }

    .probex-hero-title {
        font-size: 38px;
        line-height: 1.08;
    }

    .probex-hero-text {
        font-size: 17px;
    }

    .probex-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .probex-btn-primary,
    .probex-btn-secondary {
        width: 100%;
        text-align: center;
    }
}

.probex-header .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.probex-header .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.probex-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    background: var(--probex-brass);
    color: #ffffff;

    border: 1px solid var(--probex-brass);

    padding: 16px 30px;

    border-radius: 4px;

    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.probex-btn-primary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--probex-ink);

    transform: translateY(-2px);
}
.probex-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: transparent;
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.7);

    padding: 16px 30px;

    border-radius: 4px;

    font-size: 15px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.probex-btn-secondary:hover {
    background: #ffffff;
    color: var(--probex-ink);
}


/* =========================================
   ABOUT / INTRODUCTION
========================================= */

.probex-intro {
    background-color: var(--probex-paper);

    padding-top: 120px;
    padding-bottom: 120px;
}


.probex-intro .probex-eyebrow {
    margin-top: 10px;
}


/* Main heading */

.probex-intro-title {
    font-family: "Fraunces", serif;

    font-size: 48px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.01em;

    color: var(--probex-ink);

    max-width: 760px;

    margin: 0 0 28px;
}


/* Supporting text */

.probex-intro-lead {
    font-family: "Inter", sans-serif;

    font-size: 19px;
    font-weight: 400;
    line-height: 1.65;

    color: var(--probex-slate);

    max-width: 650px;

    margin: 0 0 32px;
}


/* Text link */

.probex-text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--probex-ink);

    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;

    border-bottom: 1px solid var(--probex-ink);

    padding-bottom: 5px;

    transition: all 0.3s ease;
}


.probex-text-link:hover {
    color: var(--probex-brass);

    border-color: var(--probex-brass);

    gap: 16px;
}


/* =========================================
   ABOUT — MOBILE
========================================= */

@media (max-width: 991.98px) {

    .probex-intro {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .probex-intro-title {
        font-size: 42px;
    }

}


@media (max-width: 767.98px) {

    .probex-intro {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .probex-intro .probex-eyebrow {
        margin-bottom: 20px;
    }

    .probex-intro-title {
        font-size: 36px;
    }

    .probex-intro-lead {
        font-size: 17px;
    }

}

/* =========================================
   LEADERSHIP TEAM
========================================= */

.probex-leadership {
    background-color: #ffffff;

    padding-top: 120px;
    padding-bottom: 120px;
}

.probex-leadership-header {
    margin-bottom: 60px;
}




/* Leader */

.probex-leader {
    height: 100%;

    background-color: var(--probex-paper);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.probex-leader:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 40px rgba(22, 33, 46, 0.08);
}


/* Image */

.probex-leader-image {
    width: 100%;
    aspect-ratio: 4 / 4.5;

    overflow: hidden;
}

.probex-leader-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}

.probex-leader:hover .probex-leader-image img {
    transform: scale(1.03);
}


/* Information */

.probex-leader-info {
    padding: 28px 28px 32px;
}


/* Number */

.probex-leader-number {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background-color: #164A70;
    color: #ffffff;

    font-family: "IBM Plex Mono", monospace;

    font-size: 11px;
    font-weight: 500;

    border-radius: 2px;
}


/* Name */

.probex-leader h3 {
    font-family: "Fraunces", serif;

    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;

    color: var(--probex-ink);

    margin: 0 0 7px;
}


/* Role */

.probex-leader-role {
    font-family: "IBM Plex Mono", monospace;

    font-size: 12px;
    font-weight: 500;

    letter-spacing: 0.05em;
    text-transform: uppercase;

    color: var(--probex-brass);

    margin-bottom: 18px;
}


/* Description */

.probex-leader p {
    font-family: "Inter", sans-serif;

    font-size: 15px;
    line-height: 1.65;

    color: var(--probex-slate);

    margin: 0 0 24px;
}


/* Mobile */

@media (max-width: 991.98px) {

    .probex-leadership {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .probex-leadership-header {
        margin-bottom: 45px;
    }

}


@media (max-width: 767.98px) {

    .probex-leadership {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .probex-leadership-header {
        margin-bottom: 35px;
    }

    .probex-leader-info {
        padding: 24px;
    }

}

/* =========================================
   GLOBAL ALLIANCES
========================================= */

.probex-alliances {
    position: relative;

    background-color: var(--probex-ink);

    color: #ffffff;

    padding-top: 120px;
    padding-bottom: 120px;

    overflow: hidden;
}


/* Eyebrow */

.probex-alliances .probex-eyebrow {
    color: #D5A85A;
}


/* Heading */

.probex-alliances-title {
    font-family: "Fraunces", serif;

    font-size: 48px;
    font-weight: 600;
    line-height: 1.08;

    color: #ffffff;

    max-width: 600px;

    margin: 0 0 28px;
}


/* Description */

.probex-alliances-text {
    font-family: "Inter", sans-serif;

    font-size: 17px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.78);

    max-width: 550px;

    margin: 0 0 30px;
}


/* Link */

.probex-alliances .probex-text-link {
    color: #ffffff;

    border-color: rgba(255, 255, 255, 0.7);
}

.probex-alliances .probex-text-link:hover {
    color: #D5A85A;

    border-color: #D5A85A;
}


/* =========================================
   ECOSYSTEM VISUAL
========================================= */

.probex-ecosystem {
    position: relative;

    width: 100%;
    max-width: 500px;

    aspect-ratio: 1 / 1;

    margin: 0 auto;
}


/* Center */

.probex-ecosystem-center {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 130px;
    height: 130px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: #164A70;

    color: #ffffff;

    font-family: "IBM Plex Mono", monospace;

    font-size: 14px;
    font-weight: 500;

    letter-spacing: 0.08em;

    z-index: 3;
}


/* Nodes */

.probex-ecosystem-node {
    position: absolute;

    width: 105px;
    height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.4);

    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.04);

    color: #ffffff;

    font-family: "Inter", sans-serif;

    font-size: 13px;

    z-index: 2;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.probex-ecosystem-node:hover {
    background-color: #164A70;

    border-color: #164A70;

    transform: scale(1.05);
}


/* Positions */

.node-1 {
    top: 5%;
    left: 50%;

    transform: translateX(-50%);
}

.node-2 {
    right: 3%;
    top: 50%;

    transform: translateY(-50%);
}

.node-3 {
    bottom: 5%;
    left: 50%;

    transform: translateX(-50%);
}

.node-4 {
    left: 3%;
    top: 50%;

    transform: translateY(-50%);
}


/* Lines */

.probex-ecosystem-line {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 42%;
    height: 1px;

    background-color: rgba(255, 255, 255, 0.25);

    transform-origin: left center;

    z-index: 1;
}

.line-1 {
    transform: rotate(-90deg);
}

.line-2 {
    transform: rotate(0deg);
}

.line-3 {
    transform: rotate(90deg);
}

.line-4 {
    transform: rotate(180deg);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991.98px) {

    .probex-alliances {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .probex-alliances-title {
        font-size: 42px;
    }

    .probex-ecosystem {
        margin-top: 60px;
    }

}


@media (max-width: 767.98px) {

    .probex-alliances {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .probex-alliances-title {
        font-size: 36px;
    }

    .probex-alliances-text {
        font-size: 16px;
    }

    .probex-ecosystem {
        max-width: 360px;
        margin-top: 50px;
    }

    .probex-ecosystem-center {
        width: 100px;
        height: 100px;
    }

    .probex-ecosystem-node {
        width: 82px;
        height: 82px;

        font-size: 11px;
    }

}
/* =========================================
   INSIGHTS
========================================= */

.probex-insights {
    background-color: var(--probex-paper);

    padding-top: 120px;
    padding-bottom: 120px;
}

.probex-insights-header {
    margin-bottom: 60px;
}


/* Featured */

.probex-featured-insight {
    background-color: #ffffff;

    margin-bottom: 60px;
}

.probex-insight-image {
    height: 100%;
    min-height: 420px;

    overflow: hidden;
}

.probex-insight-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}

.probex-featured-insight:hover
.probex-insight-image img {
    transform: scale(1.03);
}


/* Featured content */

.probex-insight-content {
    padding: 50px;
}

.probex-insight-label {
    font-family: "IBM Plex Mono", monospace;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: var(--probex-brass);

    margin-bottom: 18px;
}

.probex-insight-content h3 {
    font-family: "Fraunces", serif;

    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;

    color: var(--probex-ink);

    margin: 0 0 20px;
}

.probex-insight-content p {
    font-family: "Inter", sans-serif;

    font-size: 16px;
    line-height: 1.7;

    color: var(--probex-slate);

    margin-bottom: 28px;
}


/* Secondary cards */

.probex-insight-grid {
    border-top: 1px solid var(--probex-line);
}

.probex-insight-card {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding: 40px 35px 40px 0;

    min-height: 230px;

    border-bottom: 1px solid var(--probex-line);
}

.probex-insight-card + .col-md-6
.probex-insight-card {
    padding-left: 35px;

    border-left: 1px solid var(--probex-line);
}

.probex-insight-number {
    font-family: "IBM Plex Mono", monospace;

    font-size: 12px;

    color: #164A70;
}

.probex-insight-card h3 {
    font-family: "Fraunces", serif;

    font-size: 25px;
    font-weight: 600;
    line-height: 1.25;

    color: var(--probex-ink);

    max-width: 400px;

    margin: 0 0 25px;
}


/* Mobile */

@media (max-width: 991.98px) {

    .probex-insights {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .probex-insight-content {
        padding: 35px;
    }

}


@media (max-width: 767.98px) {

    .probex-insights {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .probex-insights-header {
        margin-bottom: 40px;
    }

    .probex-insight-image {
        min-height: 280px;
    }

    .probex-insight-content {
        padding: 30px 0;
    }

    .probex-insight-content h3 {
        font-size: 28px;
    }

    .probex-insight-card {
        padding: 30px 0;

        min-height: auto;
    }

    .probex-insight-card + .col-md-6
    .probex-insight-card {
        padding-left: 0;

        border-left: 0;
    }

}
/* =========================================
   CONTACT
========================================= */

.probex-contact {
    background-color: #164A70;

    color: #ffffff;

    padding-top: 120px;
    padding-bottom: 120px;
}


/* Eyebrow */

.probex-contact .probex-eyebrow {
    color: #D5A85A;

    margin-bottom: 20px;
}


/* Heading */

.probex-contact-title {
    font-family: "Fraunces", serif;

    font-size: 58px;
    font-weight: 600;
    line-height: 1.05;

    color: #ffffff;

    max-width: 750px;

    margin: 0 0 28px;
}


/* Description */

.probex-contact-text {
    font-family: "Inter", sans-serif;

    font-size: 18px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.82);

    max-width: 650px;

    margin-bottom: 35px;
}


/* Actions */

.probex-contact-actions {
    display: flex;
    align-items: center;

    gap: 24px;

    flex-wrap: wrap;
}


/* Main CTA */

.probex-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 16px 28px;

    background-color: #A9823E;

    border: 1px solid #A9823E;

    color: #ffffff;

    font-family: "Inter", sans-serif;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    border-radius: 4px;

    transition: all 0.3s ease;
}

.probex-contact-btn:hover {
    background-color: #ffffff;

    border-color: #ffffff;

    color: #16212E;

    transform: translateY(-2px);
}


/* Email link */

.probex-contact-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: #ffffff;

    font-family: "Inter", sans-serif;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    border-bottom: 1px solid rgba(255,255,255,0.6);

    padding-bottom: 5px;
}

.probex-contact-link:hover {
    color: #D5A85A;

    border-color: #D5A85A;
}


/* Contact details */

.probex-contact-details {
    margin-top: 35px;

    padding-left: 40px;

    border-left: 1px solid rgba(255,255,255,0.25);
}


.probex-contact-detail {
    margin-bottom: 30px;
}


.probex-contact-label {
    display: block;

    font-family: "IBM Plex Mono", monospace;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    color: #D5A85A;

    margin-bottom: 8px;
}


.probex-contact-detail a,
.probex-contact-detail span:not(.probex-contact-label) {
    font-family: "Inter", sans-serif;

    font-size: 16px;

    color: rgba(255,255,255,0.9);

    text-decoration: none;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991.98px) {

    .probex-contact {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .probex-contact-title {
        font-size: 48px;
    }

    .probex-contact-details {
        margin-top: 60px;

        padding-left: 0;

        border-left: 0;

        border-top: 1px solid rgba(255,255,255,0.25);

        padding-top: 35px;
    }

}


@media (max-width: 767.98px) {

    .probex-contact {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .probex-contact-title {
        font-size: 40px;
    }

    .probex-contact-text {
        font-size: 16px;
    }

    .probex-contact-btn {
        width: 100%;
    }

}
/* =========================================
   FOOTER
========================================= */

.probex-footer {
    background-color: #101A24;

    color: #ffffff;

    padding-top: 80px;
    padding-bottom: 30px;
}


/* Footer top */

.probex-footer-top {
    padding-bottom: 70px;
}


/* Logo */

.probex-footer-logo {
    display: inline-block;

    font-family: "Inter", sans-serif;

    font-size: 22px;
    font-weight: 600;

    letter-spacing: 0.08em;

    color: #ffffff;

    text-decoration: none;

    margin-bottom: 25px;
}


/* Tagline */

.probex-footer-tagline {
    font-family: "Fraunces", serif;

    font-size: 28px;
    line-height: 1.25;

    color: rgba(255,255,255,0.85);

    margin: 0;
}


/* CTA */

.probex-footer-cta {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    padding-left: 40px;

    border-left: 1px solid rgba(255,255,255,0.2);
}


.probex-footer-label {
    font-family: "IBM Plex Mono", monospace;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 0.08em;

    color: #D5A85A;

    margin-bottom: 15px;
}


.probex-footer-cta a {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    font-family: "Fraunces", serif;

    font-size: 30px;

    color: #ffffff;

    text-decoration: none;

    transition: gap 0.3s ease,
                color 0.3s ease;
}


.probex-footer-cta a:hover {
    gap: 18px;

    color: #D5A85A;
}


/* Navigation */

.probex-footer-navigation {
    display: flex;

    align-items: center;

    gap: 35px;

    padding: 25px 0;

    border-top: 1px solid rgba(255,255,255,0.15);

    border-bottom: 1px solid rgba(255,255,255,0.15);
}


.probex-footer-navigation a {
    font-family: "Inter", sans-serif;

    font-size: 14px;
    font-weight: 500;

    color: rgba(255,255,255,0.75);

    text-decoration: none;

    transition: color 0.3s ease;
}


.probex-footer-navigation a:hover {
    color: #D5A85A;
}


/* Bottom */

.probex-footer-bottom {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top: 25px;

    font-family: "IBM Plex Mono", monospace;

    font-size: 10px;

    color: rgba(255,255,255,0.5);
}


.probex-footer-legal {
    display: flex;

    gap: 25px;
}


.probex-footer-legal a {
    color: rgba(255,255,255,0.5);

    text-decoration: none;
}

.probex-footer-legal a:hover {
    color: #ffffff;
}


/* =========================================
   FOOTER — MOBILE
========================================= */

@media (max-width: 767.98px) {

    .probex-footer {
        padding-top: 60px;
    }

    .probex-footer-top {
        padding-bottom: 45px;
    }

    .probex-footer-tagline {
        font-size: 24px;
    }

    .probex-footer-cta {
        margin-top: 45px;

        padding-left: 0;

        padding-top: 30px;

        border-left: 0;

        border-top: 1px solid rgba(255,255,255,0.2);
    }

    .probex-footer-cta a {
        font-size: 26px;
    }

    .probex-footer-navigation {
        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }

    .probex-footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

    .probex-footer-legal {
        flex-direction: column;

        gap: 10px;
    }

}