.temple_collection-area{
    .temple_collection-slider{
        .single_temple-card{
            display: block;
            .temple_card-img{
                width:100%;
            }
            .templ-card-dsc{
                position: relative;
                width: calc(100% - 40px);
                margin:-50px 20px 16px 20px;
                box-shadow: none;
                padding: 15px;
                background: rgba(255, 255, 255, 0.7) ;
                top:0;
                box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.05);

                h3{
                    font-weight: 600;
                    margin-bottom: 15px;
                    font-size: 22px;
                }
                p{
                   display: -webkit-box;
                    -webkit-line-clamp: 4;
                    line-clamp: 4;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                    color:#000;
                    font-size: 16px;
                    line-height: 28px;
                    margin-bottom: 15px;
                }
            }
        }
    }
}

.temple_collection-area{
    background: #5a5c60;
    padding: 80px 0;
    .container{
        position: relative;
    }
    .temple_collection-carousel {
        position: inherit;
        padding-left: 80px;

        @media (max-width:991px) {
            padding-left: 0px;
            position: relative;
            margin-top: 40px;
        }
        
    }
    h2 {
        color: #fff;
        font-size: 40px;
        text-align: left;
        margin-bottom: 20px;
        text-transform: capitalize;
    }
    
    .single_temple-card {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: flex-end;
        padding-right: 20px;

        @media (max-width:991px) {
            display: flex;
            flex-direction: column-reverse;
        }
 
        .temple_card-img {
            width: 92%;

            @media (max-width:991px){
                position: static;
                width: 100%;
            }

            img, figure {
                width: 100%;
                object-fit: cover;
                margin-bottom: 0;
                height: 380px;

                @media (max-width:1200px) {
                    height: 260px;
                }
                @media (max-width:991px) {
                    height: 400px;
                }
                @media (max-width:480px) {
                    height: 230px;
                }
            }
        }
    }
    .owl-stage{
        padding-left: 0  !important;
    }
    .temple_collection-cont {
        padding-bottom: 115px;
        @media (max-width:991px){
            padding-bottom: 45px;
        }

        .temple-title-area{
            margin-bottom:32px;

            h3{
                margin-bottom: 0px;
            }
        }
    }
}



.temple_collection-area {
    .owl-dots {
        position: absolute;
        left: 15px;
        bottom: 75px;

        @media (max-width:991px){
            display: none;
        }
    
        .owl-dot {
            padding: 0;
            background: transparent;
            margin: 0;
            font-size: 16px;
            text-transform: capitalize;
            color: #fff;
            padding-right: 10px;
            margin-right: 10px;
            border-right: 2px solid #fff;
            border-radius: 0;
            line-height: 1;
            display: inline-block;
        }
        .owl-dot:last-child{
            border-right: 0;
        }
        .owl-dot.active {
            font-weight: 600;
        }
    }
}


.owl-nav {
    position: absolute;
    bottom: 45px;
    left: 0;
    display: flex;
    align-items: center;

    @media (max-width:991px) {
       bottom: auto;
       top: -68px;
       left: -15px;
    }

    button {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 50%;
        margin-left: 15px;
        border: 2px solid #fff;
        transition: 0.3s;

        i {
            font-size: 19px;
        }
    }
    button:hover{
        border: 2px solid #fff;
        i{
            color: #333;
        }
    }
}