#right-bar {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 300px;
    background-color: #fff;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    transition: right 0.3s ease;
    z-index: 10;
}

.testimonial-card img {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
}


.our-products .item p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}



.testimonial-carousel-2:before {
    display: none;
}

.testimonial-card {
    position: relative;
    padding: 1rem;
    border-radius: 10px;
    margin: 0 0.4rem;
    height: 100%;
}

.breadcrumb-section {
    padding: 10px 0;
    background: #eaeeef;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 30%;
    background: url(https://cdn.digitalizeindianow.com/assets/Business/9/PageContent/9_638688103717355133.png?rendered=true);
    background-size: cover;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
}

.backbtn {
    width: 162px !important;
}

.gallery {
    background: #fff;
}


.testimonial #owl-carousel p {
    max-width: 520px;
    text-align: center;
}


.accordion-button:not(.collapsed) {
    color: unset;
    background-color: unset;
    box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion button:focus {
    border-bottom: 1px solid #e5e5e5 !important;
}

.owl-dots {
    margin-top: 25px;
}

#right-bar.collapsed {
    right: -300px;
}

.palette-section label {
    font-weight: 500;
    color: #282828;
    font-size: 20px;
}

.palette-section p {
    color: #222;
    line-height: 1.4;
    font-size: 15px;
}

.color-swatch {
    width: 100%;
    display: flex;
    cursor: pointer;
    justify-content: space-between;
    margin-bottom: 10px;
    justify-content: space-between;
    border-radius: 6px;
    overflow: hidden;
}

    .color-swatch span {
        width: 25%;
        height: 40px;
        display: inline-flex;
    }

    .color-swatch.active {
        border: 1px solid #ff0000;
        border-radius: 4px;
    }

#settings-icon {
    position: absolute;
    top: 45%;
    left: -48px;
    width: 48px;
    height: 48px;
    background-color: #f1f1f1;
    border-radius: 10px 0px 0px 10px;
    font-size: 34px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 
 *  Owl Carousel - Animate Plugin
 */


.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* 
 *  Owl Carousel - Auto Height Plugin
 */
