﻿body {
    /*font-family: 'Roboto', sans-serif;*/
    /*font-family: 'Nunito Sans', sans-serif;*/
    /*    font-family: 'Open Sans', sans-serif;
  
    font-family: 'Roboto Condensed', sans-serif;*/

    font-family: "Open Sans", sans-serif;
    background-color: #f2f5f9;
    color: black;
    font-size: 15px;
}
.enable-cursor{
    cursor:pointer;
}
.list-unstyled>li{
    text-align:left;
}
.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke-checkmark 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.form-control{
    border-radius:0px;
}
.checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 0px 10% 0px 40%;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill-checkmark .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke-checkmark 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke-checkmark {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes scale-checkmark {
    0%, 100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}
@keyframes fill-checkmark {
    100% {
        box-shadow: inset 0px 0px 0px 30px #7ac142;
    }
}
.crossmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: red;
    fill: none;
    animation: stroke-crossmark 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.crossmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 0px 10% 0px 40%;
    box-shadow: inset 0px 0px 0px red;
    animation: fill-crossmark .4s ease-in-out .4s forwards, scale-crossmark .3s ease-in-out .9s both;
}

.crossmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke-crossmark {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale-crossmark {
    0%, 100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill-crossmark {
    100% {
        box-shadow: inset 0px 0px 0px 30px red;
    }
}

.pending__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #015fc9;
    fill: none;
    animation: stroke-pending 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.pending {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 0px 10% 0px 40%;
    box-shadow: inset 0px 0px 0px #015fc9;
    animation: fill-pending .4s ease-in-out .4s forwards, scale-pending .3s ease-in-out .9s both;
}

.pending__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke-pending {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale-pending {
    0%, 100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill-pending {
    100% {
        box-shadow: inset 0px 0px 0px 30px #015fc9;
    }
}
.tickmark-success{
    margin-top:-30px;
}
 
.aboutus-page, .services-page, .home-page {
    line-height: 34px;
}
.marquee div {
    white-space: nowrap;
    width: 100%;
    margin: 0;
    color:#ffffff;
    /* Starting position */
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    /* Apply animation to this element */
    -moz-animation: marquee-text 30s linear infinite;
    -webkit-animation: marquee-text 30s linear infinite;
    animation: marquee-text 30s linear infinite;
}
.blink-success {
    background-color: #004A7F;
    -webkit-border-radius: 10px;
    border-radius: 0px;
    border: none;
    color: #FFFFFF; 
    font-family: Arial;
    font-size: 15px;
    padding: 5px 10px; 
    text-decoration: none;
    -webkit-animation: glowing-success 1500ms infinite;
    -moz-animation: glowing-success 1500ms infinite;
    -o-animation: glowing-success 1500ms infinite;
    animation: glowing-success 1500ms infinite;
}

@-webkit-keyframes glowing-success {
    0% {
        background-color: #00b300;
        -webkit-box-shadow: 0 0 3px #00b300;
    }

    50% {
        background-color: #006700;
        -webkit-box-shadow: 0 0 40px #006700;
    }

    100% {
        background-color: #00b300;
        -webkit-box-shadow: 0 0 3px #00b300;
    }
}

@-moz-keyframes glowing-success {
    0% {
        background-color: #00b300;
        -moz-box-shadow: 0 0 3px #00b300;
    }

    50% {
        background-color: #006700;
        -moz-box-shadow: 0 0 40px #006700;
    }

    100% {
        background-color: #00b300;
        -moz-box-shadow: 0 0 3px #00b300;
    }
}

@-o-keyframes glowing-success {
    0% {
        background-color: #00b300;
        box-shadow: 0 0 3px #00b300;
    }

    50% {
        background-color: #006700;
        box-shadow: 0 0 40px #006700;
    }

    100% {
        background-color: #00b300;
        box-shadow: 0 0 3px #00b300;
    }
}

@keyframes glowing-success {
    0% {
        background-color: #00b300;
        box-shadow: 0 0 3px #00b300;
    }

    50% {
        background-color: #006700;
        box-shadow: 0 0 40px #006700;
    }

    100% {
        background-color: #00b300;
        box-shadow: 0 0 3px #00b300;
    }
}
.blink-failure {
    background-color: #004A7F;
    -webkit-border-radius: 10px;
    border-radius: 0px;
    border: none;
    color: #FFFFFF; 
    font-family: Arial;
    font-size: 15px;
    padding: 5px 10px;
    text-decoration: none;
    -webkit-animation: glowing-success 1500ms infinite;
    -moz-animation: glowing-success 1500ms infinite;
    -o-animation: glowing-success 1500ms infinite;
    animation: glowing-success 1500ms infinite;
}

@-webkit-keyframes glowing-failure {
    0% {
        background-color: #B20000;
        -webkit-box-shadow: 0 0 3px #B20000;
    }

    50% {
        background-color: #FF0000;
        -webkit-box-shadow: 0 0 40px #FF0000;
    }

    100% {
        background-color: #B20000;
        -webkit-box-shadow: 0 0 3px #B20000;
    }
}

@-moz-keyframes glowing-failure {
    0% {
        background-color: #B20000;
        -moz-box-shadow: 0 0 3px #B20000;
    }

    50% {
        background-color: #FF0000;
        -moz-box-shadow: 0 0 40px #FF0000;
    }

    100% {
        background-color: #B20000;
        -moz-box-shadow: 0 0 3px #B20000;
    }
}

@-o-keyframes glowing-failure {
    0% {
        background-color: #B20000;
        box-shadow: 0 0 3px #B20000;
    }

    50% {
        background-color: #FF0000;
        box-shadow: 0 0 40px #FF0000;
    }

    100% {
        background-color: #B20000;
        box-shadow: 0 0 3px #B20000;
    }
}

@keyframes glowing-failure {
    0% {
        background-color: #B20000;
        box-shadow: 0 0 3px #B20000;
    }

    50% {
        background-color: #FF0000;
        box-shadow: 0 0 40px #FF0000;
    }

    100% {
        background-color: #B20000;
        box-shadow: 0 0 3px #B20000;
    }
}
.marquee div:hover {
    animation-play-state:paused;
}
/* Move it (define the animation) */
@-moz-keyframes marquee-text {
    0% {
        -moz-transform: translateX(100%);
    }

    100% {
        -moz-transform: translateX(-100%);
    }
}

@-webkit-keyframes marquee-text {
    0% {
        -webkit-transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes marquee-text {
    0% {
        -moz-transform: translateX(100%); /* Firefox bug fix */
        -webkit-transform: translateX(100%); /* Firefox bug fix */
        transform: translateX(100%);
    }

    100% {
        -moz-transform: translateX(-100%); /* Firefox bug fix */
        -webkit-transform: translateX(-100%); /* Firefox bug fix */
        transform: translateX(-100%);
    }
}
.service-image > img {
    /*filter: grayscale(100%);*/
    width: 30px;
    height: 30px;
}
    .service-image > img:hover, .service-image :hover {
        filter: none;
  
    }
ul.ul-services {
    margin: 0px;
    padding: 0px;
    display: block;
    list-style: none;
    text-align:center;
}
    ul.ul-services > li {
        float: left;
    
        margin: 2rem;
        text-align: center;
        vertical-align: central;
        text-align: center;
    }
    ul.ul-services > li>a {
       
        padding: 3rem;
     
    }
.footer {
    width: 100%;
    height: 109px;
    position: relative;
    bottom: 0;
    left: 0;

}
.text-orange {
    color: #015fc9;
}
.border-orange {
    border:0px solid #015fc9;
}
#navbar1 > .navbar-nav > .nav-item > a, #navbar3 > .navbar-nav > .nav-item > a {
    color: #015fc9;
    font-weight: 400;
}
    #navbar1 > .navbar-nav > .nav-item > a:hover {
        border-bottom: 4px solid #015fc9;
    }

#navbar1 > .navbar-nav > .nav-item {
    margin: 0px 1rem;
    text-transform: uppercase;
    font-size: 17px;
}

#navbar3 > .navbar-nav > .nav-item {
    margin: 0px 0px 0px 0.5rem;
}

#nav1 {
    background-color: navy;
}
/*#nav2 {
    background-color: green;
}*/
.user-signup {
    margin: 0px;
    padding: 0px;
}

    .user-signup > li {
        list-style: none;
        color: #ffffff;
    }

        .user-signup > li > a {
            margin: 0px;
            display: inline;
            text-decoration: none;
            font-weight: 500;
            color: #ffffff;
        }

.home-bar {
    font-size: 1rem;
}

.btn-offcanvas {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    font-size: 25px;
    color: #ffffff;
}

    .btn-offcanvas:hover {
        color: #ffffff;
    }

.rotate:hover {
    animation: rotation 1s;
}

.linear {
    animation-timing-function: linear;
}

.infinite {
    animation-iteration-count: initial;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.rotate:not(:hover) {
    animation: reverse 1s;
}

.linear {
    animation-timing-function: linear;
}

.infinite {
    animation-iteration-count: initial;
}

@keyframes reverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.shodow-effect {
    box-shadow: inset 4px 3px 8px 1px #ffffff;
    -webkit-box-shadow: inset 4px 3px 8px 1px #969696;
}

/*.btn-primary, .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:visited, .btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
    background: #015fc9;
    border: 1px solid #015fc9;
}
*/
.no-gutter > [class*='col-'] {
    padding-right: 0.1rem;
    padding-left: 0.1rem;
}

.dropdown-menu-right {
    right: 0 !important;
    left: auto !important;
}
.dropdown-menu {
    border-radius: 0px;
    border-top: 4px solid #015fc9;
    margin:0px;
}
.bpps-navmenu > .nav-item {
padding: 0px .5rem 0px .5rem;
}
    .bpps-navmenu > .nav-item:hover, .bpps-navmenu > .nav-item > .nav-link:hover {
        background-color: #015fc9;
        color:#ffffff !important;
    }
.bpps-navmenu > .nav-item > .nav-link{
    color: #000000;
    padding:.3rem;
}
.btn {
    border-radius: 0px;
}

.btn-payment {
    text-align: left;
    min-width: 50%;
}

    .btn-payment > span {
        padding-left: 2rem;
    }

#loader {
    position: fixed;
    z-index: 1910;
    width: 100%;
    height: 100%;
    font-size: 20px;
    opacity: 0.5;
    display: inline-block;
    margin:0px;
    padding:0px;
    background-color: rgba(0, 0, 0, 0.5);
    color:#fff;
}

.loader-align {
    left: 45%;
    padding-top: 24%;
}

.img-profile {
    width: 30px;
    height: 30px;
    border-radius: 30px;
}

.user-profile > li > a > i {
    padding-right: 1rem;
}

.sub-menu {
    margin-top: 0.8rem !important;
}

    .sub-menu > li > a > i {
        padding-right: .6rem;
        font-weight: bolder;
        font-size: 20px !important;
    }

.footer {
    padding-top: 28%;
    position: relative;
}

.quick-trasfer-img {
    padding-top: .5rem;
    padding-right: 1rem;
    width: 70px;
    height: 70px;
}

.add-link {
    cursor: pointer;
}

    .add-link > div.card:hover {
        background-color: mediumslateblue;
        color: #ffffff;
    }

.add-link-active {
    background-color: mediumslateblue;
    color: #ffffff;
}
.nav-pills > li  {
  margin:0px 1rem 0px 1rem;
}
    .nav-pills > li > a, .nav-pills > li > a:hover {
        border-radius: 0px !important;
        color: #015fc9;
    }
.nav-pills .nav-link.active {
    background-color: #015fc9;
}
.tab-steps {
    border-bottom: 1px solid #015fc9;
}
/*.btn-primary, .btn-primary:hover {
    background-color: #015fc9;
    border: 1px solid #015fc9;
}*/
#searchIfscCodes {
    cursor: pointer;
}

