/********** Template CSS **********/
:root {
    --primary: #16D5FF;
    --secondary: #999999;
    --light: #F2F8FE;
    --dark: #111111;
}

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

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 500 !important;
}


/*** 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: 32px;
    height: 32px;
}

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

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


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

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

.navbar .navbar-nav .nav-link {
    margin-right: 1px;
    padding: 25px 12px 25px 15px;
    color: #fff;
    font-weight: 500;
    outline: none;
}

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

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

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


    .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;
    }
}

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


/*** Header ***/
.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -80px;
    right: -80px;
    border: 80px solid;
    transform: rotate(45deg);
    opacity: 1;
    transition: .5s;
}

.service-item.bg-white::after {
    border-color: transparent transparent var(--light) transparent;
}

.service-item.bg-light::after {
    border-color: transparent transparent #FFFFFF transparent;
}

.service-item:hover::after {
    opacity: 0;
}


/*** Roadmap ***/
.roadmap-carousel {
    position: relative;
}

.roadmap-carousel::before {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    top: 20px;
    left: 0;
    border-top: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item .roadmap-point {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 6px;
    left: 50%;
    margin-left: -15px;
    background: #FFFFFF;
    border: 2px solid var(--primary);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-carousel .roadmap-item .roadmap-point span {
    display: block;
    width: 18px;
    height: 18px;
    background: var(--primary);
}

.roadmap-carousel .roadmap-item {
    position: relative;
    padding-top: 150px;
    text-align: center;
}

.roadmap-carousel .roadmap-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 115px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-right: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 111px;
    left: 50%;
    margin-left: -7px;
    transform: rotate(45deg);
    background: var(--primary);
}

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

.roadmap-carousel .owl-nav .owl-prev,
.roadmap-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.roadmap-carousel .owl-nav .owl-prev:hover,
.roadmap-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}


.owl-nav button {
    position: absolute;
    top: 50%;
    background-color: #000;
    color: #fff;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.owl-nav button.owl-prev {
    left: 10px;
}

.owl-nav button.owl-next {
    right: 10px;
}

.owl-dots {
    text-align: center;
    padding-top: 15px;
}

.owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    background: #ccc;
    margin: 0 3px;
}

.owl-dots button.owl-dot.active {
    background-color: #f69221;
}

