@charset "UTF-8";

@font-face {
    font-family: 'robotoblack';
    src: url('../fonts/roboto-black-webfont.woff2') format('woff2'), url('../fonts/roboto-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotobold';
    src: url('../fonts/roboto-bold-webfont.woff2') format('woff2'), url('../fonts/roboto-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'roboto_condensedbold';
    src: url('../fonts/robotocondensed-bold-webfont.woff2') format('woff2'), url('../fonts/robotocondensed-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'roboto_condensedlight';
    src: url('../fonts/robotocondensed-light-webfont.woff2') format('woff2'), url('../fonts/robotocondensed-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'roboto_condensedregular';
    src: url('../fonts/robotocondensed-regular-webfont.woff2') format('woff2'), url('../fonts/robotocondensed-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotolight';
    src: url('../fonts/roboto-light-webfont.woff2') format('woff2'), url('../fonts/roboto-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotomedium';
    src: url('../fonts/roboto-medium-webfont.woff2') format('woff2'), url('../fonts/roboto-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotoregular';
    src: url('../fonts/roboto-regular-webfont.woff2') format('woff2'), url('../fonts/roboto-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppinsblack';
    src: url('../fonts/poppins-black-webfont.woff2') format('woff2'), url('../fonts/poppins-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppinsbold';
    src: url('../fonts/poppins-bold-webfont.woff2') format('woff2'), url('../fonts/poppins-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppinsregular';
    src: url('../fonts/poppins-regular-webfont.woff2') format('woff2'), url('../fonts/poppins-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppinssemibold';
    src: url('../fonts/poppins-semibold-webfont.woff2') format('woff2'), url('../fonts/poppins-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Saira_Condensed-Regular';
    src: url('../fonts/Saira_Condensed-Regular.woff') format('woff'), url('../fonts/Saira_Condensed-Regular.woff2') format('woff2'), font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*        common css           */
.custom-conatiner {
    padding: 0 5%;
}

html {
    scroll-behavior: smooth;
}

    html::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        background-color: #F5F5F5;
        background: #f9f9f9;
    }

    html::-webkit-scrollbar {
        width: 10px;
        background-color: #F5F5F5;
    }

    html::-webkit-scrollbar-thumb {
        background-color: #fb7700;
        background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%,transparent 25%,transparent 50%,rgba(255, 255, 255, .2) 50%,rgba(255, 255, 255, .2) 75%,transparent 75%,transparent)
    }

body {
    font-size: 1.5rem;
    font-family: 'poppinsregular';
    background: #f9f9f9;
}

.bg-color {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    justify-content: space-between;
    background: #f9f9f9;
}

.small-text {
    font-size: 13px;
}

.alert-text {
    color: #f11d3a;
}

/*     Logo Section Start Here     */
.top-header {
    padding: 6px 0;
    background: #fff;
}

    .top-header ul {
        list-style: none;
        padding: 0;
        margin-bottom: 0;
    }

.rightLink {
    float: right;
}

    .rightLink li:last-child {
        padding-right: 0;
    }

.leftLink li:first-child {
    padding-left: 0;
}

.top-header li {
    float: left;
    padding: 0 12px;
    position: relative;
    font-size: 0.75em;
    border-right: 1px solid #a7a7a7;
    line-height: 1;
}

    .top-header li:last-child {
        border: 0;
    }

.top-header a {
    color: #595656;
    text-decoration: none;
    transition: all 0.5s ease;
    position: relative;
    font-size: .66em !important;
}

    .top-header a:hover {
        color: #f26522;
    }

        .top-header a:hover:after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }

    .top-header a:after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #f26522;
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
    }

.wrapp {
    width: 100%;
    background: url(../images/flag-strip.jpg) center top no-repeat;
    padding-top: 10px;
    background-size: 100% 10px;
}

.logo-sec-wraper {
    padding: 14px 0;
    background: #fff;
}

.logo-align {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    max-width: 670px;
}

    .logo-align .img-bx {
        float: left;
        padding-right: 10px;
    }

.emblem {
    width: 53px;
}

.brand-text h4 {
    padding-right: 5px;
    font-size: 1.2em;
    color: #080B7A;
    font-family: "robotoblack";
   /* text-transform: uppercase;*/
    margin: 0;
    white-space: nowrap;
}

.brand-text p {
    padding-right: 5px;
    font-size: .59em;
    margin: 0;
    color: #2E2E2E;
    font-family: "robotoregular";
    font-weight: 600;
}

.btn-login {
    padding: 10px 22px !important;
    font-size: 16px;
    color: #080B7A;
    position: relative;
    display: inline-block;
    background: #fb7700;
    color: #FFF;
    font-family: 'poppinssemibold';
}

    .btn-login:before {
        content: '';
        background: #20167f;
        width: 0%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        transition: .5s;
    }

    .btn-login:hover {
        color: #fff;
        z-index: 9;
        border-color: #20167f;
    }

        .btn-login:hover:before {
            width: 100%;
            transition: .5s;
            z-index: -1;
        }

.log-registration {
    display: flex;
    align-items: center;
}

.registration button {
    padding: 10px 22px;
    font-size: 16px;
    background: #2e4ab8;
    margin-left: 10px;
}

.registration .dropdown-menu {
    font-size: 14px;
}
/*.btn-login:hover {background: #20167f;color: #fff;}*/
.registration ul li a {
    padding: 6px 10px;
}

.registration a.active, .registration a:active {
    color: #fff !important;
    text-decoration: none;
    background-color: #0b0c7a !important;
}

.registration ul li a:hover {
    background: #4226a1;
    color: #fff;
}

.navbar.registration ul li:last-child {
    border: 0;
}

.navbar.registration ul li {
    border-bottom: 1px solid #dddddd;
}

/*     Navbar Section Start Here     */
.navbar-bg { /*background-image: linear-gradient(to right, #080b7a, #33167f, #4c2285, #602e8a, #723c90)*/
    ;
    background-image: linear-gradient(to right, #2e4ab8, #2e4ab8, #724aa9, #724aa9, #724aa9);
}

.right-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

    .right-menu ul {
        margin-right:;
        padding-right: 15px;
    }

    .right-menu li a {
        color: #fff;
        font-size: 16px;
        padding: 9px 21px !important;
        transition: .4s;
    }

        .right-menu li a:hover {
            background: #4e1498;
            color: #fff;
            transition: .4s;
        }

.btn-check:focus + .btn-secondary, .btn-secondary:focus, .dropdown-toggle:hover {
    background-color: #4E1498;
    border-color: #ffffff;
}

.navbar {
    padding: 0;
}

.navbar-toggler-icon {
    border: 1px solid #4f9000;
    line-height: 1.5em;
    border-radius: 2px;
    background: #4f9000;
    color: #fff;
}

    .navbar-toggler-icon:hover {
        background: #0099ff;
        border: 1px solid #0199ff;
    }

.navbar-toggler:focus {
    box-shadow: none;
}

#searchBtn {
    background: #4E1498;
    color: #fff;
    font-size: 20px;
    border: 0;
    padding: 6px 11px;
}

#search1 {
    padding: 10px;
    background: #ffd9cc;
    display: none;
    position: absolute;
    right: 0;
    z-index: 11;
}

.srch-fm input {
    width: 215px;
    margin-right: 8px;
    height: 40px;
}

#search {
    height: 40px;
    border: 0;
    background: #080b7a;
    font-size: .7em;
    border-radius: 3px;
    padding: 0 10px;
    color: #fff;
}

.dropdown-menu.show li a {
    color: #000;
}

.nav-link:focus, .nav-link:hover {
    color: #ffffff;
}

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

.navbar .dropdown-menu a::before {
    border: none;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 4px;
    margin-right: 8px;
}

.dropdown-menu .nav-item .nav-link {
    color: #2d2d2d;
    font-weight: 600;
    font-size: 15px;
    padding: 9px 8px !important;
}

.right-menu .dropdown {
    padding: 0;
    margin: 0;
}

.right-menu .dropdown-menu li a:hover {
    background: none;
    color: #fb7700;
    transition: .4s;
}

/*     Banner Section Start Here     */
.banner-bg {
    background: url(../images/banner-bg.jpg) no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden
}

    .banner-bg h4 {
        font-size: .75em;
        color: #0a0b7a;
        font-family: 'poppinsbold';
        text-transform: uppercase;
        margin-bottom: 2px;
    }

    .banner-bg p.holder {
        font-size: .6em;
        color: #6e6e6e;
        margin: 0;
        font-style: italic;
    }

/*     What's News Section Start Here     */

.whats-news {
    box-shadow: -1px 4px 6px rgb(0 0 0 / 15%);
    padding: 6px 0;
    background: #fff;
}

.news-header h2 {
    font-size: 1em;
    color: #0F1010;
    font-family: 'robotomedium';
    margin: 0;
}

.news-header {
    border-right: 1px solid #cfcfcf;
    display: flex;
    justify-content: space-between;
}

#news p {
    font-size: 16px;
    color: #0F1010;
    margin: 0;
}

.navigation {
    position: relative;
    width: 14%;
    display: block;
    margin-right: 24px;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-image: none;
    color: #f26522;
}

/*     Dashboard Section Start Here     */

.wheel-bg h2 {
    position: relative;
    z-index: 11;
    font-size: 1.55em;
    font-family: 'poppinsbold';
    color: #fff;
    line-height: 42px;
}

    .wheel-bg h2 span {
        font-size: .70em;
        display: block;
        font-family: 'poppinsregular';
    }

.wheel-bg {
    padding: 40px 20px
}

.w-bg {
    position: relative;
    overflow: hidden;
    background-color: #F0F0F0;
    margin: 0;
}

    .w-bg:before {
        height: 100%;
        width: 36%;
        content: "";
        position: absolute;
        left: -10%;
        transform: skewX(22deg);
        top: 0;
        background-image: linear-gradient(to right bottom, #080b7a, #2a188d, #4226a1, #5834b5, #6e42c9);
    }

.wheel-bg img {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    animation: animName 25s linear infinite;
}

.dashboard-bg {
    margin: 60px 0;
}

.card-bx {
    border-radius: 6px;
    z-index: 111;
    position: relative;
    background: #fff;
    border-bottom: 2px solid #0914D9;
    padding: 35px 9px;
    margin: 6px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 205px;
    text-decoration: none;
    cursor: pointer;
}

    .card-bx img {
        display: block;
        width: 56px !important;
    }

    .card-bx h3 {
        font-size: 28px;
        color: #1c1c1c;
        margin: 0;
        font-family: 'Saira_Condensed-Regular';
        padding: 13px;
        font-weight: 800;
        text-decoration: none;
    }

    .card-bx p {
        font-size: 14px;
        color: #2D2D2D;
        margin: 0;
    }

    .card-bx:hover {
        border-bottom: 2px solid #df1414;
    }

    .card-bx img {
        transition: .4s;
    }

    .card-bx:hover img {
        transform: scale(1.1);
        transition: .4s;
    }

.small {
    font-size: 12px !important;
}

@keyframes animName {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*     About Section Start Here     */
.about-bg {
    padding: 60px
}

.about-content-heading {
    text-align: center;
}

    .about-content-heading h6 {
        font-size: 16px;
        color: #2D2D2D;
        margin: 2px;
        font-family: 'poppinsregular';
    }

    .about-content-heading h2 {
        font-size: 30px;
        color: #2D2D2D;
        font-family: 'poppinsbold';
    }

.underline {
    width: 90px;
    height: 3px;
    background: #24137d;
    margin: auto;
    position: relative;
}

    .underline:before {
        width: 12px;
        height: 12px;
        background: #24137d;
        content: '';
        position: absolute;
        top: -5px;
        rotate: 46deg;
        left: 45%;
    }

.about-bg p {
    text-align: center;
    font-size: 16px;
    margin-top: 20px;
    padding: 0 90px;
    line-height: 28px;
}

/*     Chart Section Start Here     */
.chart-bg {
    background: #2E4AB8;
    padding: 50px 0;
}

.chart-common h6 {
    color: #fff;
    font-size: 22px;
    font-family: 'poppinssemibold';
}

div#donutchart, div#donutchart2, div#donutchart3 {
    border-radius: 4px;
    overflow: hidden;
}


/*     Slider Section Start Here     */
#sitemap .owl-dots.disabled, #sitemap .owl-nav.disabled {
    display: block;
}

#sitemap .owl-theme .owl-nav [class*='owl-'] {
    height: 35px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: none !important;
    color: #FFF;
    text-decoration: none;
}

#sitemap .owl-next span {
    background: #462887;
    border: 1px solid #1e1e1e;
    width: 35px;
    height: 35px;
    display: inline-block;
    position: relative;
    font-size: 0;
}

    #sitemap .owl-next span:before {
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        position: absolute;
        color: #fff;
        font-size: 18px !important;
        font-weight: 600;
        top: 3px;
        left: 13px;
    }

#sitemap .owl-prev span:before {
    content: "\f104";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    color: #462887;
    font-size: 18px !important;
    font-weight: 600;
    top: 3px;
    left: 13px;
}

#sitemap .owl-prev span {
    border: 1px solid #462887;
    width: 35px;
    height: 35px;
    display: inline-block;
    position: relative;
    font-size: 0;
}

#sitemap .owl-prev {
    position: absolute;
    left: calc(10%);
    top: calc(40%);
}

