.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);
    align-items: center;
}

.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;
    justify-content: center;
}

.case-label h4 {
    font-family: var(--avenirheavy);
}

.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-wrap.path-card-4 {
    grid-template-columns: repeat(2, 1fr);
}

.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-number svg {
    stroke-width: 1;
}

.get-card h5 {
    font-family: var(--avenirheavy);
    margin-bottom: 14px;
}

.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; } */
.path-card-icon {
    display: block;
    margin-bottom: var(--base);
}

.path-card-wrap.four-col-card {
    grid-template-columns: repeat(4, 1fr);
}

.path-card-wrap.four-col-card .path-card {
    border: 0;
    padding: 30px 40px;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.path-card h4 {
    margin-bottom: 20px;
    font-family: var(--avenirheavy);
}


.case-row .cbox-img svg {
    width: 50px;
    stroke-width: 1;
}

.path-card-icon svg {
    height: 50px;
    width: auto;
    stroke-width: 1;
}

body:has(.ai-services-banner) .faq-section .faq-box {
    border-bottom: 2px solid var(--secondary10);
}

.white-label-ai-knowledge.card-whtblk-box .cbox {
    height: 100%;
    border-radius: 5px;
    min-height: auto;
}

.white-label-ai-knowledge.card-whtblk-box .step-animation-box::before {
    content: "";
    background-color: #000000;
    width: 20px;
    height: 11px;
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    mask-image: url(../../../../uploads/1999/08/arrow-right.svg);
}

.white-label-ai-knowledge .comparison-audit-listing-grid .row>* {
    padding-left: 25px;
    padding-right: 25px;
}

.white-label-ai-knowledge .comparison-audit-listing-grid .row {
    margin-right: -25px;
    margin-left: -25px;
}

.white-label-ai-knowledge .comparison-audit-listing-grid p {
    font-size: 18px;
}

.white-label-ai-knowledge .comparison-audit-listing-grid .cbox-body {
    gap: 20px;
}

.white-label-ai-knowledge.card-whtblk-box .step-animation-box:last-child::before {
    display: none;
}

.max-700 {
    max-width: 700px;
}

.path-card-wrap.single-col-card {
    grid-template-columns: repeat(1, 1fr);
}

.path-three-col-content-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding-top: var(--large);
}

.path-three-col-content-wrap p {
    margin: 0;
}

.path-three-col-content-wrap p strong {
    display: block;
    padding-bottom: var(--small);
}

.cases-img-section .cbox-img {
    display: flex;
}

.path-card-ul ul {
    list-style: none;
}

.path-card-ul li {
    position: relative;
    padding-left: 25px;
}

.path-card-ul li span {
    top: 0;
    left: 0;
    width: 20px;
    position: absolute;
}

ul.listview {
    list-style: inside;
    margin-top: 20px;
}

ul.listview li:not(last-child) {
    margin-bottom: 5px;
}

.listviewline {
    list-style: none;
    padding: 0;
    margin: 0;
}

.listviewline li {
    /* border-bottom: 1px solid #F0F0F0; */
    font-size: 16px;
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.listviewline li:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    left: 0;
    top: 9px;
}

.ai-form-left ol {
    margin-left: 20px;
}
.app-icons img {
    height: 40px;
    margin-bottom: 20px;
}
@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;
    }

    .align-items-end h2 {
        margin-bottom: 0;
    }
}

@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 only screen and (max-width: 1439.98px) {
    .white-label-ai-knowledge .comparison-audit-listing-grid .row>* {
        width: 50%;
    }

    .white-label-ai-knowledge.card-whtblk-box .step-animation-box::before {
        display: none;
    }

    .white-label-ai-knowledge .comparison-audit-listing-grid .row>* {
        padding-left: 15px;
        padding-right: 15px;
    }

    .white-label-ai-knowledge .comparison-audit-listing-grid .row {
        margin-right: -15px;
        margin-left: -15px;
        row-gap: 30px;
    }

    .white-label-ai-knowledge.card-whtblk-box .cbox {
        min-height: auto;
    }

}

@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;
    }

    .path-card-wrap.four-col-card {
        grid-template-columns: repeat(2, 1fr);
    }

    .path-three-col-content-wrap {
        gap: 30px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@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;
    }

    .case-row .cbox-img svg {
        width: 40px;
    }
}




@media (max-width: 767px) {

    .path-card-wrap,
    .path-card-wrap.path-card-4 {
        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;
    }

    .path-card-wrap.four-col-card {
        grid-template-columns: repeat(1, 1fr);
    }

    .path-card {
        padding: 25px 25px;
    }

    .path-card-wrap.four-col-card .path-card {
        padding: 25px 25px;
    }

    .white-label-ai-knowledge .comparison-audit-listing-grid .row>* {
        width: 100%;
    }

    .white-label-ai-knowledge .comparison-audit-listing-grid .row {
        row-gap: 20px;
    }

    .path-three-col-content-wrap {
        grid-template-columns: repeat(1, 1fr);
        padding-top: var(--small);
    }
}


.gf-global-note,
.gf-global-note small {
    font-size: 16px;
}

.gravity-theme .gform_fields {
    grid-column-gap: 20px !important;
    grid-row-gap: 20px !important;
}

.gform_wrapper.gravity-theme .gfield_label {
    font-size: 15px;
    font-family: var(--avenirmedium);
    font-weight: 500;
}

.gravity-theme .gfield input,
.gravity-theme .gfield select,
.gravity-theme .gfield textarea {
    padding: 10px 16px !important;
    min-height: 40px !important;
    font-size: 16px !important;
    border-radius: 5px;
}

.gform_wrapper.gravity-theme .gfield textarea.medium {
    height: 150px;
}