/******** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Devanagari:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #0f437d !important;  
    --secondary: #000000;
    --light: #F5F5F5;
    --dark: #161616; 
}
.bg-primary{
    background-color: #0f437d !important;
}
.footer {
    background-color: #174074;
    border-top: 10px solid #8dc640; 
}
.top-nav {
    background-color: #59c91cd9;
}
.top-nav p{
   font-size: 14px;
}
.pad-tb80 {
    padding-bottom: 60px;
    padding-top: 60px;
}
.text-primary {
    color: #0f437d !important;
}
.navbar-brand img {
    height: 62px;
}
.bi-chevron-left::before {
    padding-top: 10px;
}
.bi-chevron-right::before {
    padding-top: 10px;
}
.form-control:focus {
    color: #000;
    background-color: #fff;
    border-color: #b2da98;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(141 198 65 / 10%);
}
.form-select:focus {
    border-color: #b2da98;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(235 83 32 / 45%);
}
.form-control {
    color: #000;
}
body {
    color: #000000 !important;
    /*font-family: 'Tiro Devanagari Marathi', serif !important;*/
    font-family: "Hind", sans-serif !important;

} 
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6{
    font-family: "Hind", sans-serif !important;
}
.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

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


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

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


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

.btn.btn-primary {
    color: #FFFFFF;
}

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

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

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

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

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

.navbar .navbar-brand {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
        
    outline: none;
    font-size: 18px;
}
.dropdown-item{
/*    font-weight:600;*/
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
/*    font-weight: 600;*/
}
.dropdown-toggle::after{
    display: none;
}
@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

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

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

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }
}

.navbar .btn:hover {
    color: #FFFFFF !important;
    background: var(--primary) !important;
}


/*** Header ***/
.header-carousel .carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(22, 22, 22, .7);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    bottom: 46%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0px 20px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #0f437d;
    border: 1px solid #5bc81c;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background:#0f437d ;
    border-color: #000;
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #59c91b;
    border-radius: 15px;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #59c91c;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: #0f437d;
}

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

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.service-item .btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 38px;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.portfolio-inner img {
    transition: .5s;
}

.portfolio-inner:hover img {
    transform: scale(1.1);
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.portfolio-inner:hover .portfolio-text {
    bottom: 0;
    opacity: 1;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}
/*--------------------------------------------------------------
# Footer CSS Start
--------------------------------------------------------------*/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #fff;
    font-weight:400;
    text-transform: capitalize;
    transition: .3s;
    font-size: 16px;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #8dc541;
    letter-spacing: 1px;
    box-shadow: none;
}
.footer-head {
    position: relative;
    font-weight: 800;
    font-size: 22px;
    color: #fff;
}
.footer p {
    font-size: 16px;
    color: #fff;
}
.footer-head:after {
    content: '';
    position: absolute;
    width: 70px;
    left: 0px;
    height: 3px;
    border-radius: 10px;
    margin-top: 26px;
    transition: all .4s ease;
    background-color: #98e926;
}
a.scroll-btn {
    background: #0f437d;
    padding: 10px 10px 0px 10px;
    color: #fff;
    font-size: 18px;
}
.footer .btn-square:hover{
    background-color: #0f437d;
    color: #fff;
    border-color: #fff;
}
/*--------------------------------------------------------------
# Footer CSS End
--------------------------------------------------------------*/
 
