@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
}

:root {
  --font-14: 14px;
  --font-16: 16px;
  --font-18: 18px;
  --font-22: 22px;
  --font-25: 25px;
  --font-35: 30px;
  --font-45: 45px;
  --primary: #090040;
  --nav-color: #090040;
  --secondary-dark: #CC66DA;
  --secondary: #dcc9fd;
  --secondary-light: #f1e9ff;
  --white: #fff;
  --black: #000;
  --text: #555;
  --pad-30: 30px;
  --pad: 100px;
  --half-pad: 50px;
  --pad-positive: 75px;
  --pad-negative: -75px;
  --half-pad-negative: -50px;
  --after-image: 10px;
  --after-image-neg: -50px;
}

@media (max-width: 991px) {
  :root {
    --font-18: 18px;
    --font-22: 20px;
    --font-25: 22px;
    --font-35: 30px;
    --font-45: 40px;
    --pad-30: 30px;
    --pad: 75px;
    --half-pad: 40px;
    --pad-positive: 70px;
    --pad-negative: -70px;
    --half-pad-negative: -40px;
    --after-image: 10px;
    --after-image-neg: -40px;
  }
}
@media (max-width: 768px) {
  :root {
    --font-16: 15px;
    --font-18: 17px;
    --font-22: 18px;
    --font-25: 20px;
    --font-35: 25px;
    --font-45: 35px;
    --pad: 50px;
  }
}
@media (min-width: 575px) and (max-width: 768px) {
  .col-xs-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}
body {
  font-family: "Inter", sans-serif;
  font-size: var(--font-16);
  color: var(--text);
}
body.activeMenu {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: var(--primary);
}

.mt-neg-10 {
  margin-top: var(--after-image-neg);
}

@media (min-width: 1200px) {
  .small-container {
    max-width: 1140px;
  }
}
.panel {
  padding-top: var(--pad);
  padding-bottom: var(--pad);
}

.half-panel {
  padding-top: var(--half-pad);
  padding-bottom: var(--half-pad);
}

.panel-top {
  padding-top: var(--pad);
}

.panel-bottom {
  padding-bottom: var(--pad);
}

.half-panel-top {
  padding-top: var(--half-pad);
}

.half-panel-bottom {
  padding-bottom: var(--half-pad);
}

.light-back {
  background-color: var(--secondary-light);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--primary);
}

h2,
.h2 {
  font-size: var(--font-35);
  margin-bottom: var(--half-pad);
  color: var(--primary);
}
h2::after,
.h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--secondary);
  margin-top: 10px;
}

h4,
.h4 {
  font-size: var(--font-22);
  margin-bottom: var(--pad-30);
}

h6,
.h6 {
  font-size: var(--font-18);
  margin-bottom: 20px;
  display: inline-block;
  color: var(--primary);
}

.center-head {
  text-align: center;
}
.center-head::after {
  margin-left: auto;
  margin-right: auto;
}

.btn:not(.btn-danger) {
  display: inline-block;
  padding: 8px 30px;
  font-size: var(--font-14);
  text-transform: uppercase;
  color: var(--primary);
  background-color: var(--secondary);
  border: solid 2px var(--secondary);
  font-family: "Montserrat", sans-serif;
  border-radius: 0;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin-top: 20px;
}
.btn:not(.btn-danger):hover {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 2px 2px 1px 1px rgba(0, 0, 0, 0.25);
}

.btn-primary {
  color: var(--white);
  background-color: var(--primary);
  border: solid 2px var(--primary);
}
.btn-primary.active, .btn-primary:hover {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}

.top-header {
  color: var(--white);
  background-color: var(--primary);
  padding: 10px;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 99;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px 0;
}
.main-header.active {
  background-color: var(--white);
  box-shadow: 0 0px 10px 0px rgba(0, 0, 0, 0.5);
}
.main-header.active .header-logo {
  height: 50px;
}

.header-logo {
  height: 70px;
  transition: all 0.3s ease-in-out;
}