#sitemap .owl-next {
    position: absolute;
    right: calc(10%);
    top: calc(40%);
}

#sitemap .owl-dots .owl-dot.active span, #sitemap .owl-dots .owl-dot:hover span, #salient .owl-dots .owl-dot.active span, #salient .owl-dots .owl-dot:hover span {
    background: #462887;
}


/*     Quick Links Section Start Here     */
.quicklink-bg {
    margin: 60px 0;
    border-radius: 6px;
}

.quickBlockOuter {
    overflow: hidden;
    padding: 25px 4px;
    border-radius: 6px;
}

    .quickBlockOuter .one-more {
        border-radius: 6px;
        position: relative;
        box-shadow: 0 0 6px 1px rgb(0 0 0 / 30%);
        -webkit-box-shadow: 0 0 6px 1px rgb(0 0 0 / 30%);
        color: #363636;
        display: block;
        font-size: 25px;
        text-align: center;
        text-decoration: none;
    }

.quickIconBlock {
    background: #fff;
    transition: all .35s ease-out;
    -webkit-transition: all .35s ease-out;
    top: 0;
    position: relative;
    border-radius: 6px;
}

    .quickIconBlock .quickTech {
        border-radius: 6px;
        position: relative;
        z-index: 3;
        padding: 60px 15px;
        background-color: #fff;
        line-height: 32px;
        text-align: center;
    }

