﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0px;
    padding: 0px;
    font-family: Arial;
    font-size: 12px;
    color: #444;
}

p {
    margin: 0px;
    padding: 0px;
    margin-bottom: 0px !important;
    font-size: 16px;
    line-height: 24px;
}

h1, h2, h3, h4, h5 {
    margin: 0px;
    padding: 0px;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: 'Inter';
    font-size: 12px;
    background: #fff !important;
}

.p-t {
    padding-top: 10px;
}

.p-r {
    padding-right: 10px;
}

.p-b {
    padding-bottom: 10px;
}

.p-l {
    padding-left: 10px;
}

.p-t-b-5 {
    padding-bottom: 5px;
    padding-top: 5px;
}

.no-p-l {
    padding-left: 0px !important;
}

.no-p-r {
    padding-right: 0px !important;
}

.m-t {
    margin-top: 10px;
}

.m-b-2 {
    margin-bottom: 20px;
}

.m-t-2 {
    margin-top: 20px;
}

.border-all {
    border: 1px solid #e0e0e0;
}

.bor-r {
    border-right: 1px solid #e0e0e0;
}

.bor-l {
    border-left: 1px solid #e0e0e0;
}

.bor-b {
    border-bottom: 1px solid #e0e0e0;
}

.bor-t {
    border-top: 1px solid #e0e0e0;
}
/*============Back to top button==============*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

    .back-to-top i {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        width: 40px;
        height: 40px;
        border-radius: 4px;
        background: #3498db;
        color: #fff;
        transition: all 0.4s;
    }

        .back-to-top i:hover {
            background: #57aae1;
            color: #fff;
        }
/*==============Header================*/
#header {
    z-index: 997;
    transition: all 0.5s;
    padding: 22px 0;
}

    #header.header-scrolled {
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        padding: 15px 0;
        background: #fff;
    }

    #header .logo {
        display: inline-block;
    }

    #header .nav-menu {
        display: inline-block;
        float: right;
    }

    #header .logo h1 {
        font-size: 32px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 1px;
    }

        #header .logo h1 a,
        #header .logo h1 a:hover {
            color: #222222;
            text-decoration: none;
        }

    #header .logo img {
        padding: 0;
        margin: 0;
        max-height: 66px;
    }

.mobile-nav-toggle {
    display: none;
}
/*===============Navigation Menu===========*/
.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .nav-menu > ul > li {
        position: relative;
        white-space: nowrap;
        float: left;
    }

    .nav-menu a {
        display: block;
        position: relative;
        color: #555555;
        padding: 8px 0 12px 25px;
        transition: 0.3s;
        font-size: 14px;
    }

        .nav-menu a:hover,
        .nav-menu .active > a,
        .nav-menu li:hover > a {
            color: #3498db;
            text-decoration: none;
        }

    .nav-menu .get-started a {
        background: #3498db;
        color: #fff;
        border-radius: 50px;
        margin: 0 0 0 30px;
        padding: 10px 25px;
    }

        .nav-menu .get-started a:hover {
            background: #57aae1;
            color: #fff;
        }

    .nav-menu .drop-down ul {
        display: block;
        position: absolute;
        left: 25px;
        top: calc(100% + 30px);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        padding: 10px 0;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: ease all 0.3s;
        border-radius: 5px;
    }

    .nav-menu .drop-down:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .nav-menu .drop-down li {
        min-width: 180px;
        position: relative;
    }

    .nav-menu .drop-down ul a {
        padding: 10px 20px;
        font-size: 14px;
        text-transform: none;
        color: #222222;
    }

        .nav-menu .drop-down ul a:hover,
        .nav-menu .drop-down ul .active > a,
        .nav-menu .drop-down ul li:hover > a {
            color: #3498db;
        }

    .nav-menu .drop-down > a:after {
        content: '\ea99';
        font-family: 'IcoFont';
        padding-left: 5px;
    }

    .nav-menu .drop-down .drop-down ul {
        top: 0;
        left: calc(100% - 30px);
    }

    .nav-menu .drop-down .drop-down:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
    }

    .nav-menu .drop-down .drop-down > a {
        padding-right: 35px;
    }

        .nav-menu .drop-down .drop-down > a:after {
            content: "\eaa0";
            font-family: IcoFont;
            position: absolute;
            right: 15px;
        }
/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 23px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

    .mobile-nav-toggle i {
        color: #3498db;
        font-size: 24px;
    }

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

    .mobile-nav * {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-nav a {
        display: block;
        position: relative;
        color: #222222;
        padding: 10px 20px;
        font-weight: 500;
        outline: none;
        font-size: 16px;
        line-height: 24px;
    }

        .mobile-nav a:hover,
        .mobile-nav .active > a,
        .mobile-nav li:hover > a {
            color: #3498db;
            text-decoration: none;
        }

    .mobile-nav .get-started {
        text-align: center;
        margin-top: 10px;
    }

        .mobile-nav .get-started a {
            background: #3498db;
            color: #fff;
            border-radius: 50px;
            margin: 0 15px;
            padding: 10px 30px;
            display: inline-block;
        }

            .mobile-nav .get-started a:hover {
                background: #57aae1;
                color: #fff;
            }

    .mobile-nav .drop-down > a:after {
        content: "\ea99";
        font-family: IcoFont;
        padding-left: 10px;
        position: absolute;
        right: 15px;
    }

    .mobile-nav .active.drop-down > a:after {
        content: "\eaa1";
    }

    .mobile-nav .drop-down > a {
        padding-right: 35px;
    }

    .mobile-nav .drop-down ul {
        display: none;
        overflow: hidden;
    }

    .mobile-nav .drop-down li {
        padding-left: 20px;
    }

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(9, 9, 9, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

    .mobile-nav-active .mobile-nav {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-active .mobile-nav-toggle i {
        color: #fff;
    }
/*========Hero Section==========*/
#hero {
    width: 100%;
    height: 70vh;
    margin-top: 70px;
}

    #hero h1 {
        margin: 0 0 10px 0;
        font-size: 48px;
        font-weight: 700;
        line-height: 56px;
        color: black;
    }

    #hero h2 {
        color: #484848;
        margin-bottom: 50px;
        font-size: 24px;
        border-bottom: medium none;
    }

    #hero .btn-get-started {
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 30px;
        border-radius: 50px;
        transition: 0.5s;
        color: #3498db;
        border: 2px solid #3498db;
    }

        #hero .btn-get-started:hover {
            background: #3498db;
            color: #fff;
        }

    #hero .animated {
        animation: up-down 2s ease-in-out infinite alternate-reverse both;
    }

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*==============Sections General==============*/
section {
    padding: 3px 0 !important;
    overflow: hidden;
}