/*=============================================================
# Common CSS Start
==============================================================*/
section.banner-section {
    background-image: linear-gradient(to right, #245fad, #245fad);
    padding: 5rem 0rem;
}
.banner-inner-text h4 {
    font-size:40px;
    color: #fff;
}
section.banner-section .banner-inner-text .bradcrumbs {
    font-size:18px;
    color: #fff;
}
section.banner-section .banner-inner-text .bradcrumbs a{
    color: #fff;
}

/*--------------------------------------------------------------
# Common #Button CSS Start
--------------------------------------------------------------*/
.buttons-section {
    text-align: center;
    vertical-align: middle;
    margin: 50px;
}
.su_button-comm {
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: 400;
 padding: 6px 10px;
  font-size: 18px;
  position: relative;
  text-transform: uppercase;
  vertical-align: middle;
  width: 100%;
}
.su_button {
  border: 0 solid;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
  outline: 1px solid;
  outline-color: rgba(255, 255, 255, 0);
  outline-offset: 0px;
  text-shadow: none;
  -webkit-transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
          transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
  outline-color: rgba(255, 255, 255, 0.5);
  outline-offset: 0px;
}
.su_button:hover {
  border: 1px solid;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
  outline-offset: 15px;
  outline-color: rgba(255, 255, 255, 0);
  text-shadow: 1px 1px 2px #427388;
}

.common-bg{ 
    background: #eee;
    position: relative;
    z-index: -2;
}
.common-bgg{ 
    background: #fdf7c9;
 
}
/*--------------------------------------------------------------
# Common #Button CSS End
--------------------------------------------------------------*/
.header-btn a {
    background: #0f437d;
    padding: 12px 15px 4px 15px;
    color: #fff;
    margin: 0px 4px;
    transition: 0.1s;
    font-size: 17px;
    font-weight: 600;
    transition: 0.5s;
}
.header-btn a:hover {
    box-shadow: rgb(16 66 123 / 51%) 0px 2px 4px, rgb(235 83 32 / 28%) 0px 7px 13px -3px, rgb(235 83 32 / 27%) 0px -3px 0px inset;
}
.btn-outline-secondary {
    color: #fff;
    border-color: #fff;
}
.btn-outline-secondary:hover {
    color: #000;
    background-color: #fcc006;
    border-color: #000000;
}
.btn-primary {
    color: #000;
    background-color: #0f437d;
    border-color: #b83534;
}
.btn-primary:hover {
    color: #000;
    background-color: #ffcc01;
    border-color: #000000;
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #0f437d;
}
.btn-check:checked+.btn-primary, .btn-check:active+.btn-primary, .btn-primary:active, .btn-primary.active, .show>.btn-primary.dropdown-toggle {
    color: #000;
    background-color: #b14e2d;
    border-color: #ffffff;
}
.btn-check:focus+.btn, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(235 84 33 / 12%);
}
/*--------------------------------------------------------------
# Loan Page CSS Start
--------------------------------------------------------------*/
.loan-sec-bg {
    position: relative;
    background-color: #f7f3f3;
    padding: 4%;
    border-radius: 10px;
}
.loan-sec-bg .loan-sec-left-img img {
    position: absolute;
    max-width: 38%;
    top: -12%;
    left: 6%;
    border-radius: 10px;
    height: 500px;
    /*object-fit: cover;*/
}
.loan-sec-bg .loan-sec-right-img img {
    position: absolute;
    max-width: 38%;
    top: -12%;
    right: 6%;
    border-radius: 10px;
    height: 500px;
    object-fit: cover;
}
.loan-sec-bg .section-heading h3 {
    position: relative;
    font-weight: 700;
    font-size: 28px;
}
.loan-sec-bg .section-heading h3:after{
    content: '';
    position: absolute;
    width: 84px;
    left: 0px;
    height: 3px;
    border-radius: 10px;
    margin-top:26px;
    transition: all .4s ease;
    background-color: #0f437d;
}
.loan-sec-bg .section-heading p {
    color: #0f437d;
    font-weight: bold;
}
.loan-sec-bg .loan-sec-inner-contain .au-content {
    line-height: 35px;
    font-size: 18px;
}
/*--------------------------------------------------------------
# Loan Page CSS End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Deposite Page CSS Start
--------------------------------------------------------------*/
.deposite-section .deposite-innerbox-img {
    border: 16px solid #0f437d;
    width: 400px;
    height: 420px;
    position: relative;
    z-index:9;
}
.deposite-section img {
    border: 16px solid #d7d7d7;
    width: 400px;
    height: 420px;
    position: absolute;
    z-index:99;
    top: 0;
    left: 10%;
    right: 0;
    bottom: 0;
    margin-top: -20%;
}
.deposite-section .deposite-txt {
    line-height: 30px;
    font-size: 17px;
}
.deposite-section .deposite-head{
    position: relative;
}
.deposite-section .deposite-head:after {
    content: '';
    position: absolute;
    width: 95px;
    left: 0px;
    height: 3px;
    border-radius: 10px;
    margin-top:30px;
    transition: all .4s ease;
    background-color: #0f437d;
}
/*--------------------------------------------------------------
# Deposite Page CSS End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Contact Page CSS Start
--------------------------------------------------------------*/
#contact-form{
    background-image: url(../img/contact-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}
 #contact-information .contact-info-box {
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#contact-information form input[type=text], #contact-information form input[type=number], #contact-information form input[type=email], #contact-information form textarea, #contact-information form select {
    width: 100%;
    font-size: 18px;
    letter-spacing: 0;
    padding: 10px 13px;
    background-color:#fff;
    border: 1px solid #1212124d;
    border-radius: 5px;
    font-family: "Hind", sans-serif !important;
}
#your-information {
    color: #757575;
}
#your-information option{
   padding: 5px;
}
#contact-information form input[type=text], #contact-information form input[type=number], #contact-information form input[type=email], #contact-information form textarea, #contact-information form select:focus{
    outline: none;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#contact-information label{
    font-family: "Hind", sans-serif !important;
    font-size: 22px;
}
.contact-info-box a {
    color: black;
    font-size: 17px;
    font-family: "Hind", sans-serif !important;
    font-weight: 500;
}
.contact-info-box .ct-phone-icon i {
    color: #0f437d;
}
.contact-info-box .ct-email-icon i {
    color: #0f437d;
}
.contact-info-box .ct-location-icon i {
    color: #0f437d;
}
.contact-info-box .location-text {
    width: 65%;
}
.contact-info-box .text-main-text {
    color:#000;
    font-size: 17px;
}
.contact-form-btn button {
    background-color: #0f437d;
    color: #fff;
    width: 100%;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    padding: 5px 0px;
    font-family: sans-serif;
}
.contact-information-form-outer {
    font-family: sans-serif;
}
.contact-info-box a {
    color: black;
    font-size: 17px;
    font-family: sans-serif;
}
.contact-map-contain embed {
    border-radius: 15px;
    box-shadow: rgb(9 30 66 / 25%) 0px 4px 8px -2px, rgb(9 30 66 / 8%) 0px 0px 0px 1px;
    border: 1px solid #eee;
}
.contact-map-contain {
    box-shadow: rgb(0 0 0 / 40%) 0px 2px 4px, rgb(0 0 0 / 30%) 0px 7px 13px -3px, rgb(0 0 0 / 20%) 0px -3px 0px inset;
    padding:30px;
    min-height: 472px;
}
.contact-map-contain h5 {
    font-size: 20px;
    margin-bottom: 25px;
}
.contact-information-form-outer {
    background: #fff;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
}
.contact-icon-txt-box{
    padding: 40px 25px 25px;
    background: #fff;
    min-height: 100%;
    box-shadow: 0 7px 20px 0 rgb(0 0 0 / 10%);
    margin: 10px 0;
    position: relative;
    top: 0;
}
.contact-info-box p {
    font-size: 18px;
    line-height: 30px;
}
.contact-icon-txt-box .contact-box-icon i {
    background: #0f437d;
    padding: 12px 10px 9px 10px;
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
}
.contact-icon-txt-box .contact-box-icon .fa-map-marker {
    padding: 12px 13px 9px 14px;
}
.contact-info-box h2 {
    font-size: 35px;
    position: relative;
}
/*.contact-info-box h2:after {
    content: '';
    position: absolute;
    width: 135px;
    left: 0px;
    height: 3px;
    border-radius: 10px;
    margin-top: 32px;
    transition: all .4s ease;
    background-color: #0f437d;
}*/
.contact-box-txt p a {
    color: #000;
    font-size: 18px;
}
.contact-box-icon .fa-phone {
    transform: rotate(95deg);
}
/*--------------------------------------------------------------
# Contact Page CSS End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Branches Page CSS Start
--------------------------------------------------------------*/
.branches-box {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
}
.branches-icon i{
    background: linear-gradient(90deg, rgba(255,115,104,1) 0%, rgba(255,176,108,1) 100%);
    padding: 20px;
    font-size: 35px;
    color: #fff;
    border-radius: 50%;
}
.branches-text h5 {
    font-weight: 700;
    font-size: 23px;
}
.branches-text p {
    font-size: 20px;
    font-weight: 500;
} 
.branches-text a {
    font-size: 17px;
    color: #000;
    border-radius: 50px;
}
.branches-text a i {
    transform: rotate(100deg);
    color: #0f437d;
}
/*--------------------------------------------------------------
# Branches Page CSS End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# About Page CSS Start
--------------------------------------------------------------*/

