:root {
    --ldp-blue: #04B2E2;
    --ldp-green: #008D45;
    --ldp-yellow: #FFC843;
    --ldp-orange: #F36C21;
    --ldp-red: #D81F26;
    --ldp-pink: #C64B9B;
    --ldp-ink: #101828;
    --ldp-text: #000000;
    --ldp-muted: #667085;
    --ldp-border: #e7e7e7;
    --ldp-bg-soft: #f8fbfd;
}

#leadershipDevelopmentPage {
    background: #fff;
    color: var(--ldp-ink);
    font-family: "BigNoodleTitling", sans-serif;
}

.leadership-page-main {
    overflow: hidden;
}

.ldp-hero-section,
.ldp-solutions-section,
.ldp-capability-section,
.ldp-approach-section,
.ldp-format-section,
.ldp-impact-section,
.ldp-why-section,
.ldp-cta-section {
    position: relative;
}

.ldp-hero-section {
    padding: 80px 0 70px;
    background:
        radial-gradient(circle at top right, rgba(4, 178, 226, 0.12), transparent 24%),
        radial-gradient(circle at bottom left, rgba(198, 75, 155, 0.1), transparent 22%),
        #fff;
}

.ldp-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 100px;
    background: rgba(4, 178, 226, 0.12);
    color: var(--ldp-blue);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.ldp-hero-copy h1,
.ldp-section-heading h2,
.ldp-cta-panel h2 {
    color: var(--ldp-ink);
    font-size: 80px;
    line-height: 1.05;
    font-weight: 600;
    margin-bottom: 20px;
}

.ldp-intro-text,
.ldp-section-copy,
.ldp-impact-intro,
.ldp-approach-copy p,
.ldp-why-copy p,
.ldp-solutions-panel p,
.ldp-capability-card p,
.ldp-solution-box p,
.ldp-method-line,
.ldp-approach-note {
    color: var(--ldp-text);
    font-size: 18px;
    line-height: 1.8;
}

.ldp-text-flow p {
    color: var(--ldp-ink);
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 6px;
}

.ldp-pill-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0;
}

.ldp-pill-item {
    border-radius: 22px;
    padding: 18px 20px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 16px 40px rgba(16, 24, 40, 0.08);
}

.ldp-pill-blue {
    background: var(--ldp-blue);
}

.ldp-pill-green {
    background: var(--ldp-green);
}

.ldp-pill-yellow {
    background: var(--ldp-yellow);
    color: var(--ldp-ink);
}

.ldp-pill-pink {
    background: var(--ldp-pink);
}

.ldp-primary-btn,
.ldp-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.ldp-primary-btn {
    background: linear-gradient(135deg, var(--ldp-blue), var(--ldp-green));
    color: #fff;
    box-shadow: 0 18px 35px rgba(4, 178, 226, 0.25);
}

.ldp-secondary-btn {
    background: var(--ldp-ink);
    color: #fff;
}

.ldp-primary-btn:hover,
.ldp-secondary-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    display: inline-block;
}

.ldp-hero-visual {
    min-height: 560px;
    border-radius: 36px;
    background:
        linear-gradient(160deg, rgba(4, 178, 226, 0.14), rgba(255, 200, 67, 0.14)),
        #fff;
    border: 1px solid rgba(16, 24, 40, 0.08);
    position: relative;
    padding: 40px;
    box-shadow: 0 30px 70px rgba(16, 24, 40, 0.08);
}

.ldp-visual-card {
    position: absolute;
    padding: 16px 20px;
    border-radius: 18px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 20px 35px rgba(16, 24, 40, 0.12);
}

.ldp-card-blue {
    background: var(--ldp-blue);
    top: 32px;
    right: 30px;
}

.ldp-card-green {
    background: var(--ldp-green);
    top: 126px;
    left: 24px;
}

.ldp-card-orange {
    background: var(--ldp-orange);
    bottom: 110px;
    right: 18px;
}

.ldp-card-red {
    background: var(--ldp-red);
    bottom: 28px;
    left: 38px;
}

