<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#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;
}

#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;
}
.zoom-gallery a img {
    width: 100%;
    height: 330px;
    object-fit:cover;
}
.mfp-title span{
    display:none;
}

.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;
}
.color-swatch {
    width: 100%;
    display: flex;
    cursor: pointer;
    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;
    }
/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
    text-shadow: 2px 1px 1px rgba(52, 52, 52, 0.59);
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.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: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

    .owl-carousel .owl-stage {
        position: relative;
        -ms-touch-action: pan-Y;
    }

        .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 {
        position: relative;
        min-height: 1px;
        float: left;
        -webkit-backface-visibility: hidden;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

        .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 &gt; a, .contact-info i.fa, .bordered-btn:hover, .ps-container &gt; .ps-scrollbar-y-rail &gt; .ps-scrollbar-y, .header-area.header-style-2:before {
    background-color: #74bcae;
}

.homepage-slides .owl-nav div:hover {
    opacity: .7;
}

.gal-details-img {
    border: 1px solid #ededed;
    padding: 1rem;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

    @media only screen and (min-width: 991.99px) {

        .gal-details-img {
            height: 360px;
          
        }
    }

@media only screen and (max-width: 991.99px) {
    .gal-details-img {
        height: 250px;
    }
}

    @media only screen and (max-width: 575.98px) {
        .gal-details-img {
            height: 200px;
            padding: 0.6rem;
        }
        .zoom-gallery a img {
            height: 160px;
        }
    }

    @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;
        }
        .zoom-gallery a img {
            height: 200px;
        }
        .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;
        }
    }</pre></body></html>