.quickIcon {
    display: block;
}

    .quickIcon img {
        width: 60px;
    }

.quickBlockOuter:hover .quickIconBlock .one-more:after, .quickIconBlock.active .one-more:after {
    opacity: 1;
    top: -5px;
}

.iconTitle {
    color: #2D2D2D;
    font-size: 16px;
    padding-top: 18px;
    display: block;
    line-height: 28px;
   /* font-family: 'robotobold';*/
}

.quickIconBlock .one-more:after {
    content: "";
    position: absolute;
    left: -5px;
    top: 200px;
    right: -5px;
    bottom: -5px;
    z-index: 1;
    opacity: 0;
    transition: all .35s ease-out;
    -webkit-transition: all .35s ease-out;
    background-image: linear-gradient(to right, #080b7a, #33167f, #4c2285, #602e8a, #723c90);
    background: -moz-linear-gradient(to right, #080b7a, #33167f, #4c2285, #602e8a, #723c90);
    background: -webkit-gradient(left bottom, right top, color-stop(to right, #080b7a, #33167f, #4c2285, #602e8a, #723c90));
    background: -webkit-linear-gradient(to right, #080b7a, #33167f, #4c2285, #602e8a, #723c90) 100%);
    background: -o-linear-gradient(to right, #080b7a, #33167f, #4c2285, #602e8a, #723c90) 100%);
    background: -ms-linear-gradient(to right, #080b7a, #33167f, #4c2285, #602e8a, #723c90) 100%);
}

.quickIconBlock .one-more:hover .quickIcon img {
    animation: flipInY 1s ease;
}
.quickIconBlock .quickTech a {
    color: #000;
    text-decoration: none;
}
/*     Notification Section Start Here     */
.notify-bg {
    background: #E8F3FF;
    padding: 40px 0;
}

.notfiy-card {
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16);
}

    .notfiy-card h2 {
        color: #230909;
        font-family: 'poppinsbold';
        font-size: 22px;
        border-bottom: 1px solid #d7d7d7;
        padding-bottom: 12px;
    }

    .notfiy-card ul {
        list-style: none;
        padding: 0 0px;
    }

        .notfiy-card ul li {
            padding: 6px 20px;
            border-bottom: 1px solid #d7d7d7;
            position: relative;
        }

            .notfiy-card ul li a {
                font-size: 16px;
                text-decoration: none;
                color: #230909;
            }

            .notfiy-card ul li:before {
                background: url(../images/pie.png) no-repeat;
                width: 14px;
                height: 14px;
                position: absolute;
                content: '';
                top: 19px;
                background-size: 100%;
                left: 2px;
            }

.client h4 {
    font-size: 18px;
    font-family: 'poppinsbold';
    display: block;
    text-align: center;
    color: #001473;
    margin-top: 26px;
}

.client p {
    font-size: 16px;
    font-family: 'poppinsregular';
    display: block;
    text-align: center;
    color: #2D2D2D;
    padding-bottom: 15px;
}

.btn.btn-viewall {
    border: 1px solid #D4D4D5;
    font-size: 14px;
    transition: .4s;
    padding: 8px 20px;
}

    .btn.btn-viewall i {
        color: #5e3ca7;
        transition: .4s;
    }

.btn-view {
    text-align: right;
}

.btn.btn-viewall:hover i {
    color: #fff;
    padding-left: 5px;
    transition: .4s;
}

.btn.btn-viewall:hover {
    background: #f27807;
    color: #fff;
    transition: .4s;
}

#salient img {
    display: block;
    max-width: 100% !important;
    width: inherit;
    margin: auto;
}



/*     Footer Slider Start Here     */

#websites {
    padding: 40px 0;
    text-align: center;
}

    #websites a {
        display: inline-block;
        text-decoration: none;
        transition: .4s;
    }

        #websites a:hover {
            transform: scale(1.09);
            transition: .4s;
        }

    #websites img {
        display: block;
        max-width: 100% !important;
        width: inherit;
        margin: auto;
    }

/*     Footer Section Start Here     */
.footer { /*background-image: linear-gradient(to right, #080b7a, #2d147f, #421e83, #532988, #62348d)*/
    ;
    background-image: linear-gradient(to right, #2e4ab8, #2e4ab8, #724aa9, #724aa9, #724aa9);
    padding: 40px 0;
}

.footer-link li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    line-height: 34px;
}

.footer-link {
    padding: 0;
    list-style: none;
}

    .footer-link li {
        position: relative;
        transition: .4s;
    }

        .footer-link li:before {
            content: '\f101';
            font-family: 'Font Awesome 5 Free';
            padding-right: 12px;
            color: #fff;
            font-weight: 900;
            font-size: 18px;
        }

        .footer-link li:hover {
            padding-left: 4px;
            transition: .4s;
        }

.accordion-item {
    background-color: transparent !important;
    border: 0;
}

.accordion-button {
    border: 0;
    border-bottom: 1px solid #ffff;
    background: transparent;
    padding: 1em 0;
    color: #FFF;
    font-size: 16px;
    font-family: 'poppinssemibold';
    position: relative;
    border-radius: 0;
}

    .accordion-button:not(.collapsed) {
        background: transparent;
        color: #fff;
    }

.accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 0;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    transform: rotate(-180deg);
}

.accordion-button:focus {
    z-index: 3;
    border-color: #ff9f54;
    box-shadow: none;
}

.accordion-button::after {
    content: '\f055';
    background-image: none;
    position: absolute;
    right: 0;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    transform: rotate(-180deg);
    content: '\f056';
}

.call, .mail {
    color: #fff;
    font-size: 16px;
    position: relative;
}

    .call:before {
        content: '\f095';
    }

    .mail:before {
        content: '\f0e0';
    }

    .call:before, .mail:before {
        font-family: 'Font Awesome 5 Free';
        padding-right: 12px;
        color: #ebebeb;
        font-weight: 900;
        font-size: 18px;
    }

.hour {
    font-size: 18px;
    color: #fff;
    font-family: 'poppinssemibold';
    margin-bottom: 10px;
    position: relative;
}

    .hour:before {
        content: '\f017';
        font-family: 'Font Awesome 5 Free';
        padding-right: 12px;
        color: #fff;
        font-weight: 900;
        font-size: 18px;
    }

.timing {
    font-size: 16px;
    color: #fff;
    padding-left: 32px;
}

.location {
    color: #fff;
    font-size: 16px;
    position: relative;
    padding-left: 32px;
}

    .location:before {
        content: '\f3c5';
    }

    .location:before {
        font-family: 'Font Awesome 5 Free';
        padding-right: 12px;
        color: #ebebeb;
        font-weight: 900;
        font-size: 18px;
        left: 0;
        position: absolute;
    }

.web-data {
    margin-top: 40px;
}

.calls span {
    color: #fff;
    font-size: 16px;
    width: 35px;
    height: 35px;
    display: inline-block;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    background: #161616;
    font-family: 'poppinssemibold';
}

.web-data p {
    color: #fff;
    font-size: 16px;
    padding-top: 10px;
    margin: 0;
}

.vistor-bg {
    padding: 25px 0;
    background: #FFF;
}