.ldp-visual-center {
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    width: 74%;
    text-align: center;
    background: #fff;
    border-radius: 28px;
    padding: 36px 28px;
    border: 1px solid var(--ldp-border);
    box-shadow: 0 20px 45px rgba(16, 24, 40, 0.08);
}

.ldp-visual-center h3,
.ldp-solutions-panel h3,
.ldp-capability-card h3,
.ldp-approach-copy h3,
.ldp-format-sidebar h3,
.ldp-why-copy h3 {
    color: var(--ldp-ink);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 14px;
}

.ldp-visual-center p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ldp-text);
    margin-bottom: 0;
}

.ldp-solutions-section {
    padding: 30px 0 60px;
}

.ldp-section-heading p {
    color: var(--ldp-green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.ldp-section-heading h2 {
    font-size: 80px;
    font-family: "BigNoodleTitling", sans-serif;
    margin-bottom: 0;
        font-weight: 500;
}

.ldp-solutions-visual {
    position: sticky;
    top: 120px;
}

.ldp-solutions-panel {
    min-height: 520px;
    padding: 40px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(4, 178, 226, 0.14), rgba(198, 75, 155, 0.12)),
        #fff;
    border: 1px solid rgba(16, 24, 40, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 25px 60px rgba(16, 24, 40, 0.08);
}

.ldp-mini-label {
    display: inline-block;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 200, 67, 0.2);
    color: var(--ldp-orange);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.ldp-solution-box {
    background: #fff;
    border: 1px solid var(--ldp-border);
    border-radius: 24px;
    padding: 28px 28px 28px 84px;
    margin-bottom: 18px;
    box-shadow: 0 18px 35px rgba(16, 24, 40, 0.05);
}

.ldp-solution-box::before {
    content: attr(data-sl-no);
    position: absolute;
    top: 26px;
    left: 26px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ldp-blue), var(--ldp-green));
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.ldp-assurance-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ldp-subheading-center {
    color: var(--ldp-ink);
    font-size: 30px;
    font-weight: 600;
}

.ldp-assurance-card {
    border-radius: 22px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 20px 35px rgba(16, 24, 40, 0.08);
}

.ldp-assurance-card p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
}

.ldp-bg-blue {
    background: var(--ldp-blue);
    color: #fff;
}

.ldp-bg-orange {
    background: var(--ldp-orange);
    color: #fff;
}

.ldp-bg-yellow {
    background: var(--ldp-yellow);
    color: var(--ldp-ink);
}

.ldp-capability-section {
    padding: 60px 0 80px;
    background:
        linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.ldp-capability-card {
    height: 100%;
    padding: 32px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--ldp-border);
    box-shadow: 0 22px 50px rgba(16, 24, 40, 0.06);
}

.ldp-capability-card ul,
.ldp-format-sidebar ul {
    margin: 18px 0 0;
    padding-left: 20px;
}

.ldp-capability-card li,
.ldp-format-sidebar li {
    color: var(--ldp-text);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 6px;
}

.ldp-card-style-blue {
    border-top: 8px solid var(--ldp-blue);
}

.ldp-card-style-green {
    border-top: 8px solid var(--ldp-green);
}

.ldp-card-style-yellow {
    border-top: 8px solid var(--ldp-yellow);
}

.ldp-card-style-orange {
    border-top: 8px solid var(--ldp-orange);
}

.ldp-card-style-red {
    border-top: 8px solid var(--ldp-red);
}

.ldp-card-style-pink {
    border-top: 8px solid var(--ldp-pink);
}

.ldp-approach-section {
    padding: 80px 0;
}
.ldp-approach-section p{
    margin-bottom: 0;
}
.ldp-approach-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 10px 0 10px;
}

.ldp-approach-pill-row span {
    display: inline-flex;
    align-items: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: #fff9f9;
    color: var(--ldp-ink);
    font-size: 16px;
    font-weight: 600;
    border: 1px solid var(--ldp-border);
}

.ldp-method-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: -5px;
}

.ldp-method-grid div {
    padding: 18px 20px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--ldp-border);
    color: var(--ldp-text);
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 16px 30px rgba(16, 24, 40, 0.05);
}

.ldp-approach-visual {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ldp-approach-arrow-wrap {
    position: relative;
    width: 470px;
    height: 370px;
}

.ldp-flow-arrow {
    position: absolute;
    display: block;
    z-index: 1;
}

.ldp-flow-arrow::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 50%;
    width: 315px;
    height: 4px;
    border-radius: 999px;
    transform: translateY(-50%);
}

.ldp-flow-arrow::after {
    content: "";
    position: absolute;
    right: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    border-top: 4px solid currentColor;
    border-right: 4px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.ldp-flow-arrow-left {
    left: 82px;
    top: 160px;
    width: 170px;
    color: var(--ldp-blue);
    transform: rotate(122deg);
    transform-origin: center;
}

.ldp-flow-arrow-left::before {
    background: var(--ldp-blue);
}
.ldp-flow-arrow-left::after{
    right: 18%;
}
.ldp-flow-arrow-right {
    right: 88px;
    top: 160px;
    width: 170px;
    color: var(--ldp-yellow);
    transform: rotate(57deg);
    transform-origin: center;
}

.ldp-flow-arrow-right::before {
    background: var(--ldp-yellow);
}
.ldp-flow-arrow-right::after{
    right:18%;
    transform: translateY(-50%) rotate(225deg);
}

.ldp-flow-arrow-bottom {
    left: 112px;
    bottom: 20px;
    width: 258px;
    color: var(--ldp-green);
}

.ldp-flow-arrow-bottom::before {
    background: var(--ldp-green);
}

.ldp-approach-node {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 14px 28px rgba(16, 24, 40, 0.12);
    z-index: 2;
}

.ldp-approach-node span {
    white-space: nowrap;
}

.ldp-node-top {
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ldp-blue);
    color: #fff;
}

.ldp-node-left {
    left: 12px;
    bottom: 0;
    background: var(--ldp-green);
    color: #fff;
}

.ldp-node-right {
    right: 0;
    bottom: 0;
    background: var(--ldp-yellow);
    color: var(--ldp-ink);
}

.ldp-format-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #f8fbfd 100%);
}

.ldp-format-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ldp-format-card,
.ldp-impact-card {
    padding: 26px 24px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--ldp-border);
    color: var(--ldp-ink);
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    box-shadow: 0 18px 35px rgba(16, 24, 40, 0.05);
}

.ldp-format-card:nth-child(1) {
    border-left: 7px solid var(--ldp-blue);
}

.ldp-format-card:nth-child(2) {
    border-left: 7px solid var(--ldp-green);
}

.ldp-format-card:nth-child(3) {
    border-left: 7px solid var(--ldp-yellow);
}

.ldp-format-card:nth-child(4) {
    border-left: 7px solid var(--ldp-orange);
}

.ldp-format-card:nth-child(5) {
    border-left: 7px solid var(--ldp-pink);
    grid-column: 1 / -1;
    width: 49%;
}

.ldp-format-sidebar {
    height: 100%;
    border-radius: 28px;
    padding: 34px;
    background: var(--ldp-ink);
    color: #fff;
    box-shadow: 0 22px 45px rgba(16, 24, 40, 0.14);
}

.ldp-format-sidebar h3,
.ldp-format-sidebar li {
    color: #fff;
}

.ldp-impact-section {
    padding: 80px 0;
}

.ldp-impact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.ldp-impact-card:nth-child(1) {
    background: rgba(4, 178, 226, 0.08);
}

.ldp-impact-card:nth-child(2) {
    background: rgba(0, 141, 69, 0.08);
}

.ldp-impact-card:nth-child(3) {
    background: rgba(255, 200, 67, 0.18);
}

.ldp-impact-card:nth-child(4) {
    background: rgba(243, 108, 33, 0.12);
}

.ldp-impact-card:nth-child(5) {
    background: rgba(216, 31, 38, 0.08);
}

.ldp-impact-card:nth-child(6) {
    background: rgba(198, 75, 155, 0.08);
}

.ldp-why-section {
    padding: 80px 0;
    /* background:
        radial-gradient(circle at top left, rgba(0, 141, 69, 0.08), transparent 20%),
        radial-gradient(circle at bottom right, rgba(243, 108, 33, 0.08), transparent 18%),
        #fff; */
}

.ldp-why-list {
    display: grid;
    gap: 18px;
}