.owl-dots button.owl-dot:focus {
    outline: none;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(246, 146, 33, 0.3) !important;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.owl-nav button:hover {
    background: rgba(246, 146, 33, 0.7) !important;
}

.owl-nav button img {
    padding: 10px;
}

.owl-nav button:focus {
    outline: none;
}

.bg-menu {
    background: #05687f;
}

.headtitle img {
    width: 65px;
    height: 60px;
    margin-top: 1px;
}

.headtitle h2 {
    font-size: 20px;
    text-transform: none;
    color: #fff;
}

.headtitle h2 span {
    font-size: 17px;
    color: #ffde62;
    font-weight: 600;
    display: block;
    position: relative;
}

.directorMsg {
    background: #ffffff;
    padding: 30px 0px 50px 0px;
}

.directorMsg .heading h2 {
    font-size: 20px;
    text-transform: none;
    color: #000;
    margin-top: 15px;
}

.directorMsg .heading h2 span {
    font-size: 24px;
    color: #f69221;
    text-transform: uppercase;
    font-weight: 600;
    position: relative
}

.directorMsg .content p {
    color: #000000;
    font-weight: 400;
    text-align: justify;
}

.logomargin {
    margin-top: -32px;
}

.logoTitle {
    display: none;
}

.logoBanner {
    display: block;
}

.linkApplyLoan {
    background: #FF463D;
    padding: 10px 25px;
    color: #ffffff;
    border-radius: 4px;
    font-style: italic;
    font-weight: bold;
}

.linkApplyLoan:hover {

    color: #F6FA2F;

}

.welcome {
    color: #5b5959;
    font-weight: 400;
    text-align: justify;
    line-height: 25px;
    padding: 0px 15px 10px 15px;

}

.welcome p {
    color: #373636;
    font-weight: 400;
    text-align: justify;
    line-height: 25px;
}

.card-block{
padding: 0px 10px 0px 13px;
    text-align: justify;
}

.bg-light-footer {
    background: #076a91;
    font-size: 14px;
    line-height: 21px;
}

.bg-light-footer h5 {
    color: #ffffff;
}

.bg-light-footer p {
    padding-bottom: 1px;
    margin-bottom: 8px;
}

.footerimg {
    max-width: 160px;
    text-align: center;
}

.footerimg p {
    font-size: 13px;
}

.directorMsg .content a {
    background: #528ac8;
    padding: 15px 35px;
    color: #fff;
    text-decoration: none;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    display: inline-block;
    margin-top: 20px;
}

.directorMsg .content a:hover {
    background: #f69221;
    color: #fff;
}

/*=======Top Link========*/
.top_links {
    position: relative;
    z-index: 9;
}

.top_links .topoanchor {
    text-align: center;
}

.top_links .topoanchor a {
    background: #528ac8;
    display: block;
    color: #fff;
    padding: 30px 0px 25px;
    text-decoration: none;
    font-weight: 400;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    margin-bottom: 3px;
}

.top_links .topoanchor a:hover {
    background: #28496c;
}

.top_links .col-4 {
    padding-right: 3px;
}

.top_links .col.nopad {
    padding-left: 3px;
    padding-right: 3px;
}

.top_links .col.hidethis {
    padding-right: 3px;
}

.top_links .col.pr15 {
    padding-right: 15px;
}

/*=======#Top Link========*/
.bottomlink a {
    color: #fff;
    background: #063a47;
    padding: 15px 20px;
    font-size: 14px;
    text-decoration: none;
}

.bottomlink a:hover {
    background: #f69221;
}

/*=======Slider========*/
.slider {
    min-height: 408px;
}

/*=======Slider========*/
.bg-loan-tab {
    background: #0D7DBB;
    padding: 20px 10px;
}

.inner_content .heading h1 {
    font-weight: 700;
    text-align: left;
    font-size: 1.8rem;
    color: #004164;
    position: relative;

}

.inner_content .heading h1::after {
    content: '';
    position: absolute;
    top: 50%;
    border-bottom: 4px solid;
    width: 12vw;
    margin: 0 20px;
    color: #f69221;
}

.inner_content h1 {
    font-size: 1.7rem;
    line-height: 25px;
    margin-bottom: 15px;
    font-weight: 700;
    margin-top: 15px;
}

.inner_content h2 {
    font-size: 1.5rem;
    line-height: 25px;
    margin-bottom: 15px;
    font-weight: 700;
    margin-top: 15px;
}

.inner_content h3 {
    font-size: 1.5rem;
    line-height: 25px;
    margin-bottom: 15px;
    font-weight: 500;
    margin-top: 15px;
}

.inner_content ol {
    padding-left: 20px
}

.inner_content ol li {
    list-style: decimal;
    position: relative;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 8px;
    padding-left: 10px;
    margin-top: 10px;
}

.inner_content ol li::before {
    display: none
}

.inner_content table {
    margin: 25px 0;
    width: 100%;
    border-radius: 10px;
    border: 1px solid;
    border-collapse: inherit
}

.inner_content table thead {
    font-size: 1.9rem;
    font-weight: 700
}

.inner_content table td,
.paragraph-rte table th {
    text-align: left;
    line-height: 22px;
    padding: 9pt;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000
}

.inner_content table td:last-child,
.paragraph-rte table th:last-child {
    border-right: 0
}

.inner_content table tr:last-child td {
    border-bottom: 0
}

.inner_content table thead tr td {
    border-bottom: 1px solid #000 !important
}

.inner_content .heading h1 span {
    font-size: 26px;
    color: #f69221;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    position: relative
}

.inner_content .content p {
    text-align: justify;
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 28px;
    color: #0A0909;
}

.inner_content ul {
    padding-left: 0;
    margin-left: 1.75em;
    list-style-type: none;
    margin: 10px 30px 0px;
}

.inner_content ul li {
    position: relative;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 10px;
    background: url(../images/tick.png) no-repeat;
    padding-left: 27px;
    line-height: 21px;
    color: #1b1919;

}

.inner_content strong {
    color: #222222;
    font-weight: 700 !important;
}

.inner_content .about-image {
    position: relative;
    text-align: right;
    padding-left: 100px;

}

.inner_content .about-image img {
    border-radius: 0;
}

.inner_content .about-image img:nth-child(2) {
    position: absolute;
    left: 10px;
    top: 60px;
    z-index: 1;
    border: 8px solid #ffff;
}

.inner_content .about-video {
    text-align: center;
    position: absolute;
    bottom: 160px;
    margin: auto;
    left: 0;
    right: 50px;
}

.inner_content .about-video .video-btn {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    color: #ff6015;
    position: relative;
    z-index: 1;
}

.inner_content .about-video .video-btn::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    border: 1px solid #ffffff;
    -webkit-animation: ripple 2s linear infinite;
    animation: ripple 2s linear infinite;
}

