/*===capital css start===*/
.capitalPage {
    .capSec_1 {
        background: linear-gradient(to right, #93c3a4 0%, #f3f28c 100%);

        .capitalOverview {
            background-color: #ffffff;
            box-shadow: 4px 2px 10px 0px #01010199;
            border-radius: 30px;
            position: relative;
            margin-top: -175px;
            /* overflow: hidden; */
            z-index: 1;

            .overviewText {
                padding: 40px 50px 50px;

                .capList {
                    ul {
                        display: flex;
                        flex-wrap: wrap;
                        gap: 10px;

                        li {
                            width: 50px;
                            height: 50px;
                            border-radius: 50%;
                            background-color: #e6e7e8;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            color: #0000004D;
                            transition: 0.3s;
                            position: relative;
                            margin-top: 10px;

                            a {
                                color: #0000004D;
                                transition: 0.3s;
                                display: flex;
                                width: 100%;
                                height: 100%;
                                justify-content: center;
                                align-items: center;
                            }

                            &.active {
                                background: linear-gradient(to right, #368c48 0%, #d6d926 100%);
                                color: #fff;
                                font-weight: 700;

                                a {
                                    color: #fff;
                                }
                            }

                            &:hover {
                                background: linear-gradient(to right, #368c48 0%, #d6d926 100%);
                                color: #fff;

                                a {
                                    color: #fff;
                                }
                            }

                            .toolTip {
                                position: absolute;
                                bottom: calc(100% + 10px);
                                left: 50%;
                                z-index: 5;
                                display: block;
                                width: max-content;
                                max-width: 200px;
                                white-space: nowrap;
                                text-align: center;
                                color: #fff;
                                font-size: 13px;
                                font-weight: 600;
                                line-height: 1.2;
                                letter-spacing: 0.2px;
                                padding: 7px 12px;
                                border-radius: 8px;
                                background: #008449;
                                box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.18);
                                visibility: hidden;
                                opacity: 0;
                                pointer-events: none;
                                transform: translate(-50%, -6px);
                                transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;

                                &::after {
                                    content: '';
                                    position: absolute;
                                    bottom: -4px;
                                    left: 50%;
                                    width: 10px;
                                    height: 10px;
                                    border-radius: 2px;
                                    background-color: #008449;
                                    transform: translateX(-50%) rotate(45deg);
                                }
                            }

                            /* first pill sits at the panel edge - keep its tooltip from being clipped */
                            &:first-child {
                                .toolTip {
                                    left: 0;
                                    transform: translate(0, -6px);

                                    &::after {
                                        left: 25px;
                                    }
                                }
                            }

                            &:hover {
                                .toolTip {
                                    visibility: visible;
                                    opacity: 1;
                                    transform: translate(-50%, 0);
                                }
                            }

                            &:first-child {
                                &:hover {
                                    .toolTip {
                                        transform: translate(0, 0);
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .gradient-text {
        background: linear-gradient(to right, #1e7d3a, #6aa84f);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .sdgWrap {
        padding: 30px 50px;
        border-top: 1px solid #000;
        background-color: #ceecf3;
        border-radius: 0px 0px 30px 30px;

        .sdgHead {
            position: relative;
            margin-top: -56px;

            h3 {
                padding: 10px 30px;
                border: 1px solid #000;
                border-radius: 30px;
                background-color: #fff;
            }
        }
    }

    .capIcon {
        position: absolute;
        right: -100px;
        bottom: -60px;
        width: 185px;
    }

    .sdgList {
        ul {
            display: flex;
            flex-wrap: wrap;

            li {
                width: 80px;
            }
        }
    }
}

.capPanelHead {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 15px;

    h3 {
        font-size: 48px;
        margin-bottom: 0;
    }

    .capHeadLine {
        flex: 1;
        height: 1px;
        background: rgb(0 0 0);
    }

    .capPanelIcon {
        width: 90px;
        height: 90px;
        flex-shrink: 0;
        border-radius: 50%;
        background: #fff;
        border: 1px solid #000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px;
    }
}

.borderBox {
    border: 1px solid #9fdbeb;
    border-radius: 30px;
    padding: 40px 20px 20px;
    position: relative;
    height: 100%;

    h4 {
        border: 1px solid #9fdbeb;
        padding: 5px 30px 10px;
        border-radius: 30px;
        background-color: #fff;
        position: absolute;
        margin-bottom: 0px;
        top: -30px;
        left: 20px;
        box-shadow: 5px 5px 15px 0px #0b9dd1;
    }

    &.headPatch {
        padding: 0px;
        padding-top: 40px;
    }
}

.stakeWrap {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0 30px;
    position: relative;

    &::before {
        width: 100%;
        height: 40px;
        background-color: #f1f8fc;
        position: absolute;
        left: 0;
        top: 45px;
        content: "";
    }

    .stakeItem {
        width: calc(100% / 4);
        padding: 0 20px;
        text-align: center;
        position: relative;
        z-index: 1;

        .stakeIcon {
            height: 90px;
            width: 90px;
            border-radius: 50%;
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            margin: 0 auto;

            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }
    }
}

.shadowBox {
    box-shadow: 0 0 10px 0 #c2c2c2;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 30px;
}

.eachIconH {
    .numMain {
        position: relative;
        font-size: 40px;
        font-weight: 400;

        &::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 2px;
            width: 50px;
            background-color: #b2d235;
        }
    }
}

.shadowBox2 {
    box-shadow: 0 0 10px 0 #c2c2c273;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
}

.fltLt {
    float: left;
    margin-right: 15px;
}

.fltLRt {
    float: right;
    margin-left: 15px;
}

.oH {
    overflow: hidden;
}


/* Responsive */
@media (max-width: 1600px) {
    .capitalPage {
        .capIcon {
            right: 0;
            width: 110px;
        }
    }

    .stakeWrap {
        &::before {
            top: 40px;
        }

        .stakeItem {
            .stakeIcon {
                height: 70px;
                width: 70px;
            }
        }
    }
}

@media only screen and (max-width: 1536px) {
    .capPanelHead {
        h3.fz_60 {
            font-size: 40px !important;
        }
    }

    .fz_36 {
        font-size: 28px !important;
    }

    .fz_32 {
        font-size: 28px !important;
    }

    .fz_28 {
        font-size: 24px !important;
    }

    .fz_26 {
        font-size: 22px !important;
    }

    .fz_24 {
        font-size: 18px !important;
    }

}



@media only screen and (max-width: 1366px) {
    .capPanelHead {
        .capPanelIcon {
            width: 60px;
            height: 60px;
            padding: 8px;
        }
    }

    .stakeWrap {
        &::before {
            height: 28px;
        }

        .stakeItem {
            .stakeIcon {
                width: 60px;
                height: 60px;
                padding: 12px;
            }
        }
    }

}

@media only screen and (max-width: 1280px) {
    .capPanelHead {
        h3.fz_60 {
            font-size: 35px !important;
        }
    }

    .capitalPage {
        .capSec_1 {
            .capitalOverview {
                margin-top: -138px;

                .overviewText {
                    padding: 20px 20px 30px;

                    .capList {
                        ul {
                            li {
                                width: 40px;
                                height: 40px;
                            }
                        }
                    }
                }
            }
        }

        .sdgWrap {
            padding: 30px 20px 20px;

            .sdgHead {
                margin-top: -50px;

                h3 {
                    padding: 7px 30px;
                }
            }
        }

        .sdgList {
            ul {
                li {
                    width: 62px;
                }
            }
        }
    }

    .textWrap {
        .fz_36 {
            font-size: 24px !important;
        }

        .fz_26 {
            font-size: 20px !important;
        }
    }

    .stakeWrap {
        padding: 12px 0 20px;
    }

    .borderBox {
        padding: 30px 20px 20px;

        &.headPatch {
            padding-top: 20px;
        }

        h4 {
            font-size: 14px !important;
            padding: 8px 30px 10px;
            top: -25px;
        }
    }
}

@media(max-width: 1140px) {
    .capitalPage {
        .capSec_1 {
            .capitalOverview {
                margin-top: -100px;
            }
        }
    }
}

@media (max-width: 991px) {
    .capitalPage {
        .capIcon {
            bottom: -40px;
            width: 80px;
        }
    }
}

@media only screen and (max-width: 767px) {
    .capitalPage {
        .capSec_1 {
            .capitalOverview {
                margin-top: 0;
            }
        }
    }

    .capSec_2 {
        .col-md-4 {
            margin-bottom: 50px;
        }
    }

    .stakeWrap {
        padding: 0px 0 30px;
    }

    .capPanelHead {
        h3.fz_60 {
            font-size: 30px !important;
        }
    }

    .textWrap {
        .fz_36 {
            font-size: 22px !important;
        }

        .fz_26 {
            font-size: 20px !important;
        }
    }

    .fz_36 {
        font-size: 24px !important;
    }

    .fz_32 {
        font-size: 22px !important;
    }

    .fz_28 {
        font-size: 20px !important;
    }

    .fz_26 {
        font-size: 18px !important;
    }

    .fz_24 {
        font-size: 16px !important;
    }

    .capitalPage {
        .sdgList {
            ul {
                li {
                    width: 60px;
                }
            }
        }
    }

    .stakeWrap {
        &::before {
            top: 20px;
        }
    }
}

@media only screen and (max-width: 640px) {
    .capitalPage {
        .capSec_1 {
            .capitalOverview {
                .overviewText {
                    .capList {
                        ul {
                            gap: 10px;

                            li {
                                width: 40px;
                                height: 40px;
                            }
                        }
                    }
                }
            }
        }
    }

    .capSec_2 {
        padding-top: 60px;
    }
}

@media (max-width: 575px) {
    .capitalPage {
        .capIcon {
            bottom: -20px;
            width: 60px;
        }
    }

    .stakeWrap {
        .stakeItem {
            width: calc(100% / 4);
        }
    }
}

@media (max-width: 480px) {
    .capPanelHead {
        h3.fz_60 {
            font-size: 25px !important;
        }
    }

    .capPanelHead {
        gap: 14px;

        .capPanelIcon {
            width: 52px;
            height: 52px;
            padding: 10px;
        }
    }

    .fz_36 {
        font-size: 20px !important;
        margin-bottom: 15px;
    }

    .fz_26 {
        font-size: 16px !important;
    }
}