// Gallery Single Items Start header
.political-gallery-section {
    margin-top: 116px;
} 
.political-gallery-item {
    &.style-01 {
        margin-top: 106px;
    }
    .gallery-single-items {
        margin-bottom: 30px;
        &:hover {
            .thumb {
                &::before {
                    visibility: visible;
                    opacity: 0.5;
                }
                .cart-icon {
                    visibility: visible;
                    opacity: 1;
                }
                &.style-01 {
                    &::before {
                        opacity: 0.7;
                    }
                }
            }
            .content {
                .title {
                    visibility: visible;
                    opacity: 1;
                }
            }
        }
        .thumb {
            position: relative;
            z-index: 0;
            &.style-01 {
                position: relative;
                img {
                    border-radius: 0;
                }
                &::before {
                    content: "";
                    position: absolute;
                    left: 0;
                    top: 0;
                    right: 0;
                    bottom: 0;
                    background-color: rgb(4, 7, 46);
                    z-index: 1;
                    border-radius: 0;
                }
            }
            img {
                border-radius: 10px;
                width: 100%;
            }
            .cart-icon {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                color: #fff;
                visibility: hidden;
                font-size: 24px;
                z-index: 1;
                width: 75px;
                height: 75px;
                border: 3px solid #fff;
                line-height: 75px;
                text-align: center;
                border-radius: 50%;
                transition: .3s all ease;
                opacity: 0;
            }
            &::before {
                content: "";
                position: absolute;
                left: 0;
                top: 0;
                right: 0;
                bottom: 0;
                background: var(--heading-color);
                opacity: 0;
                transition: .3s all ease;
                visibility: hidden;
                border-radius: 10px;
            }
        }
        .content {
            .title {
                font-size: 24px;
                line-height: 35px;
                font-family: var(--body-font);
                font-weight: 700;
                color: #fff;
                position: absolute;
                top: 70%;
                max-width: 410px;
                left: 18%;
                visibility: hidden;
                transition: .3s all ease;
                opacity: 0;
            }
        }
    }
}

.testimonial-carousel-seven {
    .owl-nav {
        .owl-prev {
            position: absolute;
            right: 30%;
            top: -85px;
            width: 60px;
            height: 60px;
            line-height: 60px;
            text-align: center;
            background: #fff;
            color: var(--main-color-one);
            font-size: 30px;
            border-radius: 5px;
            box-shadow: 0 12px 20px rgba(221,19,26,0.24);
            border: 1px solid #fff;
            transition: .5s all ease;
            &:hover {
                border: 1px solid var(--main-color-one);
                box-shadow: none;
            }
        }
        .owl-next {
            position: absolute;
            right: 26%;
            top: -85px;
            width: 60px;
            height: 60px;
            line-height: 60px;
            text-align: center;
            background: #fff;
            color: var(--main-color-one);
            font-size: 30px;
            border-radius: 5px;
            box-shadow: 0 12px 20px rgba(221,19,26,0.24);
            border: 1px solid #fff;
            transition: .5s all ease;
            &:hover {
                border: 1px solid var(--main-color-one);
                box-shadow: none;
            }
        }
    }
}