.inner_content .about-video .video-btn i {
    font-size: 35px;
    position: relative;
    top: 5px;
    left: 4px;
}

.inner_content .bx {
    font-family: 'boxicons' !important;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    display: inline-block;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.inner_content .about-video .video-btn::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    border: 1px solid #ffffff;
    -webkit-animation: ripple 2s linear 1s infinite;
    animation: ripple 2s linear 1s infinite;
}


.full-pattren {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: url(../images/transparent-pattren.png);
}

/*========.breadcrumb========*/
#brcm {
    float: right;
}

#brcm .breadcrumb {
    background: transparent;
    padding: 0px;
    margin-bottom: 0px;
}

#brcm .breadcrumb li a {
    color: #f69221;
    font-size: 12px;
}

#brcm .breadcrumb h3 {
    color: #f69221;
    font-size: 18px;
}

#brcm .breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: #666666;
    content: "|";
    margin-top: -2px;
}

.pro-tb {
    margin: 0;
    border: 1px solid #d3d3d3;
    border-radius: 8px;

    background-color: #f2f5f6;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f5f6), to(#c8d7dc));
    background-image: -webkit-linear-gradient(top, #f2f5f6, #c8d7dc);
    background-image: -moz-linear-gradient(top, #f2f5f6, #c8d7dc);
    background-image: -ms-linear-gradient(top, #f2f5f6, #c8d7dc);
    background-image: -o-linear-gradient(top, #f2f5f6, #c8d7dc);
    background-image: linear-gradient(to bottom, #f2f5f6, #c8d7dc);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#f2f5f6, endColorstr=#c8d7dc);
}

.pro-tb img {
    padding: 0.7em 7em;
    background-color: #f2f5f6;
    width: 100%;
}

.pro-tb h4 {
    font-size: 18px;
    margin: 0 0 0;
    text-align: center;
    font-weight: 700;
    padding: 1em 0;
    alignment-adjust: central;
    background: #004164;
    color: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.aboutus-page {
    background: url(../uploads/aboutus.jpg);
    padding: 90px 0px 0px 0px;
}

.boardofdir-page {
    background: url(../uploads/boardofdir.jpg);
    padding: 90px 0px 0px 0px;
}

.calculator-page {
    background: url(../uploads/calculator.jpg);
    padding: 90px 0px 0px 0px;
}

.loan-page {
    background: url(../uploads/loan.jpg);
    padding: 90px 0px 0px 0px;
}

.society-page {
    background: url(../uploads/aboutbg.png);
    padding: 90px 0px 0px 0px;
}

.product-page {
    background: url(../uploads/ourproduct.jpg);
    padding: 90px 0px 0px 0px;
}

.services-page {
    background: url(../uploads/services.jpg);
    padding: 90px 0px 0px 0px;
}

.intreast-page {
    background: url(../uploads/intrestrate.jpg);
    padding: 90px 0px 0px 0px;
}

.gallery-page {
    background: url(../uploads/gallery.jpg);
    padding: 90px 0px 0px 0px;
}

.branches-page {
    background: url(../uploads/branches.jpg);
    padding: 90px 0px 0px 0px;
}

.aboutus {
    background: url(../images/aboutbg.png);
    padding: 50px 0px 50px 0px;
    padding: 90px 0px 0px 0px;
}

.aboutus .heading h2 {
    font-size: 20px;
    text-transform: none;
    color: #000;
    margin-top: 15px;
}

.aboutus .heading h2 span {
    font-size: 26px;
    color: #f69221;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    position: relative
}

.aboutus .content p {
    color: #fff;
    font-weight: 300;
    text-align: justify;
}

.aboutus .content a {
    background: #528ac8;
    padding: 15px 35px;
    color: #fff;
    text-decoration: none;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    display: inline-block;
    margin-top: 20px;
}

.aboutus .content a:hover {
    background: #f69221;
    color: #fff;
}

/*=========gallerythumb============*/
#gallerythumb {
    padding: 0px 0px 70px;
}

#gallerythumb .r_tagline_box {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

#gallerythumb .r_tagline_box h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#gallerythumb .r_tagline_box h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: uppercase;
}

#gallerythumb .r_tagline_box h3 span {
    font-size: 16px;
    margin-bottom: 30px;
    display: block;
    font-weight: 400;
    text-transform: none;
}

#gallerythumb .r_tagline_box p {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    padding: 0px;
    margin: 0;
    text-transform: none;
}

#gallerythumb .r_tagline_box p span {
    color: #ee1c25
}

#gallerythumb .r_tagline_box .r_slider_link {
    text-align: center;
}

