<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.dx-loadpanel-content.dx-loadpanel-pane-hidden {
    height: 200px !important;
    border-radius: 10px !important;
}

.dx-loadindicator {
    width: 100% !important;
    height: 200px !important;
    border-radius: 10px !important;
}

.input-group-text {
    cursor: pointer !important;
    background-color: #f8f9fa !important;
    padding: 10px !important;
    border-radius: 10px 0px 0px 10px !important;
    border-right: none !important;
}

.input-password {
    border-left: none !important;
    border-radius: 0px 0px 0px 0px !important;
}

input[type=email] {
    text-align: right !important;
}

.num-input {
    text-align: right !important;
}

:root {
    --primary: #135898;
    --secondary: #c1b866;
    --light: #F8F8F8;
    --dark: #252525;
    --whiteco: #ffffff;
    --font-style-family: 'Cairo', sans-serif;
    --fontStyle1: 'Anton', sans-serif;
    --fontStyle2: 'Manrope', sans-serif;
    --font-style-size: 15px;
}

body {
    font-family: var(--font-style-family);
}

.fontStyle2 {
    font-family: var(--fontStyle2);
}

.fontStyle1 {
    font-family: var(--fontStyle1);
}

.compact {
    line-height: 1.5em
}

.carousel-item {
    margin-right: 0
}

.carousel-control-next {
    left: 0 !important;
    right: auto
}

.carousel-control-prev {
    right: 0
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.bgi {
    background-image: url(../images/BG.png);
    background-size: cover;
}

.bgc-secondary {
    background-color: var(--secondary) !important;
}

.bgc-primary {
    background-color: var(--primary);
}

.table-primary {
    background-color: var(--primary) !important;
    color: #ffffff;
}

.bor-primary {
    border: 1px solid var(--primary);
}

.namber1 {
    position: relative;
    min-width: fit-content;
    width: 100%;
    padding: 10px;
    text-align: center;
    color: #ffffff;
    background-color: var(--primary);
}

    .namber1:after {
        content: " ";
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 10px solid var(--primary);
        position: absolute;
        bottom: -14px;
        left: 50%;
        transform: translate(-50%,-50%);
    }

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }



/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
    -webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.5s ease;
}

.top-bar {
    -webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.5s ease;
}



.navbar .navbar-brand {
    display: flex;
    align-items: center;
}

    .navbar .navbar-brand img {
        max-height: 80px;
    }

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 20px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: var(--secondary);
    }

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar .navbar-nav .nav-link {
    color: var(--primary);
    font-weight: 500;
}

.navbar .nav-item .dropdown-menu {
    background: var(--primary);
}

    .navbar .nav-item .dropdown-menu .dropdown-item {
        color: #FFFFFF;
    }

        .navbar .nav-item .dropdown-menu .dropdown-item:hover {
            color: #000000;
        }

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}
/*** Button ***/
.textc-white {
    color: var(--whiteco) !important
}

.textc-primary {
    color: var(--primary);
}

.textc-secondary {
    color: var(--secondary);
}

.btn {
    font-weight: 500;
    transition: .5s;
}

    .btn.btn-primary {
        color: #FFFFFF;
        background-color: var(--primary);
        border: none;
    }

        .btn.btn-primary:hover {
            background-color: var(--secondary);
        }

    .btn.btn-secondary {
        color: #FFFFFF;
        background-color: var(--secondary);
        border: none;
    }

        .btn.btn-secondary:hover {
            background-color: var(--primary);
        }

    .btn.btn-outline-primary {
        border: 2px solid var(--secondary);
    }

        .btn.btn-outline-primary:hover {
            background-color: var(--primary);
            border: 2px solid var(--primary);
        }

    .btn.btn-outline-secondary {
        border: 2px solid var(--primary);
    }

        .btn.btn-outline-secondary:hover {
            background-color: var(--secondary);
            border: 2px solid var(--secondary);
        }

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, .75);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