.required-field {
    color: red;
    position: absolute;
    padding-top: .2rem;
    margin-left: .2rem;
}

.rotating {
    /* Here we declare our inline animation */
    animation: rotate 7s linear infinite;
}

/* Here we define our animation with the name "rotate" */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}
 
.inner-column {
    background-image: url(/img/globe.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.pattern-layer {
    background-image: url(/img/dotspattern-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 600px;
    height: 580px;
    position: relative;
}

body {
    overflow-x: hidden;
}

.images-outer {
    margin: 0px;
    padding: 0px;
    padding-top: 0px;
    position: absolute;
    bottom: 6rem !important;
}

.about-icons {
    font-size: 45px;
    color: #0088ff;
    margin-right: .4rem;
}

.card-title {
    font-weight: bold;
}

.features-section {
    background-color: #141d38;
    padding-top: 6rem;
}

    .features-section > .features {
        background-image: url(/img/feature-pattern-2.png);
        width: 100%;
        height: 100%;
        color: black;
        padding: 1rem 0px 1rem 0px;
        background-repeat: no-repeat;
        background-position: right top;
    }

.feature-icons {
    margin: 1.3rem;
}

    .feature-icons > i {
        font-size: 3rem;
    }

.feature-cards {
    height: 320px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 15%);
    border-radius: 20px 0px 20px 0px;
}

    .feature-cards .card-footer {
        padding: 0px;
        margin: 0px;
        border: 0px;
    }

        .feature-cards .card-footer > a {
            background-color: #007bff;
            color: #ffffff;
            position: absolute;
            display: block;
            bottom: 0px;
            right: 0px;
            font-size: 25px;
            padding: 6px;
            border: 0px;
            width: fit-content;
            border-radius: 0px 0px 20px;
            transition: transform ease 300ms;
        }

    .feature-cards:hover {
        background-color: #007bff;
        color: #ffffff !important;
        border: 2px solid #007bff;
        border-radius: 0px 0px 0px 25px;
    }

        .feature-cards:hover .card-footer > a {
            border-radius: 0px 0px 0px 25px;
            bottom: 0px;
            transform: translate(-240px, 0);
        }

.feature-1 {
    background: linear-gradient( rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5)100%), url(/img/feature-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 50px 50px;
    background-color: #6DB3F2;
    height: 200px;
    background-color: black;
    animation-name: fadeInLeft;
    opacity: 1;
    transform: translateX(0);
    color: #ffffff;
}

    .feature-1:hover {
        background: linear-gradient(rgba(20,29,59,0.70) 100%, #6c63ff 100%), url(/img/feature-1.jpg);
        background-repeat: no-repeat;
        background-size: cover;
    }

.feature-2:hover {
    background: linear-gradient(rgba(20,29,59,0.70) 100%, #6c63ff 100%), url(/img/feature-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.feature-1 > h4, .feature-2 > h4 {
    position: relative;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.3em;
    margin-top: 12px;
    margin-bottom: 15px;
}

.feature-1 > .txt {
    position: relative;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8em;
}

.feature-2 {
    background: linear-gradient( rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5)100%), url(/img/feature-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 50px 50px;
    background-size: cover;
    height: 200px;
    color: #ffffff;
}

.feature-security {
    position: absolute;
    margin: -70px 0px -2px 0px;
    padding-bottom: 4rem;
    z-index: 15;
}

.features-payment {
    position: relative;
    text-align: center;
    border-radius: 0px;
    background-color: #007bff;
 
}

.feature-icon1 {
    background-image: url(/img/feature/icon-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
   
    bottom: 10%;
    width: 120px;
    height: 120px;
}

.feature-icon2 {
    background-image: url(/img/feature/icon-2.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 38%;
    top: 10%;
    width: 99px;
    height: 190px;
}

.feature-icon3 {
    background-image: url(/img/feature/icon-3.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    right: 5%;
    bottom: 15%;
    width: 170px;
    height: 170px;
}

.moveframe {
    /* Here we declare our inline animation */
    position: absolute;
    animation: moveframe1 9s linear infinite;
}


/* Standard syntax */
@keyframes moveframe1 {
    0% {
        top: 40%;
    }

    100% {
        top: 50%;
      
    }
}

.card-shadow {
    border-radius: 4px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.contact-title {
    color: #040584;
    font-weight: 600;
}


.contact-card {
    box-shadow: 0px 0px 20px rgb(0 0 0 / 10%);
    border: 0px;
    position: relative;
    padding: 10px 15px 0px 15px;
    border-radius: 0px;
    height: 150px;
}

.contact-address {
    float: right;
    position: absolute;
    color: #000000;
    margin: 0px;
    padding: 0px;
    line-height: 28px;
    font-size: 18px;
}

    .contact-address > p {
        position: relative;
        margin-left: 3rem;
    }

    .contact-address > .contact-address-icon {
        position: relative;
        font-size: 40px;
        color: #040584;
    }

.footer-align > li {
    padding-bottom: 2rem;
}

    .footer-align > li > .input-group > span > i {
        font-size: 30px;
    }

.footer-contact > li {
    position: relative;
    color: #ffffff;
    font-size: 14px;
    padding-left: 40px;
    margin-bottom: 10px;
    line-height: 1.6em;
}

    .footer-contact > li > span {
        position: absolute;
        left: 0px;
        top: 4px;
        font-size: 26px;
        line-height: 1em;
        color: #ffffff;
    }

    .footer-contact > li > strong {
        position: relative;
        display: block;
    }

.social-media > li {
    padding-left: 3px;
}

    .social-media > li > a > i {
        font-size: 26px;
    }

label {
    color: #000000;
}

.paymade {
    color: #000000;
    line-height: 30px;
}

.paymade > span > i {
    padding-top: 1.5rem;
    font-size: 50px;
}

.paymade > h5 {
    padding-top: 1.5rem;
    font-size:1.6rem;
}
.paymade > div {
    
    font-size: 0.9rem;
}
.change-color{
    height:400px;
}
.change-color:hover {
    background-color: navy;
    color: white;
}
    .change-color:hover span > i, .change-color:hover h5>a, .change-color:hover div {
        color: white;
    }
.savepayments {
    background-color: #007bff;
    padding:1rem 0px 3rem 0px;
    font-size:40px;
    color:#ffffff;
    height:200px;
 
}
.savepayments>h1 {
   
    padding: 1rem 0px 3rem 0px;
  
}
.services > div > .card {
    padding: 2rem;
    color:#000000;
    box-shadow: 0 0 15px rgb(0 0 0 / 13%);
    border-bottom: 3px solid red;
    border-radius: 15px;
    height:490px;
}
.disable-context {
    pointer-events: none; 
}
 
@media (max-width: 767px) {
    .table-responsive .tbl-actions {
        position: static !important;
    }
}

@media (min-width: 768px) {
    .table-responsive {
        overflow: visible;
    }
}
.tbl-actions>ul>li{
    cursor:pointer;
}
.payment-status {
    animation: animate 2s linear infinite;
}
table > thead > tr > th {
 
    white-space:nowrap !important;
}
.service-image{
    text-align:center;
}
.service-image>img {
 margin-top:-30px;
}
.disable-form-control, .disable-form-control:focus {
    background-color: #eee;
    pointer-events: none;
    outline: none;
}
.validation-summary-errors > ul {
    margin: 0px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 0px;
    list-style: none;
}