<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.header-test {
    height: 440px;
}

.pb-120 {
    padding-bottom: 120px;
}

.detail-title {
    text-align: center;
}

.detail-title span {
    font-size: 40px;
    font-weight: 700;
    color: #E01546;
}

.detail-title p {
    font-size: 18px;
    font-weight: 400;
    color: #104386;
}

.sustainable-title {
    text-align: center;
    margin: 0 150px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sustainable-title span {
    font-size: 40px;
    font-weight: 700;
    color: #E01546;
}

.sustainable-title p {
    font-size: 18px;
    font-weight: 400;
    color: #104386;
}

.sustainable-title h1 {
    color: #104386;
    font-weight: 700;
    font-size: 24px;
    margin: 0;
}


/* Circular Roadmap Page */

.circle {
    border-radius: 50%;
    width: 350px;
    height: 350px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    filter: contrast(0.5);
    transition: all .3s ease;
}

.circle.active {
    filter: contrast(1);
    box-shadow: 0px 0px 54px 0px #6AA0E8;
}



.circle img {
    position: absolute;
    width: 300px;
    height: 300px;
}

.circle p {
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    color: #FFF;
    max-width: 200px;
}

.circles {
    position: relative;
    display: flex;
    justify-content: center;
}

.circles:nth-of-type(2) {
    margin-top: -50px;
}

.c-top .circle:nth-of-type(1) {
    z-index: 2;
}

.c-top .circle:nth-of-type(1) img {
    left: -10px;
    top: -16px;
}

.c-top .circle:nth-of-type(2) {
    z-index: 4;
    margin-left: -50px;
}

.c-top .circle:nth-of-type(2) img {
    right: -16px;
    top: -10px;
}

.c-bottom .circle:nth-of-type(1) {
    z-index: 3;
}

.c-bottom .circle:nth-of-type(1) img {
    left: -4px;
    bottom: -29px;
}

.c-bottom .circle:nth-of-type(2) {
    z-index: 1;
    margin-left: -50px;
}

.c-bottom .circle:nth-of-type(2) img {
    right: -10px;
    bottom: -16px;
}

.data-content {
    text-align: center;
    padding-top: 64px;
}

.data-content p {
    font-weight: 400;
    font-size: 18px;
    color: #104386;
    max-width: 700px;
}

/* Strategies Pages */

.boxs-container {
    background-color: #ECF4FF;
    margin: 0 100px;
    border-radius: 32px;
    padding: 30px 0;


    .boxs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin: 0 -100px;
    }

    .box {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 24px;
        border-radius: 24px;
        background-color: #FFF;
        border: 1px solid #E3DFDE;
        box-shadow: 0px 4px 10px 0px #0000000D, 0px 17px 17px 0px #0000000A, 0px 39px 23px 0px #00000008, 0px 69px 28px 0px #00000003, 0px 108px 30px 0px #00000000;
        min-height: 250px;
        align-items: flex-start;

        .is-icon{
            width: 50px;
        }
    }

    .box span {
        font-weight: 700;
        font-size: 32px;
        line-height: 41.66px;
        color: #E01546;
        max-width: 300px;
        display: block;
        margin-bottom: 30px;
    }

    .box-button {
        background-color: #104386;
        padding: 12px 8px;
        display: flex;
        align-items: center;
        justify-content: end;
        width: 64px;
        max-height: 32px;
        border-radius: 38px;
    }

    .box-button img {
        background-color: #FFF;
        border-radius: 50%;
        padding: 4px;
    }
}

/* transformational approaches page */

.mt-8 {
    margin-top: 8rem !important;
}

.card-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;

    .card {
        position: relative;
        background-color: #FFF;
        border: 1px solid #E3DFDE;
        border-radius: 24px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 32px;
        min-height: 312px;

        .card-title {
            display: flex;
            align-items: center;
            justify-content: space-between;

            span {
                color: #104386;
                font-weight: 700;
                font-size: 24px;
                max-width: 450px;
            }
        }

        p {
            color: #104386;
            font-weight: 400;
            font-size: 18px;
            line-height: 23.44px;
            max-width: 500px;
        }
    }
}