/*@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

        #header-carousel .carousel-item img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
}*/

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #999999;
}


/*** Section Title ***/


.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

    .section-title .sub-style {
        position: relative;
        display: inline-block;
        text-transform: uppercase;
        color: var(--primary);
    }

        .section-title .sub-style::before {
            content: "";
            width: 100px;
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            margin-top: 8px;
            margin-left: -100px;
            border: 1px solid var(--secondary) !important;
        }

        .section-title .sub-style::after {
            content: "";
            width: 50px;
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            margin-bottom: 5px;
            margin-left: -50px;
            border: 1px solid var(--secondary) !important;
        }

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--primary);
}

    .sub-title::before {
        content: "";
        width: 100px;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        margin-top: 8px;
        margin-right: -100px;
        border: 1px solid var(--secondary) !important;
    }

    .sub-title::after {
        content: "";
        width: 50px;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        margin-bottom: 8px;
        margin-right: -50px;
        border: 1px solid var(--secondary) !important;
    }

/*** Testimonial ***/

.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

    .testimonial-carousel .owl-item.center .testimonial-item * {
        color: #FFFFFF !important;
    }

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        margin: 0 12px;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #DEE2E6;
        border-radius: 50px;
        font-size: 18px;
        transition: .5s;
    }

        .testimonial-carousel .owl-nav .owl-prev:hover,
        .testimonial-carousel .owl-nav .owl-next:hover {
            color: #FFFFFF;
            border-color: var(--primary);
            background: var(--primary);
        }

/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

    .blog .blog-item .blog-img::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
        transition: 0.5s;
    }

    .blog .blog-item .blog-img img {
        transition: 0.5s;
    }

    .blog .blog-item .blog-img:hover img {
        transform: scale(1.3);
    }

.blog .blog-item:hover .blog-img::after {
    background: rgba(21, 185, 217, .5);
}

.blog .blog-item .blog-centent {
    background: var(--bs-light);
    border: none;
    border-top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
/*** Blog End ***/


/*** Project ***/
.project-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .5);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover a {
    opacity: 1;
}