.section-bg {
    background-color: #f7fbfe;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: bold;
        text-transform: uppercase;
        position: relative;
        color: #222222;
    }

        .section-title h2::before,
        .section-title h2::after {
            content: '';
            width: 50px;
            height: 2px;
            background: #3498db;
            display: inline-block;
        }

        .section-title h2::before {
            margin: 0 15px 10px 0;
        }

        .section-title h2::after {
            margin: 0 0 10px 15px;
        }

    .section-title p {
        margin: 15px 0 0 0;
    }
/*===========Clients==================*/
.clients {
    background: #f3f9fd;
    padding: 10px 0;
    text-align: center;
}

    .clients .col-lg-2 {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .clients img {
        width: 50%;
        -webkit-filter: grayscale(100);
        filter: grayscale(100);
        transition: all 0.4s ease-in-out;
        display: inline-block;
        padding: 10px 0;
    }

        .clients img:hover {
            -webkit-filter: none;
            filter: none;
            transform: scale(1.1);
        }
/*=============About Us==============*/
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

    .about .content ul li {
        padding-left: 28px;
        position: relative;
        margin-top: 10px;
        font-size: 16px;
        line-height: 24px;
    }

        .about .content ul li + li {
            margin-top: 10px;
        }

    .about .content ul i {
        position: absolute;
        left: 0;
        top: 2px;
        font-size: 20px;
        color: #3498db;
        line-height: 1;
    }

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .btn-learn-more {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.3s;
    line-height: 1;
    color: #3498db;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #3498db;
}

    .about .content .btn-learn-more:hover {
        background: #3498db;
        color: #fff;
        text-decoration: none;
    }
/*===============Counts==================*/
.counts {
    padding-top: 0;
}

    .counts .content {
        padding: 0;
    }

        .counts .content h3 {
            font-weight: 700;
            font-size: 34px;
            color: #222222;
        }

        .counts .content p {
            margin-bottom: 0;
        }

        .counts .content .count-box {
            padding: 20px 0;
            width: 100%;
        }

            .counts .content .count-box i {
                display: block;
                font-size: 36px;
                color: #3498db;
                float: left;
            }

            .counts .content .count-box span {
                font-size: 36px;
                line-height: 30px;
                display: block;
                font-weight: 700;
                color: #222222;
                margin-left: 50px;
            }

            .counts .content .count-box p {
                padding: 15px 0 0 0;
                margin: 0 0 0 50px;
                font-size: 14px;
                color: #484848;
                line-height: 21px;
            }

                .counts .content .count-box p strong {
                    font-size: 14px;
                }

            .counts .content .count-box a {
                font-weight: 600;
                display: block;
                margin-top: 20px;
                color: #484848;
                font-size: 15px;
                transition: ease-in-out 0.3s;
            }

                .counts .content .count-box a:hover {
                    color: #6f6f6f;
                }
/*=====================Services===================*/
.services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
}

    .services .icon-box::before {
        content: '';
        position: absolute;
        background: #e1f0fa;
        right: -60px;
        top: -40px;
        width: 100px;
        height: 100px;
        border-radius: 50px;
        transition: all 0.3s;
        z-index: -1;
    }

    .services .icon-box:hover::before {
        background: #3498db;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 0px;
    }

.services .icon {
    margin: 0 auto 20px auto;
    padding-top: 10px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background: #3498db;
    transition: all 0.3s ease-in-out;
}

    .services .icon i {
        font-size: 36px;
        line-height: 1;
        color: #fff;
    }

.services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

    .services .title a {
        color: #111;
    }

.services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description {
    color: #fff;
}

.services .icon-box:hover .icon {
    background: #fff;
}

    .services .icon-box:hover .icon i {
        color: #3498db;
    }
/*================More Services================*/
.card-2 p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px !important;
}

    .card-2 p a {
        font-size: 16px;
    }

.card-2 h3 {
    font-size: 28px;
    line-height: 34px;
}

.more-services {
    padding-top: 20px;
}

    .more-services .card {
        border: 0;
        padding: 160px 20px 20px 20px;
        position: relative;
        width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }

    .more-services .card-body {
        z-index: 10;
        background: rgba(255, 255, 255, 0.9);
        padding: 15px 30px;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        transition: 0.3s;
        transition: ease-in-out 0.4s;
        border-radius: 5px;
    }

    .more-services .card-title {
        font-weight: 700;
        text-align: center;
        margin-bottom: 15px;
    }

        .more-services .card-title a {
            color: #222222;
        }

    .more-services .card-text {
        color: #5e5e5e;
    }

    .more-services .read-more a {
        color: #777777;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 12px;
        transition: 0.4s;
    }

        .more-services .read-more a:hover {
            text-decoration: underline;
        }

    .more-services .card:hover .card-body {
        background: #3498db;
    }

    .more-services .card:hover .read-more a,
    .more-services .card:hover .card-title,
    .more-services .card:hover .card-title a,
    .more-services .card:hover .card-text {
        color: #fff;
    }
/*==================Features==================*/
.features .icon-box {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f6f6f6;
    transition: ease-in-out 0.3s;
}

    .features .icon-box i {
        font-size: 32px;
        padding-right: 10px;
        line-height: 1;
    }

    .features .icon-box h3 {
        font-weight: 700;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-size: 16px;
    }

        .features .icon-box h3 a {
            color: #222222;
            transition: ease-in-out 0.3s;
        }

            .features .icon-box h3 a:hover {
                color: #3498db;
            }

    .features .icon-box:hover {
        background: #eef7fc;
    }