.abt-img-pos-abs {
    position: absolute;
    bottom: 0px;
    width: 200px;
    right: 50px;
    border: 20px solid #fff;
}

img.about-main-img {
    width: 100%;
}

.about-section .inner-title h2 {
    font-size:24px;
    font-weight: 700;
    position: relative;
}
.about-section .inner-title h2:after {
    content: '';
    position: absolute;
    width:106px;
    left: 0px;
    height: 3px;
    border-radius: 10px;
    margin-top: 26px;
    transition: all .4s ease;
    background-color: #0f437d;
}
#vision-mission-section .vision-mission-box {
    padding: 25px 20px;
    background-color: #ffffff;
    text-align: left;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
/*    min-height: 490px;*/
    border-radius: 15px;
    margin-bottom: 20px;
}
#vision-mission-section .vision-mission-box img {
    height: 50px;
    background: #0f437d;
    padding: 8px 8px;
    border-radius: 50px;
    border: 2px solid #8dc63f;
    margin-bottom: 15px;
}
#vision-mission-section .vision-mission-box p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 0px;
}
#vision-mission-section .vision-mission-box h3 {
    position: relative;
    font-size: 26px;
    margin-bottom: 0px;
}
#vision-mission-section .vision-mission-boxx ul li {
    margin-bottom: 15px;
    font-size: 18px;
}
/*=============================*/
#vision-mission-section .vision-mission-boxx {
    padding: 25px 20px;
    background-color: #ffffff;
    text-align: left;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    min-height: 495px;
    border-radius: 15px;
}
#vision-mission-section .vision-mission-boxx img {
    height: 80px;
    background: #0f437d;
    padding: 15px 15px;
    border-radius: 50px;
    border: 2px solid #8dc63f;
    margin-bottom: 15px;
}
#vision-mission-section .vision-mission-boxx p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 0px;
}
#vision-mission-section .vision-mission-boxx h3 {
    position: relative;
    font-size: 26px;
    margin-bottom: 15px;
}
#vision-mission-section .vision-mission-boxx ul li{
    margin-top: 15px;
}
/*=============================*/
/*#vision-mission-section .vision-mission-box h3:after {
    content: '';
    position: absolute;
    width: 72px;
    left: 0px;
    height: 3px;
    border-radius: 10px;
    margin-top: 29px;
    transition: all .4s ease;
    background-color: #0f437d;
}*/