.ldp-why-item {
    display: grid;
    grid-template-columns: 57px 1fr;
    align-items: center ;
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--ldp-border);
    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.05);
    transition: all 0.5s ease;
}
.ldp-why-item:hover{
    transform: translateX(20px);
}
.ldp-why-item span {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--ldp-orange), var(--ldp-pink));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
}

.ldp-why-item p {
    margin: 0;
    color: var(--ldp-text);
    font-size: 18px;
    line-height: 1.7;
}

.ldp-cta-section {
    padding: 20px 0 90px;
}

.ldp-cta-panel {
    border-radius: 34px;
    padding: 50px;
    background:
        linear-gradient(135deg, rgba(4, 178, 226, 0.16), rgba(198, 75, 155, 0.14)),
        #fff;
    border: 1px solid rgba(16, 24, 40, 0.08);
    text-align: center;
    box-shadow: 0 24px 55px rgba(16, 24, 40, 0.08);
}

.ldp-cta-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: 30px 0 34px;
}

.ldp-cta-list span {
    display: inline-flex;
    align-items: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--ldp-border);
    color: var(--ldp-ink);
    font-size: 15px;
    font-weight: 500;
}

@media (max-width: 1199px) {
    .ldp-hero-copy h1,
    .ldp-section-heading h2,
    .ldp-cta-panel h2 {
        font-size: 44px;
    }

    .ldp-impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .ldp-hero-section,
    .ldp-capability-section,
    .ldp-approach-section,
    .ldp-format-section,
    .ldp-impact-section,
    .ldp-why-section,
    .ldp-cta-section {
        padding: 60px 0;
    }

    .ldp-hero-copy h1,
    .ldp-section-heading h2,
    .ldp-cta-panel h2 {
        font-size: 40px;
    }

    .ldp-pill-grid,
    .ldp-assurance-row,
    .ldp-method-grid,
    .ldp-format-grid,
    .ldp-impact-grid {
        grid-template-columns: 1fr;
    }

    .ldp-hero-visual,
    .ldp-solutions-panel,
    .ldp-approach-visual {
        min-height: auto;
    }

    .ldp-solutions-visual {
        position: relative;
        top: auto;
    }

    .ldp-approach-ring {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 767px) {
    .ldp-hero-section {
        padding: 45px 0 50px;
    }

    .ldp-hero-copy h1,
    .ldp-section-heading h2,
    .ldp-cta-panel h2 {
        font-size: 40px;
    }

    .ldp-intro-text,
    .ldp-section-copy,
    .ldp-impact-intro,
    .ldp-approach-copy p,
    .ldp-why-copy p,
    .ldp-solutions-panel p,
    .ldp-capability-card p,
    .ldp-solution-box p,
    .ldp-method-line,
    .ldp-approach-note,
    .ldp-text-flow p {
        font-size: 16px;
    }

    .ldp-hero-visual {
        padding: 24px;
        min-height: 420px;
    }

    .ldp-visual-center {
        width: 82%;
        padding: 24px 20px;
    }

    .ldp-visual-center h3,
    .ldp-solutions-panel h3,
    .ldp-capability-card h3,
    .ldp-approach-copy h3,
    .ldp-format-sidebar h3,
    .ldp-why-copy h3 {
        font-size: 22px;
    }

    .ldp-solution-box {
        padding: 24px 22px 24px 78px;
    }

    .ldp-capability-card,
    .ldp-format-sidebar,
    .ldp-cta-panel {
        padding: 28px 22px;
    }

    .ldp-why-item {
        grid-template-columns: 1fr;
    }

    .ldp-approach-ring {
        width: 280px;
        height: 280px;
        padding: 18px;
    }

    .ldp-ring-center strong {
        font-size: 26px;
    }
}

/**************/
.ldp-why-item:hover p{
  color: #fff;
}
.ldp-why-item{
  transition: all 0.3s ease ;
}

.ldp-why-item.boxa-1:hover{
  background-color: var(--ldp-blue);
}
.ldp-why-item.boxa-2:hover{
  background-color: var(--ldp-yellow);
}
.ldp-why-item.boxa-3:hover{
  background-color: var(--ldp-orange);
}
.ldp-why-item.boxa-4:hover{
  background-color: var(--ldp-green);
}

.accordion-button:not(.collapsed){
    color: var(--ldp-green);
}

.owl-list-21 .item p{
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgb(210, 210, 210);
  background-color: #e7e7e7;
}
.owl-list-21 .owl-dots{
    text-align: center;
}
.owl-list-21 .owl-dots .owl-dot{
    background-color:#008D45;
    padding: 5px !important;
    margin: 5px;
    border-radius: 50px;
 }
.owl-list-21 .owl-dots .owl-dot.active{
    background-color: rgb(200, 200, 200);
    width: 20px;
}

.list_23 li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 24px;
  border-radius: 15px;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid #e8e8e8;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  gap: 12px;
}
.list_23 li:hover{
    transform: scale(1.03);
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.1), 0px 4px 8px rgba(0, 0, 0, 0.1);
}
/* Left text */
.list_23-if {
  flex: 1;
  color: #000000;
}