/*===================Testimonials==================*/
.testimonials .testimonial-wrap {
    padding-left: 50px;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px 30px 30px 60px;
    margin: 30px 15px;
    min-height: 200px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    background: #fff;
}

    .testimonials .testimonial-item .testimonial-img {
        width: 90px;
        border-radius: 10px;
        border: 6px solid #fff;
        position: absolute;
        left: -45px;
    }

    .testimonials .testimonial-item h3 {
        font-size: 18px;
        font-weight: bold;
        margin: 10px 0 5px 0;
        color: #111;
    }

    .testimonials .testimonial-item h4 {
        font-size: 14px;
        color: #999;
        margin: 0;
    }

    .testimonials .testimonial-item .quote-icon-left,
    .testimonials .testimonial-item .quote-icon-right {
        color: #e1f0fa;
        font-size: 26px;
    }

    .testimonials .testimonial-item .quote-icon-left {
        display: inline-block;
        left: -5px;
        position: relative;
    }

    .testimonials .testimonial-item .quote-icon-right {
        display: inline-block;
        right: -5px;
        position: relative;
        top: 10px;
    }

    .testimonials .testimonial-item p {
        font-style: italic;
        margin: 15px auto 15px auto;
    }

.testimonials .owl-nav,
.testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

    .testimonials .owl-dot.active {
        background-color: #3498db !important;
    }
/*=============F.A.Q==============*/
.faq .faq-item {
    margin: 20px 0;
    padding: 20px 0;
    border-bottom: 1px solid #eeeeee;
}

    .faq .faq-item i {
        color: #8bc4ea;
        font-size: 24px;
        float: left;
        line-height: 0;
        padding: 13px 0 0 0;
        margin: 0;
    }

    .faq .faq-item h4 {
        font-size: 16px;
        line-height: 26px;
        font-weight: 500;
        margin: 0 0 10px 32px;
    }

    .faq .faq-item p,
    .faq .faq-item p a {
        font-size: 15px;
    }
/*==============Contact=============*/
.contact .contact-about h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    color: #222222;
}

.contact .contact-about p {
    font-size: 14px;
    line-height: 24px;
    color: #888;
    margin-bottom: 16px !important;
}

.contact .social-links {
    padding-bottom: 20px;
}

    .contact .social-links a {
        font-size: 18px;
        display: inline-block;
        background: #fff;
        color: #3498db;
        line-height: 1;
        padding: 8px 0;
        margin-right: 4px;
        border-radius: 50%;
        text-align: center;
        width: 36px;
        height: 36px;
        transition: 0.3s;
        border: 1px solid #3498db;
    }

        .contact .social-links a i {
            font-size: 18px;
            color: #3498db;
        }

        .contact .social-links a:hover {
            background: #3498db;
            color: #fff;
        }

.contact .info {
    color: #444444;
}

    .contact .info i {
        font-size: 32px;
        color: #3498db;
        float: left;
        line-height: 1;
    }

    .contact .info p {
        padding: 0 0 10px 42px;
        line-height: 28px;
        font-size: 14px;
    }

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

    .contact .php-email-form .error-message br + br {
        margin-top: 25px;
    }

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

    .contact .php-email-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid #18d26e;
        border-top-color: #eee;
        -webkit-animation: animate-loading 1s linear infinite;
        animation: animate-loading 1s linear infinite;
    }

.contact .php-email-form .form-group {
    margin-bottom: 20px;
}

.contact .php-email-form input {
    height: 43px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    padding: 10px 15px;
}

    .contact .php-email-form input:focus,
    .contact .php-email-form textarea:focus {
        border-color: #3498db;
    }

.contact .php-email-form button[type="submit"] {
    background: #3498db;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    font-size: 16px;
}

    .contact .php-email-form button[type="submit"]:hover {
        background: #2383c4;
    }

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*=============Footer==============*/
#footer {
    background: #fff;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    color: #222222;
    font-size: 14px;
}

    #footer .credits {
        font-size: 13px;
        padding-top: 5px;
        color: #222222;
    }

    #footer .footer-links a {
        color: #222222;
        padding-left: 15px;
    }

        #footer .footer-links a:first-child {
            padding-left: 0;
        }

        #footer .footer-links a:hover {
            color: #3498db;
        }
/*==============dashboard start===========*/
.dashboradheading {
    font-size: 40px;
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #e5e5e5;
}

table {
    margin-top: 20px;
}

.panelblock div > i {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
}

.panelright-text {
    font-size: 14px;
    color: #fff;
    height: 40px
}

.panelbottom-block {
    text-align: center;
}

    .panelbottom-block .huge {
        font-size: 20px;
        color: #fff;
    }

.panel-primary a {
    color: #337ab7;
}

.panelblock .panel-footer span,
.panelblock .panel-footer span i {
    color: #337ab7;
}

.panel-green {
    border-color: #5cb85c !important;
}

    .panel-green .panel-heading {
        border-color: #5cb85c;
        color: #fff;
        background-color: #5cb85c;
    }

    .panel-green a {
        color: #5cb85c;
    }

        .panel-green a:hover {
            color: #3d8b3d;
        }

    .panel-green .panel-footer span,
    .panel-green .panel-footer span i {
        color: #3d8b3d;
    }

.panel-red {
    border-color: #d9534f !important;
}

    .panel-red .panel-heading {
        border-color: #d9534f;
        color: #fff;
        background-color: #d9534f;
    }

    .panel-red a {
        color: #d9534f;
    }

        .panel-red a:hover {
            color: #b52b27;
        }

    .panel-red .panel-footer span,
    .panel-red .panel-footer span i {
        color: #b52b27;
    }

.panel-yellow {
    border-color: #f0ad4e !important;
}

    .panel-yellow .panel-heading {
        border-color: #f0ad4e;
        color: #fff;
        background-color: #f0ad4e;
    }

    .panel-yellow a {
        color: #f0ad4e;
    }

        .panel-yellow a:hover {
            color: #df8a13;
        }

    .panel-yellow .panel-footer span,
    .panel-yellow .panel-footer span i {
        color: #df8a13;
    }

.panel-greendark {
    border-color: #10c469 !important;
}

    .panel-greendark .panel-heading {
        border-color: #10c469;
        color: #fff;
        background-color: #10c469;
    }

    .panel-greendark a {
        color: #10c469;
    }

        .panel-greendark a:hover {
            color: #df8a13;
        }

    .panel-greendark .panel-footer span,
    .panel-greendark .panel-footer span i {
        color: #10c469;
    }

.panel-pink {
    border-color: #ff8acc !important;
}

    .panel-pink .panel-heading {
        border-color: #ff8acc;
        color: #fff;
        background-color: #ff8acc;
    }

    .panel-pink a {
        color: #ff8acc;
    }

        .panel-pink a:hover {
            color: #df8a13;
        }

    .panel-pink .panel-footer span,
    .panel-pink .panel-footer span i {
        color: #ff8acc;
    }

