/*-----------------------------
    Accordion Item
-----------------------------*/

.accordion-wrapper {
    .card {
        +.card {
            margin-top: 20px;
        }

        border: none;
        background-color: transparent;
        border: 1px solid var(--main-color-one);
        border-radius: 5px;
        transition: .7s all ease;

        .card-header {
            background-color: transparent;
            padding: 0;
            border: none;

            a {
                display: block;
                font-size: 20px;
                line-height: 28px;
                font-weight: 700;
                font-family: var(--body-font);
                background-color: #fff;
                color: var(--heading-color);
                border-radius: 5px;
                padding: 15px 30px;
                cursor: pointer;
                position: relative;
                transition: .7s all ease;

                &:after {
                    position: absolute;
                    right: 30px;
                    top: 15px;
                    content: "\f107";
                    font-family: "fontawesome";
                }

                &[aria-expanded="true"] {
                    background: var(--main-color-one);
                    border-radius: 5px 5px 0px 0px;
                    color: #fff;

                    &:after {
                        content: "\f106";
                    }
                }
            }
        }

        .card-body {
            background-color: #fff;
            padding: 20px 30px;
            // border: 1px solid red;
            border-top: 0;
            border-radius: 0px 0px 5px 5px;
            font-size: 16px;
            line-height: 28px;
            font-family: var(--body-font);
            font-weight: 400;
            color: var(--heading-color);
            transition: .7s alternate;
        }
    }
}

.accoridion-section {
    background: #FFF9FC;
    padding: 116px 0px 128px 0px;
    position: relative;
    margin-top: 103px;

    &.style-01 {
        margin-top: 120px;
    }

    &.style-02 {
        padding: 246px 0px 0 0px;
        margin-top: 0;
    }

    .section-title {
        .title {
            font-size: 40px;
            font-weight: 700;
            color: #000629;
            line-height: 55px;
        }
    }

    .shape {
        position: absolute;
        right: 14%;
        top: 32%;
    }

    .shape-01 {
        position: absolute;
        top: 65%;
        left: 10%;
    }

    .shape-02 {
        position: absolute;
        top: 15%;
        left: 20%;
    }
}

.accordion-wrapper-02 {
    .card {
        +.card {
            margin-top: 20px;
        }
        border: none;
        background-color: #fff;
        border: 1px solid var(--main-color-one);
        border-radius: 6px;
        transition: .3s all ease;
        .card-header {
            background-color: transparent;
            padding: 0;
            border: none;
            a {
                display: block;
                font-size: 20px;
                line-height: 30px;
                font-weight: 600;
                font-family: var(--heading-font);
                color: var(--heading-color);
                padding: 20px 20px 20px 25px;
                cursor: pointer;
                position: relative;
                transition: .3s all ease;
                &:after {
                    position: absolute;
                    right: 40px;
                    top: 50%;
                    transform: translateY(-50%);
                    color: var(--main-color-one);
                    content: "\f054";
                    font-family: "fontawesome";
                }
                &[aria-expanded="true"] {
                    background: var(--main-color-one);
                    color: #fff;
                    &:after {
                        content: "\f078";
                        color: #fff;
                    }
                }
            }
        }
        .card-body {
            background: var(--main-color-one);
            padding: 0px 20px 25px 25px;
            border-top: 0px;
            border-radius: 0px 0px 4px 4px;
            font-size: 16px;
            line-height: 28px;
            font-family: var(--body-font);
            font-weight: 400;
            color: #fff;
            transition: .3s alternate;
        }
    }
}

.accordion-wrapper-three {
    .card {
        +.card {
            margin-top: 20px;
        }

        border: none;
        background-color: transparent;
        border: 1px solid rgba(204, 204, 204, 0.5);
        border-radius: 0;
        transition: .5s all ease;

        .card-header {
            background-color: transparent;
            padding: 0;
            border: none;

            a {
                display: block;
                font-size: 20px;
                line-height: 28px;
                font-weight: 600;
                font-family: var(--heading-font);
                background-color: #fff;
                color: #292929;
                border-radius: 0px;
                padding: 15px 30px;
                cursor: pointer;
                position: relative;
                transition: .5s all ease;
                i {
                    font-size: 13px;
                    margin-right: 10px;
                    position: relative;
                    top: -3px;
                }

                &.show {
                    background: var(--main-color-one);
                    color: $white;
                }

                &:after { 
                    position: absolute;
                    right: 20px;
                    top: 15px;
                    font-size: 16px;
                    content: "\f067";
                    font-family: "fontawesome";
                }

                &::before {
                    content: '';
                    position: absolute;
                    right: 60px;
                    top: 0px;
                    width: 1px;
                    height: 100%;
                    background: rgba(204, 204, 204, 0.5);
                    
                }

                &[aria-expanded="true"] {
                    background: var(--main-color-one);
                    border-radius: 0px;
                    color: #fff;

                    &:after {
                        content: "\f068";
                    }

                    &::before {
                        background: $white;
                    }
                }
            }
        }

        .card-body {
            background-color: #fff;
            padding: 20px 30px;
            // border: 1px solid red;
            border-top: 0;
            border-radius: 0px;
            font-size: 16px;
            line-height: 28px;
            font-family: var(--body-font);
            font-weight: 400;
            color: #6B6B6B;
            transition: .5s alternate;
        }
    }
}