.investCaseAcc {
    .accWrap {
        .accInner {
            .eachAcc {
                &:not(:last-child) {
                    margin-bottom: 50px;
                }

                .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;

                    figure {
                        width: 80px;
                        height: 80px;
                        padding: 15px;
                        display: flex;
                        border-radius: 50%;
                        align-items: center;
                        justify-content: center;
                        background-color: #fff;
                        border: 1px solid var(--green);

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: contain;
                        }
                    }

                    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 {
                        &::after {
                            transform: translateY(-50%) rotate(180deg);
                        }
                    }
                }

                .accCont {
                    display: none;
                    padding-top: 10px;

                    .accContInner {
                        padding-top: 50px;
                        position: relative;

                        &:before {
                            top: 0;
                            left: 0;
                            right: 0;
                            content: '';
                            height: 100%;
                            position: absolute;
                            border-radius: 30px 30px 0 0;
                            background: linear-gradient(180deg, #faf9ce 0%, #faf9ce00 100%);
                        }

                        .contentBox {
                            z-index: 2;
                            position: relative;
                            border-radius: 30px 30px 0 0;

                            .topBox {}

                            .numBoxWrap {
                                border-radius: 30px 30px 0 0;
                            }
                        }
                    }
                }

                &:first-child {
                    .accCont {
                        display: block;
                    }
                }
            }
        }
    }
}

.eachIconH {
    .numMain {
        position: relative;

        &::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 2px;
            width: 50px;
            background-color: #b2d235;
        }
    }
}


@media only screen and (max-width: 1199px) {
    .investCaseAcc {
        .accWrap {
            .accInner {
                .eachAcc {
                    &:not(:last-child) {
                        margin-bottom: 30px;
                    }

                    .accTrigger {
                        padding: 10px 15px;

                        figure {
                            width: 60px;
                            height: 60px;
                            padding: 10px;
                        }
                    }

                    .accCont {
                        .accContInner {
                            .contentBox {
                                .topBox {
                                    padding: 20px 15px;
                                }

                                .numBoxWrap {
                                    padding: 20px 15px !important;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}


@media only screen and (max-width: 576px) {
    .comm_col {
        max-width: 50%;
    }
}


@media only screen and (max-width: 480px) {
    .comm_col {
        max-width: 100%;

        &:not(:last-child) {
            margin-bottom: 30px;
        }
    }
}