.panel-purple {
    border-color: #5b69bc !important;
}

    .panel-purple .panel-heading {
        border-color: #5b69bc;
        color: #fff;
        background-color: #5b69bc;
    }

    .panel-purple a {
        color: #5b69bc;
    }

        .panel-purple a:hover {
            color: #df8a13;
        }

    .panel-purple .panel-footer span,
    .panel-purple .panel-footer span i {
        color: #5b69bc;
    }

.panel-lightred {
    border-color: #ff5b5b !important;
}

    .panel-lightred .panel-heading {
        border-color: #ff5b5b;
        color: #fff;
        background-color: #ff5b5b;
    }

    .panel-lightred a {
        color: #ff5b5b;
    }

        .panel-lightred a:hover {
            color: #df8a13;
        }

    .panel-lightred .panel-footer span,
    .panel-lightred .panel-footer span i {
        color: #ff5b5b;
    }

.error {
    color: #F00 !important;
    border-color: #F00 !important;
    outline: 1px solid #F00 !important;
}

label.error {
    display: none !important;
}

.data-tableblock tr td,
.data-tableblock tr th {
    font-size: 16px;
}

    .data-tableblock tr td a strong {
        color: #5b69bc;
        font-size: 16px;
        text-transform: uppercase;
    }

.box-main-heading-top {
    background: #305d9e;
    float: left;
    width: 100%;
    color: #fff;
}

    .box-main-heading-top h2 {
        float: left;
        margin: 0px;
        padding: 8px 0px;
        font-size: 14px;
        color: #fff;
        font-weight: 600;
    }

    .box-main-heading-top a {
        color: #fff;
    }

    .box-main-heading-top .box-top-right-btn {
        float: right;
        padding: 8px 10px;
    }

        .box-main-heading-top .box-top-right-btn ul {
            margin: 0px;
            padding: 0px;
        }

            .box-main-heading-top .box-top-right-btn ul li {
                list-style-type: none;
            }

                .box-main-heading-top .box-top-right-btn ul li a {
                    width: 30px;
                    height: 30px;
                    border-radius: 100%;
                    overflow: hidden;
                    float: right;
                    border: 2px solid #ccc;
                }

                    .box-main-heading-top .box-top-right-btn ul li a img {
                        width: 100%;
                    }

                .box-main-heading-top .box-top-right-btn ul li .dropdown-menu {
                    width: 100%;
                    float: right;
                    background: rgb(255, 255, 255);
                    position: absolute !important;
                    top: 0px;
                    right: 0px !important;
                    left: -10px !important;
                    padding: 10px;
                }

.dropdown-menu .box-use {
    border-radius: 50%;
    height: 60px;
    margin: 0px auto;
    overflow: hidden;
    background: #0099CC;
    border: 1px solid #0099CC;
    width: 60px;
}

    .dropdown-menu .box-use img {
        width: 100%;
    }

.dropdown-menu-use-detail h2 {
    font-size: 16px;
    text-align: left;
    font-weight: 600;
    margin: 0px;
    padding: 8px 0px;
    width: 100%;
    color: #444;
}

.dropdown-menu-use-detail h3 {
    font-size: 12px;
    text-align: left;
    font-weight: 600;
    margin: 0px;
    padding: 8px 0px;
    width: 100%;
}

.box-top-right-btn {
    float: right;
}

    .box-top-right-btn.dropdown {
        position: relative;
        width: 20%;
    }

.dropdown-menu-use-lin p {
    margin: 0px;
    padding: 4px 0px;
}

    .dropdown-menu-use-lin p a {
        color: #000;
        border-radius: 0px !important;
        width: 100% !important;
        border: 0px !important;
    }