.visitor-data {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .visitor-data p {
        font-size: 16px;
        margin: 0;
    }

.footer-bottom-sec {
    background: #000000;
    text-align: center;
}

.footer-copy-sec p {
    font-size: 14px;
    color: #fff;
    margin: 0;
    padding: 15px 0;
}

.footer-bottom-last {
    background: black;
    border-top: 1px solid #1e1e1e;
    padding: 10px 0;
}

    .footer-bottom-last p {
        font-size: 14px;
        color: #fff;
        margin: 0;
    }

.browser-right {
    text-align: right;
}

.data-slide .owl-nav.disabled {
    display: block !important;
}

.data-slide .owl-next {
    position: absolute;
    right: calc(1%);
    top: calc(-27%);
}

.data-slide .owl-prev {
    position: absolute;
    left: calc(1%);
    top: calc(-27%);
}

.data-slide .owl-next span {
    background: #713fcf;
    border: 1px solid #713fcf;
    width: 35px;
    height: 35px;
    display: inline-block;
    position: relative;
    font-size: 0;
}

.data-slide .owl-prev span {
    border: 1px solid #fff;
    width: 35px;
    height: 35px;
    display: inline-block;
    position: relative;
    font-size: 0;
}

.data-slide .owl-next span:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    color: #fff;
    font-size: 18px !important;
    font-weight: 600;
    top: 3px;
    left: 13px;
}

.data-slide .owl-prev span:before {
    content: "\f104";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    color: #fff;
    font-size: 18px !important;
    font-weight: 600;
    top: 3px;
    left: 13px;
}


/*************Back to Top*************/
#backtotop {
    position: fixed;
    right: -150px;
    bottom: 55px;
    padding: 5px;
    background-color: #f96207;
    color: #fff;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    -webkit-transition: 350ms ease;
    transition: 350ms ease;
    z-index: 4;
    overflow: hidden;
}

    #backtotop .fa {
        font-size: 20px;
        margin-right: 3px;
        animation: bounce 2s infinite;
        -webkit-animation: bounce 2s infinite;
    }

    #backtotop.active {
        right: 0;
    }

    #backtotop:hover {
        background-color: #424d6b;
    }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}


/* Login Page */

.login-heading h2 {
    margin-top: 60px;
}

.login-heading h6 {
    padding-top: 28px;
    font-size: 18px;
    font-weight: 600;
}

