/* ============================================================
   Strategic Governance & Financial Performance
   ============================================================ */

:root {
    --sgfp-navy: #21409a;
    --sgfp-cyan: #1f9fd0;
    --sgfp-grey: #8e9092;
    --sgfp-line: #c9cdd2;
}

.bg_6169b0 {
    background-color: #6169b0 !important;
}

.bg_9a9bcd {
    background-color: #9a9bcd !important;
}

.sgfp_page p,
.sgfp_page li {
    font-family: 'Helvetica Neue';
}

/* ---------- Section divider hero (cover) ---------- */
.sgfp-hero {
    position: relative;
    padding: 0;
    background-color: var(--sgfp-navy);
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: stretch;
}

.sgfp-hero__inner {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.sgfp-hero__bar {
    flex: 0 0 200px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-radius: 0 0 220px 0;
}

.sgfp-hero__mediaInner {
    padding: 30px 0 0 30px;
    position: relative;

    &:before {
        height: 270px;
        width: 100%;
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        border: 1px solid #fff;
        border-bottom: 0px;
        border-right: 0;
        border-radius: 125px 0 0 0;
    }

    figure {
        height: 700px;
        border-radius: 100px 0 0 0px;
        overflow: hidden;
        border: 5px solid #fff;
        border-right: none;
        border-bottom: none;
        position: relative;
        z-index: 1;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }
    }
}

.sgfp-hero__title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #fff;
    font-family: 'Helvetica Neue';
    font-weight: 700;
    font-size: 40px;
    line-height: 1.15;
    letter-spacing: .5px;
    text-align: left;
    padding: 60px 0;
}

.sgfp-hero__media {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: auto;
    padding-top: 70px;
}

/* ---------- Index / contents (tabs with arrow) ---------- */
.sgfp-index {
    padding-top: 70px;
    padding-bottom: 70px;
}

.sgfp-index__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1100px;
}

.idx-card {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 22px 26px;
    border: 1px solid var(--sgfp-line);
    border-radius: 0 0 26px 0;
    background: #fff;
    transition: all .3s ease;
}

.idx-card:hover {
    box-shadow: 0 14px 34px rgba(33, 64, 154, .12);
    transform: translateY(-3px);
}

.idx-card__icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.idx-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.idx-card__body {
    flex: 1;
}

.idx-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--sgfp-navy);
    margin-bottom: 4px;
}

.idx-card__page {
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

.idx-card__arrow {
    flex: 0 0 auto;
    color: var(--sgfp-cyan);
    font-size: 20px;
    transition: transform .3s ease;
}

.idx-card:hover .idx-card__arrow {
    transform: translate(4px, -4px);
}

/* ============================================================
   Sub-section layout : sticky wheel sidebar + content
   ============================================================ */
.gov-section {
    padding-top: 0;
    padding-bottom: 0;
}

.gov-section__row {
    display: block;
    padding-left: 0px;
}

.gov-main {
    min-width: 0;
    padding: 0;
}

/* ---------- single fixed rail (one sticky sidebar) ---------- */
.gov-rail {
    position: sticky;
    left: 30px;
    top: 90px;
    /* transform: translateY(-50%); */
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 30;
    /* opacity: 0; */
    /* visibility: hidden; */
    transition: opacity .4s ease, visibility .4s ease;
}

.gov-rail.is-visible {
    opacity: 1;
    visibility: visible;
}

.gov-rail .gov-aside__label {
    transition: color .35s ease;
}

.gov-rail.is-cyan .gov-aside__label {
    color: var(--sgfp-cyan);
}

/* ---------- The navigation wheel ---------- */
.wheel {
    position: relative;
    width: 210px;
    height: 210px;
    flex: 0 0 auto;
}

.wheel__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--sgfp-line);
    overflow: hidden;
    background: #fff;
}

/* divider lines inside ring */
.wheel__ring::before,
.wheel__ring::after {
    content: '';
    position: absolute;
    background: var(--sgfp-line);
}

.wheel__ring::before {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    transform: translateX(-.5px);
}

.wheel__ring::after {
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    transform: translateY(-.5px);
}

/* active quarter disc (pops slightly beyond the ring) */
.wheel__active {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--sgfp-navy);
    z-index: 2;
    transition: background-color .35s ease;
}

.wheel__pointer {
    transition: transform .4s ease;
}

.wheel.is-cyan .wheel__active {
    background: var(--sgfp-cyan);
}

.wheel--tl .wheel__active {
    right: 50%;
    bottom: 50%;
    border-radius: 96px 0 0 0;
}

.wheel--tr .wheel__active {
    left: 50%;
    bottom: 50%;
    border-radius: 0 120px 0 0;
}

.wheel--bl .wheel__active {
    right: 50%;
    top: 50%;
    border-radius: 0 0 0 96px;
}

.wheel--br .wheel__active {
    left: 50%;
    top: 50%;
    border-radius: 0 0 96px 0;
}

/* quadrant icons */
.wheel__icon {
    position: absolute;
    width: 38px;
    height: 38px;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.wheel__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: .62;
}

.wheel__icon--tl {
    left: 26%;
    top: 26%;
}

.wheel__icon--tr {
    left: 74%;
    top: 26%;
}

.wheel__icon--bl {
    left: 26%;
    top: 74%;
}

.wheel__icon--br {
    left: 74%;
    top: 74%;
}

/* active icon becomes white */
.wheel--tl .wheel__icon--tl img,
.wheel--tr .wheel__icon--tr img,
.wheel--bl .wheel__icon--bl img,
.wheel--br .wheel__icon--br img {
    filter: brightness(0) invert(1);
    opacity: 1;
}