/* Arrow centered */
.list_23-arrow {
  flex: 0 0 auto;
  font-size: 18px;
  text-align: center;
}

/* Right text */
.list_23-then {
  flex: 1;
  font-weight: 500;
  text-align: left;
}
/* Left border color per row */
.list_23 li:nth-child(1) { border-bottom-color: var(--ldp-blue); }
.list_23 li:nth-child(2) { border-bottom-color: var(--ldp-green); }
.list_23 li:nth-child(3) { border-bottom-color: var(--ldp-yellow); }
.list_23 li:nth-child(4) { border-bottom-color: var(--ldp-pink); }
.list_23 li:nth-child(5) { border-bottom-color: var(--ldp-red); }


/* Arrow color per row */
.list_23 li:nth-child(1) .list_23-arrow { color: var(--ldp-blue); }
.list_23 li:nth-child(2) .list_23-arrow { color: var(--ldp-green); }
.list_23 li:nth-child(3) .list_23-arrow { color: var(--ldp-yellow); }
.list_23 li:nth-child(4) .list_23-arrow { color: var(--ldp-pink); }
.list_23 li:nth-child(5) .list_23-arrow { color: var(--ldp-red); }

/* Right text color per row */
.list_23 li:nth-child(1) .list_23-then { color: var(--ldp-blue); }
.list_23 li:nth-child(2) .list_23-then { color: var(--ldp-green); }
.list_23 li:nth-child(3) .list_23-then { color: var(--ldp-yellow); }
.list_23 li:nth-child(4) .list_23-then { color: var(--ldp-pink); }
.list_23 li:nth-child(5) .list_23-then { color: var(--ldp-red); }

@media(max-width: 767px){
    .box-des-39{
        flex-direction: column;
    }
    .box-des-39 .box-39{
        min-width: 100%;
        padding: 20px;
    }
    .list_23 li{
        padding: 20px;
    }
}
.ldp-approach-visual-mobile{
    display: none;
}
@media(max-width:460px){
       .ldp-approach-visual{
        display: none;
       }
       .ldp-approach-visual-mobile{
        display: block;
       }
       .ldp-approach-visual-mobile .experience{
        background-color: #04B2E2;
       }
       .ldp-approach-visual-mobile .practice{
        background-color: #FFC843;
       }
       .ldp-approach-visual-mobile p{
        padding:20px;
        border-radius: 20px;
        font-size: 18px;
        font-weight: 600;
        line-height: 1;
        margin-bottom: 60px;
        color: #fff;
        position: relative;
        text-align:center;
       }
       .ldp-approach-visual-mobile p:last-child{
        margin-bottom: 0;
       }
       .ldp-approach-visual-mobile p.experience::after{
            content: '';
            background-color: #cbcbcb;
            width: 3px;
            position: absolute;
            height: 60px;
                    bottom: -60px;
        left: 50%;

       }
       .ldp-approach-visual-mobile p.practice::after{
            content: '';
            background-color: #cbcbcb;
            width: 3px;
            position: absolute;
            height: 60px;
                    bottom: -60px;
        left: 50%;

       }
       .ldp-approach-visual-mobile .reflect{
        background-color: #008D45;
       }
        
}