.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
    display: flex;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

    .owl-carousel .owl-stage {
        position: relative;
        -ms-touch-action: pan-Y;
        display: flex;
    }

        .owl-carousel .owl-stage:after {
            content: ".";
            display: block;
            clear: both;
            visibility: hidden;
            line-height: 0;
            height: 0;
        }

    .owl-carousel .owl-stage-outer {
        position: relative;
        overflow: hidden;
        /* fix for flashing background */
        -webkit-transform: translate3d(0px, 0px, 0px);
    }

    .owl-carousel .owl-controls .owl-nav .owl-prev,
    .owl-carousel .owl-controls .owl-nav .owl-next,
    .owl-carousel .owl-controls .owl-dot {
        cursor: pointer;
        cursor: hand;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .owl-carousel.owl-loaded {
        display: block;
    }

    .owl-carousel.owl-loading {
        opacity: 0;
        display: block;
    }

    .owl-carousel.owl-hidden {
        opacity: 0;
    }

    .owl-carousel .owl-refresh .owl-item {
        display: none;
    }

    .owl-carousel .owl-item {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .owl-carousel .owl-item img {
            display: block;
            width: 100%;
            -webkit-transform-style: preserve-3d;
        }

    .owl-carousel.owl-text-select-on .owl-item {
        -webkit-user-select: auto;
        -moz-user-select: auto;
        -ms-user-select: auto;
        user-select: auto;
    }

    .owl-carousel .owl-grab {
        cursor: move;
        cursor: -webkit-grab;
        cursor: -o-grab;
        cursor: -ms-grab;
        cursor: grab;
    }

    .owl-carousel.owl-rtl {
        direction: rtl;
    }

        .owl-carousel.owl-rtl .owl-item {
            float: right;
        }

/* No Js */
.no-js .owl-carousel {
    display: block;
}

/* 
 *  Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item img {
    transform-style: preserve-3d;
    height: 260px;
    object-fit: cover;
    object-position: top;
}

/* 
 *  Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: scale 100ms ease;
    -moz-transition: scale 100ms ease;
    -ms-transition: scale 100ms ease;
    -o-transition: scale 100ms ease;
    transition: scale 100ms ease;
}

    .owl-carousel .owl-video-play-icon:hover {
        -webkit-transition: scale(1.3, 1.3);
        -moz-transition: scale(1.3, 1.3);
        -ms-transition: scale(1.3, 1.3);
        -o-transition: scale(1.3, 1.3);
        transition: scale(1.3, 1.3);
    }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
}

.owl-prev, .owl-next {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.owl-prev {
    left: 7px;
}

    .owl-prev .fa {
        font-size: 2rem !important;
        background: #fff;
        width: 32px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-left: -10px;
        border-radius: 6px;
    }

.owl-next {
    right: 7px;
}

    .owl-next .fa {
        font-size: 2rem !important;
        background: #fff;
        width: 32px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-right: -10px;
        border-radius: 6px;
    }

.homepage-slides .owl-nav div {
    border: 1px solid;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    font-size: 20px;
    height: 30px !important;
    left: 50px;
    line-height: 27px;
    margin-top: -15px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 30px;
}

    .homepage-slides .owl-nav div.owl-next {
        left: auto;
        right: 50px;
    }

.header-style-4 .homepage-slides div.slide-item-tablecell,
.header-style-4 .homepage-slides div.slide-item-tablecell div,
.header-style-4 .homepage-slides .owl-controls,
.header-style-4 .homepage-slides .owl-controls div {
    height: auto;
}

.testimonial-carousel .owl-dots div,
.testimonial-carousel-2 .owl-dots div {
    background: #bebebe none repeat scroll 0 0;
    border-radius: 50%;
    display: inline-block;
    height: 10px;
    margin: 5px;
    width: 10px;
}

.testimonial-carousel .owl-dots,
.testimonial-carousel-2 .owl-dots {
    margin-top: 45px;
    text-align: center;
}

.testimonial-carousel-2 .single-testimonial-item {
    text-align: center;
}

.testimonial-carousel-2 {
    margin-top: 40px;
}

    .testimonial-carousel-2 .testimonial-author-info img {
        display: block;
        float: none;
        margin: 0 auto 15px;
    }

    .testimonial-carousel-2 .testimonial-author-info {
        margin-top: 30px;
    }

.testimonial-carousel-2 {
    position: relative;
}

    .testimonial-carousel-2:before,
    .author-photo-wrap:before {
        content: "\f10d";
        font-family: FontAwesome;
    }

    .testimonial-carousel-2:before {
        color: #e9e9e9;
        font-size: 40px;
        left: 50%;
        margin-left: -25px;
        position: absolute;
        text-align: center;
        top: 0;
        width: 50px;
    }

.testimonial-carousel-2 {
    padding-top: 70px;
}

.testimonial-item-style-3 {
    font-style: italic;
    padding: 0 20px;
    position: relative;
}

    .testimonial-item-style-3:after {
        background: #eff1f3 none repeat scroll 0 0;
        content: "";
        height: 200px;
        margin-top: -100px;
        position: absolute;
        right: -15px;
        top: 50%;
        width: 1px;
    }

    .testimonial-item-style-3.no-border-left:after {
        display: none;
    }

.author-photo-wrap:before {
    font-size: 25px;
    left: 0;
    padding-left: 50px;
    position: absolute;
    text-align: center;
    text-shadow: 1px 2px 0 #fff;
    top: -17px;
    width: 100%;
}

.work-slider .owl-nav div {
    color: #fff;
    font-size: 40px;
    left: 0;
    line-height: 60px;
    margin-top: -30px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    position: absolute;
    top: 50%;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    visibility: hidden;
}

    .work-slider .owl-nav div.owl-next {
        left: auto;
        right: 0;
    }

.work-slider:hover .owl-nav div {
    left: 30px;
    opacity: .7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    visibility: visible;
}

    .work-slider:hover .owl-nav div.owl-next {
        left: auto;
        right: 30px;
    }

.work-slider .owl-dots {
    bottom: 15px;
    line-height: 10px;
    position: absolute;
    right: 15px;
}

    .work-slider .owl-dots div {
        background: #000 none repeat scroll 0 0;
        border-radius: 50%;
        display: inline-block;
        height: 10px;
        line-height: 10px;
        margin: 4px;
        width: 10px;
    }

        .work-slider .owl-dots div.active {
            opacity: 0.5;
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
        }

.owl-prev .fa, .owl-next .fa {
    font-weight: 300;
    color: #6a6a6a;
}

.homepage-slides .owl-nav div {
    width: 35px;
    height: 35px !important;
    line-height: 35px;
    font-size: 35px !important;
}

button[type="submit"],
input[type="submit"], .mainmenu li.boxed-menu a, .responsive-menu-wrap .slicknav_nav .slicknav_row:hover,
.responsive-menu-wrap .slicknav_nav a:hover, .slide-text .readmore-btn,
.boxed-btn, .cta-area:after, .testimonial-carousel .owl-dots div.active,
.testimonial-carousel-2 .owl-dots div.active, .service-box-style-2:after, .service-box-style-3:hover:after, .wide-button-content:after, .login-form-style-1 button,
.login-form-style-2 button, .register-style-1:after, .blog-pagination li.active > a, .contact-info i.fa, .bordered-btn:hover, .ps-container > .ps-scrollbar-y-rail > .ps-scrollbar-y, .header-area.header-style-2:before {
    background-color: #3b71fe;
}

.homepage-slides .owl-nav div:hover {
    opacity: .7;
}




.homepage-slides .owl-nav div {
    border: none;
    border-radius: 0;
    font-size: 62px;
    height: 39px !important;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 30px;
}


.phn-no a {
    background-image: linear-gradient(250deg, #29078a 0%, #932ae1 100%);
}


.abt-img {
    position: sticky;
    top: 100px;
}



.row.blog-list span {
    color: #8d8d8d !important;
}

.row.blog-list p {
    color: #000000 !important;
}

.blogs a h1 {
    color: #000000 !important;
}




@media only screen and (min-width: 768px) and (max-width: 991px) {
    .homepage-slides .owl-nav div.owl-next {
        right: auto;
    }

    .homepage-slides .owl-nav div {
        left: auto;
        margin: 10px;
        position: relative;
        top: auto;
    }

    .homepage-slides .owl-nav {
        bottom: 0;
        left: 0;
        position: absolute;
        text-align: center;
        width: 100%;
    }
}

@media only screen and (max-width: 767.98px) {
    .homepage-slides .owl-nav div.owl-next {
        right: auto;
    }

    .footer-menu {
        flex-wrap: wrap;
    }

    .homepage-slides .owl-nav div {
        left: auto;
        margin: 10px;
        position: relative;
        top: auto;
    }

    .homepage-slides .owl-nav {
        bottom: 0;
        left: 0;
        position: absolute;
        text-align: center;
        width: 100%;
    }

    .owl-prev .fa {
        margin-left: 0;
    }

    .owl-next .fa {
        margin-right: 0;
    }

    .contact-content .footer-logo {
        width: 110px;
    }

    .single-homepage-slide {
        height: 380px;
    }

    .slide-item-tablecell .slide-text h1 {
        font-size: 2rem;
    }

    .events-listing .col-md-6 .card {
        margin-top: 1rem;
    }
}

@media (max-width: 575.98px) {


    .btn {
        font-size: 12px;
    }

    .abt-img {
        border-radius: 0 !important;
    }

    .abut-content {
        border-radius: 0 !important;
    }

    .single-boxed-item {
        margin-bottom: 20px !important;
    }

    .testimonial-card::before {
        width: 30px;
        height: 30px;
    }

    .accordion-body {
        font-size: 14px;
    }


    .content-block {
        padding: 30px 0 !important;
    }

    .breadcrumb-section {
        padding: 3px 0;
        font-size: 14px;
    }

    p {
        font-size: 14px;
    }

    .adrs-wrapper small, .adrs-wrapper a {
        font-size: 14px;
    }

    .adrs-wrapper h5 {
        font-size: 1.2rem;
    }
}


/*********************Product Tabs Styles**********************/

.product-tabs{
    justify-content: center;
    column-gap: 10px;
}

.product-tabs .nav-link{
    border-radius: 10px;
    color: #000;
    border: 1px solid #aa7f58 !important;

}

.product-tabs .nav-link.active{
    background: #aa7f58 !important;
    border: 1px solid #aa7f58 !important;
    color: #ffffff;
}