/* centre hub + pointer */
.wheel__center {
    position: absolute;
    width: 86px;
    height: 86px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border: 1px solid var(--sgfp-line);
    border-radius: 50%;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel__pointer {
    color: var(--sgfp-navy);
    font-size: 30px;
    line-height: 1;
}

.wheel.is-cyan .wheel__pointer {
    color: var(--sgfp-navy);
}

.wheel--tr .wheel__pointer {
    transform: rotate(0deg);
}

.wheel--br .wheel__pointer {
    transform: rotate(90deg);
}

.wheel--bl .wheel__pointer {
    transform: rotate(180deg);
}

.wheel--tl .wheel__pointer {
    transform: rotate(270deg);
}

/* stem + vertical label */
.gov-aside__stem {
    width: 1px;
    height: 44px;
    background: var(--sgfp-line);
    margin: 6px 0 4px;
}

.gov-aside__label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Helvetica Neue';
    font-weight: 700;
    font-size: 48px;
    letter-spacing: .5px;
    color: var(--sgfp-navy);
    text-align: left;
    padding: 30px 10px;
    position: relative;
    margin-top: -10px;

    &:before {
        width: 1px;
        height: 100%;
        background-image: linear-gradient(to top, #c9cdd2 0 78%, #fff 100% 100%);
        content: "";
        position: absolute;
        top: 0;
        left: 0;
    }

    &:after {
        width: 1px;
        height: 100%;
        background-image: linear-gradient(to top, #c9cdd2 0 78%, #fff 100% 100%);
        content: "";
        position: absolute;
        top: 0;
        right: 0;
    }
}

#govSections {
    .gov-aside__label {
        margin-top: -39px;
    }

}


.gov-aside.is-cyan .gov-aside__label {
    color: var(--sgfp-cyan);
}

/* ---------- shared content headings ---------- */
.gov-h1 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    line-height: 1.08;
    margin-bottom: 28px;
    font-family: 'Helvetica Neue';
}

.gov-lead {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 0;
}

.gov-h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--sgfp-navy);
}

.gov-section.is-cyan .gov-h2 {
    color: var(--sgfp-cyan);
}

.gov-h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--sgfp-navy);
    margin-bottom: 10px;
}

/* ============================================================
   Governance : multi-level framework  (tabs with arrow)
   ============================================================ */
.gov-flow {
    max-width: 100%;
}