.login-bx {
    background-image: linear-gradient(to bottom, #f764a8, #ff6c8a, #ff7d6d, #ff9454, #f5ac43);
    height: 286px;
    max-height: 300px;
    border-radius: 4px;
    transition: 0.3s;
}

    .login-bx:hover {
        transform: scale(1.05);
        transition: 0.3s;
    }

.login-bx-inner {
    background: url(../images/lgn-bg-flower.png) no-repeat;
    width: 100%;
    height: 286px;
    background-size: cover;
    background-position: right;
    padding: 34px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
}

.icon-bg {
    background: #fff;
    width: 65px;
    height: 65px;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
}

.login-bx h4 {
    color: #fff;
    font-size: 22px;
    font-family: 'robotomedium';
}

.enter-page {
    padding: 0;
}

.login-bx a {
    text-decoration: none;
}

.login-bx.bx-2 {
    background-image: linear-gradient(to bottom, #348fd0, #00a1d4, #00b0ce, #00bebe, #31c9a8);
}

.login-bx.bx-3 {
    background-image: linear-gradient(to bottom, #693fbe, #7e47c5, #924fcc, #a557d2, #b860d9);
}

.left-icn {
    transition: .3s;
}

.login-bx:hover .left-icn {
    padding-left: 10px;
    transition: .3s;
}

.inner-footer-border {
    border-top: 1px solid #ebebeb;
    background: #fff;
}

/* App Downloads */
.app-heading {
    text-align: left;
}

    .app-heading .underline {
        margin: 0;
    }

    .app-heading h2 {
        margin-top: 60px;
    }

    .app-heading h6 {
        padding-top: 8px;
        font-size: 18px;
        font-weight: 600;
    }

a.app img {
    width: 160px;
    display: inline;
    transition: .4s;
}

a.app {
    padding-left: 12px;
    transition: .4s;
}

    a.app img:hover {
        transform: scale(1.1);
        transition: .4s;
    }

/* Registration Page */
/*.registration-bg {background: #f3efff;}*/
.registration-form-bg {
    margin-bottom: 35px;
}

.note-bg {
    border-left: 0 !important;
}

    .note-bg p {
        font-size: 14px;
        margin: 0;
        color: #ff0000;
        font-family: 'robotomedium';
        padding-bottom: 6px;
    }

.data-bg label {
    font-size: 16px;
    font-weight: 600;
}

.btn-submit {
    background: #1a36a5;
    color: #fff;
}

    .btn-submit:hover {
        background: #713b90;
        color: #fff;
    }

.guide-online {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.data-bg sup {
    color: #ff0000;
    font-size: 14px;
}

.guide-online li {
    display: inline-block;
    box-shadow: 0px 0px 3px 2px rgb(0 0 0 / 20%);
    border-radius: 4px;
    width: 31%;
}

    .guide-online li a {
        text-decoration: none;
        padding: 8px;
        text-align: center;
        display: block;
        color: #000;
    }

        .guide-online li a:hover {
            color: #8046b7;
        }

.help-icon {
    margin-bottom: 10px;
}

.guide-online img {
    width: 64px;
}

.guide-online li a:hover .help-icon img {
    animation: flipInY 1s ease;
}

.guide-online li p {
    font-size: 16px;
    margin: 0;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 15px;
    margin-bottom: 86px;
}

.register {
    background-image: linear-gradient(to right, #2e4ab8, #2e4ab8, #724aa9, #724aa9, #724aa9);
    margin: 3% 0;
    padding: 3%;
    padding-right: 0;
}

.register-left {
    text-align: center;
    color: #fff;
    margin-top: 3%;
}

    .register-left input {
        border: none;
        border-radius: 1.5rem;
        padding: 2%;
        width: 60%;
        background: #f8f9fa;
        font-weight: bold;
        color: #383d41;
        margin-top: 30%;
        margin-bottom: 3%;
        cursor: pointer;
    }

.register-right {
    background: #f8f9fa;
    border-top-left-radius: 10% 50%;
    border-bottom-left-radius: 10% 50%;
}

.register-left h3 {
    font-size: 26px;
    font-weight: 600;
}

.register-left ul {
    padding: 0;
    margin-top: 3em;
}

    .register-left ul li a {
        display: block;
        text-decoration: none;
        font-size: 18px;
        text-align: left;
        color: #fff;
        transition: .4s;
    }

        .register-left ul li a:hover {
            color: #edc806;
            text-decoration: underline;
            transition: .4s;
        }

.register-left img {
    margin-top: 15%;
    margin-bottom: 5%;
    width: 25%;
    -webkit-animation: mover 2s infinite alternate;
    animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}

.register-left p {
    font-weight: lighter;
    margin-top: 20px;
    font-size: 17px;
}

.register .register-form {
    padding: 6%;
}

.btnRegister {
    float: right;
    margin-top: 10%;
    border: none;
    border-radius: 1.5rem;
    padding: 2%;
    background: #0062cc;
    color: #fff;
    font-weight: 600;
    width: 50%;
    cursor: pointer;
}

.register .nav-tabs {
    margin-top: 3%;
    border: none;
    background: #0062cc;
    border-radius: 1.5rem;
    width: 28%;
    float: right;
}

    .register .nav-tabs .nav-link {
        padding: 2%;
        height: 34px;
        font-weight: 600;
        color: #fff;
        border-top-right-radius: 1.5rem;
        border-bottom-right-radius: 1.5rem;
    }

        .register .nav-tabs .nav-link:hover {
            border: none;
        }

        .register .nav-tabs .nav-link.active {
            width: 100px;
            color: #0062cc;
            border: 2px solid #0062cc;
            border-top-left-radius: 1.5rem;
            border-bottom-left-radius: 1.5rem;
        }

.register-heading {
    text-align: center;
    margin-top: 8%;
    margin-bottom: -15%;
    color: #495057;
}


.registration-form-bg2 {
    background-image: linear-gradient(to right, #2e4ab8, #2e4ab8, #724aa9, #724aa9, #724aa9);
    margin: 0;
    border-radius: 5px;
    box-shadow: 0px 0px 3px 2px rgb(0 0 0 / 20%);
}

.guide-online2 {
    flex-direction: column;
}

    .guide-online2 li {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

/* Contact Us Page */
.contactus {
    padding-top: 60px;
}

.feature.map iframe {
    height: 430px;
    width: 100%;
    border: 0;
    background: #fff;
    border-radius: 4px;
    box-shadow: 1px 0px 7px 0px rgb(0 0 0 / 50%);
    padding: 8px;
}

.contact-heading h2 {
    font-size: 32px;
    color: #2D2D2D;
    font-family: 'poppinsbold';
}

.contact-heading h5 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.address-details p {
    text-align: left;
    padding-left: 0;
}

.fade-in-left {
    animation: fade-in-left 2s ease infinite;
    padding-right: 10px;
    font-size: 18px;
}

.address-details p a {
    color: #1318ff;
}

@keyframes fade-in-left {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Timeline Page */
ul.faq-accordionlist {
    list-style: none;
}

.timline {
    padding-top: 60px;
}

.common-table thead th, .common-table tbody td {
    padding: 10px;
}

.common-table thead {
    background: #2e4ab8;
    ;
    color: #fff;
    font-size: 16px;
    white-space: nowrap;
}

.common-table tbody {
    font-size: 16px;
    background: #fff;
}

.timeline-tbl tbody td span {
    color: #f11d3a;
    text-decoration: underline;
}

/* Cyber Seurity Page */
.login_form {
    background-color: #fff;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

    .login_form input {
        padding: 0.7rem;
    }

.overley-report {
    background: rgb(2 17 72 / 91%);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.report-sequrity .form-group {
    padding: 25px 15px;
}

.company_title {
    font-family: 'poppinsbold';
    letter-spacing: 1px;
    line-height: 34px;
    text-shadow: 0 0 1px #000000;
}

.report-sequrity label {
    font-size: 16px;
    font-weight: 600;
}

.main-content {
    width: 70%;
    border-radius: 20px;
    box-shadow: 0 5px 5px rgba(0,0,0,.4);
    margin: 4em auto;
    display: flex;
}

.company__info {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    color: #fff;
    background: url(../images/cybersecurity.jpg) no-repeat;
    background-size: cover;
    padding: 0;
    overflow: hidden;
}


/* Privacy Policy Page */
.privacy-policy, .faq-policy, .registerfaq-policy {
    margin: 60px 0;
}

.privacy-heading h2, .faq-heading h2, .registerfaq-heading h2 {
    font-size: 32px;
    color: #2D2D2D;
    font-family: 'poppinsbold';
}

.privacy-policy .accordion-button.collapsed, .faq-policy .accordion-button.collapsed, .registerfaq-policy .accordion-button.collapsed {
    background: #e2e6ff;
    color: #2e2e2e;
    padding: 14px;
}

.privacy-policy .accordion-button:not(.collapsed), .faq-policy .accordion-button:not(.collapsed), .registerfaq-policy .accordion-button:not(.collapsed) {
    background: #2e4ab8;
    color: #fff;
    padding: 14px;
}

.privacy-policy .accordion-button::after, .faq-policy .accordion-button::after, .registerfaq-policy .accordion-button::after {
    right: 12px;
    font-size: 20px;
}

.privacy-policy .accordion-item, .faq-policy .accordion-item, .registerfaq-policy .accordion-item {
    background: #faf1ff !important;
    margin-bottom: 15px;
}

#privacy-accordion p, #faq-accordion p, #registerfaq-accordion p {
    font-size: 16px;
    text-align: justify;
    font-family: 'robotoregular';
}

.privacy-policy .accordion-body, .faq-policy .accordion-body, .registerfaq-policy .accordion-body {
    border-left: 3px solid #2e4ab8;
}

.privacy-policy .accordion-button.collapsed:hover, .faq-policy .accordion-button.collapsed:hover, .registerfaq-policy .accordion-button.collapsed:hover {
    background: #4c2285;
    color: #fff;
}

/* FAQs Page */
.faq-heading2 h2 {
    font-size: 22px;
    color: #ff5500;
    font-family: 'poppinsbold';
}

ul.faq-accordionlist {
    list-style: none;
    padding: 0;
}

    ul.faq-accordionlist li {
        font-size: 16px;
        font-family: 'poppinssemibold';
        padding-bottom: 6px;
    }

ol.faq-order-one li {
    font-size: 16px;
    padding-bottom: 6px;
}

ul.faq-accordionlist li:before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    padding-right: 12px;
    color: #fb7700;
    font-weight: 900;
    font-size: 18px;
}

/* Video Page */
.videomain-bg {
    margin: 60px 0;
}

    .videomain-bg h6 {
        font-size: 18px;
        padding-top: 10px;
        font-family: 'poppinssemibold';
    }

.video-bg {
    background: #ebebeb;
}

.video-bg {
    background: #ebebeb;
    padding: 6px 10px;
    border-radius: 4px;
    box-shadow: 0px 0px 6px rgb(0 0 0 / 48%);
}



/*    Sitemap Pages    */
.sitemap-bg {
    margin: 60px 0;
}

.sitemap-main {
    position: relative;
    margin-left: 7rem;
}

.sitemap-parent:before {
    border-radius: 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    content: "";
    width: 3px;
    background-color: #2e4ab8;
    display: block;
    left: 0;
}

ul.sitemap {
    list-style: none;
    padding: 0;
    margin-left: 30px;
}

    ul.sitemap > li {
        margin-bottom: 10px;
    }

        ul.sitemap > li a {
            color: #fff;
            font-size: 16px;
            line-height: 25px;
            text-decoration: none;
            padding: 7px 20px;
            transition: 500ms all;
            background: #2e4ab8;
            border: 1px solid #d5d5d5;
            display: inline-block;
            margin-left: 0;
            position: relative;
            font-family: 'poppinssemibold';
        }

        ul.sitemap > li > a:before {
            position: absolute;
            left: -30px;
            top: 50%;
            margin-top: -1px;
            content: "";
            background-color: #2e4ab8;
            width: 29px;
            height: 2px;
        }

        ul.sitemap > li > a:hover {
            background-color: #fb7700;
            border-color: #fb7700;
            padding-left: 25px;
            color: #fff;
        }

        ul.sitemap > li > ul {
            padding: 0;
            margin-left: 20px;
        }

            ul.sitemap > li > ul > li {
                list-style: none;
                margin-bottom: 8px;
            }

                ul.sitemap > li > ul > li > a {
                    color: #000;
                    transition: 500ms all;
                    background: #fff;
                    padding: 8px 10px;
                    margin-left: 30px;
                    font-size: 14px;
                    font-family: 'poppinsregular';
                }

                    ul.sitemap > li > ul > li > a:hover {
                        background-color: #f0d7ff;
                        border-color: #f0d7ff;
                        padding-left: 25px;
                        color: #000;
                    }

text.highcharts-credits, text.highcharts-subtitle {
    display: none;
}


/*    Registor Online    */

:root {
    --color-1: #f68121;
    --color-2: #0083b4;
    --color-3: #778c9e;
    --color-4: #0b456d;
}

.page-wrapper {
    padding: 100px 0;
}

.infographic-cards {
    width: 100%;
    position: relative;
    display: flex;
    gap: 2%;
    justify-content: center;
}

    .infographic-cards li {
        list-style: none;
        width: calc(100% /4);
        height: 230px;
        padding: 25px 30px;
        background: #eee;
        position: relative;
        background-image: linear-gradient(to bottom right, #e9eaecda, #ffffff);
        filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.25));
        box-shadow: inset 2px 2px 2px white, inset -1px -1px 1px rgba(0, 0, 0, 0.25);
        text-align: center;
        display: inline-block;
        margin-bottom: 25px;
        border-radius: 8px;
    }

        .infographic-cards li h5 {
            font-size: 25px;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .infographic-cards li h6 {
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 0;
            font-family: 'poppinssemibold';
        }

        .infographic-cards li.color-1 {
            border: 4px solid var(--color-1);
        }

        .infographic-cards li.color-2 {
            border: 4px solid var(--color-2);
        }

        .infographic-cards li.color-3 {
            border: 4px solid var(--color-3);
        }

        .infographic-cards li.color-4 {
            border: 4px solid var(--color-4);
        }

        .infographic-cards li i {
            font-size: 35px;
            margin-bottom: 15px;
        }

        .infographic-cards li.color-1 i {
            color: var(--color-1);
        }

        .infographic-cards li.color-2 i {
            color: var(--color-2);
        }

        .infographic-cards li.color-3 i {
            color: var(--color-3);
        }

        .infographic-cards li.color-4 i {
            color: var(--color-4);
        }

.number-box {
    position: absolute;
    bottom: 0;
    padding: 12px;
    font-size: 23px;
    border-radius: 60px 60px 0 0;
    width: 60px;
    height: 50px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: inset 0.25em 0.25em 0.25em rgba(0, 0, 0, 0.2), 0em 0.05em rgba(255, 255, 255, 0);
    font-weight: 800;
    color: #fff;
}

.infographic-cards li.color-1 .number-box {
    background: var(--color-1);
}

.infographic-cards li.color-2 .number-box {
    background: var(--color-2);
}

.infographic-cards li.color-3 .number-box {
    background: var(--color-3);
}

.infographic-cards li.color-4 .number-box {
    background: var(--color-4);
}

/*    Login Retiree Online    */

.login-wrapp {
    background: url(../images/demo2.jpg) no-repeat;
    background-size: cover;
    background-position: center; /* background-image: linear-gradient(to bottom, #f764a8, #ff6c8a, #ff7d6d, #ff9454, #f5ac43);*/ /*background: linear-gradient(120deg, #3498db, #8e44ad);*/
}

.form-manage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-header .img-bx img {
    width: 100px;
}

.security-bx {
    display: flex;
}

.captcha-bx img {
    border: 2px solid #d3d3d3;
    padding: 3px;
    border-radius: 4px;
    margin: 0 10px;
}

.login-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
}

.back-row {
    text-align: left !important;
    width: 450px;
    margin-bottom: 12px;
    padding: 0;
}

.backhome-btn:hover {
    background: #fb7700;
    color: #fff;
    transform: scale(1.08);
    transition: 0.3s;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .login-header h1 {
        color: #2c3e50;
        font-size: 1.7rem;
        font-family: 'poppinsbold';
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .login-header P {
        font-size: .95rem;
        font-family: 'poppinssemibold';
    }

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#loginForm label {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
}

#loginForm input {
    padding: 0.7rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

    #loginForm input:focus {
        outline: none;
        border-color: #3498db;
    }

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    display: none;
}

.login-button {
    background: #3498db;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .login-button:hover {
        background: #2980b9;
    }

.additional-options {
    text-align: center;
}

    .additional-options a {
        color: #3498db;
        text-decoration: none;
        font-size: 0.9rem;
    }

        .additional-options a:hover {
            text-decoration: underline;
        }

.copyright-login p {
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
    color: #f5f5f5;
}

.copyright-login a {
    display: block;
}

.copyright-login img {
    width: 65px;
}

.backhome-btn {
    border: 1px solid #fff;
    color: white;
    text-decoration: none;
    border-radius: 60px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    width: auto;
    max-width: 42px; /** I'm animating max-width because width needs to be auto, and auto can't be animated **/
    -webkit-transition: max-width 0.6s;
    transition: max-width 0.6s;
}

    .backhome-btn:hover {
        max-width: 300px;
        background: #fb7700;
        -webkit-transition: max-width 0.5s;
        transition: max-width 0.5s;
    }

.icon {
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    margin-right: 15px;
    padding: 0px 0px;
    display: flex;
    align-items: center;
}

.text {
    white-space: nowrap;
    padding-right: 15px;
}

#page {
    background: rgba(0,0,0, 0.8);
}

    #page #h3 {
        color: black;
        font-size: 20px;
        position: absolute;
        text-align: center;
        padding-top: 0px;
        padding-left: 10px;
    }

    #page #ring {
        width: 290px;
        height: 290px;
        border: 1px solid transparent;
        border-radius: 50%;
        position: absolute;
    }

        #page #ring:nth-child(1) {
            border-bottom: 8px solid rgb(48 189 82);
            animation: rotate1 3s linear infinite;
        }

    #page #h3 img {
        width: 100px;
    }

    #page #rah {
        display: flex;
        align-items: center;
        width: 100%;
        height: 100%;
        justify-content: center;
    }