.banner {
    background-image: url("../img/banner.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 24px;
    padding: 64px 48px;
    position: relative;
    margin-top: 24px;

    img {
        position: absolute;
        right: 24px;
        top: 30px;
    }

    .banner-title {
        display: flex;
        flex-direction: column;
        gap: 20px;

        span {
            color: #FFF;
        }

        span:nth-of-type(1) {
            font-weight: 700;
            font-size: 24px;
        }

        span:nth-of-type(2) {
            font-weight: 400;
            font-size: 18px;
        }
    }
}

/* strategies detail */

.box-detail {
    box-shadow: 0px 4px 10px 0px #0000000D, 0px 17px 17px 0px #0000000A, 0px 39px 23px 0px #00000008, 0px 69px 28px 0px #00000003, 0px 108px 30px 0px #00000000;
    background-color: #FFF;
    border: 1px solid #E3DFDE;
    border-radius: 24px;
    overflow: hidden;
    margin: 20px -100px;

    .bd-img img {
        width: 100%;
    }

    .bd-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 48px 32px;
        height: 100%;

        .bd-title {
            display: flex;
            flex-direction: column;
            gap: 32px;

            span {
                font-weight: 700;
                font-size: 32px;
                color: #E01E4F;
            }

            p {
                color: #104386;
                font-size: 16px;
                font-weight: 400;
            }
        }

        .box-button.back {
            color: #FFF;
            font-size: 14px;
            font-weight: 600;
            text-transform: capitalize;
            width: max-content;
            gap: 8px;
            padding: 16px 20px;
            min-height: 48px;
            border-radius: 8px;
        }
    }
}

/* investing page */

.investing-cards {
    display: flex;
    gap: 18px;

    .i-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 32px;
        padding: 24px;
        border-radius: 24px;
        border: 1px solid #E3DFDE;
        background-color: #FFF;
        box-shadow: 0px 4px 10px 0px #0000000D, 0px 17px 17px 0px #0000000A, 0px 39px 23px 0px #00000008, 0px 69px 28px 0px #00000003, 0px 108px 30px 0px #00000000;
        width: 33.33%;
    
        img {
            width: 75px;
            height: 75px;
        }
    
        span {
            color: #E01546;
            font-weight: 700;
            font-size: 30px;
            max-width: 300px;
            line-height: normal;
        }
    
        p {
            color: #104386;
            font-weight: 400;
            font-size: 16px;
        }
    
        .i-bottom {
            display: flex;
            align-items: center;
            gap: 24px;

            .st-icon{
                width: 50px;
                height: 50px;
            }
        }
    
    
        .i-btn-box {
            background-color: #E01E4F;
            padding: 12px 8px;
            border-radius: 38px;
            width: 32px;
            height: 64px;
            display: flex;
            align-items: end;
    
            .i-btn {
                background-color: #FFF;
                padding: 4px;
                border-radius: 50%;
                width: 16px;
                height: 16px;
                display: flex;
                justify-content: center;
                align-items: center;
    
                img {
                    width: 8px;
                    height: 8px;
                }
            }
        }
    }
}



