// Campaign right single item 
.campaign-list-item {
    padding: 38px 50px 30px 20px;

    &.home-six {
        padding: 0;

        .list-single-items {
            border-bottom: 1px solid rgba(14, 17, 90, 0.2);
            
            .content {
                .designation {
                    .event {
                        border-radius: 0;
                    }
                }

                .title {
                    font-family: var(--heading-font);
                    font-size: 24px;
                }
            }
        }
    }

    .list-single-items {
        margin-bottom: 30px;
        padding-bottom: 30px;
        // padding: 30px 20px;
        transition: .5s all ease;
        border-bottom: 1px dashed #CFCFCF;

        &:last-child {
            margin: 0;
            border-bottom: 0;
            padding-bottom: 0;
        }

        &.active {
            background: var(--main-color-one);
            border-radius: 10px;

            .content {
                .designation {
                    .event {
                        background: #fff;
                        color: var(--main-color-one);
                    }

                    .date {
                        color: #fff;
                    }
                }

                .title {
                    color: #fff;
                }

                p {
                    color: #fff;
                }
            }
        }

        .content {
            .designation {
                margin-bottom: 20px;

                .event {
                    font-size: 14px;
                    font-weight: 500;
                    line-height: 28px;
                    color: #fff;
                    background: var(--main-color-one);
                    padding: 5px 15px;
                    border-radius: 5px;
                    margin-right: 30px;
                }

                .date {
                    font-size: 14px;
                    font-weight: 500;
                    line-height: 28px;
                    color: #828282;
                }
            }

            .title {
                font-size: 22px;
                line-height: 32px;
                font-weight: 700;
                font-family: var(--body-font);
                margin-bottom: 15px;
                transition: .7s all ease;

                &:hover {
                    color: var(--main-color-one);
                }
            }

            p {
                font-size: 16px;
                line-height: 28px;
                font-weight: 400;
                margin-bottom: 0px;

                &.style-01 {
                    margin-bottom: 0;
                }
            }
        }
    }
}

.campaign-list-item-02 {
    padding: 30px 40px 15px 40px;
    border: 1px dashed #D2D2D2;
    border-radius: 10px;

    .list-single-items {
        transition: .7s all ease;
        margin-bottom: 30px;

        &:last-child {
            margin: 0;
            border-bottom: 0;
        }

        // &:hover {
        //     background: var(--main-color-one);
        //     border-radius: 10px;
        //     .content {
        //         .designation {
        //             .event {
        //                 background: #fff;
        //                 color: var(--main-color-one);
        //             }
        //             .date {
        //                 color: #fff;
        //             }
        //         }
        //         .title {
        //             color: #fff;
        //         }
        //         p {
        //             color: #fff;
        //         }
        //     }
        // }
        &.active {
            background: var(--main-color-one);
            border-radius: 10px;
            padding: 20px 18px;
            transform: scale(1.08);

            .content {
                .designation {
                    .event {
                        background: #fff;
                        color: var(--main-color-one);
                    }

                    .date {
                        color: #fff;
                    }
                }

                .title {
                    color: #fff;
                    transition: 0.7s all ease;

                    &:hover {
                        color: #ffff;
                    }
                }

                p {
                    color: #fff;
                }
            }
        }

        .content {
            .designation {
                margin-bottom: 18px;

                .event {
                    font-size: 14px;
                    font-weight: 500;
                    line-height: 28px;
                    color: #fff;
                    background: var(--main-color-one);
                    padding: 5px 15px;
                    border-radius: 5px;
                    margin-right: 30px;
                }

                .date {
                    font-size: 14px;
                    font-weight: 500;
                    line-height: 28px;
                    color: #828282;
                }
            }

            .title {
                font-size: 24px;
                line-height: 28px;
                font-weight: 700;
                font-family: var(--body-font);
                margin-bottom: 14px;
                cursor: pointer;
                transition: .7s all ease;

                &:hover {
                    color: var(--main-color-one)
                }
            }

            p {
                font-size: 16px;
                line-height: 28px;
                font-weight: 400;
            }
        }
    }
}