.main-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.main-nav-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.main-nav {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  gap: 0;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.main-nav > li {
  position: relative;
}
.main-nav > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav > li:hover > a {
  background-color: var(--secondary-light);
  color: var(--primary);
}
.main-nav > li > a {
  color: var(--primary);
  padding: 7px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  gap: 5px;
  font-weight: 700;
  justify-content: space-between;
}

.sub-menu {
  position: absolute;
  top: 100%;
  list-style-type: none;
  left: 0;
  min-width: 100%;
  width: -moz-max-content;
  width: max-content;
  margin: 0;
  padding: 0;
  background-color: var(--secondary-light);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
}
.sub-menu a {
  display: block;
  padding: 7px 20px;
  font-size: var(--font-14);
  color: var(--primary);
}
.sub-menu a:hover {
  color: var(--white);
  background-color: var(--primary);
}

.toggler,
.menu-close {
  color: var(--primary);
  width: 50px;
  font-size: 22px;
  margin-left: auto;
  padding: 10px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
.toggler:hover,
.menu-close:hover {
  color: var(--white);
  background-color: var(--primary);
}

.scroll-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  border-bottom: solid 2px var(--secondary-light);
  border-right: solid 2px var(--secondary-light);
  padding: 10px 15px;
  cursor: pointer;
  display: none;
  z-index: 999;
}

.whats-app-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #25D366;
  color: var(--white);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  font-size: 25px;
  aspect-ratio: 1/1;
  width: 47px;
  border: solid 3px #25D366;
  display: flex;
  justify-content: center;
  align-items: center;
}
.whats-app-btn:hover {
  background-color: var(--white);
  color: #25D366;
}

@media (max-width: 991px) {
  .main-nav-box {
    position: fixed;
    z-index: 5;
    top: 0;
    right: -350px;
    width: 350px;
    max-width: 100%;
    height: 100%;
    background-color: var(--white);
    overflow: auto;
    display: block;
    padding-bottom: 70px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
  }
  .main-nav-box.active {
    right: 0;
  }
  .main-nav {
    display: block;
    padding-top: 30px;
    width: 100%;
  }
  .main-nav > li:hover > a {
    background-color: var(--primary);
    color: var(--white);
  }
  .main-nav li {
    font-size: 22px;
    font-weight: 500;
  }
  .main-nav a {
    display: block;
  }
  .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
    position: relative;
    border-left: solid 5px var(--primary);
    background: var(--white);
    border-top: solid 2px var(--primary);
    width: auto;
    transition: none;
    margin: 0 10px;
    min-width: auto;
    display: none;
  }
  .sub-menu a {
    font-size: 18px;
  }
  .menu-toggler {
    position: absolute;
    top: 0;
    right: 0;
    height: 47px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    cursor: pointer;
  }
}
.ban-box {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.ban-cont {
  max-width: 800px;
  text-wrap: balance;
  font-size: var(--font-25);
  margin-bottom: 30px;
}

.banner-swiper .swiper-slide {
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--primary);
}
.banner-swiper .ban-box {
  min-height: 70vh;
}

.ban-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(var(--secondary), var(--primary));
  opacity: 0.5;
  border-bottom: solid 10px transparent;
}

.ban-content {
  position: relative;
  z-index: 1;
  padding-left: 10px;
  padding-right: 10px;
  color: var(--white);
}
.ban-content h2,
.ban-content .h2 {
  color: var(--white);
  font-size: var(--font-45);
  margin-bottom: 30px;
}
.ban-content h2::after,
.ban-content .h2::after {
  display: none;
}

.banner-pagination {
  bottom: 20px !important;
}

.banner-pagination .swiper-pagination-bullet {
  background-color: var(--secondary);
}

.ban-frm-box {
  position: relative;
  z-index: 1;
}

.ban-frm {
  background-color: var(--primary);
  margin-top: var(--half-pad-negative);
  position: relative;
  width: calc(100% - 10px);
  padding-left: var(--half-pad);
  padding-right: var(--half-pad);
}
.ban-frm::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 10px;
  left: 10px;
  background-color: var(--secondary);
  z-index: -1;
}

.ban-frm-main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: var(--white);
}
.ban-frm-main label {
  width: 100%;
  font-size: var(--font-14);
}
.ban-frm-main input {
  border-radius: 0;
}

.background-sec {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.fixed-back {
  background-attachment: fixed;
}

.dark-overlay {
  position: relative;
}
.dark-overlay::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--black);
  opacity: 0.5;
}

.light-txt {
  color: var(--white);
}
.light-txt * {
  color: var(--white);
}

.upper-cont {
  position: relative;
  z-index: 1;
}

.choose-box {
  background-color: var(--white);
  padding: 30px;
  height: 100%;
  text-align: center;
  font-size: var(--font-14);
  transition: all 0.3s ease-in-out;
}
.choose-box p:last-of-type {
  margin-bottom: 0;
}
.choose-box h6::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--secondary);
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}
.choose-box:hover {
  transform: scale(1.04);
  box-shadow: 10px 10px 0px 0px var(--secondary);
}