.flowCard {
    border: 2px solid #194b6d;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 15px;
    padding: 15px;
    background-image: linear-gradient(180deg, #e2e2f2 0 0%, #fff 100% 100%);

    &.whiteBox {
        background-color: var(--sgfp-navy);
        background-image: none;
    }

    .flowCardHead {
        display: block;
        font-size: 20px;
        color: var(--sgfp-navy);
        cursor: pointer;
        position: relative;

        &:after {
            content: "";
            position: absolute;
            right: 0;
            top: 0px;
            width: 30px;
            height: 30px;
            background: url(../images/accArrow.png) no-repeat center center #8688c2;
            background-size: 16px;
            border-radius: 4px;
        }
    }

    .flowCardBody {
        padding-top: 10px;

        .flowCardList {
            display: flex;
            flex-wrap: wrap;

            li {
                width: calc(100% / 2);
                border-bottom: 1px solid #979797;
                border-right: 1px solid #979797;
                margin-bottom: 0px;
                padding: 15px 0;

                &:nth-child(1n) {
                    padding-right: 20px;
                }

                &:nth-child(2n) {
                    padding-left: 20px;
                    border-right: none;
                }

                &:nth-last-child(1) {
                    border-bottom: none;
                }

                &:nth-last-child(2) {
                    border-bottom: none;
                }
            }
        }
    }
}

.flow-card__head {
    background: var(--sgfp-navy);
    color: #fff;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 16px;
}

.flow-card__head h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.flow-card__head p {
    color: #cfe0ff;
    font-size: 14px;
    margin: 2px 0 0;
}

.flow-card__chevron {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: transform .35s ease;
}

.flow-card.is-open .flow-card__chevron {
    transform: rotate(180deg);
}

.flow-card__body {
    transition: max-height .4s ease;
}

.flow-card.is-open .flow-card__body {
    max-height: 640px;
}

.flow-card__body-inner {
    padding: 22px 24px 26px;
}

/* down arrow connector between hierarchy levels */
.flow-arrow {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 10px 0;
}

.flow-arrow span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #eef1f8;
    color: var(--sgfp-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

/* committee grid */
.committee-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.committee-cell {
    border-radius: 0 0 14px 0;
    font-weight: 700;
}

.committee-note {
    font-size: 12px;
    color: #555;
    margin-top: 14px;
    font-style: italic;
}

/* three-up cards (capital allocation / tech / culture) */
.tri-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 10px;
}

.tri-card {
    border-radius: 0 0 18px 0;
    overflow: hidden;
}

.tri-card__head {
    background: var(--sgfp-navy);
    color: #fff;
    padding: 16px 18px;
    font-weight: 700;
    width: calc(100% - 20px);
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.tri-card__body {
    padding: 16px 0px;

    .tri-card__body_inner {
        padding: 0 20px;
        position: relative;

        .triTextWrap {
            background-color: #e5e6eb;
            padding: 15px;
            min-height: 210px;
        }

        &:first-child {
            padding-top: 35px;
            margin-top: -60px;

            &::after {
                width: calc(100% - 28px);
                height: 100%;
                border-radius: 0 30px 30px 0;
                border: 1px solid #194b6d;
                content: "";
                position: absolute;
                right: 0;
                border-left: none;
                top: 0;
            }
        }

        &:last-child {
            &::after {
                width: calc(100% - 20px);
                height: 100%;
                border-radius: 30px 30px 0 30px;
                border: 1px solid #194b6d;
                content: "";
                position: absolute;
                left: 0;
                border-right: none;
                border-top: none;
                top: -1px;

            }
        }
    }
}

/* two-column ethical lists */
.col2 {
    column-count: 2;
    column-gap: 40px;
    margin-top: 10px;
}

.col2 .block {
    break-inside: avoid;
    margin-bottom: 22px;
}

/* zero metric callout */
.zero-row {
    display: flex;
    gap: 40px;
    margin: 24px 0 10px;
    flex-wrap: wrap;
}

.zero-card {
    padding-left: 16px;
    width: 46%;
    padding-right: 30px;
    position: relative;

    &:before {
        width: 2px;
        height: 100%;
        content: "";
        left: 0;
        position: absolute;
        top: 0;
        border-left: 2px dotted var(--sgfp-navy);

    }

    &::after {
        width: 2px;
        height: 40px;
        background-color: var(--sgfp-navy);
        left: 0;
        top: 0;
        content: "";
        position: absolute;
    }
}

.zero-card b {
    display: block;
    color: var(--sgfp-navy);
    font-size: 40px;
    line-height: 1;
}

.zero-card span {
    font-size: 18px;
}

.esgWrap {
    .esgImg {
        width: 100%;
        height: 100%;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}

/* ============================================================
   Board of Directors cards
   ============================================================ */

.dir-card {
    padding-bottom: 20px;
    border-bottom: 1px solid #000;

    .bodBox {
        display: flex;

        .bodInfo {
            width: 350px;

            .bodImg {
                display: flex;
                flex-wrap: wrap;
                margin-bottom: 15px;

                figure {
                    border-radius: 15px;
                    overflow: hidden;
                    width: calc(100% - 50px);
                }

                .bodBudges {
                    width: 50px;
                    display: flex;
                    flex-wrap: wrap;
                    flex-direction: column;
                    align-items: flex-end;
                    gap: 10px;

                    img {
                        width: 25px;
                    }
                }
            }
        }

        .bodDescWrap {
            padding-left: 50px;
            width: calc(100% - 350px);

            .exp {
                display: flex;
                gap: 20px;

                li {
                    width: 50%;
                    padding-bottom: 10px;
                    border-bottom: 1px solid #939598;
                    margin-bottom: 0px;
                }
            }
        }
    }

    &:not(:last-child) {
        margin-bottom: 15px;
    }
}

.row-gap {
    row-gap: 30px;
}

.symWrapBox {
    border-radius: 20px;
    box-shadow: 0 0 10px 0px #cccccc7d;
    padding: 20px;

    ul {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;

        li {
            width: 100%;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;

            &:not(:last-child) {
                margin-bottom: 20px;
            }

            .colorBox {
                width: 20px;
                height: 20px;
                border-radius: 3px;

                &.blueBox {
                    background-color: #21409a;
                }

                &.greenBox {
                    background-color: #159146;
                }

                &.tealBox {
                    background-color: #0f99d6;
                }

                &.orangeBox {
                    background-color: #f58220;
                }

                &.redBox {
                    background-color: #8f1838;
                }
            }

            p {
                line-height: 1.3;
                width: calc(100% - 30px);
            }

            .cmWrap {
                display: flex;
                width: 49%;
                gap: 10px;

                .cmBox {
                    width: 25px;
                    height: 25px;
                    border-radius: 5px;
                    border: 1px solid #ccc;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }
            }
        }
    }
}


/* board composition stat bars */
.stat-block {
    margin-bottom: 30px;
}

.stat-block h4 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 14px;
    min-height: 42px;
}

.bar {
    margin-bottom: 16px;
}

.bar__track {
    background: #d9e6f5;
    height: 16px;
    border-radius: 2px;
    position: relative;
}

.bar__fill {
    background: var(--sgfp-cyan);
    height: 100%;
    border-radius: 2px;
    transition: width 1.2s cubic-bezier(.22, .61, .36, 1);
    will-change: width;
}

.bar__fill.is-orange {
    background: var(--orange, #f15a29);
}

.bar__label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    border-bottom: 1px solid #000;
    padding: 4px 0;
}

.stat-cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

/* ============================================================
   Executive Committee cards
   ============================================================ */
.exec-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 16px;
}

.exec-card {
    text-align: left;
}

.exec-card__photo {
    border-radius: 0 0 22px 0;
    overflow: hidden;
    margin-bottom: 16px;
    background: #eef3fb;
}

.exec-card__photo img {
    width: 100%;
    display: block;
}

.exec-card__name {
    font-size: 19px;
    font-weight: 700;
    color: #000;
    margin: 0 0 2px;
}

.exec-card__role {
    font-size: 14px;
    color: #444;
    margin-bottom: 6px;
}

.exec-card__org {
    font-size: 13px;
    font-weight: 700;
    color: var(--sgfp-cyan);
}

.exec-legend {
    margin-top: 30px;
    font-size: 13px;
    color: #444;
}

.exec-legend b {
    color: var(--sgfp-cyan);
}




.cpaWrap {
    padding-top: 60px;

    .bgHeading {
        display: block;
        text-align: center;
        position: relative;
        margin-bottom: 30px;

        &:before {
            width: 50%;
            height: 2px;
            content: "";
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            position: absolute;
            background-image: linear-gradient(to right, #fff 0 0%, var(--sgfp-navy) 100% 100%);
        }

        &:after {
            width: 50%;
            height: 2px;
            content: "";
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            position: absolute;
            background-image: linear-gradient(to right, var(--sgfp-navy) 0 0%, #fff 100% 100%);
        }

        .bgHead {
            color: #fff;
            font-size: 36px;
            border-radius: 40px;
            margin: 0 auto;
            padding: 10px 70px;
            background-color: var(--sgfp-navy);
            margin: 0 auto;
            display: inline-block;
            position: relative;
            z-index: 1;
        }
    }
}

.cpaListBox {
    border-radius: 20px;
    border: 1px solid var(--sgfp-navy);
    background-image: linear-gradient(to right, #fff 0 0%, #e8e8f4 100% 100%);

    ul {
        li {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 30px;
            padding: 15px 30px;
            padding-left: 50px;
            position: relative;

            &:before {
                width: 4px;
                height: 4px;
                border-radius: 50%;
                left: -3px;
                top: 50%;
                transform: translateY(-50%);
                content: "";
                background-color: var(--sgfp-navy);
                position: absolute;
            }

            &::after {
                width: 30px;
                height: 2px;
                background-color: var(--sgfp-navy);
                left: 0;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                content: "";
            }

            .cpaNo {
                width: 40px;
                height: 40px;
                border-radius: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 18px;
                background-color: var(--sgfp-navy);
                color: #fff;
            }

            p {
                width: calc(100% - 40px);
            }
        }
    }
}

.bgNotesWrap {
    border-radius: 20px;
    background-color: var(--sgfp-navy);
    padding: 10px;
    margin-top: 20px;

    p {
        color: #fff;
        font-size: 15px;

        a {
            color: #fff;
            font-style: italic;
        }
    }
}


.esgWrap {
    border-radius: 20px;
    overflow: hidden;

    .esgText {
        padding: 30px;
    }
}

.rightBorder {
    padding-right: 20px;
    border-right: 1px solid #000;
}

.riskGovWrap {
    border-radius: 20px;
    padding-bottom: 70px;

    .quoteText {
        position: relative;

        &:after {
            width: 140px;
            height: 115px;
            position: absolute;
            right: -1px;
            bottom: 0;
            content: "";
            background: url(../images/governance/quote-icon.png) no-repeat center center;
            background-size: 100%;
        }
    }
}

.quoteText {
    padding: 40px;
    background-color: #e6e7e8;
    border-radius: 20px 20px 0 20px;

    &:after {
        width: 140px;
        height: 115px;
        position: absolute;
        right: -1px;
        top: 99%;
        content: "";
        background: url(../images/governance/quote-icon.png) no-repeat center center;
        background-size: 100%;
    }

    p {
        color: var(--sgfp-navy) !important;

        &.blackText {
            color: #000 !important;
        }
    }
}

.border_heading_box {
    padding-right: 0px;
    position: relative;

    .border_heading {
        width: auto;
        display: inline-block;
        padding-right: 30px;
        background-color: #fff;
        position: relative;
        z-index: 1;
    }

    .textWrap {
        position: relative;
        padding-bottom: 40px;

        &:after {
            width: 100%;
            height: calc(100% - 15px);
            content: "";
            right: 0;
            border: 1px solid var(--blue);
            position: absolute;
            bottom: 0;
            border-bottom: none;
            border-left: none;
        }
    }
}

.processWrap {
    border: 1px solid var(--sgfp-navy);
    display: flex;
    flex-wrap: wrap;

    .processItem {
        width: 20%;
        padding: 0px;

        .processInner {
            background-color: #6169b0;
            height: calc(100% - 75px);
            padding: 20px 0 20px;

            .processContent {
                padding: 0 20px;
                border-right: 1px solid #fff;
                height: 100%;
            }
        }

        .processNum {
            width: 40px;
            height: 40px;
            border-radius: 5px;
            background-color: var(--sgfp-navy);
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            margin: 15px auto 20px;
            position: relative;

            &:before {
                border-left: 10px solid transparent;
                border-right: 10px solid transparent;
                border-top: 10px solid var(--sgfp-navy);
                position: absolute;
                top: -15px;
                content: "";
                left: 50%;
                transform: translateX(-50%);
            }
        }

        &:last-child {
            .processInner {
                .processContent {
                    border-right: none;
                }
            }
        }
    }
}

.awardWrap {
    border-radius: 20px;
}

.border_heading_box {
    &.emWrap {
        .textWrap {
            &:after {
                border: 1px solid #9a9ccd;
                border-radius: 0 20px 0 0;
                border-bottom: none;
                border-left: none;
            }
        }
    }

}

.energyWrap {
    display: flex;
    flex-wrap: wrap;
    background-color: #e8e8f4;
    border-radius: 0 0 20px 20px;
    border: 1px solid #9a9ccd;
    border-top: none;
    padding: 15px 0;
    row-gap: 20px;

    .eneryItem {
        width: calc(100% / 4);
        padding: 0 15px;
        border-right: 1px solid var(--sgfp-navy);

        &:last-child {
            border-right: none;
        }
    }

    .emAwardImg {
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 15px;
        height: 210px;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }
    }
}

.emContWrap {
    border: 1px solid var(--sgfp-navy);
    border-radius: 0 30px 30px 30px;
    display: flex;
    flex-wrap: wrap;

    .emContLeft {
        width: 65%;
        padding: 0 20px 20px;
        position: relative;
        padding-right: 30px;

        &::before {
            width: calc(100% + 30px);
            height: 2px;
            background-color: #fff;
            content: "";
            position: absolute;
            left: 0;
            top: -2px;
        }
    }

    .emContRight {
        width: 35%;

        .awardsImg {
            border-radius: 30px;
            height: 100%;
            overflow: hidden;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center center;
            }
        }
    }
}

.graphImg {
    border-radius: 20px;
    box-shadow: 0 0 10px 0px #ccc;
    padding: 20px;

    h4 {
        min-height: 45px;
    }
}

.bmWrap {
    box-shadow: 0 0 10px 0px #ccc;
    padding: 20px;
    border-radius: 20px;

    .graphImg {
        box-shadow: none;
        padding: 0;
        border-radius: 0px;
    }

    .borderLine {
        border-right: 1px solid #7f7f7f;
    }
}

.colorMarkWrap {
    padding: 15px;
    box-shadow: 0 0 10px 0px #ccc;
    border-radius: 20px;

    ul {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;

        li {
            display: flex;
            margin-bottom: 0px;
            gap: 10px;

            .rad_colorBox {
                width: 20px;
                height: 20px;
                border-radius: 50%;
                margin-top: 5px;

                &.tealBox {
                    background-color: #0f99d6;
                }

                &.lightTealBox {
                    background-color: #85b9e4;
                }

                &.greyBox {
                    background-color: #d3e3f5;
                }

                &.orangeBox {
                    background-color: #f48221;
                }

                &.lightOrangeBox {
                    background-color: #f8a45e;
                }

                &.light2OrangeBox {
                    background-color: #fdc99a;
                }
            }
        }
    }
}

.rad_30 {
    border-radius: 30px;
}

.p_30 {
    padding: 30px;
}

.linkNoteWrap {
    padding: 15px 30px;
}

.bepWrap {
    .bepImg {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        overflow: hidden;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }
    }
}

.leaderShipWrap {
    background-color: #ededee;
    border-radius: 20px;
}

.leaderShipBox {
    border-radius: 20px;
    overflow: hidden;
    background-color: #d4d4eb;

    .leaderShipImg {
        width: 100%;
        height: 500px;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
        }
    }
}

.leaderShipInfo {
    padding: 15px;
}

.companyName {
    display: block;
    position: relative;
    padding-left: 15px;

    &:before {
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid var(--sgfp-navy);
        position: absolute;
        top: 50%;
        content: "";
        left: 0;
        transform: translateY(-50%) rotate(270deg);
    }
}

.etueWrap {
    background-color: var(--blue);
    padding: 20px;
    border-radius: 25px;
    display: flex;

    .etueItem {
        width: 50%;

        &:first-child {
            padding-right: 20px;
            border-right: 1px solid #fff;
        }

        &:last-child {
            padding-left: 20px;
        }
    }

    .etueItemInner {
        border-bottom: 1px solid #fff;
        padding-bottom: 15px;
        margin-bottom: 15px;

        &:last-child {
            border-bottom: none;
        }
    }

    .customList {
        li {
            &:before {
                background-color: #fff;
            }
        }
    }
}

.rgsText {
    padding: 20px;
    background-color: #e8e8f4;
}

/*==financial wrap start===*/
.financialWrap {
    border-radius: 20px;
    background-color: #edf3fa;
    padding-bottom: 0px;

    .financialTop {
        background-size: cover !important;
        background-position: center bottom !important;
        padding: 30px;
        padding-bottom: 600px;
        position: relative;
        overflow: hidden;
        border-radius: 20px 20px 0 0;

        &::before {
            width: 100%;
            height: 50%;
            background-image: linear-gradient(to bottom, #fff 0 0%, transparent 100% 100%);
            content: "";
            position: absolute;
            top: 0;
            left: 0;

        }
    }
}

.z_1 {
    z-index: 1;
}

.z_2 {
    z-index: 2;
}

.blkBorBtm {
    border-bottom: 1px solid #000;
}

.perFormanceWrap {
    background-color: #fff;
    padding-top: 40px;
}

.boxIcon {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
    background-color: #fff;

    &::after {
        width: 20px;
        height: 18px;
        border-radius: 3px;
        background: url(../images/accArrow.png) no-repeat center center;
        background-color: var(--sgfp-cyan);
        left: 50%;
        transform: translateX(-50%);
        content: "";
        position: absolute;
        bottom: -10px;
        background-size: 10px;
    }
}

.borderBottom {
    border-bottom: 1px solid #000;
}

.perFormanceInner {
    .customList {
        li {
            &::before {
                background-color: var(--sgfp-cyan);
            }
        }
    }
}

.gap_10 {
    gap: 10px;
}

.wid_80 {
    width: 80px !important;
}

.perIcon {
    position: absolute;
    top: 0px;
    right: 20px;
    width: 65px;
}

.borderBoxWrapInner {
    position: relative;
    min-height: 250px;
    margin-bottom: 15px;

    &::after {
        width: 1px;
        height: 90%;
        position: absolute;
        background-color: var(--sgfp-navy);
        right: 0;
        top: 0;
        content: "";
    }

    &::before {
        width: 93%;
        height: 1px;
        position: absolute;
        background-color: var(--sgfp-navy);
        left: 0;
        bottom: 0;
        content: "";
    }

    &:nth-child(2n) {
        &::before {
            right: 0;
            left: auto;
        }

        &::after {
            display: none;
        }
    }

    &:nth-last-child(1),
    &:nth-last-child(2) {
        &::before {
            display: none;
        }
    }
}

.noShadow {
    box-shadow: none;
    padding: 0px;

    h4 {
        min-height: 0px;
    }
}

.p_40 {
    padding: 40px;
}

.financialMain {
    padding: 0 30px;
}

.graphWrapBox {
    background-color: #fff;
    border-radius: 30px;
    padding: 20px;
}

.cfWrapOuter {
    padding: 0 20px;
}

.cfWrap {
    background-color: #b6e1f1;
    border-radius: 30px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;

    .cfLeftText {
        width: 70%;
        height: 100%;
        padding: 30px;
        background-color: #d0ebf5;
        border-radius: 30px;
    }

    .cfRightText {
        width: 30%;
        padding: 30px;
    }
}

.graphWrapBoxUp {
    margin-top: -50px;
    padding-top: 70px;
}

.stategicWrap {
    padding: 40px;
    padding-bottom: 600px;
    background-size: cover !important;
    background-position: center top !important;
    position: relative;
    border-radius: 0 0 30px 30px;

    &::before {
        width: 100%;
        height: 80%;
        background-image: linear-gradient(to bottom, #edf3fa 0 50%, transparent 100% 100%);
        content: "";
        position: absolute;
        top: 0;
        left: 0;
    }

    .pageLinl {
        img {
            width: 12px;
            margin-left: 7px;
        }
    }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1600px) {
    .sgfp-hero__title {
        font-size: 36px;
    }

    #govSections {
        .gov-aside__label {
            margin-top: -32px;
        }
    }

    .cpaWrap {
        .bgHeading {
            .bgHead {
                font-size: 26px;
                padding: 10px 50px;
            }
        }
    }

    .zero-card b {
        font-size: 32px;
    }

    .gov-aside__label {
        font-size: 40px;
    }

    .riskGovWrap {
        .textWrap {
            .fz_24 {
                font-size: 20px !important;
            }
        }

        .quoteText {
            .fz_22 {
                font-size: 20px !important;
            }

            .fz_20 {
                font-size: 18px !important;
            }
        }
    }

    .gov-h1 {
        font-size: 36px;
    }

    .leaderShipBox {
        .leaderShipImg {
            height: 400px;
        }
    }

    .zero-card span {
        font-size: 16px;
    }

    .financialWrap {
        .financialTop {
            .quoteText {
                padding: 30px;

            }
        }

        .fz_22 {
            font-size: 20px !important;
        }
    }
}

@media (max-width: 1440px) {
    .gov-rail-wrap {
        .col-lg-2 {
            -ms-flex: 0 0 250px;
            flex: 0 0 250px;
            max-width: 250px;
        }

        .col-lg-10 {
            -ms-flex: 0 0 calc(100% - 250px);
            flex: 0 0 calc(100% - 250px);
            max-width: calc(100% - 250px);
        }
    }

    .headerBox {
        .hero-title {
            display: block;
            font-size: 42px;
            font-weight: bold;
            color: var(--black);
            margin-bottom: 12px;
            font-family: 'Helvetica Neue';
        }
    }

    .leaderShipBox {
        .leaderShipImg {
            height: 330px;
        }

        .leaderShipInfo {
            h4 {
                font-size: 15px !important;
            }

            p.fz_16 {
                font-size: 14px !important;
            }
        }
    }

    .gov-h1 {
        font-size: 36px;
        margin-bottom: 20px !important;
    }

    .symWrapBox {
        ul {
            li {
                gap: 0;

                &.cmList {
                    flex-direction: column;
                    row-gap: 10px;

                    .cmWrap {
                        width: 100%;
                    }

                    p {
                        padding-left: 0;
                    }
                }

                .colorBox {
                    width: 14px;
                    height: 14px;
                }

                p {
                    width: calc(100% - 16px);
                    font-size: 14px !important;
                    padding-left: 8px;
                }
            }
        }
    }

    .dir-card {
        .bodBox {
            .bodInfo {
                width: 300px;

                .bodImg {
                    figure {
                        width: calc(100% - 36px);
                        height: auto;
                        padding-right: 8px;

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            border-radius: 20px;
                        }
                    }

                    .bodBudges {
                        width: 36px;

                        img {
                            width: 20px;
                        }
                    }
                }
            }

            .bodDescWrap {
                padding-left: 12px;
                width: calc(100% - 300px);

                .fz_20 {
                    font-size: 18px !important;
                }
            }
        }
    }

    .borderBoxWrapInner {
        min-height: 210px;
    }

    .zero-card span {
        font-size: 14px;
    }

    .quoteText {
        padding: 30px;
    }

    .riskGovWrap {
        .quoteText {
            .fz_22 {
                font-size: 18px !important;
            }

            .fz_20 {
                font-size: 16px !important;
            }
        }

        .textWrap {
            .fz_24 {
                font-size: 18px !important;
            }
        }
    }

    .cfWrap {
        .cfLeftText {
            width: 60%;
        }

        .cfRightText {
            width: 39%;
        }
    }
}

@media (max-width: 1366px) {
    #govSections {
        .gov-aside__label {
            margin-top: -28px;
        }
    }

    .cpaWrap {
        .bgHeading {
            .bgHead {
                font-size: 20px;
                padding: 10px 40px;
            }
        }
    }

    .riskGovWrap {
        .quoteText {
            &:after {
                width: 85px;
                height: 75px;
                position: absolute;
                right: -1px;
                bottom: 0;
                content: "";
                background: url(../images/governance/quote-icon.png) no-repeat center center;
                background-size: 100%;
            }
        }
    }

    .zero-card {
        width: 100%;
        padding-right: 0;
    }

    .dir-card {
        .bodBox {
            .bodInfo {
                width: 250px;

                .bodImg {
                    figure {
                        width: calc(100% - 26px);
                    }

                    .bodBudges {
                        width: 26px;
                    }
                }
            }

            .bodDescWrap {
                width: calc(100% - 250px);
            }

            .bodInfoCont {
                .fz_20 {
                    font-size: 18px !important;
                }

                .fz_16 {
                    font-size: 14px !important;
                }
            }
        }
    }

    .financialWrap {
        .fz_22 {
            font-size: 18px !important;
        }

        .fz_20 {
            font-size: 18px !important;
        }

        .quoteText {
            &:after {
                width: 75px;
                height: 73px;
            }
        }
    }
}

