/*-------------------------
    Footer Area
-------------------------*/
.footer-area {
    background-color: var(--heading-color);

    &.line-bg {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        background-attachment: fixed;
    }
}

.footer-top {
    position: relative;
    z-index: 0;
    border-bottom: 1px solid rgba(114, 108, 148, .2);
    margin-top: 120px;

    &.style-01 {
        margin-top: 190px;
    }

    &.style-02 {
        margin-top: 90px;
    }

    &.issue {
        margin-top: 130px;
    }

    &.volunteer {
        margin-top: 160px;
    }

    &.event-single {
        margin-top: 110px;
    }

    &.home-three {
        margin-top: 0px;
    }

    .footer-top-border {
        border-bottom: 1px dashed #fff;

        &.home-three {
            padding-top: 120px;
        }

        &.style-01 {
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .footer-content {
            &.style-01 {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                padding-bottom: 5px;
                margin-bottom: 15px;
            }

            .designation {
                margin-bottom: 10px;

                .event {
                    font-size: 14px;
                    font-weight: 500;
                    line-height: 28px;
                    color: #fff;
                    background: var(--main-color-one);
                    padding: 5px 15px;
                    margin-right: 30px;
                }

                .date {
                    font-size: 14px;
                    font-weight: 500;
                    line-height: 28px;
                    color: rgba(255, 255, 255, 0.7);
                }
            }

            .title {
                font-size: 16px;
                line-height: 32px;
                font-weight: 700;
                font-family: var(--heading-font);
                margin-bottom: 0px;
                color: #fff;
            }
        }
    }

    .footer-bottom-border {
        padding-top: 50px;
        padding-bottom: 20px;
        border-bottom: 1px dashed #fff;
    }

    .subscribe-bg {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
}

.copyright-area {
    text-align: center;
    color: rgb(137, 139, 167);
    font-size: 14px;
    padding: 25px 0px;

    .copyright-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.copyright-area-inner {
    color: #fff;
    font-size: 14px;
    line-height: 28px;
    font-weight: 300;
    font-family: var(--body-font);

    span {
        font-weight: 500;
    }
}

.footer-event-item {
    .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;
                cursor: pointer;
            }

            .date {
                font-size: 14px;
                font-weight: 400;
                line-height: 28px;
                color: #fff;
            }
        }

        .title {
            font-size: 16px;
            line-height: 28px;
            font-weight: 500;
            color: #fff;
            font-family: var(--body-font);
            margin-bottom: 15px;
            transition: .7s all ease;
            cursor: pointer;

            &:hover {
                color: var(--main-color-one);
            }
        }

        p {
            font-size: 15px;
            line-height: 26px;
            font-weight: 400;
            margin-bottom: 30px;
            color: #fff;

            &.style-01 {
                margin-bottom: 0;
            }
        }
    }
}