.sec_1 {
    .grad_black {
        position: relative;

        &:before {
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            content: '';
            position: absolute;
            background: linear-gradient(90deg, #000000a6 30%, #00000000 100%);
        }

        .arHead {
            top: 0;
            left: 0;
            right: 0;
            margin: auto;
            position: absolute;
        }
    }
}

.purposeAcc {
    .accWrap {
        .accInner {
            .eachAcc {
                overflow: hidden;
                border-radius: 10px;
                box-shadow: 0px 2px 8px #00000040;

                &:not(:last-child) {
                    margin-bottom: 30px;
                }

                .accTrigger {
                    display: flex;
                    cursor: pointer;
                    transition: 0.6s;
                    padding: 10px 30px;
                    align-items: center;
                    border-radius: 10px;
                    position: relative;
                    background: #008449;
                    background: linear-gradient(90deg, rgba(0, 132, 73, 1) 0%, rgba(231, 229, 25, 1) 100%);

                    figure {
                        width: 80px;
                        height: 80px;
                        display: flex;
                        padding: 15px;
                        border-radius: 50%;
                        position: relative;
                        align-items: center;
                        background: #ffffff;
                        justify-content: center;

                        img {
                            width: 100%;
                            height: 100%;
                            border-radius: 50%;
                            object-fit: contain;
                        }
                    }

                    h5 {
                        color: #ffffff;
                        padding-left: 20px;
                        width: calc(100% - 80px);
                    }

                    &::after {
                        content: '\f078';
                        font-family: fontawesome;
                        position: absolute;
                        right: 15px;
                        top: 50%;
                        transform: translateY(-50%);
                        color: #000000;
                        font-size: 24px;
                        transition: all 0.5s;
                    }

                    &.active {
                        box-shadow: none;
                        border-radius: 10px 10px 0 0;

                        &::after {
                            transform: translateY(-50%) rotate(180deg);
                        }
                    }
                }

                .accCont {
                    display: none;

                    .accContInner {
                        padding: 30px;
                        padding-top: 10px;
                        position: relative;
                        background: #ffffff;

                        .eachBox {
                            &:not(:last-child) {
                                margin-bottom: 30px;
                            }

                            .boxCont {}
                        }
                    }
                }

                &:first-child {
                    .accCont {
                        display: block;
                    }
                }
            }

            .iconImg {
                width: 18px;
                height: 18px;

                &.iconImgR {
                    transform: rotate(-90deg);
                }
            }

            .performaceWrap {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;

                .eachCap {
                    width: calc((100% / 6) - 10px);
                }

                .liHead {
                    display: flex;
                    margin-left: 0px;
                    border-radius: 10px;
                    align-items: center;
                    margin-bottom: 20px;
                    justify-content: flex-end;
                    flex-direction: row-reverse;

                    img {
                        width: 60px;
                        height: 60px;
                        padding: 8px;
                        border-radius: 50%;
                        object-fit: contain;
                        display: inline-block;
                        background-color: #FFF;
                        border: 1px solid #000;
                    }

                    h6 {
                        margin-bottom: 0;
                        padding-left: 10px;
                        width: calc(100% - 60px);
                    }
                }

                .sameCap {
                    text-align: center;

                    img {
                        width: 100%;
                    }
                }
            }
        }
    }
}

.bg_green_box {
    .rel {
        &:before {
            background-color: var(--skyLt);
        }
    }
}


/* Responsive */
@media only screen and (max-width: 1366px) {
    .purposeAcc {
        .accWrap {
            .accInner {
                .eachAcc {
                    .accTrigger {
                        padding: 10px 44px 10px 15px;

                        figure {
                            width: 60px;
                            height: 60px;
                            padding: 8px;
                        }

                        h5 {
                            width: calc(100% - 60px);
                        }
                    }

                    .accCont {
                        .accContInner {
                            padding: 30px 15px;
                        }
                    }
                }

                .performaceWrap {
                    .liHead {
                        img {
                            width: 40px;
                            height: 40px;
                            padding: 5px;
                        }

                        h6 {
                            width: calc(100% - 40px);
                        }
                    }
                }
            }
        }
    }
}

@media(max-width: 1280px) {
    .purposeAcc {
        .accWrap {
            .accInner {
                .performaceWrap {
                    .liHead {
                        h6 {
                            font-size: 15px !important;
                        }
                    }
                }
            }
        }
    }
}



@media only screen and (max-width: 1199px) {
    .purposeAcc {
        .accWrap {
            .accInner {
                .performaceWrap {
                    .eachCap {
                        width: calc((100% / 3) - 10px);
                        margin-bottom: 20px;
                    }
                }
            }
        }
    }

    .investCaseAcc {
        .accWrap {
            .accInner {
                .eachAcc {
                    .accTrigger {
                        padding: 10px 15px;
                    }
                }
            }
        }
    }
}


@media(max-width: 1024px) {
    .sec_1 {
        .imgBox {
            .grad_black {
                figure {
                    height: 330px;
                }
            }
        }
    }
}

@media(max-width: 991px) {
    .purposeAcc {
        .accWrap {
            .accInner {
                .performaceWrap {
                    .liHead {
                        h6 {
                            font-size: 16px !important;
                        }
                    }
                }
            }
        }
    }
}

@media only screen and (max-width: 767px) {
    .purposeAcc {
        .accWrap {
            .accInner {
                .performaceWrap {
                    .eachCap {
                        width: calc((100% / 2) - 10px)
                    }
                }
            }
        }
    }
}



@media only screen and (max-width: 575px) {
    .sec_1 {
        .imgBox {
            &.grad_black {
                figure {
                    height: 250px;
                }
            }
        }
    }

    .purposeAcc {
        .accWrap {
            .accInner {
                .performaceWrap {
                    .eachCap {
                        width: 100%;
                        margin-bottom: 30px;
                    }

                    .liHead {
                        margin-bottom: 10px;
                    }
                }
            }
        }
    }
}