.project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot {
    width: 35px;
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

    .project-carousel .owl-dot:hover,
    .project-carousel .owl-dot.active {
        color: #FFFFFF;
        border-color: var(--primary);
        background: var(--primary);
    }



/*** Footer ***/
.footer {
    color: #e8e8e8;
}

    .footer .btn.btn-link {
        display: block;
        margin-bottom: 5px;
        padding: 0;
        text-align: right;
        color: #B0B9AE;
        font-weight: normal;
        text-transform: capitalize;
        transition: .3s;
    }

        .footer .btn.btn-link::before {
            position: relative;
            content: "\f053";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            margin-left: 10px;
            text-decoration: none;
        }

        .footer .btn.btn-link:hover {
            color: var(--light);
            letter-spacing: 1px;
            box-shadow: none;
        }

.copyright {
    color: #B0B9AE;
}

.copyright {
    background: #111111;
}

    .copyright a:hover {
        color: var(--primary) !important;
    }


/***Page Title ***/


.page-title {
    position: relative;
    padding: 50px 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

    .page-title:before {
        content: "";
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        position: absolute;
        background: var(--primary);
        opacity: 0.7;
    }

    .page-title .title-text h1 {
        position: relative;
        font-size: 30px;
        color: #ffffff;
        line-height: 50px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

        .page-title .title-text h1 * {
            font-size: inherit;
            color: inherit;
            line-height: inherit;
            font-weight: inherit;
            text-transform: inherit;
            letter-spacing: inherit;
        }

    .page-title .title-text p {
        position: relative;
        font-size: 20px;
        color: #ffffff;
        line-height: 50px;
        font-weight: 400;
        text-transform: uppercase;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

    .page-title .title-text .title-menu {
        padding-left: 0;
        margin-bottom: 0;
    }

        .page-title .title-text .title-menu li {
            position: relative;
            color: #48bdc5;
            font-size: 17px;
            display: inline-block;
            line-height: 30px;
            text-transform: capitalize;
        }

            .page-title .title-text .title-menu li a {
                margin-right: 8px;
                color: #ffffff;
                font-weight: 500;
                transition: all 500ms ease;
            }

                .page-title .title-text .title-menu li a:hover {
                    color: #48bdc5;
                    transition: all 500ms ease;
                }


/***content-allpage ***/
.well-sidebar {
    background: var(--primary);
    color: #fff;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .sidebar-nav li {
        display: inline-block;
        width: 100%;
    }

        .sidebar-nav li.active a {
            border-color: var(--primary);
            color: var(--primary);
            border-right: 10px solid;
        }

        .sidebar-nav li a {
            border-right: 5px solid;
            border-right-color: var(--secondary);
            padding-right: 10px;
            color: #333;
            text-decoration: none;
            line-height: 30px;
            margin-bottom: 5px;
            display: inline-block;
            width: 100%;
            text-transform: capitalize;
            transition: .5s;
        }

            .sidebar-nav li a:hover {
                color: var(--primary);
                border-right: 10px solid;
                border-right-color: var(--primary);
                padding-right: 15px;
            }

    .sidebar-nav ul.dropdown-menu {
        border: 0;
        box-shadow: none;
    }

        .sidebar-nav ul.dropdown-menu li a:hover {
            border-right-color: var(--primary);
        }

        .sidebar-nav ul.dropdown-menu li.active a {
            border-right-color: var(--primary);
        }

    .sidebar-nav li.dropdown a.active {
        color: var(--primary);
        border-color: var(--primary);
    }


/***gallery-item ***/

.gallery {
    padding: 0px 0;
}

    .gallery .gallery-item {
        margin-top: 30px;
        border-radius: 6px;
        overflow: hidden;
        position: relative;
        box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.2);
    }

        .gallery .gallery-item img {
            width: 100%;
        }

        .gallery .gallery-item:before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
            top: 0;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .gallery .gallery-item a {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .gallery .gallery-item h3 {
            position: absolute;
            z-index: 5;
            bottom: 85px;
            color: #fff;
            font-weight: bold;
            opacity: 0;
            transition: all 0.3s ease;
            padding: 30px;
            font-family: "Source Sans Pro", sans-serif;
            transform: translateY(20px);
        }

        .gallery .gallery-item p {
            position: absolute;
            z-index: 5;
            bottom: 20px;
            color: #fff;
            font-weight: normal;
            opacity: 0;
            transition: all 0.3s ease;
            padding: 30px;
            font-size: 14px;
            line-height: 20px;
            transform: translateY(20px);
            transition-delay: 0.1s;
        }

        .gallery .gallery-item:hover:before {
            opacity: 1;
        }

        .gallery .gallery-item:hover h3,
        .gallery .gallery-item:hover p {
            opacity: 1;
            transform: translateY(0);
        }

.video-gallery {
    padding: 100px 0;
}

    .video-gallery .video-gallery-item {
        margin-top: 50px;
    }

        .video-gallery .video-gallery-item .image-holder {
            position: relative;
            border-radius: 3px;
            overflow: hidden;
            box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.2);
        }

            .video-gallery .video-gallery-item .image-holder img {
                width: 100%;
            }

            .video-gallery .video-gallery-item .image-holder:before {
                content: "";
                position: absolute;
                width: 100%;
                height: 100%;
                background: rgba(19, 38, 70, 0.7);
                top: 0;
            }

            .video-gallery .video-gallery-item .image-holder a {
                position: absolute;
                display: block;
                width: 80px;
                height: 80px;
                top: 50%;
                left: 50%;
                transform: translate3d(-50%, -50%, 0);
                text-align: center;
                z-index: 5;
                border: 5px solid #fff;
                border-radius: 50%;
                transition: all 0.3s ease-in-out;
            }

                .video-gallery .video-gallery-item .image-holder a i {
                    font-size: 25px;
                    line-height: 70px;
                    color: #fff;
                }

@media (max-width: 991px) {
    .video-gallery .video-gallery-item .image-holder a {
        width: 50px;
        height: 50px;
        border: 2px solid #fff;
    }

        .video-gallery .video-gallery-item .image-holder a i {
            font-size: 16px;
            line-height: 48px;
        }
}

.video-gallery .video-gallery-item h3 {
    text-align: center;
    color: #48bdc5;
    margin-top: 15px;
    text-transform: capitalize;
    font-size: 20px;
}

/*
---------------------------------
*/
.service-tab-section {
    position: relative;
}

    .service-tab-section .outer-box {
        position: relative;
        z-index: 1;
    }

.tabs .nav-tabs &gt; li,
.tabs .nav-pills &gt; li {
    margin-bottom: 10px;
}

.tabs .nav-tabs {
    text-align: center;
    border-bottom: 0;
    margin-bottom: 20px;
}

    .tabs .nav-tabs li {
        margin-right: 10px;
    }

        .tabs .nav-tabs li a {
            text-transform: capitalize;
            font-size: 20px;
            padding: 10px 25px;
            font-weight: 600;
            color: #4d4d4d;
            border: 2px solid var(--primary);
            border-radius: 0;
            transition: all 0.3s ease;
        }

            .tabs .nav-tabs li a.active, .tabs .nav-tabs li a:hover {
                color: #fff;
                background: var(--primary);
                border: 2px solid var(--primary);
            }

.tab-content {
    position: relative;
    float: left;
    width: 100%;
    z-index: 99;
}

.service-box {
    position: relative;
    width: 100%;
}



    .service-box .contents {
        margin-left: 30px;
    }

@media (max-width: 991px) {
    .service-box .contents {
        margin-left: 0;
        margin-top: 50px;
    }
}

.service-box .contents .btn-style-one {
    margin-top: 20px;
}

.service-box .section-title h3 {
    position: relative;
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    padding-bottom: 20px;
    margin-bottom: 45px;
    color: #000;
    text-transform: uppercase;
}

    .service-box .section-title h3:before {
        position: absolute;
        left: 0px;
        content: "";
        bottom: 0px;
        background: #333333;
        height: 1px;
        width: 55px;
    }

.service-box .text {
    position: relative;
    margin-bottom: 15px;
}

    .service-box .text p {
        font-size: 15px;
        line-height: 26px;
        font-weight: 500;
        padding-top: 5px;
    }

.service-box .icon-box {
    position: absolute;
    top: 0px;
    left: -5px;
}

.service-box .content-list {
    padding-left: 0;
}

    .service-box .content-list li {
        font-size: 15px;
        line-height: 26px;
        font-weight: 500;
        padding: 4px 0px;
        padding-left: 27px;
        list-style: none;
        position: relative;
    }

        .service-box .content-list li i {
            position: absolute;
            left: 0;
            top: 9px;
        }

.service-section {
    position: relative;
}

    .service-section .section-title h3 {
        position: relative;
        padding-bottom: 15px;
    }

    .service-section .section-title p {
        font-size: 15px;
        line-height: 26px;
        color: #777777;
        font-weight: 400;
    }

    .service-section .items-container {
        margin-top: 30px;
    }

        .service-section .items-container .slick-prev:before,
        .service-section .items-container .slick-next:before {
            font-size: 25px;
            color: #48bdc5;
        }

        .service-section .items-container .item {
            margin: 10px 15px;
            outline: 0;
        }

@media screen and (max-width: 525px) {
    .service-section .items-container .item {
        margin: 10px 5px;
    }
}

.service-section .inner-box {
    position: relative;
    border-radius: 5px 5px 0px 0px;
    box-shadow: 0 0 20px #f1f1f1;
}
</pre></body></html>