#occult-section .occult-img {
    width: 300px;
    height: 300px;
    float: left;
}
#occult-section .occult-img img {
    object-fit: cover;
    object-position: top;
    width: 275px;
    height: 275px;
    border: 2px solid #245fad;
    padding: 0px;
    background-color: #fff;
}
#occult-section{
    background-image: linear-gradient(to right bottom, #f9e08c69, #f9e08c69), url(../images/bg-img/pattern-2.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    background-repeat: no-repeat;
}
#occult-section .occult-contain-txt h2{
    position: relative;
}
#occult-section .occult-contain-txt h2:after {
    content: '';
    position: absolute;
    width: 65px;
    left: 0px;
    height: 3px;
    border-radius: 10px;
    margin-top: 28px;
    transition: all .4s ease;
    background-color: #0f437d;
}
#occult-section .occult-contain-txt p {
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 0;
}
.occult-contain-txt h5 {
    margin-bottom: 2px;
    font-size: 22px;
    margin-top: 20px;
}

 .our-team-main-box {
    background-image: url(../images/about-img/our-team-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 32px 0px 28px;
}
.our-team-main-box h4 {
    font-size: 26px;
    font-weight: 800;
}
.our-team-main-box p{
    font-weight: 800;
    font-size: 18px;
}
/*--------------------------------------------------------------
# About Page CSS End
--------------------------------------------------------------*/
.contact__box {
    padding: 15px;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    min-height: 180px;
}
.contact__box .icon i {
    background: #245fad;
    padding: 14px 0px 0px 0px;
    font-size: 28px;
    border-radius: 50px;
    width: 55px;
    height: 55px;
    text-align: center;
    margin-bottom: 15px;
    color: #6beb26;
}
.contact__box h6{
    font-weight: 400;
}
.contact__form .field_box {
    margin-bottom: 20px;
}
.contact__form .field_box .form-label {
    margin: 0;
    color: #0f437d;
    font-size: 17px;
}
.contact__form {
    border: 1px solid #245fad;
    padding: 20px;
    border-radius: 10px;
}
.map__section iframe {
    width: 100%;
    height: 522px;
    border-radius: 10px;
    border: 1px solid #245fad;
}
.special__txt p {
    font-size: 17px;
    line-height: 30px;
}
.txt_crl {
    color: #0f437d;
    font-weight: 600;
    margin-bottom: 5px;
}
/*--------------------------------------------------------------
# ETC Page CSS Start
--------------------------------------------------------------*/

.current-acc-images img {
    width: 100%;
    height: 100%;
}
#current-acc-section .current-acc-images {
    padding-right: 30px;
    padding-bottom: 30px;
    position: relative;
}
#current-acc-section .current-acc-images:after, #current-acc-section .current-acc-images:before {
    content: "";
    position: absolute;
    background: #0f437d;
    z-index: 0;
}
#current-acc-section .current-acc-images:after, #current-acc-section .current-acc-images:before {
    content: "";
    position: absolute;
    background: #0f437d;
    z-index: 0;
}
#current-acc-section .current-acc-images:before {
    right: -5px;
    bottom: -2px;
    width: 33%;
    height: 32px;
}
#current-acc-section .current-acc-images:after {
    right: -5px;
    bottom: 19px;
    width: 35px;
    height: 33%;
}
.current-acc-box h2 {
    position: relative;
}
.current-acc-box h2:after {
    content: '';
    position: absolute;
    width: 126px;
    left: 0px;
    height: 3px;
    border-radius: 10px;
    margin-top:30px;
    transition: all .4s ease;
    background-color: #0f437d;
}
.current-acc-box p {
    line-height: 35px;
    font-size: 18px;
}
.mobile-bnk-img img {
    width: 100%;
    height: 100%;
}
.mobile-bnk-box h3 {
    font-weight: 700;
    color: #fff;
    position: relative;
}
/*.mobile-bnk-box h3:after {
    content: '';
    position: absolute;
    width: 95px;
    left: 0px;
    height: 3px;
    border-radius: 10px;
    margin-top:28px;
    transition: all .4s ease;
    background-color: #0f437d;
}*/
.mobile-bnk-box p {
    color: #fff;
    font-size: 17px;
    line-height: 28px;
}
.mobile-bnk-img-right img {
    width: 100%;
    height: 100%;
    border-top: 5px solid #59c81d;
    border-right: 5px solid #59c81d;
    border-bottom: 5px solid #59c81d;
    padding: 10px;
}
.mobile-bnk-img-left img {
    width: 100%;
    height: 100%;
    border-top: 5px solid #59c81d;
    border-left: 5px solid #59c81d;
    border-bottom: 5px solid #59c81d;
    padding: 10px;
}
/*------------*/

.line-height30 {
    line-height: 35px;
}
.locas-img img {
    width: 100%;
    height: 100%;
}
.atm-img img {
    width: 100%;
    height: 100%;
}
.tele-banking-img img {
    width: 100%;
    height: 100%;
}
.qr-code-img img {
    width: 100%;
    height: 100%;
}
.etc-head{
    position: relative;
    margin-bottom: 15px;
}
.etc-head:after {
    content: '';
    position: absolute;
    width: 106px;
    left: 0px;
    height: 3px;
    border-radius: 10px;
    margin-top: 32px;
    transition: all .4s ease;
    background-color: #0f437d;
}
.locas-txt p{
    font-size: 17px;
}
section#atm-section {
    background: #eee;
}
section#qr-code-section {
    background: #eee;
}
.atm-txt p{
    font-size: 18px;
}
.tele-banking-txt p{
    font-size: 18px;
}
.qr-code-txt p{
    font-size: 18px; 
}
/*--------------------------------------------------------------
# ETC Page CSS End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Sevices CSS Start
--------------------------------------------------------------*/
/* Define the keyframe animation for the border */


/*.services-box {
    position: relative;
    background: #0f437d;
    border: 1px solid #0f437d;
    margin-bottom: 20px;
    padding: 20px 20px 20px 0px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}*/
