

.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;
        }
    }
}
.strategyAcc{
    .accWrap{
        .accInner{
            .h5wrapTop{
                margin-bottom: 15px;
                position: relative;
                &:before{
                    left: 0;
                    right: 0;
                    top: 50%;
                    height: 1px;
                    content: '';
                    z-index: -1;
                    position: absolute;
                    transform: translateY(-50%);
                    background-color: var(--black);
                }
                .h5wrap{
                    background-color: #fff;
                    border-radius: 30px;
                    display: inline-flex;
                    padding: 10px 30px 17px;
                    border: 1px solid var(--sky);
                    box-shadow: 5px 5px 12px var(--sky);
                }
            }
            .eachAcc{
                &: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;
                    box-shadow: 0 2px 3px #00000050;
                    background: #d3e4d8;
                    background: linear-gradient(90deg, #d3e4d8 0%, #fafad1 100%);
                    figure{
                        width: 80px;
                        height: 80px;
                        display: flex;
                        padding: 5px;
                        border-radius: 50%;
                        position: relative;
                        align-items: center;
                        justify-content: center;
                        background: transparent;
                        border: 1px solid #000000;
                        img{
                            width: 100%;
                            height: 100%;
                            padding: 10px;
                            border-radius: 50%;
                            object-fit: contain;
                            background: #008449;
                            background: linear-gradient(90deg,rgba(0, 132, 73, 1) 0%, rgba(231, 229, 25, 1) 100%);
                        }
                    }
                    h5{
                        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: 18px;
                        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: #d3e4d8;
                        background: linear-gradient(90deg, #d3e4d8 0%, #fafad1 100%);

                        .eachBox{
                            &:not(:last-child){
                                margin-bottom: 30px;
                            }
                            .boxCont{
                                
                            }
                        }
                    }
                }
                &:first-child{
                    .accCont{
                        display: block;
                    }
                }
            }
        }
    }
}
.bg_green_box{
    .rel{
        &:before{
            background-color: var(--skyLt);
        }
    }
}



/* Responsive */

@media screen and (max-width: 1536px) {
    .bannerWrap{
        -ms-flex: 0 0 80%;
        flex: 0 0 80%;
        max-width: 80%;
    }
}



@media screen and (max-width: 1280px) {
    .sec_1 {
        .grad_black {
            h2{
                margin-bottom: 20px;
            }
            &:before{
                content: normal;
            }
            .arHead {
                position: static;
                padding-bottom: 0 !important;
            }
            .whiteBox {
                * {
                    color: #000 !important;
                }
            }
        }
    }
    .bannerWrap {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}


@media screen and (max-width: 768px) {
    .strategyAcc {
        .accWrap {
            .accInner {
                .eachAcc {
                    .accTrigger {
                        padding: 10px 15px;
                    }
                    .accCont {
                        .accContInner {
                            padding: 30px 15px;
                        }
                    }
                }
            }
        }
    }
}