@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');

/* ====== Common styles ====== */

:root {
    --main-font-family: 'Poppins', sans-serif;
    ;
    --main-color: #009286;
    --hover-main-color: #d8234c;
    --white-color: #ffffff;
    --black-color: #2A3F65;
    --paragraph-color: #5D7079;
    --font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    ;
}

*:hover {
    transition: 0.5s all;
}

html {
    scroll-behavior: smooth
}

body {
    position: relative;
    min-height: 100vh;
    line-height: 1.5;
    width: 100%;
    font-size: var(--font-size);
    background: #f9f9f9;
}

:focus,
button:focus,
.btn:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none
}

a,
button,
input[type=submit] {
    cursor: pointer
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

a {
    text-transform: inherit;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

a:hover,
a :focus {
    text-decoration: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

a:focus {
    outline: 0 solid;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.5;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    font-size: var(--font-size);
    line-height: 1.7;
}

.theme-btn {
    color: #fff;
    background: #48679f;
    text-align: center !important;
    font-size: 16px;
    display: inline-block;
    padding: 5px 20px;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    z-index: 1;
}

.theme-btn.topbtn {
    font-size: 14px;
    adding: 5px 10px;
}

.theme-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #d8234c;
    transform-origin: right center;
    transform: scale(0, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.theme-btn:hover {
    text-decoration: none !important;
}

.theme-btn:hover:before,
.theme-btn:focus:before,
.theme-btn.active:before {
    transform-origin: left center;
    transform: scale(1, 1);
}

/* ===== Navbar ==== */
.topbar-area {
    background-color: var(--black-color);
    padding-top: 12px;
    padding-bottom: 12px;
}

.topbar-information {
    padding-left: 0;
    margin-bottom: 0;
}

.topbar-information li {
    list-style-type: none;
    display: inline-flex;
    font-size: 14px;
    margin: 0 10px;
    position: relative;
}

.topbar-information li::before {
    content: "";
    position: absolute;
    top: 2px;
    right: -10px;
    width: 1px;
    height: 16px;
    background-color: var(--white-color);
}

.topbar-information li.btnli::before {
    display: none;
}

.topbar-information li:last-child::before {
    display: none;
}

.topbar-information li a {
    color: rgba(255, 255, 255, .8);
}

.topbar-information li a:hover {
    color: var(--white-color);
    text-decoration: underline;
}

.navbar-nav.menu-ul li .dropdown-menu {
    font-size: 14px;
    border-color: #2a3f65;
}

.navbar-nav.menu-ul li .dropdown-menu li a {
    padding-top: 8px;
    padding-bottom: 8px;
}

.nav-link {
    color: var(--black-color);
}

.nav-link:hover {
    color: var(--hover-main-color);
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: var(--white-color);
    background-color: var(--black-color);
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 15px;
    padding-left: 15px;
}

.img-mobile {
    height: 50px;
}

/* ==== Slider ========== */
.owl-carousel .owl-nav button {
    min-width: 40px;
    min-height: 40px;
    position: absolute;
    z-index: 100;
    border-radius: 35px !important;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.20) !important;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: #869791 !important;
    color: #FFF;
    text-decoration: none;
}

.owl-carousel .owl-next {
    position: absolute;
    right: 5px !important;
    top: 40%;
    /* right: 0; */
}

.owl-carousel .owl-prev {
    position: absolute;
    left: 5px !important;
    top: 40%;
}

.owl-carousel .owl-prev span,
.owl-carousel .owl-next span {
    font-size: 30px;
    line-height: 22px;
}


/* ========= Service ========== */
.services-block {
    background-image: url(../img/service-bg.png);
    background-repeat: no-repeat;
    background-position: top;
}

.services-block .services-box {
    padding: 50px 30px;
    background: var(--white-color);
    box-shadow: 0px 3px 8px rgb(47 65 129 / 20%);
    border-radius: 20px;
    height: 100%;
    transform: translateY(0px);
    transition: 0.5s ease-in-out;
}

.services-block .services-box:hover {
    box-shadow: 0px 3px 8px rgb(47 65 129 / 20%);
    transform: translateY(-10px);
    transition: 0.5s ease-in-out;
}

.services-block .services-box .boxicon {
    width: 140px;
    height: 140px;
    background: #d0f5fe;
    border-radius: 70px;
    margin: auto;
    margin-bottom: 30px;
}

.services-block .services-box .boxicon img {
    width: 70px;
}

/* ====== finance block =========== */
.finance-block h3 {
    color: var(--black-color);
    margin-bottom: 16px;
}

.finance-block h5 {
    color: var(--black-color);
    margin-bottom: 16px;
}

.finance-block h3 .business-value,
.finance-block h5 .business-value {
    color: #333;
    display: block;
    font-size: 18px;
}

.main-bg {
    background: #f5faff !important;
}

.finance-block .finance-img-bg {
    background: #d9ebf6;
    border-radius: 10px;
}

/* ========= Inner pages ============ */
.innerpage-title {

    position: relative;
    padding: 90px 0px 90px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.innerpage-title.aboutimage {
    background-image: url(../img/Innerpage/aboutus.jpg);
}

.innerpage-title.galleryimage {
    background-image: url(../img/Innerpage/gallery.png);
}

.innerpage-title.servicesimage {
    background-image: url(../img/Innerpage/services.png);
}

.innerpage-title.depositsimage {
    background-image: url(../img/Innerpage/deposits.png);
}

.innerpage-title.interestsimage {
    background-image: url(../img/Innerpage/interests.png);
}

.innerpage-title.faqimage {
    background-image: url(../img/Innerpage/faq.png);
}

.innerpage-title.calculatorimage {
    background-image: url(../img/Innerpage/calculator.png);
}

.innerpage-title.complaintimage {
    background-image: url(../img/Innerpage/complaint.png);
}

.innerpage-title.contactusimage {
    background-image: url(../img/Innerpage/contact-us.png);
}

.innerpage-title.downloadimage {
    background-image: url(../img/Innerpage/download.png);
}

.innerpage-title:before {
    position: absolute;
    left: 0px;
    top: 0px;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
}

.innerpage-title .content {
    position: relative;
    padding-left: 20px;
    border-left: 4px solid var(--hover-main-color);
}

.innerpage-title .content h1 {
    position: relative;
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.innerpage-title .content h1 span {
    position: relative;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.innerpage-title .page-breadcrumb {
    position: relative;
}

.innerpage-title .page-breadcrumb li {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    padding-right: 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

.innerpage-title .page-breadcrumb li a {
    position: relative;
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.innerpage-title .page-breadcrumb li:after {
    position: absolute;
    content: "\f105";
    right: -4px;
    top: 1px;
    color: #ffffff;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.innerpage-title .page-breadcrumb li:last-child {
    padding-right: 0px;
    margin-right: 0px;
}

.innerpage-title .page-breadcrumb li:last-child:after {
    display: none;
}

.innerpage-subtitle,
.maintitle {
    padding: 5px 0;
    display: inline-block;
    border-bottom: 2px solid var(--hover-main-color);
    color: var(--black-color);
}

.innerpage-ul {
    padding-inline-start: 40px;
    padding-bottom: 1rem;
}

.innerpage-ul li {
    list-style: disc;
    padding-bottom: 5px;
}

.innermain-wrapper .inner-box {
    padding: 10px 20px;
    background: #fbfafc;
    box-shadow: 0px 3px 8px rgb(47 65 129 / 20%);
    border-radius: 20px;
    height: 100%;
    transform: translateY(0px);
    transition: 0.5s ease-in-out;
}

.innermain-wrapper .inner-box:hover {
    box-shadow: 0px 12px 24px rgb(42 63 101 / 44%);
    transform: translateY(-10px);
    transition: 0.5s ease-in-out;
}

.innermain-wrapper .inner-box i {
    font-size: 30px;
    margin-right: 20px;
    line-height: 55px;
    color: var(--hover-main-color);
}

.bankdetails-ul {}

.bankdetails-ul li {
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 7px;
    padding: 2px 10px;
}

.bankdetails-ul .name {
    margin-bottom: 4px;
    font-size: 16px;
    color: var(--black-color);
    font-weight: 400;
}

.bankdetails-ul .position {
    margin-bottom: 4px;
    font-size: 15px;
    color: #676767;
}

.product {
    padding-bottom: 20px;
    background: #fbfafc;
    box-shadow: 0px 3px 8px rgb(47 65 129 / 20%);
    border-radius: 5px;
    height: 100%;
    transform: translateY(0px);
    transition: 0.5s ease-in-out;
}

.product .product-media {
    display: block;
    position: relative;

}

.product .product-media .product-img {
    border-radius: 5px;
    object-fit: cover;
    width: 100%;
    height: 260px;
}

.product .product-media::before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    content: '+';
    color: #ffffff;
    font-size: 60px;
    background-color: rgba(254, 72, 59, 0.8);
    border-radius: 5px;
    pointer-events: none;
}

.product-media::before {
    opacity: 0;
    transform: scale(0.5);
    transition: .25s;
}

.product-media:hover::before {
    opacity: 1;
    transform: scale(1);
}

.product-title {
    margin-bottom: 0;
    color: var(--black-color);
    font-weight: 400;
    padding: 10px 10px 0 10px;
    font-size: 18px;
}

.product-title a {

    color: var(--black-color);
}

.product-meta {
    padding: 0 10px;
}

.accordion-item {

    background: #fbfafc;
    box-shadow: 0px 3px 8px rgb(47 65 129 / 20%);
    border-radius: 20px;
    height: 100%;
    transform: translateY(0px);
    transition: 0.5s ease-in-out;
    margin-bottom: 20px;
    border: 0;
}

.accordion-item .accordion-header .accordion-button {
    color: var(--black-color);
    font-weight: 600;
}

.accordion-body {
    line-height: 1.6;
    color: #000;
}

.contantus {
    padding: 20px;
    background: var(--white-color);
    box-shadow: 0px 3px 8px rgb(47 65 129 / 20%);
    border-radius: 20px;
    height: 100%;
    transform: translateY(0px);
    transition: 0.5s ease-in-out;
}

.nav-pills {
    border-right: 1px solid #ddd;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #48679f;
}

.location-wrapper .location-title {
    color: var(--hover-main-color);
    margin-bottom: 16px;
    font-size: 18px;
}

.location-wrapper .location-title i {
    min-width: 30px;
    min-height: 30px;
    background: #e9e9e9;
    box-shadow: 0px 2px 3px rgb(47 65 129 / 44%);
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.location-wrapper .location-content {
    font-size: 14px;
    color: #333;
}

/* ====== Footer ========== */
.footer-wrap {
    position: relative;
    z-index: 1;
    background-color: var(--black-color);
    background: url(../img/Gallery/4.png) no-repeat center center;
    background-size: cover;
    color: rgba(255, 255, 255, .8);
}

.footer-wrap:after {
    content: '';
    background: rgb(0 0 0 / 60%);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

.contact-footer,
.contact-footer li a {
    font-weight: 300;
    color: rgba(255, 255, 255, .8);
}

.contact-footer li {
    padding-bottom: 10px;
    display: flex;
    align-items: baseline;
}

.copyright-text {
    background: #48679f;
    text-align: center;
    padding: 5px;
}

.contact-footer li a:hover {
    color: var(--white-color);
    text-decoration: underline;
}

.emi-box {
    padding-bottom: 20px;
    background: #fbfafc;
    box-shadow: 0px 3px 8px rgb(47 65 129 / 20%);
    border-radius: 5px;
    transform: translateY(0px);
    transition: 0.5s ease-in-out;
}

._hidden {
    visibility: hidden;
    width: 100%;
    margin: 5px;
}

div.mycontainer {
    max-height: 400px;
    overflow-y: scroll;
    position: relative;
}

table.mycontainer {
    position: relative;
    border-collapse: collapse;
}

td.mycontainer,
th.mycontainer {
    padding: 0.25em;
}

.mycontainer thead th {
    position: -webkit-sticky; /* for Safari */
    position: sticky;
    top: 0;
    background: #000;
    color: #FFF;
}

    .mycontainer thead th:first-child {
        left: 0;
        z-index: 1;
    }

.mycontainer tbody th {
    position: -webkit-sticky; /* for Safari */
    position: sticky;
    left: 0;
    background: #FFF;
    border-right: 1px solid #CCC;
}

.mycontainer thead tr th {
    padding: 0px 5px;
    font-size: small;
    background-color: #2A3F65;
}

.mapouter {
    position: relative;
    text-align: right;
    width: 100%;
    height: 400px;
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
    width: 100%;
    height: 400px;
}

.gmap_iframe {
    width: 100% !important;
    height: 400px !important;
}
.marquee-top {
    position: absolute;
    top: 58px;
    z-index: 1075;
    font-size: 14px;
}
@media (max-width: 1469px) {
    .marquee-top {
        top: 73px;
    }
}

@media (max-width: 1170px) {
    .marquee-top {
        position: relative;
        top: 0;
        background: #fff;
        display: block;
    }
}