@media (max-width: 1199px) {
    .gov-h1 {
        font-size: 32px;
    }

    .sgfp-hero__mediaInner figure {
        height: 540px;
    }

    .gov-aside__label {
        font-size: 30px;
    }

    #govSections {
        .gov-aside__label {
            margin-top: -27px;
        }
    }

    .riskGovWrap {
        .quoteText {
            margin-top: 20px;

            &:after {
                width: 80px;
                height: 68px;
            }
        }
    }


    .cpaListBox {
        ul {
            li {
                gap: 15px;
            }
        }
    }

    .financialWrap {
        .fz_22 {
            font-size: 16px !important;
        }
    }

    /* ---- 5-across process strip -> stacked ---- */
    .processWrap .processItem {
        width: 100%;
    }

    .processWrap .processItem .processInner {
        height: auto;
    }

    .processWrap .processItem .processInner .processContent {
        height: auto;
        border-right: none;
    }

    .processWrap .processItem:not(:last-child) {
        border-bottom: 1px solid var(--sgfp-navy);
    }

    /* ---- 4-up award grid -> 2-up ---- */
    .energyWrap .eneryItem {
        width: 50%;
        border-right: none;
        margin-bottom: 15px;
    }

    .dir-card {
        .bodBox {
            .bodInfo {
                width: 250px;
            }

            .bodDescWrap {
                padding-left: 25px;
                width: calc(100% - 250px);
            }
        }
    }

    .cfWrap {
        .cfLeftText {
            width: 50%;
            height: 100%;
        }

        .cfRightText {
            width: 50%;
        }
    }

    .leaderShipBox {
        .leaderShipImg {
            height: 350px;
        }
    }

    .quoteText {
        &:after {
            width: 80px;
            height: 89px;
            right: -1px;
            top: 99%;
        }
    }

    .headerBox {
        .hero-title {
            font-size: 34px;
        }
    }

    .cfWrap {
        .cfLeftText {
            width: 100%;
            height: 100%;
        }

        .cfRightText {
            width: 100%;
        }
    }
}

