.clients-asking-section tr td {
    transition: all .3s ease-in-out;
}

.clients-asking-section tr:hover td {
    background: #f5f5f7;
}

.fluid-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: clamp(16px, 2vw, 32px);
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 clamp(24px, 8vw, 160px);
}

.cases-header {
    grid-column: 1 / 13;
    margin-bottom: clamp(48px, 5vw, 72px);
}

.case-row {
    grid-column: 1 / 13;
    display: grid;
    grid-template-columns: 50px 1fr 1.8fr;
    gap: clamp(20px, 3vw, 50px);
    padding: clamp(28px, 3vw, 40px) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.case-row:first-of-type {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.case-number {
   font-family: var(--avenirheavy);
    font-size: clamp(56px, 5vw, 80px);
    color: rgba(171, 171, 171, 0.30);
    letter-spacing: -3px;
    line-height: 0.9;
}

.case-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cases-header-desc {
    max-width: 720px;
    margin-top: 20px;
}

.paths-header {
    margin-bottom: clamp(48px, 5vw, 72px);
}

.path-card {
    padding: 45px 55px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: var(--white);
    /* transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s; */
    border-radius: 5px;
}

.path-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.path-card-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--xlarge);
    margin-top: calc(var(--sectionSpace) - 40px);
}

.path-card-label {
    font-family: var(--avenirheavy);
}

.path-card h3 {
    margin-bottom: 20px;
    font-family: var(--avenirheavy);
}

.paths-section .sec-title h2 {
    margin-bottom: 0;
}

.path-card-wrap.two-col-card {
    grid-template-columns: repeat(2, 1fr);
}

.path-card p strong {
    font-family: var(--avenirheavy);
}

.get-cards {
    grid-column: 1 / 13;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.get-card {
    padding: 45px 50px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-left: none;
    position: relative;
    /* transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1); */
}

.get-card:last-child {
    border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.get-card:hover {
    background: var(--secondary05);
}

.get-card-number {
    font-family: var(--avenirheavy);
    font-size: clamp(56px, 5vw, 80px);
    color: rgba(171, 171, 171, 0.30);
    letter-spacing: -3px;
    line-height: 0.9;
    margin-bottom: 30px;
    display: flex;
}

.get-card h3 {
    font-family: var(--avenirheavy);
    font-size: clamp(20px, 1.6vw, 26px);
    color: var(--secondary);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.get-card p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--midgrey);
}

.get-card+.get-card+.get-card+.get-card {
    border-top: 0;
}

.get-card:nth-child(3n + 1) {
    border-left: 1px solid rgba(0, 0, 0, 0.12);
}

.get-header {
    margin-bottom: calc(var(--sectionSpace) - 40px);
}

.sticky-box {
    position: sticky;
    top: 50px;
}

.process-timeline {
    position: relative;
    margin-top: 150px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.process-step {
    padding: clamp(28px, 3vw, 40px) 0 clamp(28px, 3vw, 40px) clamp(28px, 3vw, 48px);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.process-step::before {
    content: '';
    position: absolute;
    left: -4px;
    top: clamp(34px, 3.5vw, 48px);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--secondary);
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: border-color 0.4s, background 0.4s;
}

.process-step:hover::before {
    background: var(--white);
}

.process-step-label {
    font-family: var(--avenirmedium);
    font-size: 16px;
    margin-bottom: 5px;
    display: flex;
}

.process-step h3 {
    font-family: var(--avenirheavy);
    margin-bottom: 10px;
}

.process-step p {
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 540px;
}

.process-step:last-child {
    border-bottom: none;
}

.row.g100 {
    margin-left: -50px;
    margin-right: -50px;
}

.g100>* {
    padding-left: 50px;
    padding-right: 50px;
}

/* .sub-head { margin-top: 30px; } */

@media screen and (min-width: 992px) {
    .max-550 {
        max-width: 550px;
    }

    .ai-form-right {
        padding-left: 40px;
    }

    .col-left-head {
        max-width: 600px;
    }

    .case-row .case-desc {
        margin-left: 30px;
    }
}

@media screen and (min-width: 1200px) {
    .ai-form-right {
        padding-left: 100px;
    }

    .ai-services-banner .mr-40 {
        margin-right: 40px;
    }

    .ai-form-left {
        padding-right: 50px;
    }
}

@media (max-width: 1199px) {
    .path-card-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .get-card {
        padding: 35px 40px;
    }

    .get-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .get-card:nth-child(3n + 1) {
        border-left: none;
    }

    .get-card:nth-child(2n + 1) {
        border-left: 1px solid rgba(0, 0, 0, 0.12);
    }

    .get-card+.get-card+.get-card+.get-card,
    .get-card+.get-card+.get-card {
        border-top: 0;
    }

    .process-timeline {
        margin-top: 100px;
    }
}

@media (max-width: 991.98px) {
    .case-row {
        grid-column: 1 / 13;
        grid-template-columns: 30px 1fr;
    }

    .case-desc {
        grid-column: 1 / -1;
        margin-top: 8px;
    }

    .get-header h2 {
        margin-bottom: 18px;
    }

    .process-timeline {
        margin-top: 0;
    }
}




@media (max-width: 767px) {
    .path-card-wrap {
        grid-template-columns: repeat(1, 1fr);
    }

    .path-card-wrap.two-col-card {
        grid-template-columns: repeat(1, 1fr);
    }

    .get-cards {
        grid-template-columns: repeat(1, 1fr);
    }

    .get-card+.get-card+.get-card+.get-card,
    .get-card+.get-card+.get-card,
    .get-card+.get-card {
        border-top: 0;
    }

    .get-card:nth-child(3n + 1),
    .get-card {
        border-left: 1px solid rgba(0, 0, 0, 0.12);
    }

    .get-mobile-header {
        margin-bottom: 40px;
    }

    .get-card {
        padding: 25px 30px;
    }

    .get-card-number {
        margin-bottom: 20px;
    }
}