@keyframes rotate1 {
    from {
        transform: rotateX(50deg) rotateZ(110deg);
    }

    to {
        transform: rotateX(50deg) rotateZ(470deg);
    }
}

#ring:nth-child(2) {
    border-bottom: 8px solid rgb(253 125 53);
    animation: rotate2 2s linear infinite;
}

@keyframes rotate2 {
    from {
        transform: rotateX(20deg) rotateY(50deg) rotateZ(20deg);
    }

    to {
        transform: rotateX(20deg) rotateY(50deg) rotateZ(380deg);
    }
}

#ring:nth-child(3) {
    border-bottom: 8px solid rgb(32 148 221);
    animation: rotate3 2s linear infinite;
}

@keyframes rotate3 {
    from {
        transform: rotateX(40deg) rotateY(130deg) rotateZ(450deg);
    }

    to {
        transform: rotateX(40deg) rotateY(130deg) rotateZ(90deg);
    }
}

#ring:nth-child(4) {
    border-bottom: 8px solid rgb(252, 183, 55);
    animation: rotate4 2s linear infinite;
}

@keyframes rotate4 {
    from {
        transform: rotateX(70deg) rotateZ(270deg);
    }

    to {
        transform: rotateX(70deg) rotateZ(630deg);
    }
}

.inline-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

    .inline-container input[type="radio"] {
        appearance: none;
        width: 22px;
        height: 22px;
        border: 2px solid gray !important;
        border-radius: 50% !important;
        margin-right: 8px;
        position: relative;
        cursor: pointer;
        vertical-align: middle;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

        .inline-container input[type="radio"]:checked {
            border-color: #1c67ba !important;
            background-color: rgba(59, 130, 246, 0.1);
        }

            .inline-container input[type="radio"]:checked::after {
                content: "";
                position: absolute;
                width: 12px;
                height: 12px;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                border-radius: 50%;
                background: #1c67ba;
            }

        .inline-container input[type="radio"]:focus {
            outline: none;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
        }

.circle-form {
    width: 100%;
    margin: 0 auto;
    position: relative;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: -1px 1px 7px 2px rgb(0 0 0 / 10%);
}

    .circle-form h1 {
        color: #2c3e50;
        font-size: 1.5rem;
        font-family: 'poppinsbold';
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .circle-form::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background: #008800;
        border-radius: 50%;
        z-index: -1;
        opacity: 0.1;
    }

    .circle-form::after {
        content: '';
        position: absolute;
        bottom: -50px;
        left: -50px;
        width: 150px;
        height: 150px;
        background: #fb7700;
        border-radius: 50%;
        z-index: -1;
        opacity: 0.1;
    }

    .circle-form label {
        font-size: 16px;
        color: #2c3e50;
        font-weight: 600;
        margin-bottom: 3px;
    }

    .circle-form input {
        padding: 0.7rem;
        border: 2px solid #ddd;
        border-radius: 5px;
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }

.login-form {
}

.captcha-bx {
    display: flex;
    align-items: center;
}

.forget_right {
    background: none;
    border: 0 !important;
    color: #5570db;
}

span.navbar-toggler-icon i {
    padding-top: 4px;
}

@media screen and (max-width:991px) {
    .infographic-cards {
        flex-wrap: wrap;
    }

        .infographic-cards li {
            flex: 0 0 auto;
            width: calc(100% /2.5);
        }
}


@media only screen and (max-width: 3500px) and (min-width: 1199px) {
    .data-slide .owl-nav.disabled {
        display: none !important;
    }
}

@media only screen and (max-width: 1630px) and (min-width: 1299px) {
    .quickIconBlock .quickTech {
        padding: 42px 15px;
        min-height: 219px;
    }

    .wheel-bg h2 {
        font-size: 1.2em;
    }
}

@media only screen and (max-width: 1500px) and (min-width: 1199px) {
    .carousel-control-next {
        right: -10px;
    }

    .wheel-bg {
        padding: 50px
    }

    #sitemap .owl-nav.disabled {
        display: none;
    }
}