#gallerythumb .r_tagline_box .r_slider_link a {
    padding: 10px 20px;
    color: #fff;
    border: 1px solid #fff;
    display: inline-block;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #ee1c25
}

#gallerythumb .r_tagline_box .r_slider_link a:hover {
    color: #fff;
    border: 1px solid #fff;
    background: #000
}

#gallerythumb .r_tagline_box p.nomar {
    text-align: justify;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
}

#gallerythumb .r_tagline_box ul {
    margin: 0px;
    padding: 0px 30px;
}

#gallerythumb .r_tagline_box .wrapper {
    transition: .4s all ease-in-out;
}

#gallerythumb .r_tagline_box .wrapper:hover {
    transform: scale(1.03);
}

#gallerythumb .r_tagline_box .wrapper .spider {
    margin: 0px auto;
    border: 35px solid transparent;
    border-image-source: url(../images/border-img-gallery.png);
    border-image-slice: 46 49;
    border-image-repeat: round;
}

.c_gallery .faces .item {
    width: 100%;
    position: relative;
}

.c_gallery .faces .item {
    text-decoration: none;
}

.c_gallery .faces .item .pf_details {
    padding: 5px;
    text-align: center;
    border: 1px solid #f5f5f5;
    background: #fff;
}

.c_gallery .faces .item .pf_details .img {
    width: 100%;
    min-height: 250px;
    position: relative;
    height: 250px;
    overflow-y: hidden;
}

.c_gallery .faces .item .pf_details p {
    font-size: 16px;
    font-weight: 600;
    color: #2b2b2b;
    padding-top: 15px;
}

.c_gallery .faces .item .pf_details .pf_details_details p {
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 225px;
    text-align: center;
    margin: 0 auto;
    font-weight: 300;
    padding-top: 4px;
}


.c_gallery .faces .item .pf_details .img .blur {
    filter: blur(2px);
    -webkit-filter: blur(2px);
}

.c_gallery .faces .item .pf_details .img img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 99;
}

/*** Footer ***/
.footer .bor_right {
    border-right: 1px solid #404040;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 1px;
    padding: 0;
    text-align: left;
    color: #F2F2F2;
    font-weight: normal;
    font-size: 14px;
    text-transform: capitalize;
    transition: .3s;
}

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

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

.footer .btn.btn-square {
    color: var(--primary);
    border: 1px solid var(--primary);
}

.footer .btn.btn-square:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.footer .copyright {
    padding: 10px 0;
    border-top: 1px solid rgba(17, 17, 17, .1);
    background: #063a47;
    ;
}

.footer p {
    color: #fafafa;
}

.footer .copyright a {
    color: var(--primary);
}

.footer .copyright a:hover {
    color: var(--dark);
}