.services-box {
    position: relative;
    background: #ffff;
    border: 1px solid #eeeeee;
    margin-bottom: 30px;
    padding: 20px 20px 20px 0px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.services-box .services-img img {
    height: 60px;
}
.services-box .services-img {
    display: inline-block;
    width: 85px;
    height: 120px;
    line-height: 120px;
    background: #0f437d;
    text-align: center;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.services-box .services-txt{
    position: relative;
    padding-left: 110px;
}
.services-box .services-txt h5 {
    color: #0f437d;
    font-size: 25px;
    margin-bottom: 2px;
}
.services-box .services-txt p {
    color: #000;
    margin-bottom: 15px;
}
/*.services-box .services-txt a {
    color: white;
    background: #8fc63b;
    padding: 3px 12px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 2px;
    transition: 0.5s;
}*/
.services-box .services-txt a {
    color: white;
    background: #0f437d;
    padding: 3px 12px;
    font-size: 16px;
/*    font-weight: 600;*/
    border-radius: 2px;
    transition: 0.5s;
}
.services-box .services-txt a:hover{
    background: #95d533;
}

/* ======================== */
.main-section-heading {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}
.main-section-heading h2 {
    position: relative;
    font-size: 32px;
    margin-bottom: 20px;
}
.main-section-heading p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}
.main-section-heading h2::before {
    content: "";
    border-top: 4px solid #8dc73c;
    width: 60px;
    position: absolute;
    top: 40px;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
}
/* .main-section-heading h2{
    font-weight: 800;
    position: relative;
}
.main-section-heading p {
    font-size: 18px;
}
.main-section-heading h2 span{position: relative;}
.main-section-heading h2 span:before {
    content: '';
    width: 35px;
    height: 3px;
    background-color: #0f437d;
    position: absolute;
    top: 0px;
    left: 0px;
    margin: 20px 10px 20px -46px;
}
 .main-section-heading h2 span:after{
     content: '';
    width: 35px;
    height: 3px;
    background-color: #0f437d;
    position: absolute;
    top: 0px;
    margin: 20px 10px;
 } */
/*.cmn__btn a {
    background: #0f437d;
    padding: 8px 20px;
    margin: 0;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
}*/
.cmn__btn button {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    margin-left: 7px;
    display: inline-block;
    padding: 8px 30px 8px;
    background-color: #0f437d;
    text-transform: uppercase;
    border-radius: 0px 0px 25px 0px;
    transition: 0.5s;
    font-weight: 600;
}
.cmn__btn button:hover{
    background-color: #072a50;
}
.cmn__btn a {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    margin-left: 7px;
    display: inline-block;
    padding: 8px 30px 8px;
    background-color: #0f437d;
    text-transform: uppercase;
    border-radius: 0px 0px 25px 0px;
    transition: 0.5s;
    font-weight: 600;
}
.cmn__btn a:hover{
    background-color: #072a50;
}
.cmn__btn a:before {
    position: absolute;
    content: '';
    top: -7px;
    left: -7px;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 1;
    background-color: #cccccc;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    border-radius: 0px 0px 25px 0px;
}
/*---------*/
.main-section-headingNew p{
    font-size: 17px;
}
.main-section-headingNew h2{
    font-weight: 800;
    position: relative;
}



.main-section-headingNew1 h2{
    font-weight: 800;
    position: relative;
}
.main-section-headingNew1 p{
    font-size: 17px;
}

/*--------------------------------------------------------------
# Sevices CSS End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Mobile Banking CSS Start
--------------------------------------------------------------*/

#mobile-banking-contain {
    position: relative;
}
.main-mobile-img img{
    width: 100%;
    border-radius: 5px;
}
#mobile-banking-contain .main-mobile-box-content p{
    line-height: 30px;
    font-size: 17px;
}
#mobile-banking-contain .main-mobile-box-content a {
    font-size: 18px;
    color: #fff;
    background: #0f437d;
    padding: 7px 35px 0px;
    font-weight: 500;
}
#mobile-banking-contain .main-mobile-box-content h4{
    position: relative;
    font-size: 25px;
}
#mobile-banking-contain .main-mobile-box-content h4:after {
    content: '';
    position: absolute;
    width: 106px;
    left: 0px;
    height: 3px;
    border-radius: 10px;
    margin-top:28px;
    transition: all .4s ease;
    background-color: #0f437d;
}
#mobile-banking-contain .box-content p {
    line-height: 30px;
    font-size: 17px;
}
/*--------------------------------------------------------------
# Mobile Banking CSS End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Testimonial CSS Start 
--------------------------------------------------------------*/
section#main-testimonial-section {
    background-image: linear-gradient(to right bottom, #eeeeee5e, #eeeeee8a), url(../images/bg-img/bg2.png);
    background-size: cover;
    background-position: center;
    width: 100%;
    background-repeat: no-repeat;
}
#main-testimonial-section .box-area{
    position: relative;
}
#main-testimonial-section .box-area .testimonial_inner_box {
    position: relative;
    margin-top: 15px;
    padding: 0 45px 45px;
    -webkit-box-shadow: 0 0 59px rgba(0,0,0,.06);
    box-shadow: 0 0 59px rgba(0,0,0,.06);
    border-top: 3px solid #8cc640;
    background-color: #fff;
    text-align: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    min-height: 330px;
}
#main-testimonial-section .box-area .testimonial_inner_box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    pointer-events: none;
    background-color: #eee;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

#main-testimonial-section .testimonial_inner_box .icon-box {
    position: relative;
    bottom: 15px;
    width: 121px;
    height: 83px;
    margin: 0 auto;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
#main-testimonial-section .testimonial_inner_box .icon-box:before {
    position: absolute;
    left: -7px;
    right: -7px;
    top: 0;
    height: 14px;
    content: "";
    clip-path: polygon(5% 0,95% 0,100% 100%,0 100%);
    background-color: #8cc640;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
#main-testimonial-section .testimonial_inner_box .icon-box .icon.icon-quote {
    width: 58px;
    height: 42px;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/icons/quotes.png);
}
#main-testimonial-section .testimonial_inner_box .icon-box:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #8cc640;
    clip-path: polygon(0 0%,100% 0,90% 100%,10% 100%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

/*#main-testimonial-section .box-area .content{ color: #262626; padding-bottom: 15px; border-bottom: 3px solid #8dc642; font-size: 18px; }
#main-testimonial-section .box-area h4 {    font-size: 20px; color: #000; font-weight: bold; margin-bottom: 5px; }
#main-testimonial-section .box-area span { color: #262626; display: block; font-size: 14px; font-weight: 400;}*/
#main-testimonial-section .content i { font-size: 22px; color: #0f437d; margin-right: 5px; }
#main-testimonial-section .owl-nav { position: absolute; top: 50%; width: 100%; }
#main-testimonial-section .owl-prev, #main-testimonial-section .owl-next { width: 40px; height: 40px; line-height: 40px; color: #0f437d; border-radius: 50%; text-align: center; background: #fff; position: absolute; font-size: 25px; }
#main-testimonial-section .owl-prev { left: -60px; top: -20px; }
#main-testimonial-section .owl-next { right: -60px; top: -20px; }
/*--------------------------------------------------------------
# Testimonial CSS End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Call To Action Script Line CSS Start
--------------------------------------------------------------*/
.newsletter-sec {
    padding: 0;
    position: relative;
}
.newsletter-sec-box {
    background-color: #0f437d;
    box-shadow: 0px 3px 6px #00000029;
/*    border-radius: 10px;*/
    padding: 42px 70px 30px !important;
/*    position: relative;*/
   
    margin: 0 auto;
}
.newsletter-sec-box .script-text h2 {
    color: #ffff;
}
.newsletter-sec-box .btn a {
    background: white;
    padding: 10px 20px 0px;
    font-size:20px;
    color: #000;
    border-radius: 5px;
}
/*--------------------------------------------------------------
# Call To Action Script Line CSS End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Gallery Page CSS Start
--------------------------------------------------------------*/
.gallery img{
    max-width: 100%;
}
.gallery img {
    background-color: #ffffff;
    width: 100%;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    cursor: pointer;
    margin-bottom: 30px;
    height: 205px;
    object-fit: cover;
    border: 1px solid #0f437d;
    border-radius: 10px;
}
#gallery-modal .modal-img{
    width: 100%;
}
/*--------------------------------------------------------------
# Gallery Page CSS End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Whatsapp Button CSS Start
--------------------------------------------------------------*/
.whatsapp-button .btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 95px;
    right: 30px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding:28px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 999;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}