.investing-box {
    background-image: url("../img/investing.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 32px;
    display: flex;
    justify-content: center;
    align-items: end;
    height: 450px;
    margin-top: -120px;
    padding-bottom: 120px;

    span {
        color: #104C8F;
        font-weight: 700;
        font-size: 48px;
    }
}

/* sustainable page */

.sc-content {
    box-shadow: 0px 4px 10px 0px #0000000D, 0px 17px 17px 0px #0000000A, 0px 39px 23px 0px #00000008, 0px 69px 28px 0px #00000003, 0px 108px 30px 0px #00000000;
    ;
    background-color: #FFF;
    border-radius: 24px;
    display: flex;

    .s-img {
        width: 100%;
        height: 100%;

        img {
            width: 100%;
            height: 100%;
            border-radius: 24px;
            object-fit: cover;
        }
    }

    .sc-btn {
        background-color: #E01E4F;
        padding: 16px 20px;
        border-radius: 8px;
        width: max-content;
        height: 50px;
        display: flex;
        align-items: center;
        gap: 8px;
        color: #FFF;
        font-weight: 600;
        font-size: 14px;
        text-transform: capitalize;

        img {
            background-color: #FFF;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 4px;
        }
    }

    .sc-detail {
        padding: 48px 32px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        position: relative;

        h1 {
            position: absolute;
            top: -40px;
            color: #104C8F1A;
            font-weight: 700;
            font-size: 60px;
        }
    }

    .sc-title {
        display: flex;
        flex-direction: column;
        gap: 32px;

        span {
            color: #104C8F;
            font-weight: 700;
            font-size: 24px;
        }

        p {
            font-weight: 400;
            font-size: 18px;
            color: #104C8F;
        }
    }
}

.sc-accordion {
    /* display: none; */
    flex-direction: column;
    gap: 4px;

    span {
        color: #E01E4F;
        font-weight: 700;
        font-size: 24px;
        border-bottom: 1px solid #E3DFDE;
        padding-bottom: 4px;
    }

    ul {
        padding-bottom: 32px;
        padding-left: 18px;
        padding-top: 32px;

        li {
            padding-bottom: 12px;
            font-size: 18px;
            color: #104386;
            font-weight: 700;
            max-width: 440px;
            list-style-type: disc;
        }

        li::marker {
            color: #E01E4F;
        }
    }
}

.sc-btn.active {
    background-color: #104386;
}

/* sfg impact page */

.impact-box {
    box-shadow: 0px 5px 11px 0px #0000000A, 0px 20px 20px 0px #00000008, 0px 44px 27px 0px #00000005, 0px 79px 32px 0px #00000003, 0px 123px 34px 0px #00000000, 0px 4px 40px 0px #00000040;
    padding: 56px 48px;
    background-color: #FFF;
    border-radius: 24px;
    margin: 0 50px;
    position: relative;


    .impact-img {
        img {
            position: absolute;
            top: -50px;
            right: -50px;
            max-height: 570px;
        }
    }


    .ic-accordion {
        max-width: 500px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        border-bottom: 1px solid #E3DFDE;

        .ic-title {
            display: flex;
            align-items: center;
            justify-content: space-between;

            span {
                color: #E01546;
                font-size: 32px;
                font-weight: 600;
                padding: 20px 0;
            }

            .ic-btn {
                /* background-color: #104386;
                padding: 12px 8px;
                display: flex;
                justify-content: end;
                align-items: center;
                width: 64px;
                height: 32px;
                border-radius: 38px; */

                img {
                    width: 40px;
                    height: 40px;
                }
            }
        }

        p {
            color: #104386;
            font-weight: 400;
            font-size: 18px;
            display: none;
        }
    }
}

.ic-accordion:last-child {
    border-bottom: none;
}

/* partners page */

.partners-box {
    position: relative;
    background-color: #ECF4FF;
    border-radius: 32px;
    margin: 0 100px;

    .p-content {
        display: flex;
        align-items: center;

        img {
            margin-top: -100px;
        }
    }

    .p-cards {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: -150px;
        margin-right: -50px;

        .p-card {
            display: flex;
            border-radius: 24px;
            align-items: center;
            border: 1px solid #E3DFDE;
            background-color: #FFF;
            padding: 36px 24px;
            position: relative;
            overflow: hidden;

            p {
                color: #104386;
                font-weight: 400;
                font-size: 16px;
                padding-left: 100px;
            }

            img {
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                height: 100%;
                margin-top: 0;
            }
        }
    }
}

/* vng page */

.vng-grid {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;

    .vng {
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0px 4px 10px 0px #0000000D, 0px 17px 17px 0px #0000000A, 0px 39px 23px 0px #00000008, 0px 69px 28px 0px #00000003, 0px 108px 30px 0px #00000000;
        background-color: #FFF;
        border-radius: 24px;
        overflow: hidden;

        .vng-img {
            height: 100%;
            width: 30%;

            img {
                width: 100%;
                height: 100%;
            }
        }

        .vng-content {
            display: flex;
            flex-direction: column;
            gap: 32px;
            padding: 48px 32px;
            width: 70%;

            span {
                color: #E01546;
                font-weight: 700;
                font-size: 24px;
            }

            p {
                color: #104386;
                font-weight: 400;
                font-size: 18px;
            }
        }
    }
}

/* eco page */

.eco-box {
    background-color: #ECF4FF;
    border-radius: 32px;
    display: flex;
    justify-content: space-between;
    margin: 0 50px;
}

.eco {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
    border-radius: 24px;
    box-shadow: 0px 4px 10px 0px #0000000D, 0px 17px 17px 0px #0000000A, 0px 39px 23px 0px #00000008, 0px 69px 28px 0px #00000003, 0px 108px 30px 0px #00000000;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 50px -50px;
    width: 33.33%;
    align-items: start;

    .eco-btn {
        background-color: #E01E4F;
        padding: 12px 8px;
        width: 32px;
        height: 64px;
        border-radius: 38px;
        display: flex;
        justify-content: center;
        align-items: end;

        img {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            padding: 4px;
            background-color: #FFF;
        }
    }
    .eco-icon{
        height: 50px;
    }

    .eco-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        width: 100%;

        img {
            width: 58px;
            height: 8px;
            margin-top: 15px;
        }

        span {
            color: #104C8F;
            font-weight: 700;
            font-size: 32px;
            max-width: 300px;
            text-align: center;
        }
    }
}</pre></body></html>