@media (max-width: 1024px) {

    .wid_80 {
        width: 60px !important;
    }
}

@media (max-width: 991px) {

    /* ---- hide the sticky wheel rail; content takes full width ---- */
    .gov-rail {
        display: none;
    }

    .gov-rail-wrap {
        .col-lg-10 {
            -ms-flex: 0 0 100%;
            flex: 0 0 100%;
            max-width: 100%;
        }
    }

    .cpaText {
        margin-bottom: 20px;
    }

    .cpaWrap {
        .bgHeading {
            .bgHead {
                font-size: 18px;
                padding: 8px 30px;
            }
        }
    }

    .zero-card b {
        font-size: 25px;
    }

    .esgWrap {
        .esgImg {
            height: auto;

            p.fz_16 {
                font-size: 14px !important;
            }
        }
    }

    .financialWrap {
        .quoteText {
            &:after {
                width: 75px;
                height: 67px;
                right: 0;
            }
        }

        .p_40 {
            padding: 30px;
        }

        .perFormanceWrap {
            >.row {
                row-gap: 20px;
            }
        }
    }

    /* ---- release every sticky box once columns stack ---- */
    .sgfp_page .sticky,
    .sgfp_page .stickyBox {
        position: static;
    }

    .rgsText {
        padding: 20px;
    }

    /* ---- hero: smaller vertical bar + shorter image ---- */
    .sgfp-hero {
        min-height: auto;
    }

    .sgfp-hero__bar {
        flex: 0 0 110px;
    }

    .sgfp-hero__title {
        font-size: 28px;
        padding: 40px 0;
    }

    .sgfp-hero__media {
        padding-top: 40px;
    }

    .sgfp-hero__mediaInner {
        padding: 20px 0 0 20px;
    }

    .sgfp-hero__mediaInner:before {
        height: 200px;
    }

    .sgfp-hero__mediaInner figure {
        height: 440px;
    }

    /* ---- headings ---- */
    .gov-h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    /* ---- 3-up cards -> 2-up ---- */
    .tri-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gov-h2 {
        font-size: 22px;
    }

    .gov-h3 {
        font-size: 18px;
    }


    /* ---- conflict-of-interest divider ---- */
    .rightBorder {
        border-right: none;
        padding-right: 0;
    }

    /* ---- financial section oversized paddings ---- */
    .financialWrap .financialTop {
        padding: 20px;
        padding-bottom: 320px;
    }

    .financialMain {
        padding: 0 15px;
    }

    .stategicWrap {
        padding: 20px;
        padding-bottom: 410px;
        background-size: 100% !important;
        background-repeat: no-repeat !important;
        background-position: center bottom !important;
    }

    .commiteeSym {
        margin-top: 20px;
    }

    .headerBox {
        .hero-title {
            font-size: 32px;
        }
    }

    .commiteeSym {
        padding: 0 5px;
    }

    .graphImg {
        margin-bottom: 20px;
    }

    .bocWrap,
    .beWrap {
        padding: 0 5px;
    }

    .beWrap {
        .row-gap {
            gap: 0px;
        }
    }

    .bepWrap {
        .bepImg {
            margin-top: 15px;
        }
    }

    .quoteText {
        &:after {
            width: 80px;
            height: 72px;
            right: 14px;
            top: 99%;
        }
    }

    .rad_50 {
        border-radius: 25px;
    }

}