.whatsapp-button .btn-whatsapp-pulse-border {
    bottom: 120px;
    right: 20px;
    animation-play-state: paused;
}

.whatsapp-button .btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 25px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }
    75% {
        padding: 50px;
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
/*===========================================================================================*/
.sec-title h2 {
    text-transform: uppercase;
    letter-spacing: 0.2px;
    font-size: 15px;
    line-height: 1;
    margin-bottom: 12px;
    font-weight: 700;
    color: #0f437d;
/*    position: relative;*/
/*    display: inline-block;*/
}
/*.sec-title-home-3 h2:after {
    content: '';
    background-color: #59c91c;
    position: absolute;
    height: 2px;
    width: 5000px;
    top: calc(50% - 2px);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: calc(100% + 10px);
}*/
.sec-title h3 {
    text-transform: capitalize;
    font-weight: 700;
    font-size: 35px;
    line-height: 1.1;
    letter-spacing: 0.3px;
    position: relative;
}
.sec-title h3 span:after {
    content: '';
    background-color: #59c91c;
    width: 80px;
    height: 3px;
    position: absolute;
    margin-top: 12px;
    margin-left: 10px;
}
.sec-title1 h2 {
    text-transform: uppercase;
    letter-spacing: 0.2px;
    font-size: 15px;
    line-height: 1;
    margin-bottom: 12px;
    font-weight: 700;
    color: #0f437d;
/*    position: relative;*/
/*    display: inline-block;*/
}
.sec-title1 h3 {
    text-transform: capitalize;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: 0.3px;
    position: relative;
}
.sec-title1 h3 span:after {
    content: '';
    background-color: #59c91c;
    width: 80px;
    height: 3px;
    position: absolute;
    margin-top: 12px;
    margin-left: 10px;
}
.deposite_section .img-box {
    margin: 0 30px;
}
.deposite_section .img-box {
    position: relative;
}
.deposite_section .img-box .about-img {
    position: relative;
}
.deposite_section .img-box:after {
    content: '';
    background-color: #59c91c;
    position: absolute;
    width: calc(100% + 60px);
    height: 80%;
    top: 50%;
    left: 50%;
    z-index: -1;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 3px;
}
.deposite_section .img-box .about-img img {
    -webkit-box-shadow: 0 1px 73px 0 rgb(11 12 38 / 0.07);
    box-shadow: 0 1px 73px 0 rgb(11 12 38 / 0.07);
    border-radius: 3px;
    width: 100%;
}
.loan__img{
    position: relative;
}
.loan__img:before {
    position: absolute;
    content: '';
    left: -20px;
    top: 20px;
    bottom: 20px;
    width: 45px;
    border-radius: 4px;
    background-color: #5bc71dcf;
}
.loan__img1{
    position: relative;
}
.loan__img img{
    width: 100%;
}
.about__section .image-column {
    position: relative;
    margin-bottom: 50px;
    z-index: 1;
}
.about__section .image-column .inner-column {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.about__section .image-box {
    position: relative;
    display: inline-block;
}
.about__section .image-box .image img {
    position: relative;
    max-width: 100%;
    z-index: 3;
}
.about__section .image-box .image {
    position: relative;
    padding-top: 30px;
    padding-right: 30px;
    z-index: 1;
    margin-bottom: 0;
}
.about__section .inner-column p {
    text-align: justify;
    font-size: 17px;
    line-height: 32px;
    margin-bottom: 25px;
}
.about__section .image-box .image:before {
    position: absolute;
    right: 0;
    top: 0;
    width: 180px;
    height: 166px;
    border: 4px solid #59c91c;
    content: "";
    -webkit-animation: zoom-two 9s infinite linear;
    animation: zoom-two 9s infinite linear;
}
.overlay-anim:after {
    background: rgba(255,255,255,.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}
.about__section .image-column .image-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    -webkit-box-shadow: 0 10px 60px rgba(0,0,0,.08);
    box-shadow: 0 10px 60px rgba(0,0,0,.08);
    max-width: 282px;
    z-index: 1;
}
.about__section .image-column .image-2 img{
    border: 3px solid #fff;
}
.overlay-anim:after {
    background: rgba(255,255,255,.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}
.about__section .image-box .experience {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 170px;
    width: 205px;
    padding: 85px 18px 20px;
    overflow: hidden;
    z-index: 2;
}

.about__section .image-box:after {
    position: absolute;
    left: -40px;
    top: 75px;
    width: 203px;
    height: 200px;
    background-image: url(../images/about-img/bg1.png);
    content: "";
    -webkit-animation: bounce-y 10s infinite linear;
    animation: bounce-y 10s infinite linear;
}
.about__section .image-box .experience:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 200%;
    height: 100%;
    background-color: #0f437d;
    border-top: 15px solid #fff;
    content: "";
    -webkit-transform: rotate(42deg);
    transform: rotate(42deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
}
.about__section .image-box .experience strong {
    position: relative;
    font-size: 26px;
    line-height: 1em;
    font-weight: 700;
    color: #fff;
}
.about__section .image-box .experience .text {
    position: relative;
    top: -2px;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: .02em;
    font-weight: 500;
    color: #fff;
}
@-webkit-keyframes bounce-y {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}
ul.stral__test {
    padding: 0;
    display: flex;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 0;
}
ul.stral__test li {
    margin-right: 5px;
    list-style: none;
    color: #fbbc04;
    font-size: 10px;
}
.about-style-one .other-serv-img-box {
    position: relative;
    background: transparent url(../images/ase.png) 100% -120% no-repeat;
}
.about-style-one .other-serv-img-box img{
    width: 100%;
}
.about-style-one .other-serv-img-box .video-box {
    position: absolute;
    bottom: 0;
    right: 0;
}
.otherservices_area .video-gallery-bg {
    background: url('../images/bg-img/pattern.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: block;
}
.otherservices_area .video-gallery-bg .video-gallery {
    border: 5px solid #ffffff;
    display: inline-block;
    left: 50px;
    position: relative;
    top: 50px;
}
.otherservices_area .video-gallery-bg .video-gallery img{
    width: 100%;
}
.about-section .image-box {
    position: relative;
    z-index: 1;
}
.about-section .call-anytime-box {
    background: #fff;
    position: absolute;
    bottom: 80px;
    padding: 25px;
    display: flex;
    align-items: center;
    left: 60px;
}
.about-section .image-box:after {
    background: #5ac916;
}
.about-section .image-box:after {
    content: "";
    position: absolute;
    height: 96%;
    width: 90%;
    left: -15px;
    bottom: 13px;
    z-index: -1;
    transform: rotate(-3deg);
}
.about-section .call-anytime-box .icon-box {
    float: left;
    position: relative;
    z-index: 0;
    transition: all 0.5s ease;
    margin-right: 20px;
}
.about-section .call-anytime-box .icon-box i {
    background: #0f437d;
}
.about-section .call-anytime-box .number {
    overflow: hidden;
}
.call-anytime-box .icon-box i {
    color: #fff;
    padding: 15px;
}
.about-section .call-anytime-box:after {
    position: absolute;
    content: "";
    left: 0;
    width: 0;
    height: 0;
    bottom: -28px;
    border-style: solid;
    border-width: 28px 42px 0 0;
    border-color: #ffffff transparent transparent transparent;
}
.image-box img {
    width: 100%;
}
.common-bg1 {
    background-color: #f3f3f3;
}
.pb80{
    padding-bottom: 80px;
}
.pt80{
    padding-top: 80px;
}
/*--------------------------------------------------------------
# Whatsapp Button CSS End
--------------------------------------------------------------*/
/* media query*/ 


@media screen and (min-width:320px) and (max-width:767px){

    #main-testimonial-section .owl-nav{
        display: none;
    }
    
    
    .main-section-heading h2 span:after, .main-section-heading h2 span:before{display: none;}
    .newsletter-sec-box{
        padding: 17px 11px 17px !important;
    }
    img.abt-img-pos-abs {
        display: none;
    }
    .header-btn {
        margin-bottom: 28px;
    }
    .header-btn a {
        font-size: 14px;
    }
    .main-section-heading h2 {
        font-size: 24px;
    }
    .main-section-heading p {
        font-size: 16px;
    }
    #mobile-banking-contain .main-mobile-box-content h4:after {
        left: 34%;
    }
    .main-mobile-box-content {
        margin-top: 22px;
    }
    #main-testimonial-section .box-area {
        padding: 18px;
    }
    .about-section .inner-title h2:after {
        left: 36%;
    }
    .about-section .inner-title h2 {
        margin-top: 30px;
    }
    #occult-section .occult-contain-txt h2:after {
        width: 54px;
        left: 43%;
        margin-top: 23px;
    }
    
    #vision-mission-section .vision-mission-box h3:after {
        width: 50px;
        left: 43%;
        margin-top: 20px;
    }  
    .class-margin {
        margin: 20px 0px;
    } 
    .deposite-section img {
        width: 300px;
        height: 320px;
        top: 2px;
    }
    .deposite-section .deposite-innerbox-img {
        width: 300px;
        height: 300px;
    }
    .about-box-img {
        margin-top: 30px;
    }
    .deposite-section .deposite-head:after {
        left: 36%;
    } 
    .current-acc-box h2:after {
        width: 70px;
        left: 40%;
        margin-top: 28px;
    }
    .mobile-bnk-box {
        margin-top: 30px;
    }
    .mobile-bnk-box h3:after {
        width: 80px;
        left: 38%;
        margin-top: 23px;
    }
    .qr-code-img {
        margin-bottom: 20px;
    }
    .locas-txt .etc-head:after {
        width: 80px;
        left: 38%;
        margin-top: 26px;
    }
    .locas-txt {
        margin-top: 20px;
    }
    .atm-txt {
        margin-top: 20px;
    }