.box-main-panel {
    position: relative;
    border-radius: 3px;
    background: #ffffff;
    border-top: 1px solid #d2d6de;
    margin-bottom: 20px;
    width: 100%;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.box-main-heaging {
    width: 100%;
    float: left;
    border-bottom: 1px solid #e3e3e3;
}

    .box-main-heaging h2 {
        border-left: 6px solid #337ab7;
        margin: 0px;
        padding: 8px 8px;
        float: left;
        font-size: 16px;
        font-weight: 600;
    }

.box-top-menu {
    width: 100%;
    float: left;
}

    .box-top-menu ul {
        margin: 0px;
        padding: 0px;
        float: left;
        width: 98.5%;
    }

        .box-top-menu ul li {
            list-style-type: none;
            display: inline-flex;
        }

            .box-top-menu ul li a {
                color: #fff;
                padding: 6px 10px;
            }

                .box-top-menu ul li a:hover {
                    text-decoration: none;
                    background: #fff;
                    color: #000 !important;
                }

                .box-top-menu ul li a span:hover {
                    color: #000 !important;
                }

.box-top-main-nav {
    float: right;
    padding: 6px 8px;
}

.box-main-radio label input {
    margin: 0px;
    margin-right: 6px;
    position: relative;
    top: 2px;
}

.box-main-radio ul {
    margin: 0px;
}

    .box-main-radio ul li label {
        margin: 0px;
    }

    .box-main-radio ul li {
        list-style-type: none;
        display: inline-table;
        margin-right: 5px;
    }

.box-top-main-nav .btn-custom-top {
    padding: 2px 10px;
    font-size: 11px;
    background: #337ab7;
    border: 1px solid #2e6da4;
    color: #fff;
}

.box-top-right-btn .box-top-right-orcolor {
    float: left;
    color: #fb7070;
    padding-right: 10px;
    font-weight: 600;
}

    .box-top-right-btn .box-top-right-orcolor label {
        background: #579bd6;
        border-radius: 2px;
        margin-right: 6px;
        padding: 3px 6px;
        margin: 0px;
        color: #fff;
    }

.box-top-right-btn .btn-custom-top {
    padding: 2px 10px;
    font-size: 11px;
    background: #337ab7;
    border: 1px solid #2e6da4;
    color: #fff;
}

    .box-top-right-btn .btn-custom-top:hover {
        color: #fff !important;
        background: #418dce;
    }

.gridview table {
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

    .gridview table th {
        background: #117bad !important;
        padding: 5px 6px !important;
        color: #fff !important;
        border-right: 1px solid #005dbd;
    }

    .gridview table tr th a {
        color: #fff !important;
        padding: 8px 0px !important;
        float: left;
    }

    .gridview table tr:nth-child(odd) {
        background: #fff !important;
        padding: 4px 8px;
    }

    .gridview table tr td input img {
        width: 10px !important;
        padding: 0px 0px !important;
    }

    .gridview table tr td {
        padding: 5px 4px;
        border-right: 1px solid #edecec;
        border-bottom: 1px solid #edecec;
    }

    .gridview table tr:nth-child(even) {
        background: #fbfbfb !important;
    }

    .gridview table tr td.box-delete a {
        background: #ce0303;
        width: 20px;
        height: 20px;
        border-radius: 5px;
        padding: 3px;
    }

        .gridview table tr td.box-delete a i {
            color: #fff;
        }

.box-panel {
    width: 16.66666%;
    float: left;
    background: #fff;
    margin-top: 10px;
    overflow: hidden;
}

    .box-panel h2 {
        text-align: center;
        font-size: 17px;
        font-weight: 600;
        margin: 0px;
        padding: 10px 0 20px 0px;
        color: #fff;
        font-family: Arial;
    }

    .box-panel h3 {
        color: #fff !important;
        text-align: center;
        font-size: 25px;
        font-weight: 600;
        margin: 0px;
        padding: 15px 0 0 0px;
        font-family: Arial;
    }

    .box-panel:last-child {
        margin-right: 0px;
    }

.box-panel-col {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

    .box-panel-col .box-i {
        text-align: center;
        color: #fff;
        font-size: 40px;
        padding: 16px 0px;
    }

        .box-panel-col .box-i i {
            color: #fff;
        }

:hover
.box-panel-col .box-detail {
    text-align: right;
}

.box-panel:hover {
    box-shadow: 0px 20px 20px #adadad;
}

.box-panel-col .box-detail h2 {
    font-size: 16px;
    font-weight: 600;
    margin: 0px;
    padding: 10px 0px 3px 0px;
    color: #848383;
}

.box-panel-col .box-detail h3 {
    font-size: 25px;
    font-weight: 600;
    margin: 0px;
    padding: 0px 0px;
    color: #868686;
}

.box-panel-col .box-detail h4 {
    padding: 4px 0px;
    border-top: 1px solid #e3e3e3;
}

    .box-panel-col .box-detail h4 p {
        float: left;
        margin-bottom: 5px;
        color: #ccc;
    }

    .box-panel-col .box-detail h4 img {
        float: right;
        margin-bottom: 5px;
    }

.main-heading {
    margin: 0px;
    padding: 10px 0px;
    font-size: 19px;
    font-weight: 500;
    color: #17a2b8;
}

/*********************************************************/
.box-panel-col-new {
    background: #fff;
    border-radius: 4px;
    width: 100%;
    float: left;
    padding: 10px;
    border: none;
    box-shadow: 0 0 5px 0px rgba(115, 108, 203, 0.23);
}

    .box-panel-col-new .box-i-new {
        text-align: center;
        color: #fff;
        font-size: 25px;
        padding: 0px 0px;
        width: 50px;
        height: 50px;
        margin-top: 10px;
        margin-left: 10px;
        line-height: 50px;
        box-shadow: 0 4px 20px 0 rgba(0,0,0,.14), 0 7px 10px -5px rgba(52, 191, 163, 0.52);
        float: left;
    }

        .box-panel-col-new .box-i-new i {
            color: #fff;
        }

    .box-panel-col-new .box-detail-new {
        text-align: right;
        float: right;
        padding-top: 10px;
        padding-right: 10px;
    }

        .box-panel-col-new .box-detail-new h2 {
            font-size: 14px;
            color: #999999;
            font-weight: 400;
            margin-bottom: 9px;
        }

        .box-panel-col-new .box-detail-new h3 {
            font-size: 22px;
            color: #2e2e3a;
            font-weight: 500;
            margin-bottom: 0px;
        }

.box-detail-new-info {
    width: 100%;
    float: left;
    margin-top: 5px;
    margin-bottom: 0;
}

    .box-detail-new-info h4 {
        padding: 5px 0px;
        border-top: 1px solid #e3e3e3;
        width: 100%;
    }

        .box-detail-new-info h4 p {
            float: left;
            margin-bottom: 5px;
            color: #ccc;
            float: left;
        }

    .box-detail-new-info img {
        float: right;
        margin-bottom: 5px;
        float: right;
    }
/*******************************************************/
.box-hi-hading h2 {
    font-size: 20px;
    margin: 0px;
    padding: 0;
    font-weight: 600;
    padding-top: 10px;
}

.box-hi-hading p {
    font-size: 14px;
    margin: 0px;
    padding: 5px 0;
    color: #868585;
}

button#menu-toggle i {
    color: #fff;
    font-size: 20px;
}

.menu-elements li {
    background: #337ab7;
    display: block;
}

    .menu-elements li a {
        padding: 8px 10px;
        display: block;
    }

        .menu-elements li a i {
            text-align: right;
        }

.box-pic {
    border-radius: 50%;
    height: 110px;
    margin: 0px auto;
    overflow: hidden;
    background: #0099CC;
    border: 1px solid #0099CC;
    width: 110px;
}

    .box-pic img {
        width: 100%;
    }

.box-per {
    background: #fff;
}

    .box-per h2 {
        font-size: 15px;
        margin: 0px;
        padding: 5px 10px;
        color: #fff;
        background: #096eff;
        width: 100%;
    }

        .box-per h2 span {
            font-size: 12px;
            color: #fff;
            float: right;
            padding: 2px 0px;
        }

        .box-per h2 .box-icon {
            float: right;
        }

            .box-per h2 .box-icon img {
                width: 20px;
                height: 20px;
                margin-left: 6px;
            }

    .box-per a {
        color: #fff;
    }

.box-per-inn h2 {
    font-size: 12px;
    margin: 0px;
    padding: 5px 10px;
    color: #fff;
    background: #0048af;
    width: 100%;
    font-weight: bold;
}

.box-radio-btn label {
    min-height: 20px;
    padding-left: 0px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}

    .box-radio-btn label input {
        margin: 0px;
        margin-right: 6px;
        position: relative;
        top: 2px;
    }

.box-radio-btn ul {
    margin: 0px;
}

    .box-radio-btn ul li label {
        margin: 0px;
    }

    .box-radio-btn ul li {
        list-style-type: none;
        display: inline-table;
        margin-right: 5px;
    }

.user-menu a span, .user-menu a:hover {
    color: #fff;
    background: none !important;
}

.box-document {
    float: left;
    overflow: hidden;
    background: #f0e68c;
}

.box-document-left {
    width: 10px;
    float: right;
    background: #096eff;
    height: 150px;
    position: relative;
}

    .box-document-left .slide-toggle {
        position: absolute;
        left: 0px;
        top: 50%;
    }

        .box-document-left .slide-toggle i {
            color: #fff;
        }

.box-clone a {
    background: #2e6da4;
    border-radius: 5px;
    padding: 5px;
    width: 25px;
    height: 25px;
    float: right;
}

    .box-clone a i {
        color: #fff;
        font-size: 12px;
    }

.box-row {
}

    .box-row ul {
        margin: 0px;
    }

        .box-row ul li {
            list-style-type: none;
            display: table-cell;
            padding: 3px 6px;
        }

            .box-row ul li.one {
                background: #f7a5a5;
            }

            .box-row ul li.two {
                background: #faf3da;
            }

            .box-row ul li.three {
                background: #c5fec4;
            }

.box-arror {
    width: 100%;
    float: left;
    text-align: center;
    padding: 4px 0px;
    color: #f00;
    font-size: 11px;
}

.box-success {
    width: 100%;
    float: left;
    text-align: center;
    padding: 4px 0px;
    color: #09ad1b;
    font-size: 11px;
}

.box-warning {
    width: 100%;
    float: left;
    text-align: center;
    padding: 4px 0px;
    color: #f5ff00;
    font-size: 11px;
}

.box-headline-col {
    margin-top: 5px;
    background: #e0e0e0;
    padding: 5px;
}

    .box-headline-col strong {
        color: #f00;
        margin-right: 5px;
    }

.box-panel-col-new h2 {
    font-size: 12px;
    margin-bottom: 0;
    border-bottom: 1px solid #ececec;
}

.text-right.text-muted {
    padding: 20px 10px 0;
}

.login-btn {
    margin-bottom: 10px !important;
}

.login-top-links a,
body .login-top-links a:hover {
    color: #fff !important;
}

.user-profile {
    background: #fff;
    border: 1px solid #ccc;
    width: 60px;
    height: 60px;
    display: flex;
    border-radius: 50%;
    margin: auto;
    float: left;
}

    .user-profile i {
        text-align: center;
        margin: auto;
        font-size: 25px;
    }

.bs-example {
    margin: 0px;
}

.top-li {
    display: inline-block;
    text-align: right;
    margin-bottom: 0;
    width: 100%;
    max-width: calc(100% - 50px);
}

    .top-li li {
        color: #fff;
        list-style: none;
        padding: 0 20px;
        line-height: 50px;
        display: inline-block !important;
        float: none !important
    }

        .top-li li a {
            color: #fff;
        }

        .top-li li span {
            color: #fff;
            font-weight: bold;
        }

h2 {
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
    padding-bottom: 5px;
    font-size: 18px;
}

.box-panel {
    width: 14.2222222%;
    min-height: 125px;
    padding: 0 10px;
}

    .box-panel h2 {
        border-bottom: 0;
    }

.box-panel-col-new h4 {
    padding: 5px;
    font-size: 14px;
}

.box-panel-col-new span {
    float: right;
}

.top-li li .dropdown-menu {
    left: auto;
    right: 0;
    max-width: 180px;
}

    .top-li li .dropdown-menu li {
        line-height: 30px;
        width: 100%;
        padding: 0;
        float: left;
    }

.top-li li.dropdown {
    background: #3389c3;
}

    .top-li li.dropdown a i {
        color: #fff;
    }

.dropdown-user li a i {
    color: #444 !important;
    margin-right: 3px;
    width: 15px;
}

.navbar-top-links {
    margin-right: 0;
}

    .navbar-top-links li {
        display: inline-block;
    }

        .navbar-top-links li:last-child {
            margin-right: 15px;
        }

        .navbar-top-links li a {
            padding: 15px;
            min-height: 50px;
        }

    .navbar-top-links .dropdown-menu li {
        display: block;
    }

        .navbar-top-links .dropdown-menu li:last-child {
            margin-right: 0;
        }

        .navbar-top-links .dropdown-menu li a {
            padding: 3px 20px;
            min-height: 0;
        }

            .navbar-top-links .dropdown-menu li a div {
                white-space: normal;
            }

    .navbar-top-links .dropdown-user {
        right: 0;
        left: auto;
    }
/*==================bill payment=====================*/
.formrow-block {
    width: 100%;
    display: inline-block;
    margin-bottom: 15px;
}

    .formrow-block > label {
        font-size: 14px;
        color: #444;
        display: block;
        text-transform: capitalize;
    }

    .formrow-block > input,
    .formrow-block > select {
        font-size: 14px;
        color: #444;
        display: block;
        width: 100%;
        border: 2px solid #e5e5e5;
        border-radius: 4px;
        height: 40px;
        padding: 0 10px;
    }

.widthchange > input {
    max-width: 200px;
    float: left;
    margin-right: 10px;
}

.formrow-block > .bill-btn, .formrow-block > .bill-btn {
    height: 40px;
    font-size: 14px;
    border-radius: 4px;
    border: medium none;
    padding: 0 10px;
    background: #15a3bb;
    color: #fff;
    max-width: 100px;
}

.billsubmit-btn {
    height: 40px;
    font-size: 14px;
    border-radius: 4px;
    border: medium none;
    padding: 0 10px;
    background: #007cfa;
    color: #fff !important;
    margin-top: 25px;
    min-width: 100px;
    margin-right: 10px;
    max-width: 130px;
    float: left;
}

.formrow-block .billsubmit-btn:first-child {
    background: #dd3544;
}

.billpayment-table tr th {
    background: #f0f0f0;
}

.billpayment-table > a {
    height: 30px;
    background: #f5f5f5;
    width: 60px;
    font-size: 12px;
    color: #444;
    display: block;
    margin-bottom: 20px;
    text-align: center;
    line-height: 30px;
    font-weight: 600;
}
/*==================user key form=====================*/
.userkey-formblock hr {
    width: 100%;
    display: block;
}

.userkey-formblock form {
    margin-bottom: 30px;
}

.userkey-formblock .row {
    border-bottom: 1px solid #444;
}

    .userkey-formblock .row .col-md-6:last-child {
        border-left: 2px solid #444;
    }

.userkey-row {
    width: 100%;
    display: inline-block;
    margin: 15px 0;
}

.userkey-label {
    font-size: 14px;
    display: inline-block;
    margin-right: 15px;
    float: left;
    text-transform: capitalize;
    margin-bottom: 0;
    line-height: 40px;
    min-width: 160px;
    max-width: 100%;
}

.userkey-btn {
    min-width: 100px;
    height: 40px;
    border-radius: 5px;
    font-size: 16px;
    background: #3498db;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    padding: 0 15px;
    color: #fff;
    border: medium none;
    text-transform: capitalize;
}

.choosefile-input {
    border: 2px solid #3498db;
    display: inline-block;
    float: left;
    margin-right: 15px;
    height: 40px;
    padding: 7px 10px;
    max-width: 200px;
    border-radius: 5px;
    font-size: 14px;
}

.downlodtop-btn {
    font-weight: 600;
    padding: 0 25px;
}

.downloadtop-txt {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
}

.card-deck {
    margin-bottom: 50px;
}

    .card-deck .card {
        border-radius: 8px;
        padding: 15px;
        margin: 50px auto;
        overflow: hidden;
        background-color: #fff;
    }


/*==================Payment pages=====================*/
.payment-chargeblock {
    width: 100%;
    display: inline-block;
    border-top: 1px solid #e5e5e5;
    margin-top: 20px;
    padding: 0 20px;
}

.payment-h2 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 800;
    margin: 0;
    padding-bottom: 5px;
}

.payment-amountdetail {
    width: 100%;
    display: inline-block;
    padding: 10px 0;
}

.amount-btnblock {
    display: inline-block;
    margin-top: 30px;
    width: 100%;
}

    .amount-btnblock > label {
        font-size: 16px;
        text-transform: uppercase;
        font-weight: 600;
        line-height: 30px;
    }

    .amount-btnblock > input {
        width: 150px;
        height: 30px;
        border: 1px solid #000;
        padding: 0 10px;
        border-radius: 5px;
        margin: 0 15px;
    }

.payment-paybtn {
    border-radius: 5px;
    color: #fff;
    border: medium none;
    background: #01a0e2;
    width: 100px;
    height: 30px;
    font-size: 16px;
    margin-left: 15px;
}

.charges-block {
    width: 100%;
    display: inline-block;
    padding: 10px 0;
}

.paymentchage-table {
    width: 100%;
}

    .paymentchage-table tbody tr td {
        padding: 5px 8px;
        font-size: 12px;
    }

        .paymentchage-table tbody tr td:nth-child(1) {
            width: 150px;
        }

        .paymentchage-table tbody tr td:nth-child(2) {
            width: 120px;
        }

        .paymentchage-table tbody tr td:nth-child(3) {
            width: 110px;
        }

        .paymentchage-table tbody tr td:nth-child(4) {
            width: 150px;
        }

.payment-livecharges .payment-amountdetail,
.payment-livecharges .charges-block {
    max-width: 470px;
    margin: auto;
    width: 100%;
}

.payment-livecharges .charges-block {
    margin-top: 30px;
}

    .payment-livecharges .charges-block .payment-h2 {
        margin-bottom: 20px;
    }

.payment-livecharges .paymentchage-table tbody tr td:nth-child(1) {
    width: 100px;
}
/*=============contact page===============*/
.contact-head-img img {
    max-width: 100%;
}

.contact-head-img {
    height: inherit !important;
}

.contact-page {
    width: 100%;
    display: inline-block;
    background: url("../images/bg.png");
    padding: 50px 0;
}

.contact-header h3 {
    letter-spacing: 2px;
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.contact-page .breadcrumb {
    margin-top: 30px;
    margin-bottom: 20px;
}

    .contact-page .breadcrumb li {
        font-size: 13px;
    }

    .contact-page .breadcrumb > li + li:before {
        padding: 0 5px;
        color: #ccc;
        content: "/\00a0";
    }

    .contact-page .breadcrumb .active {
        font-weight: 600;
    }

.contact-header p {
    font-size: 13px;
    line-height: 24px;
}

.contactform-heading {
    font-size: 22px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.contact-page .contact .php-email-form input,
.contact-page .contact .php-email-form textarea {
    background: transparent;
    border-color: #9A9598;
}

.contact-page .address ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .contact-page .address ul li {
        text-decoration: none;
        padding: 2px 0;
        color: #9A9598;
        line-height: 24px;
        font-size: 14px;
    }

        .contact-page .address ul li a {
            color: #1fadc5;
            margin-right: 1em;
            position: relative;
        }

li.socialclick a:after {
    content: '';
    width: 1px;
    height: 10px;
    border-right: 1px solid #9A9598;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -8px;
}

li.socialclick a:last-child:after {
    display: none;
}
/*===============login page=====================*/
.card-header h2 {
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    border: medium none;
    margin-bottom: 40px;
    position: relative;
}

    .card-header h2:before,
    .card-header h2:after {
        content: '';
        width: 30px;
        height: 2px;
        background: #3498db;
        display: inline-block;
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        left: 0;
    }

    .card-header h2:before {
        left: auto;
        right: 0;
    }

    .card-header h2 > i {
        font-size: 24px;
    }

.login-form .form-group > label {
    font-size: 14px;
    color: #444;
    font-weight: 400;
    float: left;
    width: 110px;
}

    .login-form .form-group > label i {
        color: #3498db;
        font-size: 18px;
    }

.login-form .form-group > .form-control {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    height: 38px;
}

.login-form .login-btn {
    max-width: 120px;
    margin: auto;
    background: #3498db;
    height: 38px;
    padding: 6px 12px;
    font-size: 16px;
    border: none;
}

.card-deck .card h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    border-bottom: none;
    margin-bottom: 38px;
}

.card-deck .card .section-title h2 {
    margin-bottom: 0;
}

.card-deck .card h2 i {
    font-size: 32px;
}

.card-deck .card .info i {
    color: #3498db;
    font-size: 32px;
    float: left;
}

.card-deck .card .info p {
    padding: 0 0 10px 42px;
    line-height: 28px;
    font-size: 14px;
    color: #444;
    margin-bottom: 16px !important;
}
/*=================fund withdraw================*/
.sec-box {
    width: 100%;
    height: 100%;
    padding: 10px;
    background: #FFF;
    position: relative;
    -webkit-box-shadow: 0px 6px 5px 0 #E8E8E8;
    box-shadow: 0px 6px 5px 0 #E8E8E8;
}

.bankdetail-table h6 {
    font-size: 16px;
    font-weight: 600;
}

.bankdetail-table tr td {
    font-size: 14px;
}

.fundwithdraw-btn {
    background-color: #01a0e2 !important;
    color: #fff !important;
}

.services_header_text {
    text-align: left !important;
    color: #01a0e2;
    background-color: transparent;
    font-size: 20px;
    margin-bottom: 16px;
}

.express_wayfrm {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

    .express_wayfrm ul {
        width: 70%;
        list-style: none;
    }

        .express_wayfrm ul li:first-child {
            width: 70%;
        }

        .express_wayfrm ul li {
            display: inline-block;
            float: left;
            margin-right: 5px;
        }

.register_a {
    height: 34px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 34px;
    padding: 0 10px;
}

.search_payexpress_transdv {
    padding-top: 82px;
}

    .search_payexpress_transdv form.search-box {
        border-radius: 30px;
        display: flex;
        padding: 5px 5px 5px 15px;
        border: 1px solid #01a0e2;
    }

        .search_payexpress_transdv form.search-box .seachbox-input {
            display: block;
            width: 100%;
            padding: 0.375rem 0.75rem;
            font-size: 15px;
            line-height: 1.5;
            color: #495057;
            height: 42px;
            background-color: #fff;
            border: 3px solid transparent;
            border-radius: 4px;
        }

        .search_payexpress_transdv form.search-box .fundwithdraw-btn {
            border: none;
            border-radius: 30px;
            padding: 5px 15px !important;
            color: #fff;
            font-size: 14px;
        }

.transition_historu_mndv {
    margin-top: 30px;
}

.transition_historu_ul {
    padding: 15px 10px 15px;
    height: 390px;
    overflow-y: scroll;
    list-style: none;
}

    .transition_historu_ul > li {
        display: flex;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
        padding: 15px 6px;
        background-color: #fff;
        margin-bottom: 15px;
        border: 1px solid #ddd;
    }

.transition_lileft {
    display: flex;
}

.bank_icon {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin-right: 12px;
    line-height: 47px;
    background-color: #eee;
    text-align: center;
}

.transition_title {
    align-self: center !important;
}

    .transition_title h5 {
        margin-top: 0;
        font-weight: 700;
    }

    .transition_title h6 {
        color: #9e9e9e;
        font-size: 14px;
        margin-bottom: 0px;
        font-weight: 400;
    }

.transition_amount ul {
    list-style: none;
}

    .transition_amount ul li {
        display: block;
        text-align: right;
    }

        .transition_amount ul li svg {
            width: 12px;
            float: left;
            margin-right: 5px;
        }

.print_receipt_with_logo {
    display: block;
    margin-top: 5px;
}

    .print_receipt_with_logo i {
        color: #046fdf;
        font-size: 18px;
    }

.sec-box .table_details table {
    background: #5bc0de;
}

    .sec-box .table_details table tr td,
    .sec-box .table_details table tr td b {
        color: #fff;
        font-size: 14px;
    }

.sec-box .table-box .dataTables_length {
    float: left;
    padding: 5px;
}

    .sec-box .table-box .dataTables_length label select {
        height: 34px;
        padding: 6px 6px 6px 12px;
        font-size: 13px;
    }

.sec-box .table-box .dataTables_filter {
    float: right;
    padding: 5px;
}

    .sec-box .table-box .dataTables_filter input {
        border-width: 1px;
        height: 28px;
    }

.sec-box table.dataTable thead th {
    padding: 10px 18px;
    font-size: 14px;
}

.sec-box .dataTables_info {
    padding: 5px;
    display: inline-block;
}

.sec-box .table-box .dataTables_paginate {
    display: inline-block;
    padding-left: 0;
    margin: 15px 15px 0px 0px;
    float: right;
    border-radius: 4px;
    color: #6d6f75;
    background: #f8f8f8;
}

    .sec-box .table-box .dataTables_paginate a {
        padding: 6px 11px;
        color: #444;
        height: 32px;
        display: inline-block;
    }


@media screen and (max-width: 320px) {
    .box-panel {
        width: 100%;
    }
}

@media screen and (max-width: 375px) {
    .box-panel {
        width: 45%;
    }
}

@media screen and (max-width: 425px) {
    .box-panel {
        width: 46%;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }

    .clients img {
        width: 30%;
    }
}

@media (max-width: 667px) {
    .counts .image img {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .testimonials .testimonial-wrap {
        padding-left: 0;
    }

    .testimonials .testimonial-item {
        padding: 30px;
        margin: 15px;
    }

        .testimonials .testimonial-item .testimonial-img {
            position: static;
            left: auto;
        }

    .mobile-nav-toggle {
        display: block;
    }

    #header .nav-menu {
        display: none;
    }

    .navbar .top-li li {
        padding: 0 7px;
    }
}

@media screen and (max-width: 768px) {
    .box-panel {
        width: 46%;
    }

    [data-aos-delay] {
        transition-delay: 0 !important;
    }

    #header {
        background: #fff;
    }

        #header .logo h1 {
            font-size: 28px;
        }

    #hero {
        margin-top: 20px;
    }

        #hero h1 {
            font-size: 28px;
            line-height: 36px;
        }

        #hero h2 {
            font-size: 18px;
            line-height: 24px;
            margin-bottom: 30px;
        }

        #hero .hero-img img {
            width: 70%;
        }

    .clients img {
        width: 40%;
    }
}

@media (max-width: 991px) {
    #hero {
        height: 100vh;
    }

        #hero .animated {
            -webkit-animation: none;
            animation: none;
        }

        #hero .hero-img {
            text-align: center;
        }

            #hero .hero-img img {
                width: 50%;
            }
}

@media screen and (max-width: 1024px) {
    .box-panel {
        width: 25%;
    }

    #hero {
        background-attachment: fixed;
        height: inherit;
    }

    .counts .image {
        text-align: center;
    }

        .counts .image img {
            max-width: 70%;
        }
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}