@media only screen and (max-width: 1298px) and (min-width: 993px) {
    .quickIconBlock .quickTech {
        padding: 42px 6px;
        min-height: 219px;
    }

    #news p {
        font-size: 14px;
    }

    .news-header h2 {
        font-size: 0.8em;
    }

    .wheel-bg h2 {
        font-size: 1.2em;
    }
}

@media only screen and (max-width: 1199px) and (min-width: 992px) {
    .carousel-control-prev {
        left: -11px;
    }

    .carousel-control-next {
        right: -5px;
    }

    .wheel-bg h2 {
        font-size: 1.2em;
    }

    .right-menu li a {
        font-size: 14px;
    }

    .data-slide .owl-prev {
        position: absolute;
        left: calc(-31.3%);
        bottom: calc(-99%);
    }

    .data-slide .owl-next {
        position: absolute;
        left: calc(-141%);
        bottom: calc(-99%);
    }

    .wheel-bg img {
        display: none;
    }

    #sitemap .owl-nav.disabled {
        display: none;
    }

    .guide-online li {
        display: block;
        width: 100%;
        margin-bottom: 14px;
    }

    ul.guide-online {
        flex-direction: column;
    }

    p, a, li {
        font-size: 14px !important;
    }
}

@media only screen and (max-width: 992px) and (min-width: 667px) {
    .w-bg:before {
        height: 100%;
        width: 100%;
        left: inherit;
        transform: none;
        background-image: linear-gradient(to right bottom, #080b7a, #2a188d, #4226a1, #5834b5, #6e42c9);
    }

    .wheel-bg h2 {
        text-align: center;
    }

    .wheel-bg img {
        display: none;
    }

    .about-content-heading h6 {
        font-size: 14px;
    }

    .about-content-heading h2 {
        font-size: 30px;
    }

    .about-bg p {
        padding: 0;
    }

    .chart-common h6 {
        margin-top: 20px;
        font-size: 17px;
    }

    .chart-bg {
        padding: 25px 0;
    }

    .logo-align .img-bx {
        float: none;
        margin-bottom: 10px;
    }

    .logo-align {
        text-align: center;
        max-width: 100%;
    }

    ul.leftLink.rightLink {
        display: none;
    }

    .web-data {
        margin: 25px 0;
    }

    .brand-text p {
        font-size: .57em;
    }

    .otherlogo-sec {
        justify-content: center !important;
        margin-top: 20px;
    }

    .top-header a {
        text-align: center;
    }

    .rightLink li:last-child {
        border-top: 1px solid #a7a7a7 !important;
    }

    .top-header li {
        text-align: center;
        float: none;
        padding: 6px 0px;
        position: relative;
        font-size: 0.70em;
        border-bottom: 1px solid #a7a7a7;
        border-right: 0;
        line-height: 1;
    }

    .rightLink {
        float: none;
    }

    .banner-bg h4 {
        font-size: .7em;
    }

    .banner-bg p.holder {
        font-size: .6em;
    }

    .wheel-bg h2 {
        font-size: 1.3em;
    }

    .news-header h2 {
        font-family: 'robotobold';
    }

    .news-header {
        border-right: none;
        border-bottom: 1px solid #cfcfcf;
        padding-bottom: 6px;
    }

    #news p {
        font-size: 14px;
        padding-top: 8px;
        text-align: justify;
    }

    #donutchart, #donutchart2, #donutchart3 {
        background: #fff;
    }

    .notfiy-card {
        margin-top: 10px;
    }

        .about-bg p, .notfiy-card ul li a, .client p, .location, .footer-link li a, .timing, .call, .mail {
            font-size: 14px;
        }

    .guideline-img {
        text-align: center;
    }

    .visitor-data {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-copy-sec p, .footer-bottom-last p {
        font-size: 12px;
        text-align: center;
    }

    .nic_logo {
        display: block;
    }

    .browser-right {
        text-align: center;
        padding-top: 10px;
    }

    #sitemap .owl-nav.disabled {
        display: none;
    }

    .data-bg-mobile {
        margin-top: 20px;
    }

    .right-menu {
        flex-direction: column;
        align-items: self-start;
    }

    ul.navbar-nav {
        padding: 8px 0 !important;
        width: 100%;
    }

    #search1 {
        position: inherit;
        left: 0;
        margin-bottom: 10px;
    }

    .sticky {
        margin-bottom: 0;
    }
}