.tele-banking-txt {
    margin-top: 20px;
}
.etc-head:after {
    width: 85px;
    left: 38%;
    margin-top: 25px;
} 
.contact-icon-txt-box {
    padding: 16px 8px 14px;
}
.contact-box-icon {
    padding-right: 10px;
}
.contact-info-box h2:after {
    width: 100px;
    left: 36%;
}
.contact-info-box p {
    font-size: 17px;
    line-height: 26px;
}
.contact-icon-txt-box .contact-box-icon i {
    font-size: 18px;
}
.contact-box-txt p a {
    font-size: 16px;
}
.loan-sec-bg .loan-sec-left-img img{
    position: relative;
    max-width: 100%;
    left:unset; 
    height:auto; 
}
.loan-sec-bg .loan-sec-right-img img {
    position: relative;
    max-width: 100%;
    right: unset;
    height:auto; 
}
.loan-sec-bg .section-heading h3:after {
    width: 84px;
    left: 38%;
}
.loan-sec-inner-contain {
    margin-top: 20px;
}
.loan-sec-inner-contain {
    order: 2;
}
.loan-sec-right-img {
    order: 1;
}

.contact-map-contain {
    margin-top: 20px;
} 
}
/*---------------------------------*/
/*#profit_section{
    background-image: url('../images/bg-img/bg1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}*/