.choose-icon {
  font-size: 50px;
  margin-bottom: 15px;
  color: var(--primary);
  display: block;
}

.copyright-box {
  background-color: var(--primary);
  color: var(--white);
  font-size: var(--font-14);
  font-weight: 200;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  border-top: solid 2px var(--secondary);
}
.copyright-box a {
  font-weight: 500;
}
.copyright-box a:hover {
  color: var(--white);
}

.form-group {
  display: flex;
  flex-direction: column;
  height: 100%;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
}

textarea,
input[type=text],
input[type=tel],
input[type=email],
input[type=number],
input[type=password],
select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 0 !important;
  border-bottom: solid 2px var(--primary);
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
textarea:focus,
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
select:focus {
  outline: none;
  border-color: #ccc;
  border-bottom-color: var(--secondary);
  box-shadow: none;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: none;
}

.form-check-input:focus {
  box-shadow: none;
}

.main-footer {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  background-image: linear-gradient(var(--secondary-light), var(--primary));
}

.footer-logo {
  max-height: 100px;
  width: auto;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.social-icons a {
  width: 30px;
  height: 30px;
  background-color: var(--white);
  color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.social-icons a:hover {
  background-color: var(--secondary);
  transform: translateY(-5px);
}

.footer-head {
  font-size: var(--font-25);
  color: var(--white);
  margin-bottom: 40px;
}

.footer-link {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 20px;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  margin-bottom: 40px;
  row-gap: 10px;
}
.footer-link li {
  list-style-type: none;
}
.footer-link a {
  color: var(--white);
}
.footer-link a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.foot-cntct-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.foot-cntct-item {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}

.foot-cntct-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 30px;
  aspect-ratio: 1/1;
  color: var(--white);
  font-size: 22px;
}

.foot-cntct-txt {
  font-weight: 700;
  color: var(--white);
}
.foot-cntct-txt h5 {
  color: var(--secondary);
  font-size: var(--font-14);
  text-transform: uppercase;
  font-weight: 300;
}
.foot-cntct-txt a:hover {
  color: var(--secondary-light);
}

.cntct-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cntct-item {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}

.cntct-icon {
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 50px;
  min-width: 50px;
  aspect-ratio: 1/1;
  color: var(--white);
  font-size: 22px;
}

.cntct-txt {
  font-weight: 700;
}
.cntct-txt a {
  color: var(--primary);
}
.cntct-txt a:hover {
  color: var(--secondary);
}

.cntct-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

@media (max-width: 991px) {
  .mt-neg-10 {
    margin-top: var(--half-pad);
  }
  .serv-content {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .mar-lg-top {
    margin-top: var(--pad) !important;
  }
}
.home-cntct {
  background-color: var(--primary);
  padding: var(--half-pad);
  position: relative;
  top: var(--pad-negative);
  margin-top: var(--pad-positive);
}
.home-cntct h3 {
  color: var(--white);
}

.client-swiper .swiper-slide {
  width: auto !important;
  flex-shrink: 0;
}
.client-swiper img {
  max-height: 100px;
  width: auto;
}

.char-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: var(--primary);
  text-align: center;
}
.char-box .char-ico {
  font-size: 50px;
}
.char-box h4 {
  margin-bottom: 5px;
}
.char-box p {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .char-box .char-ico {
    font-size: 25px;
  }
}
/* Tab Styling */
.custom-tabs li {
  width: 100%;
}

.custom-tabs .nav-link {
  font-weight: 600;
  color: var(--text);
  padding: 12px 20px;
  border: none;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  background-color: var(--secondary-light);
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 0;
  width: 100%;
}

.custom-tabs .nav-link:hover {
  color: var(--primary);
  border-bottom-color: transparent;
}

.custom-tabs .nav-link.active {
  background-color: var(--primary);
  color: var(--white);
  border-bottom: 3px solid var(--primary);
  box-shadow: 0 -2px 5px rgba(0, 123, 255, 0.1);
}

/* Icon Styling */
.tab-icon {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Tab Content Styling */
.tab-content {
  background: #fff;
  border-radius: 0 0 8px 8px;
  border-top: none;
}

.rate-main-box .title {
  color: var(--secondary-dark);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}
.rate-main-box .rate-box {
  background-color: var(--white);
  padding: 20px;
  text-align: center;
  height: 100%;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.23);
  transition: all 0.3s ease-in-out;
  color: var(--black);
  font-weight: 700;
}
.rate-main-box .rate-box:hover {
  transform: translateY(-5px);
}

.rates-table {
  overflow: auto;
}
.rates-table table {
  border: solid 1px var(--primary);
}
.rates-table th {
  background-color: var(--primary);
  color: var(--white);
  border: solid 1px var(--secondary-light);
}
.rates-table td {
  background-color: var(--white);
  font-weight: 500;
  color: var(--black);
  border: solid 1px var(--primary);
}
.rates-table th,
.rates-table td {
  padding: 15px;
  white-space: nowrap;
}

.loan-list {
  margin: 0;
  padding: 0;
}
.loan-list li {
  font-size: var(--font-18);
  font-weight: 600;
  color: var(--primary);
  list-style-type: none;
  position: relative;
  padding-left: 40px;
  padding-bottom: 5px;
}
.loan-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  background-image: url(../images/check.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.accordion-button {
  font-weight: 600;
  font-size: var(--font-25);
  color: var(--primary);
  gap: 30px;
}
.accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.accordion-button:not(.collapsed) {
  color: var(--white);
  background-color: var(--primary);
}
.accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(98deg) brightness(100%) contrast(102%);
}

.accordion-item {
  border: none;
  border-bottom: 1px solid var(--secondary-light);
  margin-bottom: 20px;
}

.accordion-body {
  background: var(--secondary-light);
  color: var(--primary);
}

.inner-banner {
  background-color: var(--primary);
}
.inner-banner h1 {
  color: var(--white);
  text-align: center;
}

.custom-list {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style-type: square;
}
.custom-list li::marker {
  font-size: 20px;
  color: var(--primary);
}

.big-txt {
  font-size: var(--font-22);
}

form a {
  color: var(--primary);
  text-underline-offset: 4px;
}
form a:hover {
  text-decoration: underline;
}

.frm-shadow {
  box-shadow: 10px 10px 0px 0px var(--primary);
}

.txt-color {
  color: var(--text);
}

.top-bor {
  border-top: solid 5px var(--primary);
}

.apply-frm-1 {
  text-align: center;
  padding: 20px 20px 10px !important;
  background-color: #39927E;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
}
.apply-frm-1 input:not([type=submit]) {
  border-radius: 5px !important;
  border: 2px solid #e12c3b;
  font-size: 17px;
  padding: 15px;
  margin-bottom: 10px;
  font-weight: 600;
}
.apply-frm-1 input[type=submit] {
  background: #e12c3b 0% 0% no-repeat padding-box;
  border-radius: 5px;
  text-align: center;
  font-size: 17px;
  color: #ffffff;
  font-weight: 700;
  border: none;
  padding: 15px;
}
.apply-frm-1 input[type=submit]:hover {
  transform: translate(0);
  box-shadow: none;
  background: #e12c3b 0% 0% no-repeat padding-box;
  color: #ffffff;
}

.frm-term {
  text-align: center;
  font: Medium 20px/30px Roboto;
  color: #FFFFFF;
  font-size: 12px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.frm-term a {
  color: #3ae982;
  font-weight: 900;
}

.frm-head {
  text-align: center;
  letter-spacing: 0px;
  color: #FFF;
  opacity: 1;
  margin-bottom: 35px;
  margin-top: 15px;
  font-size: 32px;
  font-weight: 600;
}

.about-title {
  background-color: #00A759;
  margin: 0 auto 20px;
  border-radius: 15px;
  font-family: Montserrat;
  width: 80%;
}

.about-text {
  padding-top: 15px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 15px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #222222;
}

.regForm {
  background-color: #00A759;
  margin: 30px auto 20px;
  border-radius: 21px;
  padding: 20px;
  width: 100%;
  min-width: 300px;
  color: white;
  font-family: "Montserrat", sans-serif;
}
.regForm label {
  font-weight: 400;
}
.regForm input:not([type=submit]),
.regForm textarea,
.regForm select {
  border-radius: 0.25rem !important;
  border: none;
  background-color: #fff;
  padding: 0.375rem 0.75rem;
}

.next-btn {
  background-color: #cf3141;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  font-family: Montserrat;
  cursor: pointer;
  box-shadow: 0px 7px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 7px;
  opacity: 1;
  font-weight: 600;
}

.prev-btn:hover {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */