// Political Event Section Styling Her
.political-event-section {
    margin-top: 120px;
    position: relative;
    z-index: 0;
    background: #F8F8FF;
    padding: 116px 0px 120px 0px;

    .btn-wrapper {
        text-align: center;
        margin-top: 40px;
        .btn-sanatory {
            box-shadow: none;
            transition: .5s all ease;

            i {
                margin-left: 8px;
            }

            &:hover {
                background: var(--heading-color);
                color: #fff;
                box-shadow: none;
            }
        }
    }
}

.political-event-single-items {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 34px 34px 34px 34px;
    margin-bottom: 30px;

    .thumb {
        img {
            border-radius: 10px;
        }
    }

    .content {
        flex: 1;
        margin-left: 40px;

        .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: 28px;
            font-weight: 700;
            font-family: var(--body-font);
            margin-bottom: 15px;
            -webkit-transition: 0.7s all ease;
            transition: 0.7s all ease;

            &:hover {
                color: var(--main-color-one);
            }
        }

        p {
            font-size: 16px;
            line-height: 28px;
            font-weight: 400;
            margin-bottom: 0px;
            max-width: 555px;
            color: #505050;
        }
    }

    .read-more-link {
        font-size: 16px;
        line-height: 21px;
        font-family: var(--body-font);
        font-weight: 500;
        color: var(--main-color-one);
        transition: 0.5s all ease;
        text-transform: uppercase;

        i {
            margin-left: 10px;
        }

        &:hover {
            margin-right: 10px;
        }
    }
}