@media (max-width: 767px) {

    /* ---- hero: switch to a stacked, horizontal layout ---- */
    .sgfp-hero__inner {
        flex-direction: column;
    }

    .sgfp-hero__bar {
        flex: none;
        width: 100%;
        align-items: center;
        padding: 20px;
        border-radius: 0;
    }

    .sgfp-hero__title {
        writing-mode: horizontal-tb;
        transform: none;
        text-align: center;
        font-size: 24px;
        padding: 0;
    }

    .sgfp-hero__media {
        padding-top: 0;
    }

    .sgfp-hero__mediaInner {
        padding: 0 0 0 15px;
    }

    .sgfp-hero__mediaInner:before {
        display: none;
    }

    .sgfp-hero__mediaInner figure {
        height: 300px;
        border-radius: 30px 0 0 0;
    }

    .financialWrap {
        .fz_20 {
            font-size: 16px !important;
        }

        .p_40 {
            padding: 20px;
        }
    }

    /* ---- tri-grid -> single column ---- */
    .tri-grid {
        grid-template-columns: 1fr;
    }

    /* ---- two-column ethics panel -> stacked ---- */
    .etueWrap {
        flex-direction: column;
    }

    .etueWrap .etueItem {
        width: 100%;
    }

    .etueWrap .etueItem:first-child {
        padding-right: 0;
        padding-bottom: 15px;
        margin-bottom: 15px;
        border-right: none;
        border-bottom: 1px solid #fff;
    }

    .etueWrap .etueItem:last-child {
        padding-left: 0;
    }

    /* ---- award text/image split -> stacked ---- */
    .emContWrap .emContLeft,
    .emContWrap .emContRight {
        width: 100%;
    }

    .emContWrap .emContLeft {
        padding-right: 20px;
    }

    .emContWrap .emContRight .awardsImg {
        height: auto;
        margin-top: 15px;
    }

    .emContWrap .emContRight .awardsImg img {
        height: auto;
    }

    /* ---- board director cards -> stacked ---- */
    .dir-card .bodBox {
        flex-direction: column;
    }

    .dir-card .bodBox .bodInfo {
        width: 100%;
        max-width: 320px;
        margin: 0px auto 15px;
    }

    .dir-card .bodBox .bodDescWrap {
        width: 100%;
        padding-left: 0;
    }

    .dir-card {
        .bodBox {
            .bodInfo {
                .bodImg {
                    flex-direction: column;
                    row-gap: 10px;

                    .bodBudges {
                        width: 100%;
                        flex-direction: row;
                    }
                }
            }
        }
    }

    /* ---- cash-flow split -> stacked ---- */
    .cfWrap .cfLeftText,
    .cfWrap .cfRightText {
        width: 100%;
    }

    /* ---- box paddings / quotes ---- */
    .esgWrap .esgText {
        padding: 20px;
    }

    .quoteText {
        padding: 20px;
    }

    .cpaWrap {
        padding-top: 30px;
    }

    .graphImg h4 {
        min-height: 0;
    }

    /* ---- drop the connector lines on the linkages grid ---- */
    .borderBoxWrapInner {
        min-height: 0;
    }

    .borderBoxWrapInner::before,
    .borderBoxWrapInner::after {
        display: none;
    }

    .headerBox {
        .hero-title {
            font-size: 28px;
            margin-bottom: 12px;
        }
    }

    .gov-section {
        overflow: hidden;
    }

    .leaderShipBox {
        .leaderShipImg {
            height: 530px;
        }
    }

    .gov-h1 {
        font-size: 26px;
        text-align: center;
    }

    .gov-h2 {
        font-size: 20px;
    }

    .riskGovWrap {
        .quoteText {
            .fz_22 {
                font-size: 16px !important;
            }

            .fz_20 {
                font-size: 14px !important;
            }
        }

        .textWrap {
            .fz_24 {
                font-size: 16px !important;
            }
        }
    }

    .linkNoteWrap {
        padding: 10px 15px;
    }

    .leaderShipWrap {
        .fz_16 {
            font-size: 14px !important;
        }
    }

    .emContWrap {
        .emContLeft {
            &::before {
                width: 100%;
            }
        }
    }
}