@media only screen and (max-width: 667px) and (min-width: 320px) {
    .w-bg:before {
        height: 100%;
        width: 100%;
        left: inherit;
        transform: none;
        background-image: linear-gradient(to right bottom, #080b7a, #2a188d, #4226a1, #5834b5, #6e42c9);
    }

    .wheel-bg h2 {
        text-align: center;
    }

    .wheel-bg img {
        display: none;
    }

    .about-content-heading h6 {
        font-size: 14px;
    }

    .about-content-heading h2 {
        font-size: 30px;
    }

    .about-bg p {
        padding: 0;
    }

    .chart-common h6 {
        margin-top: 20px;
        font-size: 17px;
    }

    .chart-bg {
        padding: 25px 0;
    }

    .logo-align .img-bx {
        float: none;
        margin-bottom: 10px;
    }

    .about-content-heading h2 {
        font-size: 24px;
    }

    .logo-align {
        text-align: center;
    }

    .brand-text p {
        font-size: .57em;
    }

    .otherlogo-sec {
        justify-content: center !important;
        margin-top: 20px;
    }

    .top-header a {
        text-align: center;
    }

    .rightLink li:last-child {
        border-top: 1px solid #a7a7a7 !important;
    }

    .top-header li {
        text-align: center;
        float: none;
        padding: 6px 0px;
        position: relative;
        font-size: 0.70em;
        border-bottom: 1px solid #a7a7a7;
        border-right: 0;
        line-height: 1;
    }

    .rightLink {
        float: none;
    }

    .banner-bg h4 {
        font-size: .7em;
    }

    .banner-bg p.holder {
        font-size: .6em;
    }

    .wheel-bg h2 {
        font-size: 1.3em;
    }

    .news-header h2 {
        font-family: 'robotobold';
    }

    .news-header {
        border-right: none;
        border-bottom: 1px solid #cfcfcf;
        padding-bottom: 6px;
    }

    #news p {
        font-size: 14px;
        padding-top: 8px;
        text-align: justify;
    }

    #donutchart {
        background: #fff;
    }

    .notfiy-card {
        margin-top: 10px;
    }

        .about-bg p, .notfiy-card ul li a, .client p, .location, .footer-link li a, .timing, .call, .mail {
            font-size: 14px;
        }

    .guideline-img {
        text-align: center;
    }

    .visitor-data {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-copy-sec p, .footer-bottom-last p {
        font-size: 12px;
        text-align: center;
    }

    .nic_logo {
        display: block;
    }

    .browser-right {
        text-align: center;
        padding-top: 10px;
    }

    #sitemap .owl-nav.disabled {
        display: none;
    }

    .login-wrapp {
        padding: 20px 0;
    }

    .login-container {
        padding: 1.5rem !important;
    }

    .login-header P {
        font-size: .75rem !important;
    }

    .login-header h1 {
        font-size: 1.3rem !important;
    }

    .security-bx {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .captcha-bx {
        margin-top: 15px;
    }

    .login-header .img-bx img {
        position: relative;
        margin-top: -75px;
    }

    .infographic-cards li {
        width: calc(100% /1);
    }

    .mob-version {
        padding: 0;
    }

    .right-menu {
        flex-direction: column;
        align-items: self-start;
    }

    ul.navbar-nav {
        padding: 8px 0 !important;
    }

    #search1 {
        position: inherit;
        left: 0;
        margin-bottom: 10px;
        padding: 4px;
    }

    .sticky {
        margin-bottom: 0;
    }
}



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

/*.navbar.sticky-top {
  top: -100px;
  transition: .5s;
}*/

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        border: none;
        margin-top: 0;
        top: 150%;
        display: none;
        transition: .5s;
        box-shadow: 0px 0px 2px 0px rgb(0 0 0 / 36%);
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        display: block;
        transition: .5s;
        opacity: 1;
    }
}



@media screen and (max-width: 640px) {
    .main-content {
        width: 90%;
    }

    .company__info {
        display: none;
    }

    .login_form {
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }
}

@media screen and (min-width: 642px) and (max-width:800px) {
    .main-content {
        width: 70%;
    }
}

.other-bg {
    background: #fff;
}

/*After code Merege Css*/
div#ContentPlaceHolder1_dv_Login_head {
    width: 100%;
}

.btn-login-effect {
    padding: 10px 22px !important;
    font-size: 16px !important;
    position: relative;
    display: inline-block;
    background: #fb7700;
    color: #FFF;
    font-family: 'poppinssemibold';
    border: 0 !important;
    transition: .4s;
    letter-spacing: 1px;
}

    .btn-login-effect:hover {
        background: #080B7A;
        transition: .4s;
        color: #fff;
    }

.puser-img {
    object-fit: cover;
    border: 2px solid #bfbfbf;
    width: 125px;
    height: 125px;
    border-radius: 50%;
}

.brand_logo_container {
    position: absolute;
    height: 110px;
    width: 110px;
    top: -45px;
    border-radius: 50%;
    background: #025191;
    padding: 10px;
    text-align: center;
}

.brand_logo {
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

#ContentPlaceHolder1_rbtn_type label {
    padding-left: 4px;
}

#ContentPlaceHolder1_spn_otpmsg {
    font-size: 18px;
    color: #003158;
    font-weight: bold;
}

.forget_right {
    background: none;
    border: 0 !important;
    color: #5570db;
    border: 1px solid #395ded !important;
    transition: .4s !important;
    font-size: 13px !important;
    padding: 8px 16px !important;
}

    .forget_right :hover {
        color: #fff;
        background-color: #0b5ed7;
        transition: .4s !important;
    }

.alert-danger {
    color: #1e1e1e;
    background-color: #ffffff;
    border: none !important;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.8);
    border-radius: 11px;
    display: inline-block;
    padding: 8px 24px;
}

    .alert-danger span {
        font-size: 17px;
    }

    .alert-danger i {
        font-size: 20px;
        padding-right: 5px;
        color: #d10717;
    }

.changepassword {
    color: #2c3e50;
    font-size: 1.5rem;
    font-family: 'poppinsbold';
    margin-top: 38px;
}

.changepasswordbox .form-group {
    padding-top: 0;
}

.changepasswordbox .main-content {
    width: 80%;
}

.changepasswordbox .overley-report {
    background: rgb(255 255 255 / 94%);
    height: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 34px;
}

    .changepasswordbox .overley-report ol li {
        font-size: 16px;
        text-align: left;
        margin-bottom: 15px;
        color: #000000;
    }

.changepasswordbox .company_title {
    font-size: 22px;
    margin-bottom: 21px;
    text-shadow: none;
    color: #000;
}

.track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 32s linear infinite;
    font-weight: bold;
    font-size: 16px;
    color: yellow;
}
.marquee {
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 30px;
    overflow-x: hidden;
}
@keyframes marquee {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}
#salient .owl-nav.disabled {
    display: block;
}

#salient button.owl-prev, #salient button.owl-next {
    background: #e3d5ff;
    width: 30px;
}

#salient button.owl-prev {
    position: absolute;
    top: calc(-75px);
    right: calc(30px);
}

#salient button.owl-next {
    position: absolute;
    top: calc(-75px);
    right: calc(-5px);
}

    #salient button.owl-prev:hover, #salient button.owl-next:hover {
        background: #4b4ab2 !important;
    }