#profit_section {
    background-image: linear-gradient(to right bottom,#00000096,#00000096),url(../images/bg-img/bg4.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    background-repeat: no-repeat;
}
#profit_section .profit__box img {
    height: 50px;
    margin-bottom: 20px;
}
#profit_section .profit__box h4 {
    font-size: 24px;
    margin: 0;
}
#profit_section .profit__box {
    background-color: #fff;
    border-radius: 20px;
    /* -webkit-box-shadow: 30px 30px 801px 0 rgba(0,21,35,.16); */
    /* box-shadow: 30px 30px 801px 0 rgb(255 255 255 / 18%); */
    padding: 30px 35px 30px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    box-shadow: rgb(255 255 255) 0px 3px 8px;
}
.tbl__main table tbody tr td {
    color: #000;
}
.mob__sreen_img{
  display: none !important;
}
.tbl__main {
    text-align: center;
}
.error {
  color: red;
  font-size: 13px;
}
/*==========================================================================================================
===========================================================================================================*/
/*Responsive Media Queries( Start-> )*/


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

}
@media screen and (min-width:992px) and (max-width:1200px){

}
@media screen and (min-width:750px) and (max-width:991px){

}
@media screen and (max-width:749px){
    .whatsapp-button .btn-whatsapp-pulse {
        font-size: 30px;
        padding: 20px;
    }
     .lg__sreen_img{
  display: none !important;
}
.mob__sreen_img{
  display: block !important;
}
    .pbpt-mbl{
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .pb80 {
    padding-bottom: 30px;
}
.pt80 {
    padding-top: 30px;
}
    .navbar-brand img {
        width: 100%;
        height: 50px;
    }
    .header-carousel .owl-nav{display: none;}
    .header-carousel .owl-dots{
        bottom: 8px;
    }
    .main-section-heading h2::before {
        border-top: 2px solid #8dc73c;
        width: 40px;
        top: 30px;
        display: none;
    }
    .main-section-heading {
        margin-bottom: 30px;
    }
    .services-box .services-img {
        width: unset;
        height: unset;
        line-height: unset;
        padding: 10px;
        position: relative;
        -ms-transform: unset;
        transform: unset;
        border-radius: 5px;
        margin-bottom: 15px;
    }
    .services-box .services-txt {
        padding-left: 20px;
    }
    .services-box .services-img img {
        height: 50px;
    }
    .pad-tb80 {
        padding-bottom: 30px;
        padding-top: 30px;
        text-align:center;
    }
    #profit_section .profit__box {
        margin-bottom: 20px;
    }
    .about__section .image-box .experience {
        text-align: start;
    }
    .about__section .image-column .image-2 {
        display: none;
    }
    .about__section .image-box .image {
        padding-top: 15px;
        padding-right: 15px;
    }
    .sec-title1 h3 span:after {
        content: '';
        background-color: #59c91c;
        width: 40px;
        height: 3px;
        position: absolute;
        margin-top: 12px;
        margin-left: 10px;
    }
    .sec-title1.sec-title-home-3 {
        text-align: start;
                margin-top: 15px;
    }
    .cmn__btn {
        text-align: start;
    }
    .cmn__btn a {
        font-size: 15px;
        padding: 4px 20px 4px;
    }
    .banner-inner-text h4 {
        font-size: 32px;
    }
    section.banner-section .banner-inner-text .bradcrumbs {
        font-size: 16px;
    }
    section.banner-section {
        margin-bottom: 21px;
    }
    .special__txt p {
        font-size: 16px;
        line-height: 25px;
        text-align: left;
    }
    #occult-section .occult-img {
        width: 250px;
        height: 300px;
        float: unset;
    }
    .sec-title1 h3 {
        font-size: 25px;
    }
    .occult-contain-txt {
        margin-top: 5px;
        text-align: start;
    }
    #vision-mission-section .vision-mission-boxx ul li {
    margin-top: 5px;
    }
    #vision-mission-section .vision-mission-boxx ul li {
        margin-bottom: 5px;
        font-size: 16px;
    }
    #vision-mission-section .vision-mission-boxx {
        border-radius: 15px;
    }
    .newsletter-sec-box .script-text h2 {
        color: #ffff;
        font-size: 20px;
        text-align: center;
        margin-bottom: 20px !important;
    }
    .sec-title.sec-title-home-3 {
        text-align: left;
                margin-top: 20px;
    }
    .sec-title h3 {
        font-size: 25px;
    }
    .sec-title h3 span:after {
        width: 15px;
    }
    .order-class1{ 
        order: 1;
    }
    .order-class2{
        order: 2;
    }
    .otherservices_area .video-gallery-bg .video-gallery {
        left: 10px;
        top: 10px;
    }
    .contact__box {
        min-height: unset;
        margin-bottom: 20px;
    }
    .contact__form .field_box {
        margin-bottom: 10px;
        text-align: start;
    }
    .contact__form .field_box .form-label {
        font-size: 14px;
    }
    .contact__form {
        margin-bottom: 20px;
    }
    .map__section iframe {
        height: 200px;
    }
}
@media screen and (max-width:320px){

}


/*Responsive Media Queries( Start-> )*/