// Our Party Section area
.our-party-section-area {
    background-color: #FFF9FC;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;

    &.style-02 {
        padding-top: 120px;
        mix-blend-mode: multiply;
        margin-top: 70px;

        @media only screen and (max-width: 991px) {
            padding-bottom: 70px;
        }

        &::before {
            position: absolute;
            content: '';
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, .25);
        }
    }

    &.party-vision {
        background: #F9F9FF;
        overflow: hidden;
        margin-top: 145px;
    }

    &.home-six {
        background-color: #02083D;
        padding: 90px 0px;
        margin-top: 120px;

        .candidate-img {
            position: absolute;
            left: 0;
            bottom: 0;
            height: 100%;
            width: 50%;
            object-fit: cover;
        }
    }

    .party-bg {
        background-repeat: no-repeat;
        background-size: contain;
        background-position: left;
        min-height: 650px;
        width: 100%;

        &.vision-bg {
            min-height: 755px;
            position: relative;

            &::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(112deg, rgba(0, 7, 146, 1) 0%, rgba(165, 16, 56, 1) 70%, rgba(221, 19, 26, 1) 100%);
                mix-blend-mode: color-dodge;
            }
        }
    }

    .party-shape {
        position: absolute;
        top: 0;
        left: 27%;
    }

    .party-shape-01 {
        position: absolute;
        bottom: 0;
        left: 42%
    }

    .party-shape-02 {
        width: 255px;
        height: 1px;
        background-color: var(--main-color-one);
        position: absolute;
        top: 45%;
        left: 29%;
        transform: rotate(61deg);
    }

    .party-shape-03 {
        width: 290px;
        height: 1px;
        background-color: var(--main-color-one);
        position: absolute;
        top: 145px;
        left: 28%;
        transform: rotate(63deg);
    }

    .party-vision-shape {
        position: absolute;
        left: 4%;
        top: -8%;
    }
}

.party-single-thumb {
    position: relative;
    z-index: 2;

    &::before {
        position: absolute;
        content: '';
        top: 25%;
        left: 0;
        width: 400px;
        height: 400px;
        background-color: #111111;
        border-radius: 50%;
        z-index: -1;

        @media only screen and (max-width: 520px) {
            top: 30%;
            width: 300px;
            height: 300px;
        }

        @media only screen and (max-width: 400px) {
            top: 35%;
            width: 250px;
            height: 250px;
        }

        @media only screen and (max-width: 375px) {
            top: 35%;
            width: 200px;
            height: 200px;
        }
    }

    .party-single-thumb-video {
        position: absolute;
        top: 50%;
        left: 10%;

        @media only screen and (max-width: 375px) {
            left: 8%;
        }

        .video-play {
            @media only screen and (max-width: 320px) {
                &::after {
                    left: -12%;
                }
            }

            i {
                background-color: rgba(255, 255, 255, .12);
                color: var(--main-color-one);
            }
        }
    }
}