@media (max-width: 575px) {

    /* ---- governance framework list -> single column ---- */
    .flowCard .flowCardBody .flowCardList li {
        width: 100%;
        border-right: none;
    }

    .flowCard .flowCardBody .flowCardList li:nth-child(1n),
    .flowCard .flowCardBody .flowCardList li:nth-child(2n) {
        padding: 12px 0;
    }


    /* ---- committee legend -> single column ---- */
    .symWrapBox ul li {
        width: 100%;
    }

    /* ---- zero callouts -> stacked ---- */
    .zero-row .zero-card {
        width: 100%;
    }

    .dir-card {
        &:not(:last-child) {
            margin-bottom: 30px;
        }

        .bodBox {
            .bodDescWrap {
                .exp {
                    gap: 10px;
                    flex-direction: column;

                    li {
                        width: 100%;
                    }
                }
            }
        }
    }

    /* ---- award grid -> single column ---- */
    .energyWrap .eneryItem {
        width: 100%;
    }

    /* ---- "Our Policies" pill heading ---- */
    .cpaWrap .bgHeading .bgHead {
        font-size: 22px;
        padding: 8px 25px;
    }

    .cpaListBox ul li {
        gap: 15px;
        padding: 12px 15px 12px 35px;
    }

    /* ---- trim large utility paddings ---- */
    .p_40 {
        padding: 20px;
    }

    .p_30 {
        padding: 15px;
    }

    .stategicWrap {
        padding: 20px;
        padding-bottom: 330px;
        background-size: 100% !important;
        background-position: center bottom !important;
        border-radius: 20px 20px 0 0;
        background-repeat: no-repeat !important;
    }

    .flowCard {
        .flowCardBody {
            .flowCardList {
                li {
                    &:nth-last-child(2) {
                        border-bottom: 1px solid #979797;
                    }
                }
            }
        }
    }

    .border_heading_box {
        .textWrap {
            padding-bottom: 20px;
        }
    }

    .leaderShipBox {
        .leaderShipImg {
            height: 430px;
        }
    }

    .cfWrapOuter {
        padding: 0px;
    }

    .cfWrap {

        .cfLeftText,
        .cfRightText {
            padding: 15px;
        }
    }
}

@media (max-width: 480px) {
    .dir-card {
        .bodBox {
            .bodInfo {
                max-width: 100%;

                .bodImg {
                    figure {
                        padding: 0;
                        width: 100%;
                        height: auto;
                    }
                }
            }
        }
    }

    .leaderShipBox {
        .leaderShipImg {
            height: auto;
        }
    }
}

@media (max-width: 430px) {

    .stategicWrap {
        padding-bottom: 250px;
    }
}