@import url("../css/root.css");
@import url("../css/scrollbar.css");
@import url("https://fonts.googleapis.com/css2?family=Anek+Malayalam:wght@100..800&display=swap");
/* * {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
} */
body {
  font-family: var(--theme-font) !important;
  margin: 0;
  padding: auto;
  overflow-x: hidden;
  color: var(--black) !important;
}
a {
  color: inherit !important;
  text-decoration: none !important;
}
li {
  font-size: var(--default-font-size) !important;
}
.w-img {
  width: var(--full);
}
p {
  font-size: var(--default-font-size);
  font-family: var(--theme-font);
}
h4 {
  font-family: var(--theme-font);
  font-weight: var(--fw6) !important;
}
p,
span,
div {
  outline: none !important;
}
.w-80 {
  width: 90% !important;
}
.form-control {
  border: none;
  border: 1px solid var(--off-white);
  border-bottom: 1px solid var(--black) !important;
  border-radius: 6px !important;
  box-shadow: none;
}
.form-control:focus,
.form-control:hover {
  border: 1px solid var(--off-white);
  border-bottom: 1px solid var(--theme-color) !important;
  outline: none !important;
  box-shadow: none !important;
}
.form-control:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: var(--theme-color) !important;
}
option {
  font-family: var(--theme-font);
  font-size: var(--default-font-size);
}
.navbar-toggler {
  border: none !important;
}
.navbar-toggler:focus {
  box-shadow: none !important;
}
.navbar-text {
  font-weight: var(--fw6);
  color: var(--black) !important;
}
.navbar-text span a {
  color: var(--theme-color) !important;
  font-weight: var(--fw6);
  text-decoration: var(--no-decoration);
}
.navbar-text span a:hover {
  color: var(--theme-color);
}
.theme-radius {
  border-radius: var(--theme-border-radius);
}
.animate-img {
  height: auto;
  animation: pulse 2s infinite ease-in-out;
  transition: transform 0.3s ease;
}
@keyframes pulse {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(0.8);
  }
}
.sticky-top .loanitol-logo {
  width: 160px;
}
.icon-container {
  position: var(--relative);
  width: 15px;
  height: 15px;
  overflow: hidden;
  display: inline-block;
}
.icon-h {
  position: var(--absolute);
  width: var(--full);
  height: var(--full);
  opacity: 0;
  transform: translateY(var(--full));
  animation: changeIcon 9s infinite, moveTop 9s infinite;
}
.icon-h:nth-child(1) {
  animation-delay: 0s, 0s;
}
.icon-h:nth-child(2) {
  animation-delay: 3s, 3s;
}
.icon-h:nth-child(3) {
  animation-delay: 6s, 6s;
}
@keyframes changeIcon {
  0%,
  30% {
    opacity: 1;
  }
  33%,
  100% {
    opacity: 0;
  }
}
@keyframes moveTop {
  0% {
    transform: translateY(var(--full));
  }
  10%,
  30% {
    transform: translateY(0%);
  }
  33%,
  100% {
    transform: translateY(-var(--full));
  }
}
.custom-toggler {
  display: var(--flex);
  flex-direction: column;
  justify-content: space-between;
  width: 35px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.toggler-icon {
  width: var(--full);
  height: 2px;
  background-color: #333;
  border-radius: 2px;
  transition: var(--transitionEase);
}
.custom-toggler:hover .toggler-icon:nth-child(1) {
  transform: translateY(5px);
}
.custom-toggler:hover .toggler-icon:nth-child(2) {
  display: none;
}
.custom-toggler:hover .toggler-icon:nth-child(3) {
  transform: translateY(-5px);
}
.service_section_margin .btn {
  font-family: var(--theme-font);
  position: var(--relative);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--theme-color);
  color: rgb(0, 0, 0) !important;
  padding: 1% 2%;
  font-size: 13px;
  cursor: pointer;
  border-radius: var(--theme-border-radius);
  display: flex;
  align-items: center;
  width: max-content;
  gap: 8px;
  transition: 0.3s ease-in-out;
}
.service_section_margin .btn::before {
  content: "";
  position: var(--absolute);
  top: 0;
  left: -120%;
  width: 50%;
  height: var(--full);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  transform: skewX(-45deg);
  opacity: 0;
  transition: left 0.7s ease-in-out, opacity 0.3s ease-in-out;
}
.service_section_margin .btn:hover::before {
  left: 150%;
  opacity: 1;
}
.service_section_margin .btn:hover {
  background: var(--secondary-color);
  border: 1px solid var(--theme-color) !important;
  color: var(--white) !important;
}
.service_section_margin .btn:active {
  background: var(--secondary-color) !important;
  color: var(--white) !important;
  border: 1px solid var(--theme-color) !important;
}
.offcanvas-body {
  padding: 0px !important;
}
.offcanvas-body .navbar-nav .nav-item {
  border-bottom: 1px solid #efecec;
  width: var(--full);
}
.offcanvas-body .navbar-nav .nav-item .nav-link {
  padding: 5%;
  font-family: var(--theme-font);
  font-size: var(--default-font-size);
}
.offcanvas-body .navbar-nav .nav-item .nav-link i {
  margin-left: auto;
  margin-right: 0;
  float: right;
  margin-top: 8px;
  transition: transform 0.3s ease;
}
.offcanvas-body .navbar-nav .nav-item .nav-link .dropdown-menu {
  padding-left: 5% !important;
}
.offcanvas-body .navbar-nav .nav-item .dropdown-toggle::after {
  display: none;
}
.dropdown-menu {
  padding: 0% !important;
  border: none !important;
  border-radius: 0px !important;
  background: rgb(245, 244, 244);
  background: linear-gradient(180deg, #db2424 0%, #880404 var(--full))
}
.dropdown-menu .dropdown-item {
  padding: 3% 0% 3% 5% !important;
  font-family: var(--theme-font);
  font-size: var(--default-font-size);
  color:var(--white)!important;
}
.navbar-nav .dropdown-menu{
  border-top:1px solid #efecec!important;
}
.dropdown.show .dropdown-toggle i {
  transition: all linear 0.3s;
}
.dropdown-item{
  transition: var(--transition);
}
.dropdown-item:hover,
.dropdown-item:active{
  background:#071b23 !important;
  color:var(--white)!important;
  padding-left: 5.5%!important;
  transition: var(--transition);
}
.carouselOption {
  padding-left: 0px;
  font-family: var(--theme-font);
  position: var(--absolute);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  z-index: 100;
  color: var(--black);
  width: 82%;
}
.carouselOption h5 {
  font-size: 3vw;
  font-weight: var(--fw6);
}
.carouselOption h5 span {
  color: var(--theme-color) !important;
  display: block;
}
.carouselOption p {
  font-size: var(--default-font-size);
}
.carouselOption .btn {
  font-family: var(--theme-font);
  position: var(--relative);
  overflow: hidden;
  background: var(--theme-color);
  border: 2px solid var(--theme-color);
  color: var(--white) !important;
  padding: 0.8% 2%;
  font-size: 13px;
  cursor: pointer;
  border-radius: var(--theme-border-radius);
  display: var(--flex);
  align-items: center;
  width: max-content;
  gap: 8px;
  transition: var(--transition);
}
.carouselOption .btn::before {
  content: "";
  position: var(--absolute);
  top: 0;
  left: -120%;
  width: 50%;
  height: var(--full);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) var(--full)
  );
  transform: skewX(-45deg);
  opacity: 0;
  transition: left 0.7s ease-in-out, opacity var(--transition);
}
.carouselOption .btn:hover::before {
  left: 150%;
  opacity: 1;
}
.carouselOption .btn:hover {
  background: var(--secondary-color);
  border: 2px solid var(--secondary-color) !important;
  color: var(--white);
  padding: 0.8% 2%;
}
.carouselOption .btn:active {
  background: var(--secondary-color) !important;
  color: var(--white) !important;
  border: 1px solid var(--theme-color) !important;
}
@keyframes shine {
  from {
    left: -150%;
  }
  to {
    left: 150%;
  }
}
.carouselOption .btn:hover::before,
.carouselOption .btn:active::before {
  opacity: 1;
  animation: shine 1.2s ease-in-out;
}
.carouselOption .btn:hover .circle_white {
  width: 28px;
  height: 28px;
  transition: all 0.1s linear;
}
.carouselOption .btn .circle_white {
  background: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  padding: 2px;
}
.carouselOption .btn .circle_white img {
  max-width: 55%;
  max-height: 55%;
}
.carousel-indicators {
  margin: 0px !important;
  padding-left: 1.3rem !important;
  margin-bottom: clamp(60px, 5vw, 45px) !important;
}
.carousel-indicators [data-bs-target] {
  background-color: var(--theme-color) !important;
  width: 10px !important;
  transition: all linear 0.3s;
}
.carousel-indicators .active {
  opacity: 1;
  width: 30px !important;
}
.navbar-text {
  font-family: var(--theme-font);
  font-size: 15px;
  font-weight: 400;
}
.loanitol-service .owl-prev,
.loanitol-service .owl-next {
  position: var(--absolute);
  top: 45%;
  transform: translateY(-45%);
}
.insurance_loan_area .loanitol-service .owl-prev,
.insurance_loan_area .loanitol-service .owl-next {
  position: var(--absolute);
  top: 35%;
  transform: translateY(-35%);
}
.owl-carousel .owl-nav button.owl-prev {
  left: -40px;
}
.owl-carousel .owl-nav button.owl-next {
  right: -40px;
}
.owl-carousel {
  z-index: 0 !important;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  background: transparent !important;
  color: #797474 !important;
  text-decoration: var(--no-decoration);
}
.color1 .owl-dots .owl-dot span {
  background: #ffd2d8 !important;
  width: 20px !important;
  height: 3px !important;
  margin: 5px 5px !important;
  border-radius: 0px !important;
}
.color1 .owl-dots .owl-dot.active span {
  background: var(--theme-color) !important;
}
.color1 .owl-dots .owl-dot:hover span {
  background: #f097a3 !important;
}
.color2 .owl-dots .owl-dot span {
  background: #ff475f !important;
  width: 20px !important;
  height: 3px !important;
  margin: 5px 5px !important;
  border-radius: 0px !important;
}
.color2 .owl-dots .owl-dot.active span {
  background: #ffd2d8 !important;
}
.color2 .owl-dots .owl-dot:hover span {
  background: #ff475f !important;
}
.color3 .owl-dots .owl-dot span {
  background: #fc8a99 !important;
  width: 10px !important;
  height: 3px !important;
  margin: 5px 3px !important;
  border-radius: 0px !important;
}
.color3 .owl-dots .owl-dot.active span {
  background: var(--theme-color) !important;
  width: 35px !important;
  height: 3px !important;
}
.color4 .owl-dots .owl-dot span {
  background: #fc8a99 !important;
  width: 15px !important;
  height: 3px !important;
  margin: 5px 3px !important;
  border-radius: 0px !important;
}
.color4 .owl-dots .owl-dot.active span {
  background: var(--white) !important;
  width: 35px !important;
  height: 3px !important;
}
.owl-theme .owl-dots,
.owl-theme .owl-nav {
  margin-top: 35px;
}
.loanitol-service .service-item {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.loanitol-service .grid-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
}
.loanitol-service .service-item .item_h {
  min-height: 220px;
}
.loanitol-service .service-item .item_padding {
  padding: 10% 8%;
}
.loanitol-service .service-item .item {
  font-family: var(--theme-font);
  background: var(--white);
  padding: 8%;
  display: var(--flex);
  border-bottom: 2px solid var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  margin: 10px 6px;
  transition: opacity 2s ease-in-out, height 1s ease-in-out;
  opacity: 1;
  cursor: pointer;
}
.loanitol-service .service-item .item:hover {
  transition: all linear 0.3s;
  border-bottom: 2px solid rgb(253, 145, 145);
}
.loanitol-service .service-item .item:hover h2,
.loanitol-service .service-item .item:hover p {
  color: var(--black);
  transition: color var(--transition);
}
.loanitol-service .service-item .item:hover img {
  animation: smoothBounceIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: all var(--transition);
}
@keyframes smoothBounceIn {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.8);
  }
  40% {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
  70% {
    transform: translateY(0px) scale(0.95);
  }
  100% {
    transform: translateY(-0px) scale(1);
  }
}
.loanitol-service .service-item .item:hover .icon-frame .second-frame {
  width: 55px;
  height: 55px;
  transition: all linear 0.3s;
}
.insurance-carousel .service-item .item:hover h2 {
  transition: color var(--transition);
  cursor: pointer;
}
.insurance-carousel .service-item .item:hover img {
  animation: smoothBounceIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: var(--transitionEase);
}
.partner-section-area .loanitol-service .service-item .item {
  filter: grayscale(20%);
  transition: all linear 0.3s;
}
.partner-section-area .loanitol-service .service-item .item:hover {
  filter: grayscale(0);
  transition: all linear 0.3s;
}
.loanitol-service .service-item .item .icon-frame {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  display: var(--flex);
  align-items: center;
  justify-content: center;
  background: #fff7e8;
}
.loanitol-service .service-item .item .icon-frame .second-frame {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: var(--flex);
  align-items: center;
  justify-content: center;
  background: var(--off-yellow);
}
.loanitol-service .service-item .item .icon-frame .second-frame img {
  width: 23px;
  display: block;
}
.loanitol-service .service-item .item .common-frame {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: var(--flex);
  align-items: center;
  justify-content: center;
}
.loanitol-service .service-item .item .common-frame img {
  width: 23px;
  display: block;
  transition: var(--transition);
}
.loanitol-service .service-item .item .common-frame-bg {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: var(--flex);
  align-items: center;
  justify-content: center;
}
.loanitol-service .service-item .item .common-frame-bg img {
  width: 23px;
  display: block;
}
.life-bg {
  background-color: #fff3e8;
}
.health-bg {
  background-color: #ffece7;
}
.sip-bg {
  background-color: #fff7dc;
}
.mf-bg {
  background-color: #eaffd8;
}
.adv-bg {
  background-color: #fff7dc;
}
.sme-bg {
  background-color: #f3fafe;
}
.distress-bg {
  background-color: #e6f5c7;
}
.pvt-bg {
  background-color: #feefe7;
}
.nbfc-bg {
  background-color: #fff0d8;
}
.loanitol-service .service-item .item h2 {
  font-size: var(--font-16);
  color: #272525;
  margin: 0;
  padding: 10px 0px;
  font-weight: var(--fw6);
  text-transform: math-auto;
  font-family: var(--theme-font);
}
.loanitol-service .service-item .item h2 span {
  display: block;
}
.loanitol-service .service-item .item p {
  font-size: 13px;
  line-height: 1.5em;
  color: #3d3c3c;
}
.insurance-carousel {
  padding-top: 2%;
}
.insurance-carousel .service-item .item {
  font-family: var(--theme-font);
  background: var(--white);
  padding: 8%;
  display: var(--flex);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--theme-border-radius);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  margin: 10px 6px;
  transition: opacity 2s ease-in-out, height 1s ease-in-out;
  opacity: 1;
}
.insurance-carousel .service-item .item .common-frame {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: var(--flex);
  align-items: center;
  justify-content: center;
}
.insurance-carousel .service-item .item .life-bg {
  background-color: #fff3e8;
}
.insurance-carousel .service-item .item h2 {
  font-size: var(--font-16);
  color: var(--black);
  text-align: center;
  margin: 0;
  padding: 10px 0px;
  font-weight: var(--fw5);
  text-transform: capitalize;
  font-family: var(--theme-font);
}
.insurance-carousel .service-item .item .common-frame img {
  width: 23px;
  display: block;
}
.list-style {
  padding: 2.6% 3%;
}
.testimonial_area {
  background-position: right top;
}
.insurance_loan_area {
  padding: 3% 0%;
  background-attachment: scroll;
  background-position: right top;
  background-repeat: no-repeat;
  background-color: var(--theme-color);
  background-image: url(../assets/homepage/pattern.png);
}
.insurance_loan_area .container {
  padding: 3% auto 1% auto;
}
.insurance_loan_area p {
  font-size: var(--default-font-size);
  color: var(--white) !important;
}
.insurance_loan_area h4 {
  color: var(--white) !important;
}
.insurance_loan_area .loanitol-service .service-item .item {
  padding: 7% 6%;
}
.insurance_loan_area .insurance_loan_area .container {
  padding: 3% 2% 1% 2%;
}
.service_section_margin {
  margin-top: -3%;
  position: var(--relative);
}
.hidden-cols,
.hidden-cols-reels {
  display: none;
}
.d-m-none {
  display: none;
}
.advisory-section {
  padding: 2% 0%;
}
.advisory_section_area .icon-frame {
  background: var(--theme-color);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: var(--flex);
  align-items: center;
  justify-content: center;
}
.advisory_section_area .icon-frame img {
  width: 23px;
}
.h4-size {
  font-size: 28px;
}
.h4-size3 {
  font-size: 20px;
}
.h4-testimonial-size,
.h4-size2 {
  font-size: 24px;
}
.h4-testimonial-size span {
  font-size: var(--font-16);
  font-weight: 400;
  padding-top: 1%;
}
.fund_loan_area {
  background-color: var(--white);
  padding: 3%;
}
.fund_loan_area .container {
  padding: 2% 0% 2% 0%;
}
.fund_loan_area p {
  font-size: var(--font-16);
  color: var(--black);
}
.fund_loan_area h4 {
  color: var(--black);
}
.fund_loan_area .loanitol-service .service-item .item {
  padding: 4%;
}
h4 span {
  display: block;
  font-size: var(--default-font-size);
}
.loanitol-service h4 {
  line-height: 26px;
}
.about_loan_area_gradient {
  padding: 4% 0%;
  background: rgb(255, 243, 245);
  background: linear-gradient(
    180deg,
    rgb(255, 243, 245) 0%,
    rgb(255, 255, 255) var(--full)
  );
}
.about_loan_area_gradient p {
  font-family: var(--theme-font);
  padding-top: 2%;
}
.choose_frame {
  background: var(--white);
  padding: 20px;
  text-align: center;
  align-items: center;
  border-radius: var(--theme-border-radius);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
  display: var(--flex);
  flex-direction: column;
  justify-content: center;
  height: var(--full);
  min-height: 140px;
}
.img_accounting_h {
  min-height: 198px;
}
.choose_frame_last_img {
  max-height: 140px;
  border-radius: var(--theme-border-radius);
  object-position: top left;
}
.common-box {
  background: var(--white);
  padding: 20px;
  text-align: center;
  align-items: center;
  border-radius: var(--theme-border-radius);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
  display: var(--flex);
  flex-direction: column;
  justify-content: center;
  height: var(--full);
  min-height: 190px;
}
.choose_frame .icon-frame,
.common-box .icon-frame {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  display: var(--flex);
  align-items: center;
  justify-content: center;
  background: #fff7e8;
}
.choose_frame .icon-frame .second-frame img,
.common-box .icon-frame .second-frame img {
  width: 23px;
  display: block;
}
.choose_frame .icon-frame-emi {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  display: var(--flex);
  align-items: center;
  justify-content: center;
  background: #e5ffd2;
}
.choose_frame .icon-frame-emi .second-frame {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: var(--flex);
  align-items: center;
  justify-content: center;
  background: #c4f0ab;
}
.choose_frame .icon-frame-emi .second-frame img {
  width: 23px;
  display: block;
}
.choose_frame h2,
.common-box h2 {
  font-size: 15px;
  color: var(--black);
  text-align: center;
  margin: 0;
  padding: 10px 0px;
  font-weight: var(--fw5);
  font-family: var(--theme-font);
}
.choose_frame h2 span,
.common-box h2 span {
  display: block;
}
.choose_frame p,
.common-box p {
  display: none;
  color: var(--white) !important;
  transition: all linear 0.3s;
}
.choose_frame:hover p {
  display: block;
  transition: all linear 0.3s;
}
.choose_frame:hover h2,
.choose_frame:hover .icon-frame {
  display: none;
}
.choose_frame:hover {
  cursor: pointer;
  background: linear-gradient(150deg, #3d3d3d 50%, rgb(31, 31, 31) 50%);
  background-size: 200% 200%;
  background-position: bottom right;
  transition: background-position 0.5s ease-in-out;
}
.highlight-container {
  background: rgb(216, 31, 55);
  background: linear-gradient(
    90deg,
    rgba(216, 31, 55, 1) 0%,
    rgba(240, 214, 214, 1) var(--full)
  );
  border-radius: var(--theme-border-radius);
  padding: 15px;
  display: var(--flex);
  flex-direction: row;
  justify-content: center;
  height: var(--full);
}
.highlight-container .choose_frame {
  padding: 10px;
  min-height: 80px;
}
.highlight-container .transparent_bg {
  background: transparent;
  box-shadow: none;
}
.highlight-container .transparent_bg h2 {
  color: var(--white);
}
.testimonial_area {
  padding: 3% 0%;
  background-attachment: scroll;
  background-position: right top;
  background-repeat: no-repeat;
  background-color: var(--white);
  background-image: url(../assets/homepage/icons/gradient_loanitol_logo.svg);
}
.testimonial_area .stars {
  padding-bottom: 2%;
}
.testimonial_area .stars img {
  display: inline !important;
  width: var(--font-18) !important;
}
.testimonial_area .people_say {
  padding: 2% 0%;
}
.testimonial_area .testimonial_img_section {
  padding: 0px;
}
.testimonial_area .testimonial_img_section .main_img {
  width: 80%;
  border-radius: 30px;
}
.testimonial_area .testimonial_img_section .sm-logo {
  width: 100px;
  position: var(--absolute);
  left: 246px;
  bottom: 28%;
}
.ab-dots .owl-theme .owl-dots {
  position: var(--absolute);
  left: 30vw;
  bottom: 7vh;
}
.bg-contact-area {
  background: linear-gradient(to bottom, #fdeded, #ffffff);
  background-attachment: scroll;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 4% 0%;
}
.bg-contact-area .btn {
  font-family: var(--theme-font);
  position: var(--relative);
  overflow: hidden;
  background: var(--theme-color);
  border: 1px solid var(--theme-color);
  color: var(--white) !important;
  padding: 4% 10%;
  font-size: 13px;
  width: max-content;
  cursor: pointer;
  border-radius: var(--theme-border-radius);
  display: var(--flex);
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.bg-contact-area .btn::before {
  content: "";
  position: var(--absolute);
  top: 0;
  left: -120%;
  width: 50%;
  height: var(--full);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) var(--full)
  );
  transform: skewX(-45deg);
  opacity: 0;
  transition: left 0.7s ease-in-out, opacity var(--transition);
}
.bg-contact-area .btn:hover::before {
  left: 150%;
  opacity: 1;
}
.bg-contact-area .btn:hover {
  background: var(--secondary-color);
  color: var(--white);
}
.bg-contact-area .btn:active {
  background: var(--secondary-color) !important;
  color: var(--white) !important;
}
@keyframes shine {
  from {
    left: -150%;
  }
  to {
    left: 150%;
  }
}
.bg-contact-area .btn:hover::before,
.bg-contact-area .btn:active::before {
  opacity: 1;
  animation: shine 1.2s ease-in-out;
}
.bg-contact-area .btn:hover .circle_white {
  margin-left: 5px;
  width: 28px;
  height: 28px;
  transition: all 0.1s linear;
}
.bg-contact-area .btn .circle_white {
  background: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, margin-left 0.3s ease;
}
.bg-contact-area .btn .circle_white img {
  max-width: 80%;
  max-height: 80%;
}
@keyframes moveBackground {
  0% {
    background-position: left top, right top;
    background-size: 220px, 430px;
  }
  50% {
    background-position: left top 0px, right top 0px;
    background-size: 220px, 440px;
  }
  100% {
    background-position: left top, right top;
    background-size: 220px, 430px;
  }
}
.rowStyle label {
  font-size: var(--default-font-size);
  margin-bottom: 8px;
}
#district option[disabled] {
  color: #888;
  font-size: var(--default-font-size);
}
.h-textarea {
  height: 168px !important;
}
.list-group-item a {
  transition: var(--transition);
  padding-left: 0%;
}
.list-group-item a:hover {
  transition: var(--transition);
  color: var(--theme-color) !important;
  padding-left: 1%;
}
.loanitol_center_area {
  background: var(--theme-color);
  background-image: url(../assets/homepage/centre-left-top.png),
    url(../assets/homepage/centre-right-top.png);
  background-position: left top, right top;
  background-repeat: no-repeat, no-repeat;
  background-size: 220px auto, 430px auto;
  padding: 4% 0%;
  animation: moveBackground 4s infinite ease-in-out;
}
.loanitol_center_area .btn {
  font-family: var(--theme-font);
  position: var(--relative);
  overflow: hidden;
  background: #7b101e;
  border: 1px solid #7b101e;
  color: var(--white) !important;
  padding: 2.5% 7%;
  font-size: 13px;
  cursor: pointer;
  border-radius: var(--theme-border-radius);
  display: var(--flex);
  align-items: center;
  width: max-content;
  gap: 8px;
  transition: var(--transition);
}
.loanitol_center_area .btn::before {
  content: "";
  position: var(--absolute);
  top: 0;
  left: -120%;
  width: 50%;
  height: var(--full);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) var(--full)
  );
  transform: skewX(-45deg);
  opacity: 0;
  transition: left 0.7s ease-in-out, opacity var(--transition);
}
.loanitol_center_area .btn:hover::before {
  left: 150%;
  opacity: 1;
}
.loanitol_center_area .btn:hover {
  background: var(--secondary-color);
  border: 1px solid var(--theme-color);
  color: var(--white);
}
.loanitol_center_area .btn:active {
  background: var(--secondary-color) !important;
  color: var(--white) !important;
  border: 1px solid var(--theme-color) !important;
}
@keyframes shine {
  from {
    left: -150%;
  }
  to {
    left: 150%;
  }
}
.loanitol_center_area .btn:hover::before,
.loanitol_center_area .btn:active::before {
  opacity: 1;
  animation: shine 1.2s ease-in-out;
}
.loanitol_center_area .btn:hover .circle_white {
  margin-left: 5px;
  width: 28px;
  height: 28px;
  transition: all 0.1s linear;
}
.loanitol_center_area .btn .circle_white {
  background: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: 2px;
}
.loanitol_center_area .btn .circle_white img {
  max-width: 80%;
  max-height: 80%;
}
.list-style {
  font-family: var(--theme-font);
  font-size: var(--default-font-size);
  position: var(--relative);
  display: block;
  text-decoration: var(--no-decoration);
  background-color: var(--white);
  border: 0.5px solid #eeeeee;
}
.list-style:first-child {
  border-top-left-radius: var(--theme-border-radius);
  border-top-right-radius: var(--theme-border-radius);
}
.list-style:last-child {
  border-bottom-left-radius: var(--theme-border-radius);
  border-bottom-right-radius: var(--theme-border-radius);
}
.accordion {
  border-top-left-radius: var(--theme-border-radius) !important;
  border-top-right-radius: var(--theme-border-radius) !important;
  border-bottom-left-radius: var(--theme-border-radius) !important;
  border-bottom-right-radius: var(--theme-border-radius) !important;
  --bs-accordion-border-color: none !important;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.accordion-button::after {
  display: none !important;
}
.accordion-button img {
  transition: transform 0.3s ease;
  transition: all 0.3s linear;
  width: var(--font-16);
}
.accordion-button:not(.collapsed) img {
  transform: rotate(45deg);
  transition: all 0.3s linear;
  width: var(--font-16);
}
.accordion-button {
  font-family: var(--theme-font);
  font-size: 15px !important;
  font-weight: 400;
  background-color: transparent !important;
  padding: 1.7% 3%;
}
.accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
}
.fa-plus,
.fa-minus {
  font-size: 13px;
}
.accordion-body {
  background-color: #fff9fa;
  font-family: var(--theme-font);
  padding: 2% 4% !important;
  font-size: var(--default-font-size);
}
.accordion-body ul {
  list-style: none;
  padding-left: 0;
}
.accordion-body ul li::before {
  content: "\f26e";
  font-family: "bootstrap-icons";
  color: var(--theme-color);
  font-weight: bold;
  margin-right: 10px;
}
.accordion-button:not(.collapsed) {
  color: var(--theme-color) !important;
}
.accordion-item {
  padding: 0% !important;
  border: none !important;
}
.accordion-item:first-of-type {
  border-top-left-radius: var(--theme-border-radius) !important;
  border-top-right-radius: var(--theme-border-radius) !important;
}
.accordion-item:last-of-type {
  border-bottom-left-radius: var(--theme-border-radius) !important;
  border-bottom-right-radius: var(--theme-border-radius) !important;
}
.accordion-body:last-child {
  border-bottom-left-radius: var(--theme-border-radius) !important;
  border-bottom-right-radius: var(--theme-border-radius) !important;
}
.accordion-item:last-of-type .accordion-header {
  border-bottom: none !important;
}
.accordion-header {
  border-bottom: 1px solid #fceaed;
}
.bg-blue_tone1 {
  background: #0071ba !important;
}
.bg-brown {
  background: #9e1d26 !important;
}
.bg-blue_tone2 {
  background: #254aa6 !important;
}
.footer-bg-area {
  padding: 6% 0% 4% 0%;
  background: #0e3746;
}
.footer-bg-area h5 {
  font-family: var(--theme-font);
  font-size: 20px;
  color: var(--white) !important;
}
.footer-bg-area ul {
  padding: 3% 0%;
}
.footer-bg-area ul li {
  padding: 1% 0%;
  display: block;
  font-size: 15px;
}
.footer-bg-area ul li a {
  color: var(--white) !important;
  text-decoration: var(--no-decoration);
  font-family: var(--theme-font);
}
.footer-bg-area .social_media ul li {
  padding: 1% 1%;
  display: inline;
}
.copyright-bg-area {
  padding: 1.5% 0%;
  background: #092630;
}
.copyright-bg-area p {
  color: var(--white);
  margin-bottom: 0rem;
}
.copyright-bg-area .f-right p {
  float: right;
}
.copyright-bg-area .f-right a {
  color: var(--white);
  transition: all linear 0.3s;
}
.copyright-bg-area .f-right a:hover {
  color: var(--theme-color);
  transition: all linear 0.3s;
}
.fixed-buttons {
  position: fixed;
  bottom: 0px;
  right: 0px;
  display: var(--flex);
  gap: 0px;
  z-index: 1;
}
.fixed-buttons .btn {
  padding: 12px 30px;
  color: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--theme-font);
  font-size: 15px;
}
.fixed-buttons .btn-red {
  background: linear-gradient(to right, var(--theme-color), #ed102c);
  border-radius: 0px;
  border-top-left-radius: var(--theme-border-radius);
  display: inline;
  color: var(--white) !important;
}
.fixed-buttons .btn-red:active {
  background: linear-gradient(to right, var(--theme-color), #ed102c);
}
.fixed-buttons .btn-red img {
  width: 28px;
}
.fixed-buttons .btn-red:hover {
  color: var(--white);
}
.fixed-buttons .btn-red:focus {
  color: var(--white);
}
.fixed-buttons .btn-red:active {
  color: var(--white);
}
.fixed-buttons .btn-blue {
  background-image: linear-gradient(to right, #ab1c2f, #b91228);
  border-radius: 0px;
  display: inline;
  color: var(--white) !important;
}
.btn-md-red,
.btn-md-blue {
  display: none;
}
.fixed-buttons .btn-blue img {
  width: 20px;
}
.fixed-buttons .btn-blue:hover {
  color: var(--white);
}
.fixed-buttons .btn-blue:focus {
  color: var(--white);
}
.fixed-buttons .btn-blue:active {
  color: var(--white);
}
.popup .popup-header {
  display: var(--flex);
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-16);
  border-bottom: 1px solid #ddd;
  padding: var(--font-16) 10px;
  font-family: var(--theme-font);
  color: var(--white) !important;
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(to right, var(--theme-color), #ed102c);
}
.popup .popup-header img {
  width: 30px;
}
.popup .popup-header .close-btn {
  background: none;
  border: none;
  font-size: var(--font-18);
  cursor: pointer;
  background: #7b101e;
  width: 35px;
  height: 35px;
  border-radius: 30px;
}
.popup .popup-header .close-btn .fa-times {
  color: var(--white);
}
.popup .popup-content {
  padding: 10px;
}
.popup .popup-content .pills-nav {
  display: var(--flex);
  gap: 10px;
  margin-top: 15px;
}
.popup .popup-content .pills-nav .pill {
  padding: 8px 12px;
  background: #eee;
  border-radius: 20px;
  cursor: pointer;
}
.item_p {
  padding: 2% 4% !important;
}
.item_p .nav-link {
  font-family: var(--theme-font);
  font-size: var(--default-font-size);
  border-radius: 0px !important;
  color: #a39d9d;
  border-bottom: 2px solid transparent;
  gap: 10px;
}
.item_p .nav-link.active,
.item_p .nav-link:hover {
  background-color: transparent !important;
  border-bottom: 2px solid var(--theme-color);
  color: var(--black) !important;
}
.item_p h5 {
  font-family: var(--theme-font);
  font-size: 15px;
}
.item_p h6 {
  padding: 1.5% 0%;
  font-family: var(--theme-font);
  font-size: var(--default-font-size);
}
.item_p .form-control {
  font-family: var(--theme-font);
  font-size: var(--default-font-size);
  height: 35px;
}
.item_p .form-control::-moz-placeholder {
  color: var(--black);
  opacity: 1;
}
.item_p .form-control::placeholder {
  color: var(--black);
  opacity: 1;
}
.item_p .col-sm-12 {
  margin-bottom: 3%;
}
.item_p .switch-btn {
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 0.5% 2%;
  width: 150px;
}
.modal-body .item_p .switch-btn {
  width: 186px;
}
.modal-content {
  border: none !important;
}
.modal-body {
  padding: 0px !important;
}
.modal-body .tab-pane .btn-explore {
  margin: 3% 0% 5% 0%;
}
.modal-body .item_p .form-control,
.modal-body .item_p .text-end {
  font-size: 13px;
}
.modal-body .item_p h5 {
  font-size: var(--default-font-size);
}
.modal-body .item_p .nav-link,
.modal-body .item_p2 h6 {
  font-size: 15px;
}
.modal-body .item_p {
  gap: 12px;
}
.modal-body .item_p .row:nth-child(4) {
  padding-top: 15px 0px;
}
.modal-body .item_p2 {
  padding: 4% 3%;
}
.item_p .switch-btn .btn {
  background: var(--white);
  color: var(--black);
  padding: 3% 8%;
  font-family: var(--theme-font);
  font-size: 13px;
  flex: 1;
}
.item_p .switch-btn .active {
  background: var(--theme-color);
  color: var(--white);
}
.item_p input[type="range"] {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  width: var(--full);
  height: 4px;
  border-radius: 4px;
  outline: none;
  position: var(--relative);
  background: linear-gradient(to right, #d71920 25%, #eee 25%);
  transition: background var(--transition);
}
.item_p input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 4px;
  background: transparent;
}
.item_p input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: var(--font-16);
  height: var(--font-16);
  background: #d71920;
  border-radius: 50%;
  cursor: pointer;
  position: var(--relative);
  margin-top: -4px;
  -webkit-transition: transform 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, border 0.2s ease-in-out;
}
.item_p input[type="range"]:active::-webkit-slider-thumb {
  transform: scale(1.2);
  border: 5px solid rgba(215, 25, 32, 0.1);
  background: #d71920;
}
.item_p input[type="range"]::-moz-range-progress {
  background: #d71920;
  height: 8px;
  border-radius: 4px;
}
.item_p input[type="range"]::-moz-range-track {
  background: #eee;
  height: 8px;
  border-radius: 4px;
}
.item_p2 {
  background: #ffd9de;
  padding: 3% 3%;
}
.tab-pane {
  height: 400px;
  overflow-y: scroll;
  overflow-x: hidden;
}
.tab-pane .btn-explore {
  font-family: var(--theme-font);
  color: var(--white) !important;
  background: var(--theme-color);
  padding: 3%;
  font-size: var(--default-font-size);
  margin: 3% 0% 25% 0%;
  border: none !important;
}
.tab-pane .btn-explore:hover {
  background: #bd182e;
}
.tab-pane .btn-explore:active {
  background: #bd182e !important;
}
#popup-red {
  display: none;
  position: fixed;
  bottom: 0px;
  right: 0px;
  background: var(--white);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
  border-top-left-radius: var(--theme-border-radius);
  overflow: hidden;
  z-index: 3;
  width: 400px;
  height: 450px;
}
#popup-blue {
  display: none;
  position: fixed;
  bottom: 0px;
  right: 0px;
  background: var(--white);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
  border-top-left-radius: var(--theme-border-radius);
  overflow: hidden;
  z-index: 1231;
  width: 400px;
  height: 300px;
}
#popup-blue .popup-header {
  display: var(--flex);
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-16);
  border-bottom: 1px solid #ddd;
  padding: var(--font-16) 10px;
  font-family: var(--theme-font);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
  background-image: linear-gradient(to right, #ab1c2f, #b91228);
}
#popup-blue .popup-header img {
  width: 25px;
}
#popup-blue .popup-header .close-btn {
  background: none;
  border: none;
  font-size: var(--font-18);
  cursor: pointer;
  background: #8b0c1d;
  width: 35px;
  height: 35px;
  border-radius: 30px;
}
#popup-blue .popup-header .close-btn .fa-times {
  color: var(--white);
}
#popup-blue .list-group {
  height: 300px;
  overflow-y: scroll;
}
#popup-blue .popup-content {
  padding: 0px;
  margin-top: -1px !important;
}
#popup-blue .list-group-item,
.modal-body .list-group-item {
  font-size: var(--default-font-size);
  font-family: var(--theme-font);
}
.modal-body .list-group {
  height: 210px;
  overflow-y: scroll;
}
.modal-title {
  font-family: var(--theme-font);
  font-size: var(--font-18);
}
#quicklinks .modal-header {
  display: var(--flex);
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-16);
  border-bottom: 1px solid #ddd;
  padding: 12px 10px;
  font-family: var(--theme-font);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
  background-image: linear-gradient(to right, #ab1c2f, #b91228);
}
#quicklinks .modal-header img {
  width: 20px;
}
#quicklinks .modal-header .close-btn {
  background: none;
  border: none;
  font-size: var(--font-18);
  cursor: pointer;
  background: #8b0c1d;
  width: 35px;
  height: 35px;
  border-radius: 30px;
}
#quicklinks .modal-header .close-btn .fa-times,
#emicalculator .modal-header .close-btn .fa-times {
  color: var(--white);
}
#emicalculator .modal-header {
  display: var(--flex);
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-16);
  border-bottom: 1px solid #ddd;
  padding: 12px 10px;
  font-family: var(--theme-font);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(to right, var(--theme-color), #ed102c);
}
#emicalculator .modal-header img {
  width: 27px;
}
#emicalculator .modal-header .close-btn {
  background: none;
  border: none;
  font-size: var(--font-18);
  cursor: pointer;
  background: #7b101e;
  width: 35px;
  height: 35px;
  border-radius: 30px;
}
.offcanvas-header .btn-close:hover {
  outline: none !important;
}
.why-section-area {
  padding: 2% 0% 3% 0%;
}
.why-section-area .image-section img {
  border-radius: 30px;
}
.why-section-area .btn {
  font-family: var(--theme-font);
  position: var(--relative);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--theme-color);
  color: rgb(0, 0, 0) !important;
  padding: 1.5% 4%;
  font-size: 13px;
  cursor: pointer;
  border-radius: var(--theme-border-radius);
  display: flex;
  align-items: center;
  width: max-content;
  gap: 8px;
  transition: 0.3s ease-in-out;
}
.why-section-area .btn::before {
  content: "";
  position: var(--absolute);
  top: 0;
  left: -120%;
  width: 50%;
  height: var(--full);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  transform: skewX(-45deg);
  opacity: 0;
  transition: left 0.7s ease-in-out, opacity 0.3s ease-in-out;
}
.why-section-area .btn:hover::before {
  left: 150%;
  opacity: 1;
}
.why-section-area .btn:hover {
  background: var(--secondary-color);
  border: 1px solid var(--theme-color) !important;
  color: #fff !important;
}
.why-section-area .btn:active {
  background: var(--secondary-color) !important;
  color: #fff !important;
  border: 1px solid var(--theme-color) !important;
}
.people_say {
  padding: 4% 0% 0% 0%;
}
.people_say-inner {
  padding: 4% 0% 0% 0%;
}
.lender-section-area {
  padding: 3% 0% 6% 0%;
}
.partner-section-area {
  padding: 5% 0% 4% 0%;
  background: var(--theme-color);
  background-image: url(../assets/homepage/centre-left-top.png),
    url(../assets/homepage/centre-right-top.png);
  background-position: left top, right top;
  background-repeat: no-repeat, no-repeat;
  background-size: 220px auto, 430px auto;
  padding: 4% 0%;
  animation: moveBackground 4s infinite ease-in-out;
}
.partner-section-area .h4-size,
.partner-section-area p {
  color: var(--white) !important;
}
.carousel-control-next,
.carousel-control-prev {
  display: none !important;
}
.fixed-buttons-md {
  position: fixed;
  bottom: 5vw;
  right: 10px;
  display: grid;
  gap: 8px;
  z-index: 2;
}
.fixed-buttons-md .btn-md-red {
  width: 50px;
  height: 50px;
  background: linear-gradient(to right, var(--theme-color), #ed102c);
  border: 2px solid #fd4b62;
  border-radius: 0px;
  border-radius: 30px;
  padding: 12px;
  display: inline;
}
.fixed-buttons-md .btn-md-red:active {
  border: 2px solid #fd4b62 !important;
}
.fixed-buttons-md .btn-md-blue:active,
.fixed-buttons-md .btn-md-blue:focus {
  border: 2px solid #7b0616 !important;
}
.fixed-buttons-md .btn-md-red:active,
.fixed-buttons-md .btn-md-blue:active {
  outline: none !important;
}
.fixed-buttons-md .btn-md-blue {
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  background-image: linear-gradient(to right, #ab1c2f, #b91228);
  border: 2px solid #cf2a40;
  padding: 12px;
  border-radius: 30px;
  display: inline;
}
.fixed-buttons-md .btn-md-blue img {
  width: 20px;
}
.fixed-buttons-md .btn-md-red img {
  width: 25px;
}
.people_say .loanitol-service .owl-theme .owl-dots,
.people_say2 .loanitol-service .owl-theme .owl-dots {
  margin-left: -22vw !important;
  margin-top: -13px;
  margin-bottom: 30px;
  z-index: 2;
}
.career-head {
  font-family: "Inter", sans-serif;
  font-size: 3.2vw;
  font-weight: var(--fw6);
  color: var(--black);
}
.hero-section-area {
  background-color: #ffedf0;
  padding: 2% 0%;
}
.h5-size {
  font-family: "Inter", sans-serif;
  font-size: 3vw;
  font-weight: var(--fw6);
  color: var(--black);
}
.h5-size span,
.h6-size span {
  color: var(--theme-color) !important;
}
.empower-section {
  padding: 3% 0% 2% 0%;
}
.empower-section p {
  text-align: justify;
}
.details-section {
  padding: 5% 0% 3% 0%;
}
.details-section2 {
  padding: 1% 0% 4% 0%;
}
.details-section span,
.details-section2 span {
  font-family: "Inter", sans-serif;
  font-size: var(--default-font-size);
  margin-top: -2px;
}
.details-section .icon-style {
  background: #ffdfdf;
  width: 40px;
  height: 40px;
  margin-bottom: 3%;
  border-radius: 50%;
  padding: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, margin-left 0.3s ease;
}
.details-section .icon-style img {
  max-width: 80%;
  max-height: 80%;
}
.features-style h6,
.features-style p {
  font-family: "Inter", sans-serif;
  margin-bottom: 1px;
}
.features-style h6 {
  font-size: var(--font-16);
  font-weight: var(--fw5);
}
.about-style {
  padding-bottom: 5px;
  color: var(--theme-color);
}
.features-style .features-style-box {
  position: var(--relative);
  background: #fdfdfd;
  padding: 6%;
  border-bottom: 2px solid #ffffff;
  border-radius: 6px;
  box-shadow: rgba(190, 196, 202, 0.2) 0px 8px 24px;
  margin: 10px 2px;
  transition: opacity 2s ease-in-out, height 1s ease-in-out;
  opacity: 1;
  cursor: pointer;
  transition: all linear 0.3s;
}
.features-style .features-style-box:hover {
  transition: all linear 0.3s;
  border-bottom: 2px solid #ffbaba;
}
.features-style-box .icon-style {
  background: #fff6f3;
  border: 2px solid #fff6f3;
  width: 50px;
  height: 50px;
  margin-bottom: 3%;
  border-radius: 50%;
  padding: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, margin-left 0.3s ease;
}
.features-style .features-style-box:hover .icon-style {
  border: 2px solid #f5cece;
  background: #fff;
  transition: all linear 0.3s;
}
.features-style-box-height {
  min-height: 120px;
}
.details-section-height {
  min-height: 200px;
}
.box-height {
  min-height: 170px;
}
.sticky-nav {
  overflow: auto;
  overflow-y: hidden;
  white-space: nowrap;
  position: sticky;
  top: 73px;
  background: hwb(350 31% 34%);
  z-index: 1;
  border-radius: var(--theme-border-radius);
  padding: 15px 0;
  margin-top: -3%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: border-radius 0.3s ease, padding 0.3s ease;
}
.sticky-nav .container {
  display: var(--flex);
}
.sticky-nav .navbar-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.sticky-nav .navbar-nav {
  display: var(--flex);
  justify-content: space-evenly;
  width: var(--full);
  padding: 0;
}
.sticky-nav .nav-item {
  font-family: "Inter", sans-serif;
  font-size: var(--default-font-size);
  list-style: none;
}
.sticky-nav .nav-link {
  text-decoration: var(--no-decoration);
  color: var(--white) !important;
  font-weight: var(--fw5);
  padding-left: 20px;
  border-radius: var(--theme-border-radius);
  padding-right: 20px;
  transition: all 0.3s linear;
}
.sticky-nav .nav-link:hover,
.sticky-nav .nav-link:active,
.sticky-nav .nav-link:focus {
  color: var(--white) !important;
}
.sticky-nav .nav-link.active {
  text-decoration: var(--no-decoration);
  color: var(--black) !important;
  background: var(--white);
  font-family: "Inter", sans-serif;
  font-size: var(--default-font-size);
  font-weight: var(--fw5);
  border-radius: var(--theme-border-radius);
  transition: all 0.3s linear;
}
.sticky-nav .content {
  padding: 20px;
  height: 1000px;
}
.sticky-nav .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.sticky-nav section {
  padding-top: 10px;
}
.details-section .img-frame img {
  border-radius: 30px;
}
#emi-calculator form {
  padding: 4% 0% 6% 0%;
}
#emi-calculator .emi-form {
  padding: 3% 0% 0% 0%;
}
input:focus,
textarea:focus {
  border: 1px solid var(--theme-color) !important;
}
.custom-select-wrapper {
  position: var(--relative);
}
.custom-select {
  appearance: none;
  width: var(--full);
  padding: 1rem;
  background-color: transparent;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  font-size: 1rem;
}
.custom-select-label {
  position: var(--absolute);
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  transition: all 0.2s ease-in-out;
  pointer-events: none;
  opacity: 0.7;
  width: auto;
}
.custom-select:focus + .custom-select-label,
.custom-select:not(:placeholder-shown) + .custom-select-label {
  top: 0.5rem;
  font-size: 0.85rem;
  opacity: 1;
}
.emi-input-container {
  display: var(--flex);
  align-items: center;
  border: 1px solid #ffa500;
  overflow: hidden;
  width: var(--full);
  max-width: var(--full);
  background-color: var(--white);
}
.emi-label {
  width: 15dvw;
  background-color: #ffa500;
  color: var(--black);
  font-family: "Inter", sans-serif;
  padding: var(--font-18) 14px;
  white-space: nowrap;
  font-weight: var(--fw6);
  font-size: var(--default-font-size);
}
.emi-input {
  border: none;
  flex-grow: 1;
  padding: 8px;
  text-align: right;
  font-size: 1rem;
  background-color: transparent;
  font-family: "Inter", sans-serif;
  font-size: var(--default-font-size);
  width: var(--full);
  color: var(--black);
}
.emi-input:focus {
  outline: none;
}
.form-control {
  font-family: "Inter", sans-serif;
  height: 50px;
  font-size: 14px !important;
}
.emi-input-container,
#emi-calculator .btn {
  font-family: "Inter", sans-serif;
  border-radius: var(--theme-border-radius) !important;
  height: 58px !important;
}
.calculator-btn {
  text-align: left !important;
  width: var(--full);
  padding-left: 8% !important;
  font-size: 14px !important;
}
.calculator-btn::before {
  content: "";
  position: var(--absolute);
  top: 0;
  left: -120%;
  width: 50%;
  height: var(--full);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) var(--full)
  );
  transform: skewX(-45deg);
  opacity: 0;
  transition: left 0.7s ease-in-out, opacity var(--transition);
}
.eligibility {
  font-family: "Inter", sans-serif;
  padding: 3% 0% 4% 0%;
}
.eligibility ul,
.document ul {
  display: block;
  font-family: var(--theme-font);
  padding-left: 1rem;
}
.eligibility ul li,
.document ul li {
  font-family: var(--theme-font);
  font-size: var(--default-font-size);
  line-height: 22px;
}
.eligibility img,
.document img {
  border-radius: var(--theme-border-radius);
}
.document {
  font-family: "Inter", sans-serif;
  padding: 4% 0% 2% 0%;
  background: #fff3f5;
}
.document .bg-- {
  padding: 3% 3%;
  border-radius: 6px;
  background: var(--white);
}
.btn-close:hover {
  transition: transform 0.2s !important;
}
.btn-close:focus {
  box-shadow: none !important;
  outline: none !important;
}
.bg-red-button {
  background-color: var(--theme-color) !important;
}
.bg-green-button {
  background-color: #139813 !important;
}
.bg-gradient-emi {
  background: rgb(255, 243, 245) !important;
  background: linear-gradient(
    90deg,
    rgb(255, 243, 245) 0%,
    rgb(255, 255, 255) var(--full)
  );
}
.img-position {
  margin-left: -10%;
}
.emi-shadow {
  box-shadow: inset 10px 0px 100px 0px rgba(97, 97, 97, 0.07);
}
.form-pd {
  padding: 2% 0%;
}
iframe {
  width: var(--full);
  height: 110px;
  border-radius: var(--theme-border-radius);
}
.form-pd h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.6vw;
  margin-bottom: 5%;
}
.h6-size {
  font-family: "Inter", sans-serif;
  font-size: 1.6vw;
  font-weight: var(--fw5);
  color: var(--black);
}
.hero-small--section-area {
  position: var(--relative);
  background-color: #ffedf0;
  padding: 3% 0% 3% 0%;
}
.send-msg {
  position: var(--relative);
  overflow: hidden;
  font-family: var(--theme-font);
  font-size: var(--default-font-size);
  padding-left: 5%;
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
  text-align: left;
  border-radius: var(--theme-border-radius);
  height: 60px;
  color: var(--white) !important;
  font-weight: var(--fw5);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: all linear 0.3s;
}
.send-msg::before {
  content: "";
  position: var(--absolute);
  top: 0;
  left: -120%;
  width: 50%;
  height: var(--full);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) var(--full)
  );
  transform: skewX(-45deg);
  transition: left 0.7s ease-in-out, opacity var(--transition);
}
.send-msg:hover {
  background-color: #970518;
  border: 1px solid var(--theme-color);
  color: var(--white);
}
.send-msg:hover::before {
  left: 150%;
}
.address ul {
  display: block;
  margin: 3% 0% 6% 0%;
  padding-left: 0px;
}
.address h6 {
  font-family: var(--theme-font);
  font-size: var(--font-16);
}
.bordered-img {
  width: var(--font-18);
  margin-right: 2%;
}
.address ul li {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: var(--default-font-size);
}
.address ul li a {
  display: block;
  color: var(--black);
  font-family: "Inter", sans-serif;
  font-size: var(--default-font-size);
}
.send-msg:disabled {
  opacity: 1;
  border: none;
  background-color: var(--black) 000;
  cursor: not-allowed;
  color: var(--white);
  transition: all linear 0.3s;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 24px;
}
.loader {
  border: 2px solid var(--theme-color);
  border-top: 2px solid var(--black) 000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  display: none;
  position: var(--absolute);
  margin-left: 9%;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.address {
  display: block;
}
.custom-scrollbar::-webkit-scrollbar {
  height: 8px;
  overflow-x: auto;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #ff6b6b, #ffcc5c);
  border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}
.counter-container {
  padding: 1% 0%;
}
.counter-container .col-lg-3 {
  padding: 0px;
}
.counter-item {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--theme-color) !important;
  font-size: 30px;
  padding: 10% 8%;
  border-right: 1px dashed #f0f0f0;
}
.no-border-right {
  border-right: 1px dashed transparent;
}
.no-border-right-sm {
  border-right: 1px dashed #f0f0f0;
}
.counter-item p {
  font-size: var(--default-font-size);
  font-weight: 400;
  color: var(--black) !important;
  margin-bottom: 0px;
}
.circle-count img {
  width: 60px;
  padding: 3%;
  display: block;
  transition: var(--transition);
}
.counter-item .count {
  font-weight: var(--fw6);
}
.counter-item img {
  display: block;
}
.socialIcons ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: var(--flex);
  gap: 5px;
}
.socialIcons ul li {
  display: inline-block;
}
.socialIcons ul li a {
  display: var(--flex);
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--white);
  border-radius: 50px;
  text-decoration: var(--no-decoration);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.socialIcons ul li a:hover {
  background-color: var(--theme-color);
  transform: scale(1.1);
}
.socialIcons ul li a:hover svg {
  fill: var(--white);
}
.socialIcons ul li a svg {
  width: var(--font-16);
  height: var(--font-16);
  fill: #0e3746;
}
.carousel-inner {
  background: linear-gradient(
    359deg,
    rgb(251 236 238) 0%,
    rgb(255, 255, 255) var(--full)
  );
}
.carousel-content {
  font-family: var(--theme-font);
}
.carousel-content h5 {
  font-size: 2.5vw;
  font-weight: var(--fw6);
}
.carousel-content span {
  color: var(--theme-color) !important;
  display: block;
}
.carousel-content p {
  font-size: 1rem;
  margin-top: 10px;
  margin-bottom: 20px;
}
.carousel-content .btn {
  margin-bottom: 4%;
  font-family: var(--theme-font);
  position: var(--relative);
  overflow: hidden;
  background: var(--theme-color);
  border: 1px solid var(--theme-color);
  color: var(--white) !important;
  padding: 1.5% 4%;
  font-size: 13px;
  cursor: pointer;
  border-radius: var(--theme-border-radius);
  display: var(--flex);
  align-items: center;
  width: max-content;
  gap: 8px;
  transition: var(--transition);
}
.carousel-content .btn::before {
  content: "";
  position: var(--absolute);
  top: 0;
  left: -120%;
  width: 50%;
  height: var(--full);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) var(--full)
  );
  transform: skewX(-45deg);
  opacity: 0;
  transition: left 0.7s ease-in-out, opacity var(--transition);
}
.carousel-content .btn:hover::before {
  left: 150%;
  opacity: 1;
}
.carousel-content .btn:hover {
  background: var(--secondary-color);
  color: var(--white);
}
.carousel-content .btn:active {
  background: var(--secondary-color) !important;
  color: var(--white) !important;
}
@keyframes shine {
  from {
    left: -150%;
  }
  to {
    left: 150%;
  }
}
.carousel-content .btn:hover::before,
.carousel-content .btn:active::before {
  opacity: 1;
  animation: shine 1.2s ease-in-out;
}
.carousel-content .btn:hover .circle_white {
  margin-left: 5px;
  width: 28px;
  height: 28px;
  transition: all 0.1s linear;
}
.carousel-content .btn .circle_white {
  background: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, margin-left 0.3s ease;
}
.carousel-content .btn .circle_white img {
  max-width: 80%;
  max-height: 80%;
}
.carousel-content .circle_white_btn {
  width: 30px;
  height: 30px;
  background: var(--white);
  border-radius: 50%;
}
.text-white {
  color: var(--white) !important;
}
.corevalues {
  position: var(--relative);
  background: var(--white);
  padding: 6%;
  border-bottom: 2px solid var(--white);
  border-radius: 6px;
  box-shadow: rgba(190, 196, 202, 0.2) 0px 8px 24px;
  margin: 10px 2px;
  transition: opacity 2s ease-in-out, height 1s ease-in-out;
  opacity: 1;
  cursor: pointer;
  transition: all linear 0.3s;
}
.corevalues h5 {
  font-family: "Inter", sans-serif;
  margin-bottom: 1px;
  font-size: var(--font-16);
}
.corevalues ul,
.features-style-box ul {
  display: block;
  padding-left: 1rem;
  padding-top: 5px;
  margin-bottom: 0.5rem;
}
.corevalues ul li,
.features-style-box ul li {
  font-family: "Inter", sans-serif;
  font-size: var(--default-font-size);
}
.management_area_gradient {
  padding: 4% 0%;
  background: rgb(255, 243, 245);
  background: linear-gradient(
    180deg,
    rgb(255, 243, 245) 0%,
    rgb(255, 255, 255) var(--full)
  );
  font-family: var(--theme-font);
}
.management_area_gradient .h-management {
  padding-top: 1%;
  padding-bottom: 1%;
  transition: all linear 0.3s;
}
.management_area_gradient .h-management:hover h5 {
  color: var(--theme-color);
  transition: all linear 0.3s;
}
.management_area_gradient .h-management:hover span {
  color: var(--black);
}
.management_area_gradient h5 {
  font-size: 1.5rem;
  font-weight: var(--fw6) !important;
}
.management_area_gradient h5 span {
  line-height: 24px;
  display: block;
  font-size: var(--default-font-size);
  font-weight: 400;
  color: #414141;
}
.management_area_gradient .image {
  border-radius: var(--theme-border-radius);
  width: var(--full);
}
.management_area_gradient .quote-img {
  position: var(--absolute);
  top: 10%;
  width: 40px;
}
.quote-left {
  left: -3%;
}
.quote-right {
  right: -3%;
  transform: rotate(180deg);
}
.board {
  background: var(--theme-color);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4% 0%;
  background-image: url(../assets/homepage/centre-left-top.png),
    url(../assets/homepage/centre-right-top.png);
  background-position: left top, right top;
  background-repeat: no-repeat, no-repeat;
  background-size: 220px auto, 480px auto;
}
.board .board-box {
  font-family: var(--theme-font);
  text-align: center;
  transition: all linear 0.3s;
  position: var(--relative);
  overflow: hidden;
  border-radius: var(--theme-border-radius);
}
.board .board-box:hover {
  cursor: pointer;
}
.board .board-box:hover .board-member-detail {
  background: var(--theme-color);
  color: var(--white) !important;
  transition: all linear 0.3s;
  cursor: pointer;
}
.board .board-box h5 {
  font-size: var(--font-16);
  font-weight: var(--fw6);
  margin-bottom: 0;
}
.board .board-box p {
  margin-bottom: 0;
}
.board .board-box img {
  width: var(--full);
  border-radius: var(--theme-border-radius);
  transition: opacity 0.3s ease;
  height: auto;
}
.board-box .board-member-detail {
  background: var(--white);
  position: var(--relative);
  margin-top: -28%;
  z-index: 1;
  padding: 6% 4%;
  border-radius: var(--theme-border-radius);
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.board-box::before {
  content: "";
  position: var(--absolute);
  top: 0;
  left: -75%;
  width: 50%;
  height: var(--full);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.219) 50%,
    rgba(255, 255, 255, 0) var(--full)
  );
  transform: skewX(-20deg);
  pointer-events: none;
}
.board-box:hover::before {
  animation: shine 0.8s ease-in-out;
}
@keyframes shine {
  from {
    left: -75%;
  }
  to {
    left: 125%;
  }
}
.management_area_gradient .content-space {
  background: var(--white);
  padding: 3%;
  border-radius: var(--theme-border-radius);
  position: var(--relative);
}
.m-left {
  margin-left: -4%;
}
.m-right {
  margin-right: -4%;
  z-index: 0;
}
.privacy {
  padding: 4% 0%;
}
.privacy ul,
.privacy span {
  font-family: var(--theme-font);
  font-size: var(--default-font-size);
}
.privacy a {
  color: var(--black);
  text-decoration: underline;
  font-size: var(--default-font-size);
  font-family: var(--theme-font);
}
.privacy h5 {
  font-family: var(--theme-font);
  padding-top: 1%;
  font-size: var(--font-18);
}
.card-page {
  display: none;
}
.card-page.active {
  display: block;
}
.page-link {
  border: 1px solid #dedede !important;
  border-radius: var(--full);
  color: var(--black) !important;
}
.page-link:focus {
  border: 1px solid #dedede !important;
  border-radius: var(--full);
  color: var(--black) !important;
}
.breadcrumb-item {
  font-family: var(--theme-font);
  font-size: 13px!important;
  color: #536269;
}
.breadcrumb-item:hover {
  color: #536269 !important;
  cursor: text;
}
.breadcrumb-item .active {
  font-size: 13px;
  font-family: var(--theme-font);
  color: #18343f !important;
  cursor: text;
}
.head {
  font-size: 1rem !important;
}
.sticky-nav-wrapper {
  position: sticky;
  top: 73px;
  z-index: 1000;
  background-color: #ad4154;
  padding: 10px 0;
  transition: var(--transitionEase);
  margin-top: -2.5%;
  border-radius: var(--theme-border-radius);
}
.sticky-nav-wrapper.full {
  background-color: #ad4154;
  padding: 10px 0;
  border-radius: 0;
}
.arrow-btn {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 24px;
  padding: 0 10px;
  cursor: pointer;
}

.box--style {
  overflow-x: hidden;
  flex: 1;
}
.box--style .scroll-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
}
.box--style .scroll-container::-webkit-scrollbar {
  display: none;
}
.sticky-nav-wrapper .navbar-nav {
  display: flex;
  flex-direction: row;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  width: var(--full);
  justify-content: space-evenly;
}
.sticky-nav-wrapper .nav-link {
  color: var(--white) !important;
  padding: 8px var(--font-16);
  white-space: nowrap;
  border-radius: 4px;
  font-family: "Inter";
  font-weight: var(--fw5);
}
.sticky-nav-wrapper .nav-link:hover,
.sticky-nav-wrapper .nav-link.active {
  color: var(--black) !important;
  background: #fff;
  padding: 8px var(--font-16) !important;
  font-family: "Inter", sans-serif;
  font-size: var(--default-font-size);
  font-weight: var(--fw5);
  border-radius: var(--theme-border-radius);
  transition: all 0.3s linear;
}
.features-image-box {
  height: 91%;
  width: var(--full);
  overflow: hidden;
}
.features-image-box img {
  width: var(--full);
  height: var(--full);
  object-fit: cover;
}
.benefits-image-box {
  height: 91%;
  width: var(--full);
  overflow: hidden;
}
.benefits-image-box img {
  width: var(--full);
  height: var(--full);
  object-fit: cover;
}
.pagination {
  font-size: var(--default-font-size);
  font-family: var(--theme-font);
  color: var(--black);
}
.pagination .disabled > .page-link,
.page-link.disabled {
  background-color: transparent;
  border: none !important;
}
.pagination .page-link {
  border: none !important;
  background-color: #fff5f6;
  font-size: var(--default-font-size);
  margin: auto 10px;
  border-radius: 50px;
  padding: 0.45rem 0.89rem;
}
.pagination .active .page-link {
  background-color: var(--theme-color);
  color: var(--white) !important;
  z-index: 1;
}
.pagination .next .page-link {
  border: none !important;
  background-color: transparent;
}
.pagination_height {
  margin-top: 6rem !important;
}
.advisory_section_area svg {
  width: var(--font-18);
  height: var(--font-18);
}
.advisory_section_area svg g path,
.advisory_section_area clipPath react {
  fill: var(--white);
}
.pagination .page-link {
  border: none !important;
  background-color: #fff5f6;
  margin: auto 5px;
  color: var(--black);
}
.pagination
  .page-item:not(.disabled):not(.next):not(.prev):not(.active)
  .page-link,
.pagination .page-item.active .page-link {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding: 0;
  border-radius: 50%;
  display: inline-block;
}
.pagination .active .page-link {
  background-color: var(--theme-color);
  color: var(--white) !important;
  z-index: 1;
}
.pagination .prev .page-link,
.pagination .next .page-link,
.pagination .disabled .page-link {
  border-radius: 2rem;
  padding: 0.375rem 1rem;
  height: auto;
  width: auto;
  line-height: normal;
  background-color: transparent;
}
.blog-ads {
  border-radius: var(--theme-border-radius);
}
.modal {
  background-color: rgba(0, 0, 0, 0.6);
}
.play-button {
  position: var(--absolute);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}
.play-button:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 1);
  transition: all linear 0.3s;
}
.play-button:hover svg {
  transition: all linear 0.3s;
  fill: var(--theme-color);
}
.play-button svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}
.modal-backdrop.show {
  opacity: 0.95;
}
.modal-content {
  background-color: transparent !important;
  border: none;
}
.modal-header {
  border-bottom: none;
}
.video-frame {
  height: 13.5rem;
  margin-bottom: 5%;
  position: var(--relative);
}
.video-thumb {
  width: var(--full);
  height: var(--full);
  object-position: top;
  object-fit: cover;
  border-radius: 6px;
}
.modal-dialog {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 60px);
  max-height: 400px !important;
  margin: 1.75rem auto !important;
}
.modal-content {
  position: var(--relative);
  overflow: hidden;
  border-radius: var(--theme-border-radius);
  box-shadow: none;
  border: none;
}
.modal-body {
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--white);
}
.video-wrapper {
  width: var(--full);
  height: var(--full);
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: var(--relative);
  background-color: var(--black);
}
.modal-video {
  width: var(--full);
  height: auto;
  max-height: 95vh;
  object-fit: cover;
}
.bttn-close {
  position: var(--absolute);
  top: 10px;
  right: 10px;
  z-index: 1051;
  width: 24px !important;
  height: 24px !important;
  background-color: var(--theme-color, #000) !important;
  border-radius: 6px;
  opacity: 1 !important;
  padding: 6px !important;
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") !important;
  --bs-btn-close-bg-size: 1rem;
}
.bttn-close:hover {
  transform: rotate(180deg);
}
img {
  max-width: var(--full);
}
.wrapper {
  margin: 0 auto;
  width: var(--full);
  max-width: var(--full);
}
.inner-wrapper-padding {
  padding: 0 80px;
}
.about-timeline {
  background-color: #0e3746;
  padding: 140px 0 125px;
}
.timeline-box h6 {
  line-height: 1;
  color: var(--theme-color) !important;
  background-color: #0e3746;
  position: var(--relative);
  z-index: 1;
  display: inline-block;
  width: auto;
  padding: 0 10px;
  margin-top: 0;
  transform: translate(0, -50%);
  font-family: var(--theme-font);
  font-size: 30px;
}
.timeline-row .horizontal-line {
  border-top: 2px solid var(--theme-color);
  width: calc(100% - 150px);
  margin: 0 auto;
  position: var(--absolute);
  top: 0;
  left: 50%;
  z-index: 0;
  transform: translate(-50%, 0%);
}
.timeline-row .verticle-line {
  margin: 0;
  padding: 0;
  width: 2px;
  border-right: 2px solid var(--theme-color);
  height: calc(100% - 150px);
  position: var(--absolute);
  top: 0;
  right: 0;
  margin: auto 0;
  bottom: 0;
}
.timeline-row:nth-child(2n + 2) .verticle-line {
  left: 0;
  right: inherit;
}
.corner {
  position: var(--absolute);
  border-right: 2px solid var(--theme-color);
  width: 77px;
  height: 77px;
  right: 0;
  border-top: 2px solid var(--theme-color);
  top: 74.9px;
  border-radius: 0 70px 0 0;
  top: 0;
}
.timeline-row:nth-child(2n + 2) .corner {
  right: inherit;
  left: 0;
  border-left: 2px solid var(--theme-color);
  border-right: 0;
  border-radius: 70px 0 0 0;
}
.corner.bottom {
  bottom: -76px;
  top: inherit;
  border-radius: 0;
  border-top: 0;
  border-bottom: 2px solid var(--theme-color);
  border-radius: 0 0 70px 0;
  right: 0;
  z-index: 1;
  bottom: -2px;
}
.timeline-row:nth-child(2n + 2) .corner {
  right: inherit;
  left: 0;
  border-left: 2px solid var(--theme-color);
  border-right: 0;
  border-radius: 70px 0 0 0;
}
.timeline-row:nth-child(2n + 2) .corner.bottom {
  border-radius: 0 0 0 70px;
}
.timeline-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding-bottom: 0px;
  position: var(--relative);
}
.timeline-row:nth-child(2n + 2) {
  justify-content: space-around;
  text-align: right;
  padding: 0 2%;
}
.timeline-row:nth-child(2n + 2) {
  flex-direction: row-reverse;
}
.timeline-box {
  max-width: 550px;
  margin-right: 25px;
  position: var(--relative);
}
.timeline-main {
  margin-top: -75px;
}
.timeline-row:first-child {
  margin: 0 0px 0 auto;
  max-width: 75%;
  justify-content: space-between;
  padding: 0 0 0 120px;
}
.corner.bl {
  bottom: 0;
  left: 0;
  border-left: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  border-radius: 0 0 0px var(--full);
  border-right: none;
  border-top: none;
  height: 76px;
  width: 76px;
}
.start-point .corner.bl {
  left: 50%;
  bottom: 0px;
  transform: translateY(100%);
  top: unset;
}
.timeline-box:before {
  content: "";
  position: var(--absolute);
  left: 0;
  top: 27.5px;
  height: 1px;
  width: var(--full);
}
.timeline-box-wrap {
  padding: 45px 0px 0;
  position: var(--relative);
  background: #0e3746;
  padding: 0;
  margin-bottom: 90px;
  text-align: center;
}
.timeline-row:first-child::after {
  left: -54px;
  width: 97%;
  transform: none;
}
.timeline-content {
  padding: 10px 10px 0;
  color: #fff !important;
}
.timeline-content-txt {
  padding: 10px 0 0 0;
  margin-top: -8%;
}
.timeline-content-txt h5 {
  font-size: var(--font-18);
  font-family: var(--theme-font);
}
.timeline-box.img-right .timeline-content,
.timeline-box.img-left .timeline-content {
  display: flex;
  align-items: flex-start;
}
.timeline-box.img-right .timeline-content img {
  margin-left: var(--font-18);
}
.timeline-box.img-left .timeline-content img {
  margin-right: var(--font-18);
}
.timeline-box.img-left .timeline-content {
  flex-direction: row-reverse;
}
.timeline-row:first-child .timeline-box:first-child img {
  filter: drop-shadow(0 0 27px rgba(0, 0, 0, 0.16));
  -webkit-filter: drop-shadow(0 0 27px rgba(0, 0, 0, 0.16));
  display: block;
  margin: 0;
}
.timeline-box-wrap .timeline-content img {
  filter: drop-shadow(0 0 27px rgba(0, 0, 0, 0.16));
  -webkit-filter: drop-shadow(0 0 27px rgba(0, 0, 0, 0.16));
  z-index: 2;
  position: var(--relative);
}
.timeline-row:last-child .corner.bottom {
  display: none;
}
.timeline-row:nth-child(2n + 1) .timeline-box:last-child .timeline-box-wrap {
  text-align: center;
}
.start-point.end-point:before {
  display: none;
}
.start-point.end-point {
  position: var(--absolute);
  bottom: 0;
  right: 0%;
  transform: translateX(50%);
}
.timeline-row:nth-child(2n + 2) .start-point.end-point {
  left: 0;
  transform: translateX(-50%);
  right: unset;
}
.timeline-box.img-right .timeline-content-txt {
  text-align: center;
}
.timeline-box.img-left .timeline-content-txt {
  text-align: center;
}
.timeline-box.img-left,
.timeline-box.img-right {
  text-align: center;
}
.timeline-row:first-child .timeline-box::after {
  left: auto;
  right: 0;
  -webkit-transform: translate(100%, -50%) rotate(0deg);
  transform: translate(100%, -50%) rotate(0deg);
}
.timeline-row:first-child .timeline-box:first-child {
  width: 36%;
}
.timeline-row .timeline-box:nth-child(3)::after {
  display: none;
}
.timeline-row:last-child .verticle-line::after {
  display: none;
}
.timeline-row:first-child .timeline-box:nth-child(2)::after {
  display: none;
}
.timeline-content-img .timeline-content {
  position: var(--relative);
  text-align: center;
}
.service-carousel1 .service-item {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.service-carousel1 .grid-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
}
.service-carousel1 .service-item .item_h {
  min-height: 220px;
}
.service-carousel1 .service-item .item_padding {
  padding: 10% 8%;
}
.service-carousel1 .service-item .item {
  font-family: var(--theme-font);
  background: #fff;
  padding: 8%;
  display: flex;
  border-bottom: 2px solid #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  margin: 10px 6px;
  transition: opacity 2s ease-in-out, height 1s ease-in-out;
  opacity: 1;
  cursor: pointer;
}
.service-carousel1 .service-item .item:hover {
  transition: all linear 0.3s;
  border-bottom: 2px solid rgb(253, 145, 145);
}
.service-carousel1 .service-item .item:hover h2,
.service-carousel1 .service-item .item:hover p {
  color: var(--black);
  transition: color 0.3s ease-in-out;
}
.service-carousel1 .service-item .item:hover img {
  animation: smoothBounceIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: var(--transition);
}
@keyframes smoothBounceIn {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.8);
  }
  40% {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
  70% {
    transform: translateY(0px) scale(0.95);
  }
  100% {
    transform: translateY(-0px) scale(1);
  }
}
.service-carousel1 .service-item .item:hover .icon-frame .second-frame {
  width: 55px;
  height: 55px;
  transition: all linear 0.3s;
}
.insurance-carousel .service-item .item:hover h2 {
  transition: color 0.3s ease-in-out;
  cursor: pointer;
}
.insurance-carousel .service-item .item:hover img {
  animation: smoothBounceIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: var(--transitionEase);
}
.partner-section-area .service-carousel1 .service-item .item {
  filter: grayscale(20%);
  transition: all linear 0.3s;
}
.partner-section-area .service-carousel1 .service-item .item:hover {
  filter: grayscale(0);
  transition: all linear 0.3s;
}
.service-carousel1 .service-item .item .icon-frame {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff7e8;
}
.service-carousel1 .service-item .item .icon-frame .second-frame {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-yellow);
}
.service-carousel1 .service-item .item .icon-frame .second-frame img {
  width: 23px;
  display: block;
}
.service-carousel1 .service-item .item .common-frame {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-carousel1 .service-item .item .common-frame img {
  width: 23px;
  display: block;
  transition: var(--transition);
}
.service-carousel1 .service-item .item .common-frame-bg {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-carousel1 .service-item .item .common-frame-bg img {
  width: 23px;
  display: block;
}
.life-bg {
  background-color: #fff3e8;
}
.health-bg {
  background-color: #ffece7;
}
.sip-bg {
  background-color: #fff7dc;
}
.mf-bg {
  background-color: #eaffd8;
}
.adv-bg {
  background-color: #fff7dc;
}
.sme-bg {
  background-color: #f3fafe;
}
.distress-bg {
  background-color: #e6f5c7;
}
.pvt-bg {
  background-color: #feefe7;
}
.nbfc-bg {
  background-color: #fff0d8;
}
.service-carousel1 .service-item .item h2 {
  font-size: var(--font-16);
  color: #272525;
  text-align: center;
  margin: 0;
  padding: 10px 0px;
  font-weight: var(--fw6);
  text-transform: math-auto;
  font-family: var(--theme-font);
}
.service-carousel1 .service-item .item h2 span {
  display: block;
}
.service-carousel1 .service-item .item p {
  font-size: 13px;
  line-height: 1.5em;
  color: #3d3c3c;
}
.owl-theme .owl-nav {
  display: none;
}
.learn-card {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s;
  height: var(--full);
}
.learn-padding {
  padding: 1.5rem;
}
.learn-padding ol ul,
.quick-action{
  padding-left:0px;
}
.learn-padding ol ul li,
.quick-action li{
  padding-left:0px;
  display: block;
}
.quick-action li{
  line-height: 26px;
}



.blog-padding {
  padding: 1.7rem;
}
.learn-card:hover {
  cursor: pointer;
  box-shadow: 0 4px var(--font-16) rgba(0, 0, 0, 0.1);
}
.learn-card:hover a {
  color: var(--theme-color) !important;
}
.learn-card:hover img {
  rotate: 40deg;
  transition: all linear 0.3s;
  margin-left: 4px;
}
.learn-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  margin-right: 2rem;
  background-color: var(--theme-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.learn-icon svg {
  width: var(--font-18);
  height: var(--font-18);
  fill: #fff;
}
.learn-text h4 {
  font-family: var(--theme-font);
  font-size: 1.15rem;
  font-weight: var(--fw5);
  color: #333;
}
.learn-text h5 {
  font-family: var(--theme-font);
  font-size: 1.15rem;
  font-weight: var(--fw6);
  color: #333;
}
.learn-text a {
  font-family: var(--theme-font);
  font-size: 0.875rem;
}
.learn-inner {
  display: grid;
  align-items: center;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s;
  margin-top: -15%;
}
.learn-padding {
  padding: 2.5rem;
}
.gradient-bg {
  background-image: linear-gradient(#fff3f5, #fff9fa);
  padding: 3% 2.5%;
  border-radius: var(--theme-border-radius);
}
.pattern {
  background-image: url("../assets/blog/pattern.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.learn-inner p {
  font-family: var(--theme-font);
  font-size: var(--default-font-size);
  color: var(--black);
}
.learn-inner ol {
  font-family: var(--theme-font) !important;
  font-size: var(--default-font-size);
  color: var(--black);
}
.learn-inner h6 {
  font-family: var(--theme-font) !important;
  font-weight: var(--fw6);
  color: var(--black);
  padding-top: 2%;
}
.learn-inner h5 {
  font-family: var(--theme-font) !important;
  font-weight: var(--fw6);
  color: var(--black);
  padding: 1.5% 0;
}
.learn-inner hr {
  margin-top: 2rem;
  color: var(--off-white);
}
.learn-inner .learn-text h4 {
  font-family: var(--theme-font);
  font-size: 1.6rem;
  font-weight: var(--fw5);
  color: var(--black);
  padding: 1% 0 2.5% 2%;
}
.innerpage-banner {
  background-color: #ffedf0;
  padding: 9% 0 11% 0;
}
.button-top {
  margin-top: 4%;
}
.learn-inner .btn img {
  transform: rotate(268deg);
  transition: var(--transitionEase);
}
.learn-inner .btn:hover img {
  transform: rotate(220deg);
  transition: var(--transitionEase);
}
.learn-inner .btn {
  font-family: var(--theme-font);
  position: var(--relative);
  overflow: hidden;
  background: var(--theme-color);
  border: 1px solid var(--theme-color);
  color: var(--white) !important;
  padding: 1% 2%;
  font-size: 13px;
  width: max-content;
  cursor: pointer;
  border-radius: var(--theme-border-radius);
  display: var(--flex);
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.learn-inner .btn::before {
  content: "";
  position: var(--absolute);
  top: 0;
  left: -120%;
  width: 50%;
  height: var(--full);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) var(--full)
  );
  transform: skewX(-45deg);
  opacity: 0;
  transition: left 0.7s ease-in-out, opacity var(--transition);
}
.learn-inner .btn:hover::before {
  left: 150%;
  opacity: 1;
}
.learn-inner .btn:hover {
  background: var(--secondary-color);
  color: var(--white);
}
.learn-inner .btn:active {
  background: var(--secondary-color) !important;
  color: var(--white) !important;
}
@keyframes shine {
  from {
    left: -150%;
  }
  to {
    left: 150%;
  }
}
.learn-inner .btn:hover::before,
.learn-inner .btn:active::before {
  opacity: 1;
  animation: shine 1.2s ease-in-out;
}
.learn-inner .btn .circle_white {
  background: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, margin-left 0.3s ease;
}
.learn-inner .btn .circle_white img {
  max-width: 80%;
  max-height: 80%;
}
@keyframes moveBackground {
  0% {
    background-position: left top, right top;
    background-size: 220px, 430px;
  }
  50% {
    background-position: left top 0px, right top 0px;
    background-size: 220px, 440px;
  }
  100% {
    background-position: left top, right top;
    background-size: 220px, 430px;
  }
}
.offcanvas-title {
  font-family: var(--theme-font) !important;
}
.learn-and-resource .card {
  border-radius: var(--theme-border-radius);
}
.learn-and-position .card img:first-of-type {
  border-top-left-radius: var(--theme-border-radius);
  border-top-right-radius: var(--theme-border-radius);
  position: var(--relative);
}
.learn-and-position .card img:nth-of-type(2) {
  position: var(--absolute);
  width: 35px;
}
.learn-and-position .card .card-body img {
  width: 20px;
  padding-top: 5%;
}
.learn-and-position .card h4 {
  font-size: 18px;
}
.strategy-section h1 {
  font-size: 38px;
}
.referral_image img {
  width: 380px;
}
.specl h2 {
  font-weight: var(--fw6) !important;
}
.specl h4 {
  font-weight: 500 !important;
}
.specl p span {
  color: #fdd835;
}
.benefits-image img {
  border-radius: var(--theme-border-radius);
}
.h-405 {
  height: 404px;
}
.eligibility_ul {
  display: inline;
  padding-left: 0px !important;
}
.eligibility_ul li {
  display: inline;
}
.eligibility_ul li:first-child {
  font-weight: var(--fw6);
}
.career-opening {
  padding: 1% 3%;
  font-size: var(--default-font-size);
  color: var(--default-font-size);
  border: 1px solid var(--black);
  border-radius: var(--theme-border-radius);
  transition: var(--transition);
  cursor: pointer;
}
.career-opening:hover,
.seemore:hover {
  background-color: var(--black);
  color: var(--white) !important;
  transition: var(--transition);
}
.seemore {
  padding: 1.5% 4%;
  font-size: var(--default-font-size);
  color: var(--default-font-size);
  border: 1px solid var(--black);
  border-radius: var(--theme-border-radius);
  transition: var(--transition);
  cursor: pointer;
}
.career-section img {
  border-radius: var(--theme-border-radius);
  object-fit: cover;
  width: var(--full);
}
.career-section .col-md-6 {
  height: 400px;
}
.career-section .row > div:nth-of-type(4) img {
  height: 274px;
}
.h-40 {
  height: 40% !important;
}
.hybrid-funds-cover img {
  object-fit: cover;
  object-position: center;
  height: 210px;
  width: var(--full);
  border-radius: var(--theme-border-radius);
}
.debt-mutual-funds img {
  object-fit: cover;
  object-position: center;
  height: 335px;
  width: var(--full);
  border-radius: var(--theme-border-radius);
}
.advantage-cover img {
  object-fit: cover;
  object-position: center;
  height: 198px;
  width: var(--full);
  border-radius: var(--theme-border-radius);
}
.stock-card img {
  object-fit: cover;
  object-position: center;
  height: 165px;
  width: var(--full);
  border-radius: var(--theme-border-radius);
}
.future-head h5 {
  font-size: 33px;
}
.future-head img {
  width: 30px;
}
@media screen and (max-width: 400px) {
  .people_say .loanitol-service .owl-theme .owl-dots,
  .people_say2 .loanitol-service .owl-theme .owl-dots {
    padding-left: 13vw;
  }
  .job-title {
    font-size: 24px;
  }
  .job-description {
    font-size: 13px;
  }
  .job-description ul li {
    padding-left: 14px;
  }
  .btn-apply .icon {
    margin-left: 0% !important;
  }
}
@media screen and (max-width: 600px) {
  .calculator-container{
    display: block!important;
  }
  .calculator-container .sip-calculator-card:first-child,
  .calculator-container .calculator-card:first-child{
    margin-bottom: 20px!important;
  }

  .job-card-title,
  .job-card a {
    padding: 0.5rem 0.5rem !important;
  }
  .hero-smaller--section-area {
    padding: 16% 0% !important;
  }
  .loan-comparison-container .report-modal-title {
    font-size: 1.3rem;
  }
  .loan-comparison-container .report-modal-content {
    max-width: 90%;
    width: 90%;
  }
  .btn-warning i {
    display: none;
  }

  .grid {
    -ms-flex: var(--full);
    flex: var(--full);
    max-width: var(--full);
  }
  .img_h1,
  .img_h2 {
    height: auto;
  }
  .job-meta ul li:not(:last-child)::after {
    top: auto;
  }
  .job-vaccancy {
    padding: 27% 5%;
  }
  .job-title {
    font-size: 22px;
  }
  .job-meta {
    flex-direction: column;
    padding: 12px 0;
  }
  .job-meta ul li:not(:last-child)::after {
    content: "";
    position: var(--absolute);
    bottom: 0;
    left: 0;
    width: var(--full);
    height: 1px;
    background: var(--off-white);
    opacity: 0.2;
    transform: none;
  }
  .job-meta ul li {
    padding-bottom: 12px;
    position: var(--relative);
    width: var(--full);
  }
  .job-meta ul li:first-child {
    padding-left: auto;
  }
  .btn-apply {
    width: var(--full);
    justify-content: center;
    padding: 12px 0;
    margin-top: 8px;
  }

  .debt-mutual-funds img,
  .hybrid-funds-cover img {
    height: 180px;
  }
  .advantage-cover img,
  .stock-card img {
    height: 150px;
  }
  .mutual-fund-card .card-body {
    padding: 8%;
  }
  .exclusive h4 {
    font-size: 20px;
  }
  .life-at-loanitol h1,
  .current-openings-container h1,
  .why-work-with-us h1 {
    font-size: 33px !important;
  }
  .why-work-with-us img {
    width: 100px !important;
  }
  .career-opening,
  .seemore {
    padding: 4% 8%;
  }
  .job-card-title {
    font-size: var(--default-font-size) !important;
  }
  .job-card {
    padding: 1.5rem 1rem !important;
  }
  .img-equal-height,
  .img-msme-height,
  .img-commerical-height,
  .bridge-section_img,
  .agri-height {
    height: 180px !important;
    margin-bottom: 5%;
  }
  .referral_image img {
    width: 96%;
  }
  .strategy-section h1 {
    font-size: 28px;
  }
  .insurance-card img,
  .health-insurance-cover img {
    height: 155px !important;
  }
  .pattern_z_1,
  .pattern_z_2 {
    top: 20% !important;
    transform: translateY(-20%) !important;
    width: 48%;
    min-width: 100% !important;
  }
  .pd-choose {
    padding-top: 6%;
  }
  .img_h {
    min-height: 140px;
  }
  .img_accounting_h {
    min-height: 140px;
    max-height: 140px;
  }
  .heading h5 {
    font-size: var(--font-18);
  }
  .blog-wrapper h4 {
    font-size: var(--default-font-size);
  }
  .innerpage-banner {
    padding: 17% 0 18% 0;
  }
  .learn-inner {
    margin-top: -25%;
  }
  .learn-padding {
    padding: 1.5rem;
  }
  .gradient-bg {
    padding: 9% 8%;
  }
  .learn-inner .learn-text h4 {
    font-size: 1.4rem;
  }
  .learn-inner .btn {
    padding: 2.5% 6%;
    margin-top: 4%;
  }
  .quote-left {
    left: 4%;
  }
  .quote-right {
    right: auto;
    left: 3%;
    transform: rotate(0deg);
  }
  .management_area_gradient h5 {
    padding-left: 16%;
  }
  .management_area_gradient .quote-img {
    top: 3%;
  }
  .why-section-area {
    padding: 12% 0%;
  }
  .m-left {
    margin-left: 0%;
  }
  .management_area_gradient {
    padding: 12% 0%;
  }
  .board {
    padding: 13% 0% 16% 0%;
  }
  .about-timeline {
    padding: 70px 0 70px !important;
  }
  .timeline-row:first-child {
    margin: 0 !important;
    max-width: 100% !important;
  }
  .timeline-row .verticle-line {
    left: 0%;
    transform: translate(0%, 0);
    height: calc(100% - 0px);
  }
  .timeline-row:nth-child(2n + 2) .verticle-line {
    left: 0% !important;
    right: auto;
  }
  .timeline-content-img .timeline-content,
  .timeline-box.img-right .timeline-content-txt,
  .timeline-box.img-left .timeline-content-txt {
    text-align: left !important;
  }
  .timeline-box-wrap {
    text-align: left !important;
    width: 95% !important;
    padding: 0 0px 0 30px !important;
  }
  .timeline-row:nth-child(2n + 2) {
    padding: 0 0% !important;
  }
  .timeline-row .verticle-line {
    margin-top: 6% !important;
  }
  .about-timeline {
    padding: 50px 0;
  }
  .timeline-box h6 {
    font-size: 27px;
  }
  .timeline-box p {
    -size: 14px;
    line-height: 1.4;
  }
  .timeline-box-wrap {
    margin: 30px 0 0 0;
  }
  .timeline-row .timeline-box:nth-child(2n) .timeline-box-wrap {
    margin: 30px 0 0 0px !important;
  }
  .timeline-box::after,
  .timeline-row:nth-child(2n + 1) .timeline-box::after {
    top: 6px;
  }
  .timeline-box-wrap .timeline-content img {
    max-width: var(--full);
  }
  .timeline-box.img-right .timeline-content img,
  .timeline-box.img-left .timeline-content img {
    max-width: var(--full);
    max-height: unset;
  }
  .timeline-box-wrap {
    text-align: left;
  }
  .timeline-content-img .timeline-content,
  .timeline-box.img-right .timeline-content-txt {
    text-align: left;
  }
  .video-frame {
    height: 26rem;
  }
  /* .advisory_section_area .icon-frame {
    background-color: var(--theme-color);
  } */
  .advisory_section_area svg g path,
  .advisory_section_area clipPath react {
    fill: var(--theme-color);
  }
  .features-image-box {
    height: 20vh;
  }
  .benefits-image-box {
    height: 20vh;
  }
  .h4-size2 {
    font-size: 24px;
  }
  .h4-size3 {
    font-size: 20px;
  }
  .sticky-nav-wrapper {
    border-radius: 0px;
  }
  .document {
    padding: 0%;
  }
  .document .bg-- {
    padding-bottom: 14%;
  }
  .people_say .loanitol-service .owl-theme .owl-dots,
  .people_say2 .loanitol-service .owl-theme .owl-dots {
    margin-left: -17.5em;
  }
  .ps-sm-4 {
    padding-left: 0.5rem;
  }
  .carouselOption h5 span,
  .carouselOption h5,
  .carouselOption p {
    color: var(--white) fff !important;
  }
  .carouselOption h5 {
    padding-bottom: 3%;
  }
  .carouselOption h5 {
    font-size: 7.5vw;
  }
  .service_section_margin {
    margin-top: -14%;
  }
  .carouselOption p,
  .navbar-text,
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .hide-cols,
  .fixed-buttons .btn-blue,
  .fixed-buttons .btn-red,
  .sticky-nav,
  .hero-section-area img {
    display: none;
  }
  .about_loan_area_gradient {
    padding: 18% 2%;
  }
  .image-section {
    margin-bottom: 8%;
  }
  .insurance_loan_area {
    padding: 14% 2%;
  }
  .lender-section-area {
    padding: 0% 0% 20% 0%;
  }
  .lender-section-area img {
    padding-top: 4%;
  }
  .advisory-section {
    padding: 2% 0% 9% 0%;
  }
  .fund_loan_area {
    padding: 18% 3%;
  }
  .people_say {
    padding: 18% 2% 7% 2%;
  }
  .why-section-area .align-items-stretch {
    margin-top: 5%;
  }
  .testimonial_area .testimonial_img_section .sm-logo {
    left: 56vw;
    bottom: 64%;
  }
  .testimonial_area {
    background-position: right bottom;
  }
  .loanitol_center_area {
    padding: 13% 2%;
  }
  .loanitol_center_area button {
    margin-bottom: 5%;
  }
  .list-style,
  .accordion-button {
    padding: 6% 3%;
  }
  .accordion-body {
    padding: 6% 7% !important;
  }
  .lender-section-area {
    padding: 0% 3% 20% 3%;
  }
  .partner-section-area {
    padding: 18% 3%;
  }
  .bg-contact-area {
    padding: 18% 5%;
  }
  .footer-bg-area {
    padding: 15% 0% 9% 0%;
  }
  .copyright-bg-area {
    padding: 5% 0%;
  }
  .copyright-bg-area .f-right p {
    float: left;
    padding-top: 2%;
  }
  .testimonial_area .testimonial_img_section {
    margin-bottom: 10%;
  }
  .loanitol-service .service-item .item h2 {
    font-size: 17px;
  }
  .h4-size-area {
    font-size: 28px;
  }
  .h4-testimonial-size {
    font-size: 26px;
    margin-bottom: 5%;
  }
  .btn-md-red,
  .btn-md-blue {
    display: block;
  }
  .loanitol_center_area .btn {
    margin-bottom: 5%;
  }
  .empower-section {
    padding: 12% 2% 10% 2%;
  }
  .details-section {
    padding: 7% 2% 10% 2%;
  }
  #emi-calculator .emi-form {
    padding: 10% 2% 10% 2%;
  }
  .img-position {
    margin-left: 0px;
  }
  .eligibility {
    padding: 10% 2% 10% 2%;
  }
  .emi-label {
    width: 30dvw;
  }
  .hero-section-area {
    padding: 8% 0%;
  }
  .h5-size {
    font-size: 6vw;
  }
  .career-head {
    font-size: 8vw;
  }
  .details-section .img-frame {
    margin: 5% 0%;
  }
  #emi-calculator form {
    padding: 8% 0% 10% 0%;
  }
  .eligibility .col-md-4 {
    padding: 3% 2% 5% 2%;
  }
  .people_say2 {
    padding: 3% 2%;
  }
  .form-pd h3,
  .h6-size {
    font-size: 5vw;
  }
  .form-pd h3 {
    margin-bottom: 6%;
  }
  .hero-small--section-area {
    background-color: #f5dadf;
    padding: 18% 0%;
  }
  .form-pd {
    padding: 10% 0% 18% 0%;
  }
  .address {
    padding-top: 7%;
  }
  .carouselOption h5 span {
    display: contents;
  }
  .owl-carousel .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .service_section_margin .btn {
    padding: 4% 10%;
  }
  h4 span {
    display: block;
    line-height: 20px;
  }
  .loanitol-service h4 {
    font-size: 24px;
    line-height: 41px;
  }
  .counter-item {
    font-size: 6vw;
  }
  .counter-item p {
    font-size: 3vw;
  }
  .counter-item {
    font-size: 30px;
    padding: 7% 5%;
    border-bottom: 1px dashed #c7c1c1;
    border-right: 1px dashed transparent;
  }
  .no-border-right {
    border-bottom: 1px dashed transparent;
  }
  .circle-count img {
    width: 70px;
    padding: 2.2%;
  }
  .counter-item {
    font-size: 33px;
  }
  .carouselOption .btn {
    padding: 2.5% 6%;
  }
  .links-hd ul li a:hover {
    color: #d71920 !important;
  }
  .carousel-item {
    padding-top: 3%;
  }
  .carousel-inner {
    padding: 30px 10px 0px 20px;
  }
  .carousel-content h5 {
    font-size: 7vw;
    font-weight: var(--fw6);
  }
  .carousel-content span {
    display: inline;
  }
  .carousel-content h5 {
    font-size: 7vw;
    font-weight: var(--fw6);
  }
  .carousel-content span {
    color: var(--theme-color) !important;
    display: block;
  }
  .carousel-content p {
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .carousel-content .btn {
    margin-bottom: 4%;
    font-family: var(--theme-font);
    position: var(--relative);
    overflow: hidden;
    background: var(--theme-color);
    border: 1px solid var(--theme-color);
    color: var(--white) !important;
    padding: 1.5% 4%;
    font-size: 13px;
    cursor: pointer;
    border-radius: var(--theme-border-radius);
    display: var(--flex);
    align-items: center;
    width: max-content;
    gap: 8px;
    transition: var(--transition);
  }
  .carousel-content .circle_white_btn {
    width: 30px;
    height: 30px;
    background: var(--white);
    border-radius: 50%;
  }
  .why-section-area .btn {
    padding: 4% 10%;
  }
}
@media screen and (min-width: 600px) {
  .calculator-container{
    display: block!important;
  }
  .calculator-container .sip-calculator-card:first-child
  {
    margin-bottom: 20px!important;
  }
  .hero-smaller--section-area {
    padding: 7.5% 0% !important;
  }
  .advantage-cover img {
    height: 170px;
  }
  .stock-card img {
    height: 180px;
  }
  .debt-mutual-funds img,
  .hybrid-funds-cover img {
    height: 180px;
  }
  .mutual-fund-card .card-body {
    padding: 6%;
  }
  .exclusive h4 {
    font-size: 20px;
  }
  .life-at-loanitol h1,
  .current-openings-container h1,
  .why-work-with-us h1 {
    font-size: 25px !important;
  }
  .career-opening,
  .seemore {
    padding: 2% 5%;
  }
  .img-equal-height,
  .img-msme-height,
  .agri-height,
  .bridge-section_img {
    height: 180px !important;
    margin-bottom: 12%;
  }
  .img-commerical-height {
    height: 265px !important;
    margin-bottom: 12%;
  }
  .sme-ipo_img {
    height: 215px !important;
  }
  .referral_image img {
    width: 96%;
  }
  .strategy-section h1 {
    font-size: 26px;
  }
  .strategy-section .image {
    display: none;
  }
  .strategy-section {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .insurance-card img {
    height: 222px !important;
  }
  .health-insurance-cover img {
    height: 200px !important;
  }
  .common_head_style h5,
  .learn-and-position .card h4 {
    font-size: var(--font-16) !important;
  }
  .img_accounting_h {
    min-height: 164px;
  }
  .finance-accounting-container .accounting-service-section .card {
    height: auto !important;
  }
  .heading h5 {
    font-size: var(--font-18);
  }
  .blog-wrapper h4 {
    font-size: var(--default-font-size) !important;
  }
  .learn-inner .btn {
    padding: 1.5% 4%;
  }
  .quote-left {
    left: 3%;
  }
  .quote-right {
    right: auto;
    left: 3%;
    transform: rotate(0deg);
  }
  .management_area_gradient h5 {
    padding-left: 10%;
    font-size: 20px;
  }
  .why-section-area {
    padding: 6% 0%;
  }
  .m-left {
    margin-left: 0%;
  }
  .management_area_gradient {
    padding: 7% 0%;
  }
  .board {
    padding: 6% 0% 8% 0%;
  }
  .pagination_height {
    margin-top: 3rem !important;
  }
  /* .advisory_section_area .icon-frame {
    background-color: var(--white);
  } */
  .advisory_section_area svg {
    width: var(--font-18);
    height: var(--font-18);
  }
  .advisory_section_area svg g path,
  .advisory_section_area clipPath react {
    fill: var(--theme-color);
  }
  .document .bg-- {
    padding: 6% 3% 3% 3%;
  }
  .document {
    padding: 8% 0% 2% 0%;
  }
  .copyright-bg-area p {
    font-size: 13px;
  }
  .copyright-bg-area {
    padding: 2% 0%;
  }
  .accordion-body {
    padding: 4% !important;
  }
  .h4-size2 {
    font-size: 24px;
  }
  .h4-size3 {
    font-size: 20px;
  }
  .eligibility {
    padding: 4% 0% 6% 0%;
  }
  .people_say .loanitol-service .owl-theme .owl-dots,
  .people_say2 .loanitol-service .owl-theme .owl-dots {
    margin-left: calc(100vh - 800px) !important;
  }
  .testimonial_area .testimonial_img_section .main_img {
    width: 28%;
    border-radius: 30px !important;
    padding-bottom: 3%;
  }
  .ps-sm-4 {
    padding-left: 0.5rem;
  }
  .carousel-content {
    padding-top: 9%;
  }
  .w-80 {
    width: 80% !important;
  }
  .carouselOption h5 {
    font-size: 4vw;
  }
  .insurance-carousel .service-item .item h2 {
    font-size: var(--default-font-size);
    color: var(--black);
    text-align: left;
    padding-left: 10px;
  }
  .insurance_loan_area .service-item .item {
    height: 80px;
  }
  .insurance_loan_area {
    padding: 8% 0%;
  }
  .insurance-carousel .owl-theme .owl-nav {
    margin-top: -27px;
  }
  .carouselOption {
    top: 56%;
    left: 56vw;
  }
  .advisory_section_area .icon-frame {
    width: 40px;
    height: 40px;
  }
  .advisory-section .col-lg-11 {
    padding-left: 6%;
  }
  .h4-size {
    font-size: 26px;
    margin-bottom: 3px;
  }
  .navbar-text {
    font-size: var(--default-font-size);
  }
  .testimonial_area .testimonial_img_section .sm-logo,
  .why-section-area .image-section,
  .hero-section-area img,
  .details-section .img-frame img,
  .fixed-buttons .btn-blue,
  .fixed-buttons .btn-red,
  .sticky-nav,
  .img-position,
  .carouselOption p {
    display: none;
  }
  .about_loan_area_gradient {
    padding: 7% 0% 9% 0%;
  }
  .partner-section-area,
  .bg-contact-area {
    padding: 6% 0%;
  }
  .choose_frame,
  .img_accounting_h {
    min-height: 170px;
  }
  .choose_frame_last_img {
    max-height: 170px;
  }
  .bg-contact-area button {
    padding: 1.5% 4%;
  }
  .footer-bg-area h5 {
    font-size: var(--font-16);
  }
  .footer-bg-area ul li a {
    font-size: 13px;
    transition: all linear 0.3s;
  }
  .links-hd ul li a:hover {
    color: #d71920 !important;
    margin-left: 3px;
    transition: all linear 0.3s;
  }
  .footer-bg-area ul li img:hover {
    margin-left: 0px !important;
  }
  .loanitol_center_area .btn {
    margin-bottom: 5%;
  }
  .loanitol_center_area h4 {
    color: var(--white);
    font-size: 26px;
  }
  .bg-contact-area .btn {
    padding: 2% 6%;
  }
  .testimonial_area .testimonial_img_section .sm-logo {
    width: 63px;
    left: 137px;
    bottom: 43%;
  }
  .hero-section-area {
    padding: 5% 0%;
  }
  .h5-size {
    font-size: 3.6vw;
  }
  .career-head {
    font-size: 4vw;
  }
  .img-position {
    margin-left: 0px;
  }
  .form-pd h3 {
    font-size: 2.8vw;
  }
  .h6-size {
    font-size: 2.6vw;
  }
  .hero-small--section-area {
    padding: 6% 0%;
  }
  .address {
    padding: 5% 0% 6% 0%;
    display: var(--flex);
    width: var(--full);
  }
  .address div:nth-child(1) {
    width: 50%;
  }
  .address div:nth-child(2) {
    width: 50%;
  }
  iframe {
    width: var(--full);
    height: auto;
  }
  .service_section_margin .btn,
  .why-section-area .btn {
    padding: 2.5% 8%;
  }
  .counter-item {
    font-size: 24px;
  }
  .no-border-right-sm {
    border-right: 1px dashed transparent;
  }
  .pd-choose {
    padding-top: 3%;
  }
  .hv {
    min-height: 268px;
  }
  .carouselOption h5 {
    padding-bottom: 1.5%;
  }
  h4 span {
    line-height: 19px;
    display: block;
    font-size: var(--default-font-size);
  }
  .carousel-content h5 {
    font-size: 4.5vw;
    font-weight: var(--fw6);
  }
  .carousel-content p {
    margin-bottom: 20px;
  }
  .carousel-content .btn {
    margin-bottom: 20%;
    font-family: var(--theme-font);
    position: var(--relative);
    overflow: hidden;
    background: var(--theme-color);
    border: 1px solid var(--theme-color);
    color: var(--white) !important;
    padding: 1.5% 3%;
  }
  .learn-inner .learn-text h4 {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .calculator-container{
    display: grid!important;
  }

  .hero-smaller--section-area {
    padding: 9% 0% !important;
  }
  .blog-text h4 {
    font-size: 1.1rem;
  }
  .md-cols {
    display: block !important;
  }
  .exclusive h4 {
    font-size: 20px;
  }
  .life-at-loanitol h1,
  .current-openings-container h1,
  .why-work-with-us h1 {
    font-size: 33px !important;
  }
  .career-opening,
  .seemore {
    padding: 1.8% 4%;
  }
  .img-equal-height {
    height: 180px !important;
  }
  .img-msme-height,
  .agri-height,
  .bridge-section_img {
    height: 205px !important;
  }
  .loan-against-property_img {
    height: 240px !important;
  }
  .working-capital-term-img {
    height: 245px !important;
  }
  .documents-required-home-loan h5 {
    font-size: var(--font-16) !important;
  }
  .strategy-section .image {
    display: block;
  }
  .strategy-section h1 {
    font-size: 26px;
  }
  .common_head_style h5 {
    font-size: var(--font-16) !important;
  }
  .blog-wrapper h4 {
    font-size: var(--font-16) !important;
  }
  .learn-inner .btn {
    padding: 1.5% 3%;
  }
  .learn-text h4 {
    font-size: 1.1rem;
  }
  .learn-text h5 {
    font-size: 1.1rem;
  }
  .learn-text a {
    font-size: 0.8rem;
  }
  .management_area_gradient .quote-img {
    top: 8%;
  }
  .quote-left {
    left: 3%;
  }
  .quote-right {
    right: auto;
    left: 3%;
    transform: rotate(0deg);
  }
  .management_area_gradient h5 {
    padding-left: 10%;
  }
  .h4-size {
    text-align: left;
  }
  .service-carousel1 .service-item .item_padding {
    padding: 13% 8%;
  }
  .why-section-area {
    padding: 6% 0%;
  }
  .management_area_gradient .h-management {
    padding-top: 1.5%;
    padding-bottom: 1.5%;
  }
  .management_area_gradient {
    padding: 5.5% 0%;
  }
  .about-timeline {
    padding: 80px 0 20px !important;
  }
  .video-frame {
    height: 15rem;
  }
  .video-thumb {
    object-position: center;
  }
  .pagination_height {
    margin-top: 3rem !important;
  }
  .advisory_section_area .icon-frame {
    background-color: var(--theme-color);
  }
  .advisory_section_area svg g path,
  .advisory_section_area clipPath react {
    fill: var(--white);
  }
  .features-image-box {
    height: 17vh;
  }
  .benefits-image-box {
    height: 17vh;
  }
  .copyright-bg-area p {
    font-size: var(--default-font-size);
  }
  .accordion-body {
    padding: 2.5% 4% !important;
  }
  .document {
    padding: 6% 0% 3% 0%;
  }
  .about_loan_area_gradient {
    padding: 5% 0% 7% 0%;
  }
  .partner-section-area,
  .bg-contact-area {
    padding: 5% 0%;
  }
  .loanitol-service .service-item .item h2 {
    font-size: var(--default-font-size);
  }
  .people_say .loanitol-service .owl-theme .owl-dots,
  .people_say2 .loanitol-service .owl-theme .owl-dots {
    margin-left: -9em !important;
  }
  .testimonial_area .testimonial_img_section .main_img {
    width: 87%;
  }
  .testimonial_area .testimonial_img_section .sm-logo {
    display: block;
  }
  .carousel-indicators {
    margin-bottom: clamp(25px, 0vw, -10px) !important;
  }
  .carousel-content {
    padding-top: 3%;
  }
  .carousel-content h5 {
    font-size: 2.5vw;
    font-weight: var(--fw6);
  }
  .carousel-content p {
    margin-top: 10px;
    margin-left: 0%;
    margin-bottom: 20px;
  }
  .carousel-content .btn {
    margin-bottom: 4%;
    font-family: var(--theme-font);
    position: var(--relative);
    overflow: hidden;
    background: var(--theme-color);
    border: 1px solid var(--theme-color);
    color: var(--white) !important;
    padding: 1.5% 3%;
    margin-left: 0%;
  }
  .carouselOption {
    top: 54%;
    left: 50%;
  }
  .insurance-carousel .service-item .item h2 {
    font-size: var(--default-font-size);
    text-align: left;
    padding: 5px 6px;
  }
  .insurance_loan_area .service-item .item {
    height: 80px;
  }
  .insurance-carousel .owl-theme .owl-nav {
    margin-top: -31px;
  }
  .insurance_loan_area {
    padding: 5% 0%;
  }
  .advisory_section_area .icon-frame {
    width: 40px;
    height: 40px;
  }
  .advisory-section .col-lg-11 {
    padding-left: 3%;
  }
  .why-section-area .image-section,
  .fixed-buttons .btn-blue,
  .fixed-buttons .btn-red,
  .details-section .img-frame img,
  .hide-cols {
    display: none;
  }
  .choose_frame,
  .img_accounting_h {
    min-height: 164px;
  }
  .choose_frame_last_img {
    max-height: 164px;
  }
  .testimonial_area .testimonial_img_section .main_img {
    width: 90%;
  }
  .testimonial_area .testimonial_img_section .sm-logo {
    width: 57px;
    left: 164px;
    bottom: 39%;
  }
  .footer-bg-area h5 {
    font-size: 17px;
  }
  .footer-bg-area ul li {
    font-size: var(--default-font-size);
  }
  .social_media ul li img {
    padding-bottom: 6%;
  }
  .footer-bg-area ul {
    padding: 10% 0%;
  }
  .loanitol-service .service-item .item h2 {
    font-size: var(--default-font-size);
  }
  .footer-bg-area ul li a {
    font-size: 13.5px;
  }
  .modal-body .item_p2 {
    padding: 3% 3%;
  }
  .bg-contact-area .btn {
    padding: 4% 10%;
  }
  .people_say .loanitol-service .owl-theme .owl-dots,
  .people_say2 .loanitol-service .owl-theme .owl-dots {
    margin-left: -19%;
    margin-top: 0px;
    margin-bottom: 30px;
    z-index: 2;
  }
  .sticky-nav {
    display: block;
  }
  .details-section .img-frame img,
  .img-position {
    display: block;
  }
  .details-section {
    padding: 5% 0% 7% 0%;
  }
  .people_say2 {
    padding: 3.5% 0% 0% 0%;
  }
  .h5-size {
    font-size: 3vw;
  }
  .career-head {
    font-size: 4vw;
  }
  .hero-section-area img {
    display: block;
  }
  .hero-section-area {
    padding: 3% 0%;
  }
  .form-pd h3 {
    font-size: 2.7vw;
  }
  .h6-size {
    font-size: 2.6vw;
  }
  .hero-small--section-area {
    padding: 7% 0%;
  }
  .owl-carousel .grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .service_section_margin .btn {
    padding: 2% 5%;
  }
  .circle-count img {
    width: 50px;
  }
  .counter-item {
    font-size: 24px;
  }
  .no-border-right-sm {
    border-right: 1px dashed #f0f0f0;
  }
  .hv {
    min-height: 268px;
  }
  .carouselOption p {
    display: block;
  }
  .carouselOption h5 {
    padding-bottom: 0%;
  }
  .carousel-item {
    padding-top: 4%;
  }
  .carousel-content p {
    font-size: 13px;
  }
  .carousel-content h5 {
    font-size: 3.5vw;
  }
  .circle_white_btn {
    width: 25px;
    height: 25px;
  }
  .carousel-content .btn {
    margin-bottom: 13%;
  }
  .why-section-area .btn {
    padding: 2% 5%;
  }
  h4 span {
    line-height: 24px;
    display: block;
    font-size: var(--default-font-size);
  }
  .features-style-box-height {
    min-height: 210px;
  }
}
@media (min-width: 768px) {
  .referral-associate-advantages-section .card .title {
    height: 95px !important;
  }
  .fixed-deposit-section.alert-box {
    padding: 14px 40px;
  }
}

@media only screen and (min-width: 992px) {
  .banner-height{
    height:auto!important;
  }
  .features-style h6 {
  font-size: var(--default-font-size);
  font-weight: var(--fw5);
}

  .innerpage-banner {
  padding: 9% 0 13% 0!important;
}

  .hero-smaller--section-area {
    padding: 5% 0% !important;
  }
  .arrow-btn {
    display: none !important;
  }
  .md-cols {
    display: none;
  }
  .exclusive h4 {
    font-size: 22px;
  }
  .life-at-loanitol h1,
  .current-openings-container h1 {
    font-size: 36px !important;
  }
  .career-opening,
  .seemore {
    padding: 1.3% 4%;
  }
  .documents-required-home-loan h5 {
    font-size: var(--font-18) !important;
  }
  .loan-against-property_img,
  .sme-ipo_img,
  .working-capital-term-img {
    height: 198px !important;
  }
  .strategy-section h1 {
    font-size: 30px;
  }
  .insurance-card img,
  .insurance-work-image img {
    height: 222px !important;
  }
  .common_head_style h5 {
    font-size: var(--font-18) !important;
  }
  .learn-inner .btn {
    padding: 1% 2%;
  }
  .learn-text h4 {
    font-size: 1.15rem;
  }
  .learn-text h5 {
    font-size: 1.24rem;
  }
  .learn-text a {
    font-size: 0.875rem;
  }
  .quote-left {
    left: 3%;
  }
  .quote-right {
    right: auto;
    left: 3%;
    transform: rotate(0deg);
  }
  .management_area_gradient h5 {
    padding-left: 10%;
  }
  .management_area_gradient .h-management {
    padding-top: 1%;
    padding-bottom: 1%;
  }
  .m-left {
    margin-left: 0%;
  }
  .partner-section-area,
  .bg-contact-area {
    padding: 4.8% 0%;
  }
  .carousel-content p {
    font-size: var(--default-font-size);
  }
  .people_say .loanitol-service .owl-theme .owl-dots,
  .people_say2 .loanitol-service .owl-theme .owl-dots {
    margin-left: calc(-16vh - 100px) !important;
  }
  .loanitol-service .service-item h2 {
    font-size: var(--font-16);
  }
  .carouselOption h5 {
    font-size: 2.8vw;
  }
  .why-section-area .image-section {
    display: block;
  }
  .choose_frame,
  .img_accounting_h {
    min-height: 198px;
  }
  .choose_frame_last_img {
    max-height: 198px;
  }
  .testimonial_area .testimonial_img_section .sm-logo {
    width: 100px;
    position: var(--absolute);
    left: 246px;
    bottom: 28%;
  }
  .loanitol-service .service-item .item {
    padding: 9%;
  }
  .w-80 {
    width: 90%;
  }
  .insurance-carousel .service-item .item h2,
  .loanitol-service .service-item .item h2 {
    font-size: 15px;
  }
  .footer-bg-area ul li a {
    font-size: var(--default-font-size);
  }
  .advisory-section .col-lg-11 {
    padding-left: 0%;
  }
  .advisory_section_area .icon-frame {
    width: 60px;
    height: 60px;
  }
  .fixed-buttons .btn-blue,
  .fixed-buttons .btn-red,
  .fixed-buttons .btn-blue,
  .fixed-buttons .btn-blue {
    display: block;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
  .hero-section-area {
    padding: 4% 0% 4% 0%;
  }
  .h5-size {
    font-size: 2.5vw;
  }
  .career-head {
    font-size: 3vw;
  }
  .details-section .img-frame img {
    display: block;
  }
  .details-section {
    padding: 3% 0% 3% 0%;
  }
  .address {
    display: block;
  }
  .address div:nth-child(1),
  .address div:nth-child(2) {
    width: var(--full);
  }
  iframe {
    height: 212px;
  }
  .carouselOption {
    top: 50%;
    left: 50%;
  }
  .owl-carousel .grid-container {
    grid-template-columns: repeat(4, 1fr);
  }
  .loanitol-service .service-item .item p {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    margin-bottom: 0px;
  }
  .service_section_margin .btn,
  .why-section-area .btn {
    padding: 1.5% 4%;
  }
  .circle-count img {
    width: 50px;
  }
  .counter-item {
    font-size: 24px;
  }
  .circle-count img {
    width: 60px;
  }
  .counter-item {
    font-size: 30px;
  }
  .carousel-item {
    padding-top: 0%;
  }
  .carousel-content .btn {
    margin-bottom: 4%;
  }
  .hide-cols {
    display: none;
  }
  .features-style-box-height {
    min-height: 145px;
  }
}
@media only screen and (min-width: 1024px) {
  .banner-height{
    height:210px!important;
    padding-bottom: 6px;
  }
  
  .advantage-cover img {
    height: 198px;
  }
  .stock-card img {
    height: 180px;
  }
  .hybrid-funds-cover img {
    height: 235px;
  }
  .debt-mutual-funds img {
    height: 380px;
  }
  .exclusive h4 {
    font-size: 23px;
  }
  .img-equal-height {
    height: 129px !important;
    object-fit: cover !important;
  }
  .img-msme-height {
    height: 148px !important;
    object-fit: cover !important;
  }
  .agri-height {
    height: 142px !important;
    object-fit: cover !important;
  }

  .bridge-section_img {
    height: 198px !important;
    object-fit: cover !important;
  }
  .img-commerical-height {
    height: 215px !important;
    object-fit: cover !important;
  }
  .strategy-section h1 {
    font-size: 30px;
  }
  .quote-left {
    left: 4%;
  }
  .quote-right {
    top: 13% !important;
    right: auto;
    left: 3%;
    transform: rotate(0deg);
  }
  .management_area_gradient h5 {
    padding-left: 9%;
  }
  .why-section-area {
    padding: 5% 0%;
  }
  .m-left {
    margin-left: -3%;
  }
  .management_area_gradient {
    padding: 4% 0%;
  }
  .about-timeline {
    padding: 80px 0;
  }
  .video-frame {
    height: 17.5rem;
  }
  .video-thumb {
    object-position: center;
  }
  .features-image-box {
    height: 9.5rem;
  }
  .benefits-image-box {
    height: 8.5rem;
  }
  .eligibility {
    padding: 5% 0%;
  }
  .document {
    padding: 6% 0% 2% 0%;
  }
  .about_loan_area_gradient {
    padding: 5% 0% 7% 0%;
  }
  .partner-section-area,
  .bg-contact-area {
    padding: 4% 0%;
  }
  .fixed-buttons-md {
    display: none;
  }
  .people_say .loanitol-service .owl-theme .owl-dots,
  .people_say2 .loanitol-service .owl-theme .owl-dots {
    margin-left: calc(-9vh - 100px) !important;
  }
  .carousel-indicators {
    margin-bottom: clamp(45px, 1vw, 45px) !important;
  }
  .service_section_margin .d-xl-none {
    display: none !important;
  }
  .fund_loan_area .loanitol-service .service-item .item h2 {
    text-align: left;
    padding: 10px 11px;
  }
  .fund_loan_area .loanitol-service .service-item .item {
    padding: 4%;
    height: 90px;
  }
  .testimonial_area .testimonial_img_section .main_img {
    width: 80%;
  }
  .testimonial_area .testimonial_img_section .sm-logo {
    width: 73px;
    left: 207px;
    bottom: 39%;
  }
  .carouselOption h5 {
    font-size: 2.7vw;
  }
  .insurance-carousel .service-item .item h2,
  .loanitol-service .service-item .item h2 {
    font-size: 15.5px;
  }
  .insurance_loan_area h2 {
    font-size: 15px !important;
  }
  .bg-contact-area button {
    padding: 3% 8%;
  }
  .insurance_loan_area .service-item .item {
    height: 93px;
  }
  .footer-bg-area h5 {
    font-size: 19px;
  }
  .footer-bg-area ul {
    padding: 4% 0%;
  }
  .fixed-buttons-md .btn-md-red,
  .fixed-buttons-md .btn-md-blue {
    display: none;
  }
  .sticky-nav .nav-link {
    padding-left: 10px;
    padding-right: 10px;
  }
  .sticky-nav {
    display: block;
  }
  .hero-section-area {
    padding: 3% 0%;
  }
  .form-pd h3 {
    font-size: 2vw;
  }
  .h6-size {
    font-size: 2.3vw;
  }
  .hero-small--section-area {
    padding: 8% 0%;
  }
  .loanitol-service .service-item .item {
    padding: 9%;
  }
  .hv {
    min-height: 268px;
  }
  .carousel-content h5 {
    font-size: 3.3vw;
  }
  .people_say .loanitol-service .owl-theme .owl-dots,
  .people_say2 .loanitol-service .owl-theme .owl-dots {
    margin-left: -24%;
    margin-top: 15px;
    margin-bottom: 30px;
    z-index: 2;
  }
  .h5-size span {
    display: block;
  }
  .h5-size {
    font-size: 2.7vw;
  }
  .details-section-height {
    min-height: 235px;
  }
}
@media only screen and (min-width: 1200px) {

  .banner-height{
    height:240px!important;
    padding-bottom: 6px;
  }

.features-style h6 {
  font-size: var(--font-16);
  font-weight: var(--fw5);
}

  .innerpage-banner {
  padding: 9% 0 11% 0!important;
}
  .img-commerical-height {
    height: 196px !important;
    object-fit: cover !important;
  }
  .stock-card img {
    height: 165px;
  }
  .advantage-cover img {
    height: 198px;
  }
  .hybrid-funds-cover img {
    height: 210px;
  }
  .debt-mutual-funds img {
    height: 360px;
  }
  .mutual-fund-card .card-body {
    padding: 6%;
  }
  .strategy-section h1 {
    font-size: 33px;
  }
  .quote-left {
    left: -3%;
  }
  .quote-right {
    right: -3%;
    left: auto;
    transform: rotate(180deg);
  }
  .management_area_gradient h5 {
    padding-left: 0%;
  }
  .why-section-area {
    padding: 4% 0%;
  }
  .board {
    padding: 5% 0% 1.5% 0%;
  }
  .timeline-box {
    max-width: 300px;
  }
  .timeline-box.img-right .timeline-content img,
  .timeline-box.img-left .timeline-content img {
    max-width: 220px;
    max-height: 230px;
  }
  .timeline-box-wrap .timeline-content img {
    max-width: var(--full);
  }
  .about-timeline {
    background-color: #0e3746;
    padding: 100px 0 20px;
  }
  .video-frame {
    height: 13.5rem;
  }
  .video-thumb {
    object-position: top;
  }
  .features-image-box {
    height: 10.1rem;
  }
  .benefits-image-box {
    height: 8rem;
  }
  .copyright-bg-area {
    padding: 1.5% 0%;
  }
  .people_say .loanitol-service .owl-theme .owl-dots,
  .people_say2 .loanitol-service .owl-theme .owl-dots {
    margin-left: -21vw !important;
  }
  .carousel-indicators {
    margin-bottom: clamp(78px, 1vw, 45px) !important;
  }
  .loanitol-service .service-item h2 {
    font-size: var(--font-18);
  }
  .testimonial_area .testimonial_img_section .sm-logo {
    width: 94px;
    position: var(--absolute);
    left: 246px;
    bottom: 28%;
  }
  .h4-testimonial-size {
    font-size: 30px;
  }
  .h4-size {
    font-size: 28px;
  }
  .h4-size2 {
    font-size: 24px;
  }
  .h4-size3 {
    font-size: 20px;
  }
  .h4-size-area {
    font-size: 32px;
  }
  .align-items-stretch {
    padding-top: 3%;
  }
  .about_loan_area_gradient {
    padding: 4.6% 0%;
  }
  .sticky-nav .nav-link {
    padding-left: 20px;
    padding-right: 20px;
  }
  .sticky-nav {
    overflow: hidden;
  }
  .hero-section-area {
    padding: 3% 0%;
  }
  .form-pd h3 {
    font-size: 2vw;
  }
  .h6-size {
    font-size: 1.6vw;
  }
  .hero-small--section-area {
    padding: 8% 0%;
  }
  .loanitol-service .service-item .item {
    padding: 9%;
  }
  .hv {
    min-height: 235px;
  }
  .carousel-content h5 {
    font-size: 2.8vw;
  }
  .carousel-item {
    padding-top: 0%;
  }
  .h5-size span {
    display: block;
  }
  .h5-size {
    font-size: 2.4vw;
  }
  .details-section-height {
    min-height: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .corner {
    display: none;
  }
  .timeline-row .horizontal-line {
    display: none;
  }
  .timeline-row:first-child {
    max-width: var(--full);
    padding: 0 !important;
  }
  .timeline-main {
    margin-top: 45px !important;
  }
  .timeline-row .verticle-line {
    right: 50%;
    transform: translate(50%, 0);
    height: calc(100% - 0px);
  }
  .timeline-row:nth-child(2n + 2) .verticle-line {
    left: auto;
    right: 50%;
  }
  .verticle-line::after {
    display: none;
  }
  .timeline-row .timeline-box {
    width: var(--full);
    max-width: var(--full);
    margin: 0;
  }
  .timeline-row:first-child .timeline-box:first-child {
    width: 100% !important;
    margin: 0;
  }
  .timeline-row:first-child .timeline-box:nth-child(2) {
    width: var(--full);
  }
  .timeline-box p br {
    display: none;
  }
  .timeline-box h6 {
    transform: translate(0, -75%);
    padding: 0;
  }
  .timeline-content {
    padding: 0;
  }
  .timeline-content-img .timeline-content,
  .timeline-box.img-right .timeline-content-txt {
    text-align: right;
  }
  .timeline-content-img:nth-of-type(2) .timeline-content,
  .timeline-content-img:nth-of-type(7) .timeline-content {
    text-align: left;
  }
  .timeline-box.img-right .timeline-content-txt {
    width: 100% !important;
  }
  .start-point.end-point {
    right: 50%;
  }
  .start-point h4 {
    margin-bottom: 0;
  }
  .about-timeline {
    padding: 80px 0;
  }
  .timeline-box::after {
    -webkit-transform: translate(-100%, 100%) rotate(180deg);
    transform: translate(-100%, 100%) rotate(180deg);
    right: 50%;
    top: 20px;
    left: 50%;
  }
  .timeline-box-wrap {
    width: 50%;
    text-align: right;
    padding: 0 30px 0 0;
    margin: 40px 0 0 0;
  }
  .timeline-row .timeline-box img {
    margin: 0 0 0 auto;
  }
  .timeline-row:first-child .timeline-box:nth-child(2)::after {
    display: block;
  }
  .timeline-row:first-child .timeline-box:first-child img {
    margin: 0 0 0 auto;
  }
  .timeline-box.img-right .timeline-content img,
  .timeline-box.img-left .timeline-content img {
    margin: 0 0 0 auto;
  }
  .timeline-row .timeline-box:nth-child(2n) .timeline-box-wrap {
    margin: 25px 0 0 auto;
    padding: 0 0 0 30px;
    text-align: left;
  }
  .timeline-row:nth-child(2n + 1) .timeline-box::after {
    left: auto;
    right: 50%;
    -webkit-transform: translate(0%, 100%) rotate(180deg);
    transform: translate(0%, 100%) rotate(180deg);
    top: 20px;
  }
  .timeline-row .timeline-box:nth-child(2n)::after {
    transform: translate(100%, 100%) rotate(0deg);
    -webkit-transform: translate(100%, 100%) rotate(0deg);
    right: 50%;
    left: auto;
  }
  .timeline-row .timeline-box:nth-child(3)::after {
    display: block;
  }
  .timeline-box.img-left .timeline-content-txt {
    text-align: right;
  }
  .timeline-row:last-child {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 1199px) {
  .timeline-main {
    margin-top: -36px;
  }
  .about-timeline {
    padding: 90px 0 60px;
  }
  .timeline-box h6 {
    font-size: 26px;
  }
  .timeline-box {
    max-width: 270px;
  }
  .timeline-row:first-child {
    padding: 0 0 0 60px;
  }
  .timeline-row:first-child .timeline-box:first-child {
    width: 42%;
  }
  .timeline-box.img-right .timeline-content,
  .timeline-box.img-left .timeline-content {
    flex-wrap: wrap;
  }
  .timeline-box.img-right .timeline-content img,
  .timeline-box.img-left .timeline-content img {
    max-width: 180px;
    max-height: 200px;
  }
  .top-timeline-arrow.timeline-content-img .timeline-content::after {
    right: 0;
  }
  .img-right.timeline-content-img .timeline-content::after {
    top: -20px;
    right: -45px;
  }
  .timeline-box.img-right .timeline-content-txt {
    width: 90%;
  }
}

.hero-small--section-area span {
  font-family: var(--theme-font);
}
.h5-size span {
  color: var(--theme-color);
}
.card-img {
  border-radius: var(--theme-border-radius) !important;
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.07);
}
.hero-small--section-area .h6-size {
  font-size: 20px;
}
.thumbnail {
  position: var(--relative);
}
.thumbnail .play-icon {
  position: var(--absolute);
  top: 0;
}
.play-icon {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #ffefef23;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--full);
  transition: 0.3s;
  cursor: pointer;
}
.play-icon path {
  fill: var(--theme-color);
  opacity: 1;
}
.play-icon:hover {
  background-color: var(--white);
}
.cards-img {
  display: none;
  border-radius: var(--theme-border-radius) !important;
}
.reel-img {
  border-radius: var(--theme-border-radius) !important;
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.07) !important;
}
.show-bttn {
  font-weight: var(--fw6);
  color: #999696 !important;
  font-family: var(--theme-font);
}
.show-bttn.active {
  color: #fff;
  border-radius: 6px;
}
.show-bttn.red {
  color: var(--theme-color) !important;
  font-weight: bold;
}
.modal-header .btn-close {
  background-color: var(--theme-color);
  z-index: 999 !important;
  color: var(--theme-color) !important;
}
.search-field {
  position: var(--absolute);
  bottom: 0;
}
#search-input {
  outline: none !important;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.5;
  font-family: var(--theme-font);
}
#search-input::placeholder {
  font-size: var(--default-font-size);
  font-family: var(--theme-font);
}
#search-input2::placeholder {
  font-size: var(--default-font-size);
  font-family: var(--theme-font);
}
.h4-size {
  font-family: var(--theme-font);
}
.h6-size {
  font-family: var(--theme-font);
}
video {
  pointer-events: auto;
  z-index: 10;
}
.modal-dialog,
.modal-content,
.modal-body {
  overflow: visible !important;
}
.video-container .title {
  font-size: 24px;
}
.reels-container .title {
  font-size: 24px !important;
}
.read-more-btn {
  color: var(--theme-color) !important;
  font-weight: var(--fw6) !important;
  font-family: var(--theme-font);
  font-size: var(--default-font-size);
}
.read-more-btn img {
  width: 28px;
  transition: var(--transition);
}
.read-more-btn:hover img {
  width: 24px;
  margin-left: 4px;
  transform: rotate(45deg);
  transition: var(--transition);
}
.read-more-btn {
  display: flex;
  align-items: center;
}
#showmore-btn:hover,
#showmore-reels-btn:hover {
  color: var(--theme-color) !important;
  transition: all linear 0.2s;
  font-weight: var(--fw6) !important;
  font-family: var(--theme-font);
}
#search-input1,
#search-input2 {
  border: 2px solid #ed102c !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  display: none;
  position: var(--absolute);
  right: 0;
  width: 200px;
  height: 35px;
  z-index: 0;
  border-radius: none !important;
  font-size: 13px;
  line-height: 1.5;
  font-family: var(--theme-font);
  outline: none !important;
}
#search-icon1,
#search-icon2 {
  cursor: pointer;
  background: rgb(255, 255, 255);
  transition: width 0.3s, height 0.3s;
  z-index: 1 !important;
}
#search-input1::placeholder,
#search-input2::placeholder {
  font-family: var(--theme-font) !important;
  color: #2e2e2e !important;
}
#search-input1,
#search-input2 {
  border-radius: 0 !important;
}

input.search-field::placeholder {
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #888 !important;
}
input.search-field.show-placeholder::placeholder {
  opacity: 1;
}
.ads-reel-img {
  border-radius: var(--theme-border-radius) !important;
}
.card {
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.07) !important;
}
.circle {
  height: 30px;
  width: 30px;
  color: var(--black);
  background-color: #fff5f6;
  border-radius: var(--full);
}
.active-circle {
  height: 30px;
  width: 30px;
  color: var(--white) !important;
  background-color: var(--theme-color);
  border-radius: var(--full);
}
.card-title {
  color: var(--theme-color);
}
.ads-container {
  display: none !important;
}

.card-title {
  font-family: "Anek Malayalam", sans-serif;
  line-height: 1.5;
  font-size: 24px;
}
.article-card-1 {
  height: 100% !important;
  font-size: clamp(var(--font-18), 2vw, 24px) !important;
}
.article-main-img {
  border-radius: var(--theme-border-radius) !important;
  object-fit: cover;
  height: 251px;
}
.article-img-small-1,
.article-img-small-2,
.article-img-small-3 {
  border-radius: var(--theme-border-radius) !important;
}
.article-container {
  font-family: var(--theme-font);
}
.article-container .card-title {
  font-weight: var(--fw6);
}
.article-card-1 {
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.07);
}
.article-card-2 {
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.07);
}
.article-card-3 {
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.07);
}
.article-card-4 {
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.07);
}
.article-card-5 {
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.07);
}
.label {
  font-size: var(--default-font-size);
  display: flex;
  justify-content: space-between;
  border: #fff5c9 solid 1px;
  border-radius: var(--theme-border-radius);
  font-family: var(--theme-font);
  font-weight: var(--fw5);
}
.hero-smaller--section-area {
  font-family: var(--theme-font);
  position: var(--relative);
  height: 280px;
  background-color: #ffedf0;
  z-index: 0;
  padding: 5% 0%;
}
.breadcrumb-navigation {
  font-family: var(--theme-font);
  font-size: 13px;
  color: #696969;
  font-weight: 300;
}
.article-section {
  z-index: 0 !important;
}
.article-inner-card {
  padding: 2rem;
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.07);
}
.article-inner-card .inner-card p {
  font-family: "Anek Malayalam", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  z-index: 0;
}
.inner-card {
  padding: 2rem;
  background-image: linear-gradient(to bottom, #fff3f5, #fff9fa);
}
.article-inner-title {
  font-family: "Anek Malayalam", sans-serif;
  line-height: 48px;
  font-size: 36px;
  font-weight: var(--fw6);
}
.article-inner-card {
  position: var(--relative);
  margin-top: -130px;
  margin-bottom: 70px;
  z-index: 0;
  background-color: var(--white);
}
.article-inner-btn {
  font-family: var(--theme-font);
  position: var(--relative);
  overflow: hidden;
  background: var(--theme-color);
  border: 1px solid var(--theme-color);
  color: var(--white) !important;
  padding: 10px 20px;
  font-size: 13px;
  width: max-content;
  cursor: pointer;
  border-radius: var(--theme-border-radius);
  display: var(--flex);
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.article-inner-btn::before {
  content: "";
  position: var(--absolute);
  top: 0;
  left: -120%;
  width: 50%;
  height: var(--full);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) var(--full)
  );
  transform: skewX(-45deg);
  opacity: 0;
  transition: left 0.7s ease-in-out, opacity var(--transition);
}
.article-inner-btn:hover::before {
  left: 150%;
  opacity: 1;
}
.article-inner-btn:hover {
  background: var(--secondary-color);
  color: var(--white);
}
.article-inner-btn:active {
  background: var(--secondary-color) !important;
  color: var(--white) !important;
}
@keyframes shine {
  from {
    left: -150%;
  }
  to {
    left: 150%;
  }
}
.article-inner-btn:hover::before,
.article-inner-btn:active::before {
  opacity: 1;
  animation: shine 1.2s ease-in-out;
}
.article-inner-btn-icon {
  background-color: var(--white);
  border-radius: var(--full);
  width: 35px;
}
.article-inner-btn:hover .article-inner-btn-icon {
  transform: rotate(-45deg);
  transition: var(--transition);
}
.more-articles {
  font-size: 22px;
}
.article-inner-carousel-img {
  border-radius: 1rem !important;
}
.article-img-card {
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.07);
  width: 400px !important;
  height: 200px;
}
.article-img {
  height: var(--full);
}
.article-title {
  font-family: var(--theme-font) !important;
  font-weight: var(--fw6);
}
.article-partner-owl .owl-dots .owl-dot.active span {
  background: var(--theme-color) !important;
}
.article-inner-item {
  background-color: var(--white);
}
.article-partner-owl .owl-dots .owl-dot span {
  background: #d1d1d1;
  width: 12px;
  height: 12px;
  display: block;
  margin: 0 4px;
  transition: background 0.3s;
}
.article-inner-service .article-inner-carousel-img {
  border-radius: var(--theme-border-radius);
}
.article-inner-service .owl-stage {
  margin: 1rem auto;
}
.article-inner-carousel-img {
  border-radius: var(--theme-border-radius) !important;
}
.advisory-service-section {
  padding: 2rem 0;
}
.advisory-service-section .description {
  line-height: 1.7;
}
.legal-advisory-container .icons {
  margin: 0 auto;
  width: 23px;
  height: 23px;
}

.legal-advisory-container span {
  background-color: var(--off-yellow);
  padding: 1rem;
  border-radius: var(--full);
}
.legal-advisory-container .card {
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.07);
  border: none;
  height: 170px !important;
  border-radius: var(--theme-border-radius) !important;
}

.legal-advisory-container .card span {
  position: var(--relative);
  height: 60px;
  width: 60px;
  margin: 0 auto;
  margin-bottom: 15px;
}
.legal-advisory-container span .icons {
  position: var(--absolute);
  margin: auto;
}
.advisory-service-section .card span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
}
.advisory-service-title {
  font-weight: var(--fw6);
  margin: 0;
  font-size: var(--font-16);
}
.legal-advisory-faq-section {
  background: linear-gradient(
    180deg,
    rgb(255, 243, 245) 0%,
    rgb(255, 255, 255) var(--full)
  );
  padding: 5rem 0 !important;
}
.benefits-section {
  background-color: #0c3645;
  padding: 4rem 0;
  font-family: var(--theme-font);
}
.benefits-section .card {
  border: none;
  border-radius: var(--theme-border-radius) !important;
}
.benefits-section .card-body {
  background-color: #2c4e59;
  border: 2px solid #437382;
  border-radius: var(--theme-border-radius);
  padding: 2rem;
}

.benefits-section .card p {
  line-height: 1.7;
}
.same-height {
  display: flex;
  flex-direction: column;
  height: var(--full);
}
.real-estate-container .details-section .card {
  border: 1px solid #e2e2e2 !important;
  font-family: var(--theme-font) !important;
  border-radius: var(--theme-border-radius);
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.03) !important;
}
.real-estate-container .details-section .card .title {
  border-bottom: 1px solid #e2e2e2 !important;
  border-top-left-radius: var(--theme-border-radius) !important;
  border-top-right-radius: var(--theme-border-radius) !important;
  background-color: #fbf9f9;
  font-weight: var(--fw5);
}
.real-estate-container .card:hover {
  background-color: #fff3f5;
  border: 2px solid #f7cfd5;
}
.img-cover {
  object-fit: cover;
  width: var(--full);
  height: var(--full);
}
.strategy-section {
  background-color: var(--theme-color);
  padding-top: 5.5rem !important;
  padding-bottom: 5.5rem !important;
}
.benefits-real-estate-section {
  background-color: #0c3645;
  padding: 5rem 0;
  font-family: var(--theme-font);
}
.benefits-real-estate-section .card {
  background-color: #2c4e59 !important;
  border: 2px solid #437382 !important;
  border-radius: var(--theme-border-radius) !important;
  padding: 2rem !important;
}
.strategy-section {
  font-family: var(--theme-font);
}
.settlement-section h1 {
  font-weight: var(--fw6) !important;
}
.settlement-section h4 span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #fffae3;
  border-radius: var(--full);
  margin-right: 17px;
  font-weight: 400;
  font-size: 24px;
  line-height: 3;
  font-size: var(--font-16);
}
.one-time-settlement-section {
  background: linear-gradient(to bottom, #fff3f5, #ffffff) !important;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.one-time-settlement-section .title {
  margin-bottom: 3rem;
}

.ots-section {
  background-color: var(--theme-color) !important;
  padding-top: 5rem;
  padding-bottom: 5rem;
  font-family: var(--theme-font);
}
.ots-section .card span {
  position: var(--relative);
  height: 60px;
  width: 60px;
  margin: 0 auto;
  margin-bottom: 15px;
  border-radius: var(--full);
}
.ots-section .card p {
  font-weight: var(--fw5);
}
.features-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #0c3645;
  font-family: var(--theme-font);
}
.features-section .card {
  padding: 1rem;
  background-color: #2c4e59;
  border: 1px solid #437382;
  font-family: var(--theme-font);
}
.restructuring-section {
  font-family: var(--theme-font);
}
.restructuring-section h1 {
  font-weight: var(--fw6);
}
.who-required-restructuring-section {
  font-family: var(--theme-font);
  background: linear-gradient(to bottom, #fff3f5, #ffffff);
}
.ots-section-2 {
  font-family: var(--theme-font);
}
.ots-section-2 h2 {
  font-weight: var(--fw6) !important;
}
.ots-section-2 .card p {
  font-weight: 400;
}
.ots-section-2 h6 {
  font-weight: var(--fw5);
}
.ots-section-2 .card {
  padding: 2rem;
  border: none;
}
.ots-section li::marker {
  color: var(--black) !important;
  font-size: 1rem;
}
.features-section li::marker {
  color: var(--white);
}
.finance-accounting-service-container {
  background: linear-gradient(to bottom, #ffffff, #fff3f5);
}
.finance-accounting-container .finance-service-section .card {
  font-family: var(--theme-font) !important;
  border-radius: var(--theme-border-radius);
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.03) !important;
}
.finance-accounting-container .finance-service-section .card .title {
  border-bottom: 1px solid #e2e2e2 !important;
  border-top-left-radius: var(--theme-border-radius) !important;
  border-top-right-radius: var(--theme-border-radius) !important;
  background-color: #fbf9f9;
  font-weight: var(--fw5);
}
.finance-accounting-container .accounting-service-section .card {
  font-family: var(--theme-font) !important;
  border-radius: var(--theme-border-radius);
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.03) !important;
}
.finance-accounting-container .accounting-service-section .card .title {
  border-bottom: 1px solid #e2e2e2 !important;
  border-top-left-radius: var(--theme-border-radius) !important;
  border-top-right-radius: var(--theme-border-radius) !important;
  background-color: #fbf9f9;
  font-weight: var(--fw5);
}
.additional-benefits-section {
  background-color: var(--theme-color);
}
.additional-benefits-section h5 {
  font-size: var(--font-18);
}
.additional-benefits-section p {
  font-size: var(--font-16) !important;
}
.additional-benefits-section .row {
  padding: 2rem;
  border: 1px solid #bc1228;
  background-color: #c31d33;
  border-radius: var(--theme-border-radius);
}
.eligible-professionals-section {
  background-color: #0c3645 !important;
  font-family: var(--theme-font);
}
.eligible-professionals-section .card {
  background-color: #2c4e59;
  border: 2px solid #437382 !important;
  border-radius: var(--theme-border-radius) !important;
}
.registration-program-section h2 {
  font-weight: var(--fw6) !important;
}
.documents-section {
  background: linear-gradient(to bottom, #fff3f5, #ffffff);
}
.reverse-gradient {
  background: linear-gradient(to top, #fff3f5, #ffffff) !important;
}
.documents-section .legal-advisory-container span {
  background-color: #fffae3 !important;
}
.documents-section li::marker {
  color: var(--black);
}
.documents-container .card {
  height: 100% !important;
}
.referral-partner-description-section,
.documents-section,
.referral-associate-advantages-section,
.referral-associate-eligible-professionals-section,
.registration-program-section {
  font-family: var(--theme-font);
}
.referral-associate-advantages-section .card {
  height: 198px !important;
  border-radius: var(--theme-border-radius) !important;
  border: 1px solid #e2e2e2 !important;
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.03) !important;
  object-fit: cover;
  object-position: center;
}
.referral-associate-advantages-section .card .title {
  border-bottom: 1px solid #e2e2e2 !important;
  border-top-left-radius: var(--theme-border-radius) !important;
  border-top-right-radius: var(--theme-border-radius) !important;
  background-color: #fbf9f9;
  font-weight: 100;
}
.referral-associate-advantages-section .card-img {
  object-fit: cover;
  object-position: center;
  border-radius: var(--theme-border-radius);
}
.referral-associate .referral-associate-card {
  height: 100px !important;
}

.documents-section .card .title {
  border-bottom: 1px solid #e2e2e2 !important;
  border-top-left-radius: var(--theme-border-radius) !important;
  border-top-right-radius: var(--theme-border-radius) !important;
  background-color: #fbf9f9;
}
.documents-section .card {
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.03);
}

.loan-dsa-eligibility .card {
  border: 1px solid #e2e2e2;
  border-radius: var(--theme-border-radius) !important;
}
.bridge-loan-features-section li::marker {
  color: var(--black) !important;
}
.bridge-loan-eligibility-section li::marker {
  color: var(--black) !important;
}
.bridge-loan-documents-section li::marker {
  color: var(--white) !important;
}
.bridge-loan-features-section,
.bridge-loan-elgibility-section {
  font-family: var(--theme-font);
  color: #221e1e;
}

.bridge-loan-features-section .card {
  border: 1px solid #f7cfd5;
  box-shadow: none !important;
}
.bridge-loan-eligibility-section .card {
  border: 1px solid #f7cfd5;
  box-shadow: none !important;
}
.stressed-funding-eligibility-section img {
  height: auto !important;
}
.stressed-funding-documents-section {
  background: linear-gradient(to bottom, #fff3f5, #ffffff);
}
.stressed-funding-documents-section h5 {
  color: var(--theme-color);
}
.stressed-funding-features-section .card {
  font-weight: 500 !important;
  border: 1px solid #e2e2e2 !important;
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.03) !important;
}
.stressed-funding-eligibility-section .equal-height {
  height: 60% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}
.stressed-funding-eligibility-section .card.equal-height {
  height: 60% !important;
}
.img-equal-height,
.img-msme-height {
  height: 144px;
  object-fit: cover !important;
}
.agri-height {
  height: 142px;
  object-fit: cover !important;
}
.img-commerical-height {
  height: 196px;
  object-fit: cover !important;
}
.stressed-funding-features-section,
.stressed-funding-documents-section {
  font-family: var(--theme-font);
}
.stressed-funding-features-section p {
  margin-bottom: 0px;
}
.blog-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  margin-right: 3rem;
  background-color: var(--theme-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog-icon svg {
  width: var(--font-18);
  height: var(--font-18);
  fill: #fff;
}
.blog-card {
  display: flex;
  align-items: center;
  padding: 2rem;
  background-color: var(--white);
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.07);
  border-radius: var(--theme-border-radius);
}
.blog-text h4 {
  line-height: 1.5;
}
.blog-text h4 {
  font-family: var(--theme-font);
  font-size: 1.15rem;
  font-weight: var(--fw5);
  color: #333;
}
#search-blog-input {
  border: 1px solid var(--theme-color) !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  display: none;
  position: var(--absolute);
  right: 0;
  width: 200px;
  height: 35px;
  background-color: transparent;
  z-index: 0;
  border-radius: none !important;
  font-size: 13px;
  line-height: 1.5;
  font-family: var(--theme-font);
  outline: none !important;
}
.career-banner {
  position: var(--relative);
  overflow: hidden;
  font-family: var(--theme-font);
}
.career-banner .overlay {
  background: rgba(0, 0, 0, 0.6);
}
.banner-title {
  font-size: 46px;
}
.current-openings-container {
  background-image: linear-gradient(to bottom, #fff3f5, #ffffff);
  font-family: var(--theme-font);
}
.job-card {
  display: flex;
  justify-content: space-between;
  background-color: var(--white);
  padding: 1.5rem 3rem;
  border-radius: var(--theme-border-radius);
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.07);
  margin-bottom: 1.5rem;
}
.job-card-title {
  font-size: var(--font-18);
}
.job-card-title,
.job-card a {
  padding: 0.5rem 1rem;
}
.job-card a {
  border: none;
  font-size: var(--default-font-size);
  background-color: var(--white);
  box-shadow: inset 0px 12px 16.6px -9px rgba(0, 0, 0, 0.25);
  border: 1px solid #ebebeb;
  border-radius: var(--theme-border-radius);
  transition: var(--transition);
}
.job-card a:hover {
  box-shadow: inset 0px 0px 10px -10px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}
.job-card a:hover img {
  width: var(--default-font-size);
  transform: rotate(52deg);
  transition: var(--transition);
}
.job-card a img {
  transition: var(--transition);
  width: var(--font-18);
}
.why-work-with-us {
  background-color: var(--theme-color);
  color: var(--white) !important;
  font-family: var(--theme-font);
}
.why-work-with-us h1 {
  font-size: 33px;
}
.why-work-with-us h4 {
  font-size: 22px;
}
.why-work-with-us img {
  width: 150px;
}
.why-work-with-us .card {
  background-image: linear-gradient(to right, #f6445e, var(--theme-color));
  color: var(--white) !important;
  border: none !important;
}
.why-work-with-us .card .card-digit {
  color: #f4a4af;
  margin-bottom: 4px;
}
.life-at-loanitol {
  font-family: var(--theme-font);
}
.life-at-loanitol p {
  margin: auto;
}
.life-at-loanitol h1,
.current-openings-container h1 {
  font-size: 36px;
  text-align: center;
}
.see-more-btn {
  margin-top: 1rem;
  border: none;
  background-color: var(--white);
  border: 1px solid var(--black);
  padding: 0.5rem 2rem;
  border-radius: var(--theme-border-radius);
}
.insurance-card-1,
.insurance-card-2 {
  height: 261px !important;
  border: none !important;
}
.insurance-card-1 span {
  background-color: var(--off-yellow);
  height: 65px;
  width: 65px;
  border-radius: var(--full);
  margin-bottom: 15px;
}
.insurance-card-2 span {
  background-color: var(--off-yellow);
  height: 60px;
  width: 60px;
  border-radius: var(--full);
  margin-bottom: 15px;
}
.life-insurance li::marker {
  color: var(--black) !important;
}

.insurance-card img,
.insurance-work-image img {
  object-fit: cover;
  object-position: center;
  height: 190px;
  width: var(--full);
  border-radius: var(--theme-border-radius);
}
.health-insurance-cover img {
  object-fit: cover;
  object-position: center;
  height: 180px;
  width: var(--full);
  border-radius: var(--theme-border-radius);
}
.features-life-insurance .card {
  border: 1px solid #e2e2e2 !important;
  font-family: var(--theme-font) !important;
  border-radius: var(--theme-border-radius);
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.03) !important;
}
.features-life-insurance .card .title {
  border-bottom: 1px solid #e2e2e2 !important;
  border-top-left-radius: var(--theme-border-radius) !important;
  border-top-right-radius: var(--theme-border-radius) !important;
  background-color: #fbf9f9;
  font-weight: var(--fw5);
}
.insurance-coverage .card .title {
  font-weight: var(--fw6) !important;
  margin: 0 !important;
  font-size: var(--font-16) !important;
}
.insurance-card-1 span,
.insurance-card-2 span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.eligibility-insurance .card {
  border: 1px solid #e2e2e2 !important;
  font-family: var(--theme-font) !important;
  border-radius: var(--theme-border-radius);
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.03) !important;
}
.eligibility-insurance .card .title {
  border-bottom: 1px solid #e2e2e2 !important;
  border-top-left-radius: var(--theme-border-radius) !important;
  border-top-right-radius: var(--theme-border-radius) !important;
  background-color: #fbf9f9;
  font-weight: var(--fw5);
}
.events-and-awards-section img {
  border-radius: var(--theme-border-radius);
  object-fit: cover;
  width: var(--full);
  object-position: top left;
}
.events-and-awards-section .row > div:nth-of-type(3) img,
.events-and-awards-section .row > div:nth-of-type(6) img,
.events-and-awards-section .row > div:nth-of-type(8) img {
  object-position: center !important;
}
.events-and-awards-section .row > div:nth-of-type(1) img,
.events-and-awards-section .row > div:nth-of-type(2) img,
.events-and-awards-section .row > div:nth-of-type(3) img,
.events-and-awards-section .row > div:nth-of-type(8) img,
.events-and-awards-section .row > div:nth-of-type(9) img,
.events-and-awards-section .row > div:nth-of-type(10) img {
  height: 331px;
}
.events-and-awards-section .row > div:nth-of-type(4) img,
.events-and-awards-section .row > div:nth-of-type(5) img,
.events-and-awards-section .row > div:nth-of-type(6) img,
.events-and-awards-section .row > div:nth-of-type(7) img,
.events-and-awards-section .row > div:nth-of-type(11) img,
.events-and-awards-section .row > div:nth-of-type(12) img,
.events-and-awards-section .row > div:nth-of-type(13) img, 
.events-and-awards-section .row > div:nth-of-type(14) img {
  height: 274px;
}
.career-section img {
  border-radius: var(--theme-border-radius);
  object-fit: cover;
  width: var(--full);
}
.career-section .row > div:nth-of-type(4) img {
  height: 274px;
}
.mutual-fund-main-section {
  font-family: var(--theme-font);
}
.mutual-fund-main-section p {
  line-height: 1.8 !important;
}
.mutual-fund-main-section .card {
  height: 170px !important;
  border-radius: var(--theme-border-radius) !important;
  border: none;
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.07);
}

.mutual-fund-main-section .card span {
  position: var(--relative);
  height: 60px;
  width: 60px;
  margin: 0 auto;
  margin-bottom: 15px;
  background-color: #fffae3;
  padding: 1rem;
  border-radius: var(--full);
}
.ways-to-invest-section {
  background-color: #0c3645;
  color: var(--white) !important;
  font-family: var(--theme-font);
}
.ways-to-invest-section .card {
  background-color: #2c4e59 !important;
  border: 2px solid #437382 !important;
  border-radius: var(--theme-border-radius) !important;
  padding: 2rem;
  color: var(--white) !important;
}
.ways-to-invest-section .card li {
  color: var(--white) !important;
}
.mutual-funds-types-section {
  background: linear-gradient(to bottom, #fff3f5, #ffffff);
  padding: 4rem 0;
  font-family: var(--theme-font);
}
.equity-funds {
  max-width: 1200px;
}
.equity-funds .title {
  height: 60px;
}
.hybrid-funds .title {
  height: 60px;
}
.mutual-fund-red-section {
  font-family: var(--theme-font);
  position: var(--relative);
  background-color: var(--theme-color);
}
.mutual-fund-red-section .multiple-logo {
  transform: scaleY(-1);
}
.mutual-funds-types-section span {
  background-color: #ffe2e2;
  height: 60px;
  width: 60px;
  border-radius: var(--full);
  flex-shrink: 0 !important;
}
.mutual-funds-types-section .card,
.common-car-style .card {
  border: 1px solid #e2e2e2 !important;
  font-family: var(--theme-font) !important;
  border-radius: var(--theme-border-radius);
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.03) !important;
}
.mutual-funds-types-section .card .title,
.common-car-style .card .title {
  border-bottom: 1px solid #e2e2e2 !important;
  border-top-left-radius: var(--theme-border-radius) !important;
  border-top-right-radius: var(--theme-border-radius) !important;
  background-color: #fbf9f9;
  font-weight: var(--fw5);
}
.main-section {
  line-height: 1.8 !important;
}
.number span {
  font-size: 20px;
  background-color: #ffe2e2;
  height: 60px;
  width: 60px;
  border-radius: var(--full);
  flex-shrink: 0 !important;
}
.funding-crucial-section_img {
  height: 198px;
  width: var(--full);
  max-width: var(--full);
  overflow: hidden;
  border-radius: var(--theme-border-radius);
}
.bridge-section_img {
  height: 148px;
  width: var(--full);
  max-width: var(--full);
  overflow: hidden;
  border-radius: var(--theme-border-radius);
}
.referral-partner-img {
  height: 192px;
  width: var(--full);
  max-width: var(--full);
  overflow: hidden;
  border-radius: var(--theme-border-radius);
}
.loan-against-property_img,
.sme-ipo_img {
  height: 198px;
  width: var(--full);
  max-width: var(--full);
  overflow: hidden;
  border-radius: var(--theme-border-radius);
}
.working-capital-term-img {
  height: 215px;
  width: var(--full);
  max-width: var(--full);
  overflow: hidden;
  border-radius: var(--theme-border-radius);
}
.funding-crucial-section-1 {
  background: linear-gradient(to bottom, #fff3f5, #fff3f5);
  padding: 4rem 0;
  font-family: var(--theme-font);
}
.funding-crucial-section-2 {
  background: linear-gradient(to bottom, #fff3f5, #ffffff);
  padding: 4rem 0;
  font-family: var(--theme-font);
}
.regulations-section li::marker {
  color: var(--white) !important;
}
.regulations-section {
  background-color: #0c3645;
  color: var(--white) !important;
}
.regulations-section .card {
  background-color: #2c4e59 !important;
  border-radius: var(--theme-border-radius) !important;
  padding: 1rem !important;
  color: var(--white) !important;
}
.factors-section .container img {
  border-radius: var(--theme-border-radius) !important;
}
.factors-section .card {
  border: 1px solid #e2e2e2 !important;
  font-family: var(--theme-font) !important;
  border-radius: var(--theme-border-radius);
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.03) !important;
}
.factors-section .card .title {
  border-bottom: 1px solid #e2e2e2 !important;
  border-top-left-radius: var(--theme-border-radius) !important;
  border-top-right-radius: var(--theme-border-radius) !important;
  background-color: #fbf9f9;
  font-weight: var(--fw5);
}
.common_head_style h5 {
  font-size: var(--font-18);
}
.common_head_style2 h5 {
  font-size: 17px;
}
.red-section {
  font-family: var(--theme-font);
  position: var(--relative);
  background-color: var(--theme-color);
}
.red-section li::marker {
  color: var(--white) !important;
}
.benefits2-section {
  background: linear-gradient(to bottom, #fff3f5, #ffffff);
}
.benefits2-section .card {
  border: none !important;
}
.linear-gradient {
  position: var(--relative);
  background: linear-gradient(to bottom, var(--white), #fff3f5);
}
.pattern_z_1 {
  position: var(--absolute);
  right: 0;
  top: 30%;
  transform: translateY(-30%);
  width: 48%;
  min-width: 48%;
  z-index: 0;
  pointer-events: none;
}
.pattern_z_2 {
  position: var(--absolute);
  right: 0;
  top: 12%;
  transform: translateY(-12%);
  width: 48%;
  min-width: 48%;
  z-index: 0;
  pointer-events: none;
}
.pattern_z_3 {
  position: var(--absolute);
  right: 0;
  top: 95%;
  width: 48%;
  min-width: 48%;
  z-index: 0;
  pointer-events: none;
}
.msme-overview-section p {
  font-family: var(--theme-font);
  line-height: 1.8;
}
.msme-benefits-section .card .title {
  border-bottom: 1px solid #e2e2e2 !important;
  border-top-left-radius: var(--theme-border-radius) !important;
  border-top-right-radius: var(--theme-border-radius) !important;
  background-color: #fbf9f9;
  font-weight: var(--fw5);
}
.msme-benefits-section {
  color: var(--black) !important;
}
.msme-benefits-section .choose_frame ul li::marker {
  color: var(--white) !important;
}
.msme-loan-types-section {
  background-color: #0c3645;
  color: var(--white);
}
.msme-benefits-section .card {
  border-radius: var(--theme-border-radius);
  transition: background-color 0.3s ease;
}
.msme-benefits-section .card .title {
  transition: background-color 0.3s ease;
  transition: color 0.3s ease;
}
.msme-benefits-section .card:hover {
  background-color: #fff3f5;
  border: 2px solid #f7cfd5;
}
.msme-benefits-section .card:hover .title {
  color: #d2495b !important;
  background-color: #ffeff2;
  border-bottom: 2px solid #f7cfd5 !important;
}
.msme-loan-types-section .card span {
  position: var(--relative);
  height: 60px;
  width: 60px;
  margin: 0 auto;
  margin-bottom: 15px;
  background-color: #fffae3;
  padding: 1rem;
  border-radius: var(--full);
}
.msme-loan-types-section .card {
  height: 170px !important;
  border-radius: var(--theme-border-radius) !important;
  border: none;
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.03);
}

.sme-benefits-section {
  background-color: #0c3645;
  color: var(--white);
}
.sme-benefits-section .card {
  background-color: #2c4e59 !important;
  border: 2px solid #437382 !important;
  border-radius: var(--theme-border-radius) !important;
  padding: 2rem !important;
}
.sme-benefits-section h5,
.sme-benefits-section p,
.sme-ipo h6,
.sme-ipo p {
  color: var(--white);
}
.sme-benefits-section p {
  margin-bottom: 0px !important;
}
.sme-ipo-eligibility h5 {
  color: var(--theme-color);
  font-size: var(--font-18);
}
.linear-gradient2 {
  background: linear-gradient(to bottom, #fff3f5, var(--white));
}
.consultation-section {
  background-color: var(--theme-color);
}
.consultation-section .card {
  background-color: #bd162b !important;
  border: 2px solid #e5132e !important;
  border-radius: var(--theme-border-radius) !important;
  padding: 2rem !important;
}
.sme-service-section .card {
  border: 1px solid #e2e2e2 !important;
  font-family: var(--theme-font) !important;
  border-radius: var(--theme-border-radius);
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.03) !important;
}
.sme-service-section .card .title {
  border-bottom: 1px solid #e2e2e2 !important;
  border-top-left-radius: var(--theme-border-radius) !important;
  border-top-right-radius: var(--theme-border-radius) !important;
  background-color: #fbf9f9;
  font-weight: var(--fw5);
}
.retail-loan-overview-section {
  line-height: 1.8;
}
.retail-loan-benefits-section .card {
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.07);
  border: none;
  height: 170px !important;
  border-radius: var(--theme-border-radius) !important;
}
.retail-loan-benefits-section span {
  background-color: #fffae3 !important;
}
.retail-loan-benefits-section .card span {
  position: var(--relative);
  height: 60px;
  width: 60px;
  margin: 0 auto;
  margin-bottom: 15px;
  padding: 1rem;
  border-radius: var(--full);
}
.retail-loan-benefits-section .card .title {
  font-weight: var(--fw6);
  margin: 0;
  font-size: var(--font-16);
}

.retail-loan-types {
  background-color: #0c3645;
  color: var(--white) !important;
}
.retail-loan-types .card {
  background-color: #2c4e59 !important;
  border: 2px solid #437382 !important;
  border-radius: var(--theme-border-radius) !important;
  padding: 0.8rem;
  color: var(--white) !important;
  box-sizing: border-box !important;
  transition: border-color 0.3s ease !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease !important;
}
.retail-loan-types .card p {
  font-size: var(--font-16);
  line-height: 22px;
}
.retail-loan-types .card:hover {
  background-color: var(--white) !important;
  color: var(--black) !important;
  border-color: transparent !important;
}
.retail-loan-types .card span {
  display: inline-block !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  flex-basis: auto !important;
  position: var(--relative);
  margin-bottom: 15px;
  height: 58px;
  width: 58px;
  padding: 1rem;
  border-radius: var(--full);
  border: 1px solid #0a3443 !important;
  background-color: #0a3443 !important;
  transition: background-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.retail-loan-types .card:hover span {
  background-color: #fffae3 !important;
  border-color: transparent !important;
  box-shadow: none;
}
.retail-loan-types .card span {
  border-radius: 50%;
  box-shadow: inset 6px 6px 12px rgba(0, 0, 0, 0.4);
}
.card-img {
  border-radius: var(--theme-border-radius);
}
.customer-loyalty-program-overview {
  line-height: 1.8;
}
.refer-and-earn-section {
  background-color: var(--theme-color);
}
.refer-and-earn-section .circle_theme {
  background: var(--theme-color);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  padding: 2px;
  box-shadow: inset 0px 0px 13.6px 6px rgba(0, 0, 0, 0.2);
}
.refer-and-earn-section .circle_theme img {
  width: 65%;
  height: 65%;
}
.card-section .card {
  border: none;
}
.card-section .card .title {
  border-bottom: 1px solid #ebebeb;
}
.card-section ul {
  padding-left: 0px;
}
.card-section ul li {
  display: block;
}
.overview-and-loan-section {
  position: var(--relative);
  font-family: var(--theme-font);
}
.overview-and-loan-section p {
  line-height: 1.8;
}
.overview-and-loan-section .card {
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.07);
  border: none;
  height: 170px !important;
  border-radius: var(--theme-border-radius) !important;
}
.overview-and-loan-section .card .title {
  font-weight: var(--fw6);
  margin: 0;
  font-size: var(--font-16);
}
.overview-and-loan-section .card span {
  position: var(--relative);
  height: 60px;
  width: 60px;
  margin: 0 auto;
  margin-bottom: 15px;
  background-color: #fffae3 !important;
  border-radius: var(--full);
  padding: 1rem;
}
.loans .card .title {
  line-height: 1.5;
}
.fees-and-charges-section {
  background: var(--theme-color);
  background-image: url(../assets/business-loan/multi-logo2.png),
    url(../assets/business-loan/multi-logo.png);
  background-position: left bottom, right top !important;
  background-repeat: no-repeat, no-repeat;
  background-size: 220px auto, 220px auto !important;
  animation: moveBackground 4s infinite ease-in-out;
}
.tab-menu {
  margin-top: -35px;
  padding: 20px 35px;
  border-radius: var(--theme-border-radius);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  background-color: #a94e5d;
  color: var(--white) !important;
  font-family: var(--theme-font);
}
.tab-menu ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 0;
}
.tab-menu .active a {
  background-color: var(--white);
  color: var(--black) !important;
  padding: 5px 15px;
  border-radius: var(--theme-border-radius);
}
.eligibility-criteria-section .card {
  border: none;
}
.eligibility-criteria-section h5 {
  color: var(--theme-color) !important;
  font-size: var(--font-18);
}
.documents-required-home-loan h5 {
  font-size: var(--font-18);
  color: var(--theme-color) !important;
}
.documents-required-home-loan h5::before,
.icon h5::before {
  content: url("../assets/loan-against-property/icons/loanitol-red-logo.svg");
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}
.eligibility-criteria-section,
.documents-required-home-loan,
.features-section,
.eligibility-criteria-section,
.documents-required-home-loan {
  font-family: var(--theme-font);
}
#document .business-loan .card {
  border: none !important;
  border-radius: var(--theme-border-radius) !important;
}
.responsive-height {
  height: 300px !important;
}

.fees-and-charges-section .personal-loan-documents-required-card ul li::marker {
  color: var(--white) !important ;
}
.types-of-loan-section .card {
  border: none !important;
  border-radius: var(--theme-border-radius) !important;
  border: 1px solid #e2e2e2 !important;
}
.types-of-loan-section .card .title {
  background-color: #fbf9f9;
  border-top-left-radius: var(--theme-border-radius) !important;
  border-top-right-radius: var(--theme-border-radius) !important;
  border-bottom: 1px solid #e2e2e2 !important;
}
.loan-against-property-overview-and-loan-section {
  position: var(--relative);
  font-family: var(--theme-font);
}
.loan-against-property-overview-and-loan-section p {
  line-height: 1.8;
}
.loan-against-property-overview-and-loan-section .card {
  box-shadow: 12px 4px 32px 7px rgba(0, 0, 0, 0.07);
  border: none;
  height: 170px !important;
  border-radius: var(--theme-border-radius) !important;
}
.loan-against-property-overview-and-loan-section .card .title {
  font-weight: var(--fw6);
  margin: 0;
  font-size: var(--font-16);
}
.loan-against-property-overview-and-loan-section .card span {
  position: var(--relative);
  height: 60px;
  width: 60px;
  margin: 0 auto;
  margin-bottom: 15px;
  background-color: #fffae3 !important;
  border-radius: var(--full);
  padding: 1rem;
}
.fees-and-charges-section {
  font-family: var(--theme-font);
}
.overview {
  font-family: var(--theme-font);
}
.testimonial-section {
  font-family: var(--theme-font);
}
.testimonial-section .red-logo-big {
  top: 0;
  bottom: 0;
  margin: auto -50px;
}
.emi-section-right {
  background: linear-gradient(to right, #ffecef, #ffffff) !important;
}
.emi-section-right span {
  display: inline-block;
  height: 200px;
  width: 200px;
  background-color: #ffd9e0;
  border-radius: var(--full);
  margin-top: 50px;
  margin-left: 30px;
}
.emi-section-right img {
  left: -100px;
}
.calculator-section {
  font-family: var(--theme-font);
}
.calculator-section .card {
  border-radius: var(--theme-border-radius);
}
.calculator-section .card-green {
  background-color: #139813;
  color: var(--white);
}
.calculator-section .card-red {
  background-color: var(--theme-color);
  color: var(--white);
  font-size: var(--font-18);
}
.calculator-section .card-yellow {
  background-color: #ffb806;
  color: var(--black);
  font-size: var(--font-18);
}
.calculator-section .card-percent p {
  margin: auto;
  font-size: var(--font-18);
}
.calculator-section .card-yellow {
  background-color: #ffb806;
  color: var(--black);
  font-size: var(--font-18);
}
.card .d-flex p:nth-of-type(2) {
  font-size: var(--font-18);
  background-color: #ffffff;
  border-top-right-radius: 10px;
}
#search-blog-icon {
  width: 25px;
  height: 25px;
  cursor: pointer;
  transition: width 0.3s, height 0.3s;
  z-index: 1 !important;
}
#search-blog-input {
  display: none;
  padding: 8px;
  width: 200px;
  font-size: var(--default-font-size);
}
.learn-inner .gradient {
  background: linear-gradient(to bottom right, #ff7e5f, #ffffff);
}
.ads-continer .modal-body {
  background: transparent;
}
.responsive-video {
  width: var(--full);
  height: auto;
  max-height: 90vh;
  display: block;
  border-radius: var(--theme-border-radius);
}
.ads-continer .modal-content {
  width: auto;
}
.videomore {
  color: #999696 !important;
  font-size: 15px !important;
  border: none !important;
  font-weight: 500 !important;
}
.videomore:hover,
.videomore:active,
.videomore:focus {
  color: var(--theme-color) !important;
}
.move-search {
  transition: right 0.3s ease;
  right: 0px !important;
}
.search-field {
  transition: right 0.3s ease;
}
#search-icon {
  position: var(--relative);
  z-index: 10;
}
input.search-field::placeholder {
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  color: #888;
}
input.search-field.show-placeholder::placeholder {
  opacity: 1;
}
.blog-wrapper img {
  border-radius: var(--theme-border-radius);
}
.blog-wrapper h4 {
  font-size: var(--font-16);
}
.blog-wrapper .author ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 5px;
}
.blog-wrapper .author ul li {
  color: #8b8787;
  font-size: 12px !important;
}
.blog-wrapper a {
  transition: var(--transition);
  font-size: var(--default-font-size);
}
.blog-wrapper a .icon {
  width: var(--font-18);
  transition: var(--transition);
}
.blog-wrapper:hover .icon {
  transition: var(--transition);
  transform: rotate(40deg);
  cursor: pointer;
}
.blog-wrapper:hover a {
  transition: var(--transition);
  color: var(--theme-color) !important;
}
.search-box input {
  border-radius: 30px;
  height: 45px;
  border: 1px solid #ced4da;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.search-box input:focus {
  border-color: var(--theme-color) !important;
  box-shadow: none !important;
  outline: none !important;
}
.search-box i {
  font-size: var(--font-18);
  pointer-events: none;
}
.gallery {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 6px;
}
.column {
  -ms-flex: 25%;
  flex: 25%;
  max-width: 25%;
  padding: 0 6px;
}
.grid img {
  margin-top: 10px;
  vertical-align: middle;
  width: var(--full);
  border-radius: var(--theme-border-radius) !important;
}
.img_h1 {
  height: 175px;
}
.img_h2 {
  height: 249px;
}

.documents-section .card h5,
.common-card-heading-style h5 {
  font-size: 17px;
}
.documents-section .card h3 {
  font-size: 15px;
}
.strategy-section .image img {
  width: 50px;
}
.preview-stats p i {
  color: var(--white);
}
.calculator-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.calculator-card,
.preview-card {
  background: #ffffff;
  border-radius: var(--theme-border-radius) !important;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.preview-card {
  background: var(--theme-color) !important;
  color: var(--white) !important;
  width: var(--full);
  min-height: var(--full);
  flex-direction: column;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-title-border {
  padding-bottom: 20px;
  border-bottom: 2px solid #d32f2f;
}
.calculator-container .form-group {
  margin-bottom: 20px;
}
.calculator-card label {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: var(--fw5);
  color: var(--text-light);
}
.calculator-card .input-group {
  position: var(--relative);
}
.calculator-card input {
  width: var(--full);
  padding: 14px 20px 14px 45px;
  background: var(--white);
  border: 1px solid var(--off-white);
  border-bottom: 1px solid var(--black);
  border-radius: 6px !important;
  color: var(--black);
  font-size: 1rem;
  transition: var(--transition);
}
.calculator-card input:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid var(--theme-color);
}
.calculator-card .input-icon {
  position: var(--absolute);
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--theme-color);
  font-size: 1.2rem;
}
#calculateBtn {
  width: var(--full);
  margin-top: 20px;
  padding: 18px;
  background: linear-gradient(135deg, #d81f37, #b91228);
  color: var(--white);
  border: none;
  border-radius: var(--theme-border-radius) !important;
  font-size: 1.1rem;
  font-weight: var(--fw5);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#calculateBtn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #b22222 0%, #d31027 100%);
}
#calculateBtn:active {
  transform: translateY(0);
}
.preview-content {
  text-align: center;
  padding: 20px;
}
.preview-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  background: #ffffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--theme-border-radius);
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transitionEase);
  border: 1px solid #f0d9d96e;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.09);
}
.feature-card h5 {
  font-size: 18.5px;
  color: var(--theme-color);
}
.feature-icon {
  width: 50px;
  height: 50px;
  background: #fff7e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 22px;
  color: #d31027;
}
.report-window {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: var(--full);
  height: var(--full);
  background: rgba(0, 0, 0, 0.9);
  z-index: 1234;
  overflow-y: auto;
  padding: 30px;
}
.report-container {
  background: var(--white);
  padding: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: var(--relative);
  border-radius: var(--theme-border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.report-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0d9d9;
}
.report-header h2 {
  font-size: 2.2rem;
  background: linear-gradient(
    135deg,
    var(--accent-primary) 0%,
    var(--accent-secondary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: #a52a2a;
  background-clip: text;
  margin-bottom: 10px;
}
.report-header p {
  color: #1f1f1fff;
}
.report-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}
#warningMessage {
  background: transparent;
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
}
#warningMessage h3 {
  color: var(--theme-color);
}
.play-sucessful {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  border-radius: var(--theme-border-radius);
  padding: 20px;
  text-align: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.play-sucessful h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fbf1f1;
}
.summary-card {
  background: linear-gradient(135deg, #d31027 0%, #b22222 100%);
  border-radius: var(--theme-border-radius);
  padding: 20px;
  text-align: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.summary-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #fbf1f1;
}
.summary-card .value {
  font-size: 1.6rem;
  font-weight: 700;
}

.table-container {
  overflow-x: auto;
  margin-bottom: 30px;
}
.table-container table {
  width: var(--full);
  border-collapse: collapse;
}
.table-container th,
.table-container td {
  padding: 12px 15px;
  font-size: var(--default-font-size);
  text-align: right;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.table-container th:first-child,
.table-container td:first-child {
  text-align: center;
}
.table-container th {
  background: var(--theme-color);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: var(--white);
}
.table-container tbody tr:nth-child(even) {
  background: #fff9f9;
}
.table-container tbody tr:hover {
  background: #fff0f0;
}
.negative {
  color: var(--danger);
}
.positive {
  color: var(--success);
}
.close-report {
  position: var(--absolute);
  top: 20px;
  right: 20px;
  background: var(--theme-color);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.close-report i {
  color: var(--white);
}
.print-btn {
  background: #fffaa3;
  color: var(--bg-dark);
  border: 1px solid #fffa00;
  padding: 12px 25px;
  border-radius: var(--theme-border-radius);
  cursor: pointer;
  font-weight: var(--fw6);
  margin: 20px auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.print-btn:hover {
  background: var(--accent-hover);
}
@media print {
  .close-report,
  .print-btn {
    display: none;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.calculator-card,
.preview-card,
.feature-card {
  animation: fadeIn 0.6s ease-out;
}
#consultation-form input[type="text"],
#consultation-form input[type="tel"],
#consultation-form input[type="email"] {
  padding: 10px !important;
}
.range-wrapper input:focus {
  box-shadow: none !important;
  outline: none !important;
  border: unset !important;
}
.rotate-180 {
  transform: rotate(180deg);
  transition: var(--transition);
}
#investment,
#return-rate,
#period {
  border-radius: var(--theme-border-radius) !important;
}
#investment:focus,
#return-rate:focus,
#period:focus {
  border: 1px solid var(--theme-color) !important;
}
.sip-card-title {
  color: var(--black);
  padding-bottom: 15px;
}
.savings-chart .sip-card-title {
  color: var(--black);
}
#savings-investment:focus,
#savings-return:focus,
#savings-period:focus {
  border: 1px solid var(--theme-color) !important;
}
#consultation-form textarea {
  border: 1px solid var(--off-white);
  border-bottom: 1px solid var(--black);
  border-radius: 6px !important;
  font-size: var(--default-font-size);
}
#consultation-form textarea:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--theme-color) !important;
}
#consult-name,
#consult-phone,
#consult-email,
#consult-message {
  border: 1px solid var(--off-white);
  border-bottom: 1px solid var(--black);
  border-radius: 6px !important;
}
.sip-benefits span {
  margin: auto;
  display: flex;
  background: #fff7e8;
  height: 60px;
  width: 60px;
  border-radius: var(--full);
  margin-bottom: 10px;
}

.calculator-container {
  display: grid;
  flex-wrap: wrap;
  gap: 20px;
  margin: 15px 0 20px;
}
.sip-calculator-card {
  background: var(--white);
  border-radius: var(--theme-border-radius) !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  padding: 15px;
  flex: 1;
  width: var(--full);
  animation: fadeInUp 1s ease;
}
.results-card {
  background: linear-gradient(135deg, var(--theme-color), #ffadb8);
  color: var(--white);
  width: var(--full);
  min-height: var(--full);
  display: flex;
  flex-direction: column;
}
.sip-card-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--theme-font);
}
.results-card .sip-card-title {
  color: var(--white);
}
.investment-tabs {
  display: flex;
  background: var(--theme-color);
  border-radius: var(--theme-border-radius);
  padding: 6px;
  margin-bottom: 15px;
}
.tab-btn {
  flex: 1;
  padding: 8px 5px;
  border: none;
  background: transparent;
  border-radius: var(--theme-border-radius);
  font-size: 0.85rem;
  font-weight: var(--fw6);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.tab-btn i {
  font-size: 1.1rem;
  transition: var(--transition);
}
.tab-btn.active {
  background: var(--white);
  color: var(--theme-color);
}
.tab-btn.active i {
  color: var(--theme-color);
  transform: scale(1.1);
}
.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}
.tab-content.active {
  display: block;
}
.sip-calculator .input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.sip-calculator .input-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: var(--fw5);
  font-size: 0.9rem;
}
.sip-calculator .input-with-icon {
  position: var(--relative);
  display: flex;
  align-items: center;
}
.sip-calculator .input-with-icon i {
  position: var(--absolute);
  left: 12px;
  color: var(--theme-color);
  font-size: 1rem;
}
.sip-calculator input[type="range"] {
  width: var(--full);
  margin-top: 6px;
  appearance: none;
  -webkit-appearance: none;
  height: 4px !important;
  border-radius: var(--theme-border-radius) !important;
  background: #f6f5f5;
  outline: none;
}
.sip-calculator input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--theme-color);
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.sip-calculator input[type="number"],
.sip-calculator input[type="text"],
.sip-calculator input[type="email"],
.sip-calculator input[type="tel"] {
  width: var(--full);
  padding: 10px 10px 10px 35px;
  border: 1px solid var(--off-white);
  border-bottom: 1px solid var(--black);
  border-radius: 6px !important;
  font-size: var(--default-font-size);
  transition: var(--transition);
}
.sip-calculator button {
  border-radius: var(--theme-border-radius) !important;
}
.sip-calculator input:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid var(--theme-color);
}
.sip-calulator #investment-range:focus {
  border: 1px solid var(--theme-color) !important;
}
.sip-calculator .range-wrapper {
  gap: 12px;
}
.sip-calculator #investment-goal {
  border: 1px solid var(--off-white);
  border-bottom: 1px solid var(--black);
  border-radius: 6px !important;
  width: var(--full);
  padding: 10px 10px 10px 35px;
  font-size: 1rem;
  appearance: none;
  background: var(--white);
  font-size: var(--default-font-size);
}
.input-with-icon input.filled {
  background-color: #ffffff !important;
}
.sip-calculator #investment-goal:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--theme-color) !important;
}
.sip-calculator #savings-investment-range:focus,
.sip-calculator #savings-return-range:focus,
.sip-calculator #savings-period-range:focus {
  border: none !important;
}
.value-display {
  font-size: 0.85rem;
  margin-top: 4px;
  font-weight: var(--fw5);
  color: var(--theme-color);
}
.sip-calculator .btn-group {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.sip-calculator button {
  color: var(--white);
  padding: 12px;
  border: none;
  border-radius: var(--theme-border-radius);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
#savings-back i {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, #e8122d, #ac1b2e);
  position: fixed;
  top: 82vh;
  left: 43px;
  transform: translate(-50%, -50%);
  padding: 12px;
  border-radius: var(--theme-border-radius) !important;
  cursor: pointer;
}
.calculate-btn {
  background: linear-gradient(135deg, var(--theme-color), #ffadb8);
  color: var(--white);
  box-shadow: 0 4px 12px #ae272766;
}
.calculate-btn:hover {
  box-shadow: 0 6px 15px #ae272799;
}
.reset-btn {
  background: #f5f7fa;
  color: #2c3e50 !important;
  transition: var(--transition);
}
.reset-btn:hover {
  background: var(--black);
  color: var(--white) !important;
  transition: var(--transition);
}
.contact-btn {
  background: linear-gradient(135deg, #d81f37, #b91228);
  color: var(--white);
  box-shadow: 0 4px 12px #ae272766;
}
.sip-details-btn {
  background: linear-gradient(135deg, #092630, #0e3746) !important;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.4);
}
.calculate-savings-btn {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.4);
}
.reset-btn:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.contact-btn:hover {
  box-shadow: 0 6px 15px #ae272799;
}
.sip-details-btn:hover {
  box-shadow: 0 6px 15px rgba(44, 62, 80, 0.6);
}
.calculate-savings-btn:hover {
  box-shadow: 0 6px 15px rgba(39, 174, 96, 0.6);
}
.result-item {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.result-item:last-child {
  border-bottom: none;
}
.result-label {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.result-value {
  font-size: 1.2rem;
  font-weight: var(--fw6);
  color: var(--white);
}
.chart-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--theme-border-radius);
  padding: 12px;
  margin-top: 15px;
  flex: 1;
  position: var(--relative);
  height: 200px;
}
.sip-benefits {
  gap: 20px;
  margin: 30px 0;
}
.benefit-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--theme-border-radius) !important;
  padding: 20px;
  transition: all 0.4s ease;
  cursor: pointer;
  position: var(--relative);
  overflow: hidden;
}
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}
.benefit-card.active {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  background: var(--white);
}
.benefit-card i {
  font-size: 2rem;
  color: var(--theme-color);
  margin-bottom: 15px;
  transition: var(--transition);
}
.benefit-card.active i {
  color: var(--theme-color);
  transform: scale(1.1);
}
.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  transition: var(--transition);
}
.benefit-card.active h3 {
  color: var(--theme-color);
}
.benefit-card p {
  font-size: var(--default-font-size);
}
.benefit-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #2c3e50;
  line-height: 1.6;
  font-size: 0.9rem;
}
.benefit-card.active .benefit-details {
  max-height: 200px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(26, 41, 128, 0.1);
}
.data-collection {
  background: var(--white);
  border-radius: var(--theme-border-radius);
  padding: 45px;
  margin: 30px 0;
  animation: fadeInUp 1s ease;
}
.data-collection h2 {
  font-size: 1.8rem;
  color: var(--theme-color);
  margin-bottom: 15px;
  text-align: center;
}
.data-collection p {
  padding-top: 1%;
  padding-bottom: 1%;
  font-size: var(--default-font-size);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
#lead-form .form-group {
  margin-bottom: 15px;
}
#lead-form .form-group label {
  display: block;
  margin-bottom: 12px;
  font-weight: var(--fw5);
  font-size: 0.95rem;
}
.form-submit {
  grid-column: 1 / -1;
  margin-top: 15px;
}
.submit-btn {
  padding: 14px 40px;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--theme-color), #ffadb8);
  color: var(--white);
  border: none;
  border-radius: var(--theme-border-radius);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px #ae272766;
}
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: rgba(174, 39, 39, 0.6) 0px 6px 15px;
}
.graph-container {
  display: flex;
  flex-direction: column;
  height: var(--full);
}
.sip-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1234;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.sip-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-container {
  background: var(--white);
  border-radius: var(--theme-border-radius);
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  position: var(--relative);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.sip-modal-overlay.active .modal-container {
  transform: scale(1);
}
.sip-modal-overlay .modal-header {
  background: linear-gradient(135deg, var(--theme-color), #ffadb8);
  color: var(--white);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: var(--relative);
}
.sip-modal-overlay .modal-header h2 {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}
.sip-close-modal {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  transition: var(--transition);
  width: auto;
  height: auto;
  position: var(--absolute);
  top: 15px;
  right: 15px;
  padding: 5px;
}
.sip-close-modal:hover {
  color: #ff0000 !important;
  transform: none;
}
.modal-content {
  padding: 25px;
}
.sip-details-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sip-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 12px;
}
.sip-section-header h3 {
  font-size: 1rem;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.sip-tabs {
  display: flex;
  gap: 6px;
  margin: 0;
  flex-wrap: wrap;
}
.sip-tab {
  padding: 6px 12px;
  border-radius: var(--theme-border-radius);
  font-weight: var(--fw6);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid #f0d0d0;
  font-size: 0.85rem;
}
.sip-tab.active {
  background: var(--theme-color);
  color: var(--white);
  border-color: var(--theme-color);
}
.sip-filters {
  display: flex;
  gap: 6px;
  margin: 8px 0 12px;
  flex-wrap: wrap;
}
.sip-filter {
  padding: 5px 12px;
  border-radius: var(--theme-border-radius);
  font-weight: var(--fw6);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid #e0e0e0;
  font-size: 0.8rem;
}
.sip-filter.active {
  background: #d02626;
  color: var(--white);
  border-color: #d02626;
}
.performance-chart-container {
  height: 200px;
  margin-bottom: 15px;
}
.performance-table {
  width: var(--full);
  border-collapse: collapse;
  margin-bottom: 15px;
  font-size: 0.9rem;
}
.performance-table th {
  background: #faf5f5;
  padding: 10px 12px;
  text-align: left;
  font-weight: 700;
  color: #2c3e50;
  border-bottom: 2px solid #e0e0e0;
}
.performance-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #f0f0f0;
}
.performance-table tr:hover {
  background: #fbfbfb;
}
.fund-name {
  font-weight: var(--fw5);
  color: var(--theme-color);
}
.fund-company {
  color: #666;
  font-size: 0.85rem;
}
.fund-return {
  font-weight: 700;
}
.positive-return {
  color: #27ae60;
}
.negative-return {
  color: #e74c3c;
}
.comparison-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}
.comparison-table {
  width: var(--full);
  border-collapse: collapse;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: var(--theme-border-radius);
  overflow: hidden;
}
.comparison-table th {
  background: var(--theme-color);
  color: var(--white);
  padding: 12px;
  text-align: left;
  font-weight: var(--fw6);
}
.comparison-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #f0f0f0;
}
.comparison-table tr:nth-child(even) {
  background: #fff9f9;
}
.fund-header {
  font-weight: var(--fw5);
  color: var(--theme-color);
}
.disclaimer {
  background: #fff8e6;
  border-left: 4px solid #ffc107;
  padding: 12px;
  border-radius: 0 5px 5px 0;
  margin-top: 15px;
  font-size: 0.85rem;
  color: #666;
}
.advisor-intro {
  text-align: center;
  margin-bottom: 20px;
  padding: 12px;
  background: #fff0f0 !important;
  border-radius: var(--theme-border-radius);
}
.advisor-intro p {
  font-size: var(--default-font-size);
}
.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.form-row .input-group {
  flex: 1;
  margin-bottom: 0;
}
.modal-form h4 {
  color: #a52a2a;
}
.modal-submit {
  background: linear-gradient(135deg, #d81f37, #b91228);
  color: var(--white);
  border: none;
  border-radius: var(--theme-border-radius);
  padding: 12px;
  font-size: 1rem;
  font-weight: var(--fw6);
  cursor: pointer;
  width: var(--full);
  transition: var(--transition);
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}
.modal-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px #ae272799;
}
.savings-page {
  display: none;
  width: var(--full);
  max-width: 1200px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--theme-border-radius);
  overflow: hidden;
  animation: fadeIn 0.5s ease;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.savings-header {
  background: radial-gradient(circle, #e8122d, #ac1b2e);
  color: var(--white);
  padding: 25px;
  text-align: center;
}
.savings-header h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.savings-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.savings-content {
  padding: 30px;
}
.savings-back-btn {
  z-index: 1000 !important;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.savings-back-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(-3px);
}
.savings-calculator-container {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
.savings-inputs {
  flex: 1;
  background: var(--white);
  border-radius: var(--theme-border-radius);
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.savings-results {
  flex: 1;
  background: linear-gradient(135deg, #d31027 0%, #b22222 100%) !important;
  color: var(--white);
  border-radius: var(--theme-border-radius);
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.savings-chart {
  background: var(--white);
  border-radius: var(--theme-border-radius);
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  height: 350px;
  padding-bottom: 80px;
}
.breakdown-table {
  width: var(--full);
  border-collapse: collapse;
}
.breakdown-table th {
  background: #faf5f5;
  padding: 12px 15px;
  text-align: left;
  font-weight: var(--fw6);
  border-bottom: 2px solid #e0e0e0;
}
.breakdown-table td {
  font-size: var(--default-font-size);
  padding: 12px 15px;
  border-bottom: 1px solid #f0f0f0;
}
.breakdown-table tr:nth-child(even) {
  background: #fff9f9;
}
.breakdown-table tr:hover {
  background: #fff0f0;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.rate-conversion-class .wrapper {
  width: var(--full);
  margin-bottom: 30px;
}

.rate-conversion-class .left-card {
  top: 100px;
}
.rate-conversion-container .card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease;
  animation: fadeIn 0.8s ease-out;
  display: flex;
  flex-direction: column;
}
.rate-conversion-container.card:hover {
  transform: translateY(-5px);
}
.rate-conversion-container .card-header {
  color: var(--white) !important;
  padding: 20px;
  text-align: center;
  position: var(--relative);
  overflow: hidden;
}
.rate-conversion-container .card-header::before {
  content: "";
  position: var(--absolute);
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #e8122d, #ac1b2e);
  pointer-events: none;
}
.rate-conversion-container .card-header h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: var(--relative);
}
.rate-conversion-container .card-header p {
  position: var(--relative);
}
.rate-conversion-container .card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.rate-conversion-class .rate-conversion .form-group {
  margin-bottom: 20px;
  animation: slideIn 0.5s ease-out;
}
.rate-conversion-class .rate-conversion .form-group i,
#contactForm .form-group i {
  color: var(--theme-color);
}
.rate-conversion label {
  display: block;
  margin-bottom: 8px;
  font-weight: var(--fw5);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}
.rate-conversion-class input,
.rate-conversion-class select {
  width: var(--full);
  padding: 12px;
  border: 1px solid var(--off-white);
  border-bottom: 1px solid var(--black);
  border-radius: 6px !important;
  font-size: 0.95rem;
  transition: var(--transition);
}
.rate-conversion-class input:focus,
.rate-conversion-class select:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid var(--theme-color);
}
.rate-conversion-class .input-with-icon {
  position: var(--relative);
}
.rate-conversion-class .input-with-icon i {
  position: var(--absolute);
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #7f8c8d;
}
.input-with-icon input {
  padding-left: 45px;
}
.input-with-icon input:focus {
  box-shadow: none !important;
  outline: none !important;
}
.rate-conversion-class .range-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rate-conversion-class .range-wrapper .value-number {
  align-items: center;
  gap: 12px;
}
.rate-conversion-class .range-wrapper input[type="range"] {
  height: 4px;
  appearance: none;
  -webkit-appearance: none;
  background: #f6f5f5;
  border-radius: 10px;
  border: none;
  padding: 0;
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}
.rate-conversion-class
  .range-wrapper
  input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: #d81f37;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}
.rate-conversion-class
  .range-wrapper
  input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background: #d81f37;
  outline: none !important;
}
.rate-conversion-class .range-wrapper span {
  min-width: 55px;
  text-align: center;
  background: #ffe9e9ff;
  padding: 4px 8px;
  border-radius: 5px;
  transition: var(--transition);
  font-size: 0.8rem;
}
.rate-conversion-class .mini-input {
  width: 90px;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 6px !important;
  font-size: 0.9rem;
}
.rate-conversion-class .mini-input:focus {
  border: 1px solid #ddd !important;
}
.rate-conversion-class .advice-btn {
  display: block;
  width: var(--full);
  padding: 14px;
  background: linear-gradient(135deg, #d31027 0%, #b22222 100%);
  color: var(--white);
  border: none;
  border-radius: var(--theme-border-radius);
  font-size: 1rem;
  font-weight: var(--fw5);
  cursor: pointer;
  transition: var(--transitionEase);
  position: var(--relative);
  overflow: hidden;
  z-index: 1;
  margin-top: auto;
}
.rate-conversion-class .advice-btn:hover {
  color: var(--white);
}
.rate-conversion-class .advice-btn::before {
  content: "";
  position: var(--absolute);
  top: 0;
  left: -100%;
  width: var(--full);
  height: var(--full);
  background: linear-gradient(to right, #d31027, #b22222);
  transition: all 0.4s;
  z-index: -1;
}
.rate-conversion-class .btn:hover::before {
  left: 0;
}
.rate-conversion-class .rate-conversion-class .btn:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}
.rate-conversion-class .btn:disabled {
  background: linear-gradient(to right, rgb(92, 184, 92), rgb(39, 174, 96));
  cursor: not-allowed;
  color: var(--white);
  transform: none;
  box-shadow: none;
  opacity: 1 !important;
}
.rate-conversion-class .btn:disabled::before {
  display: none;
}
.rate-conversion-class .btn-secondary {
  margin-top: 10px;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
  background: transparent;
}
.rate-conversion-class .btn-secondary::before {
  background: linear-gradient(to right, #495057, #343a40);
}
.rate-conversion-class .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 107, 107, 0.6);
}
.rate-conversion-class .results-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 20px;
  animation: fadeIn 0.8s ease-out 0.2s;
  animation-fill-mode: backwards;
  display: flex;
  flex-direction: column;
}
.rate-conversion-class .results-header {
  text-align: center;
  margin-bottom: 20px;
  color: #1b262c;
}
.rate-conversion-class .results-header h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.comparison-wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}
.loan-box {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  flex: 1;
  min-width: 230px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: popIn 0.5s ease-out;
}
.rate-conversion-class .loan-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.rate-conversion-class .loan-box.current {
  border-top: 4px solid #3282b8;
}
.rate-conversion-class .loan-box.new {
  border-top: 4px solid #5cb85c;
}
.rate-conversion-class .loan-title {
  font-size: 1.1rem;
  font-weight: var(--fw6);
  margin-bottom: 15px;
}
.rate-conversion-class .interest-rate {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(to right, #3282b8, #1b262c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rate-conversion-class .new .interest-rate {
  background: linear-gradient(to right, #5cb85c, #27ae60);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rate-conversion-class .loan-value {
  font-size: 1.2rem;
  font-weight: var(--fw6);
  margin: 12px 0;
  animation: fadeIn 0.5s ease-out;
}
.rate-conversion-class .loan-value span {
  font-size: 0.9rem;
  color: #7f8c8d;
  display: block;
  margin-top: 4px;
  font-weight: normal;
}
.rate-conversion-class .savings-wrapper {
  background: linear-gradient(to right, #ff9a00, #ff5e00);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-top: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: pulse 2s infinite;
}
.rate-conversion-class .savings-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.rate-conversion-class .savings-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.rate-conversion-class .savings-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  margin-top: 8px;
}
.rate-conversion-class .summary {
  margin-top: 20px;
  padding: 15px;
  background: #f8f9fa;
  color: var(--black);
  border-radius: var(--theme-border-radius);
  border-left: 4px solid #dc3545;
  animation: slideIn 0.5s ease-out;
}
.rate-conversion-class .summary h3 {
  margin-bottom: 12px;
  color: #1b262c;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
}
.rate-conversion-class .summary p {
  line-height: 1.5;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.rate-conversion-class .highlight {
  font-weight: 700;
  color: var(--theme-color);
}
.rate-conversion-class .rupee-symbol {
  font-family: Arial, sans-serif;
  font-weight: bold;
}
.rate-conversion-class .placeholder {
  color: #95a5a6;
  font-style: italic;
}
.rate-conversion-class .info-message {
  background-color: #fde3e3ff;
  border-left: 4px solid #dc3545;
  padding: 12px;
  border-radius: 4px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: slideIn 0.5s ease-out;
  font-size: 0.9rem;
}
.rate-conversion-class .info-message i {
  color: #dc3545;
  font-size: 1.2rem;
}
.rate-conversion-class .error-message {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}
.rate-conversion-class .contact-form {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
  border-left: 4px solid #5cb85c;
  animation: slideIn 0.5s ease-out;
}
.rate-conversion-class .contact-form h3 {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #1b262c;
  font-size: 1.1rem;
}
.rate-conversion-class .contact-form p {
  margin-bottom: 15px;
  color: #555;
  font-size: 0.95rem;
}
.testimonials {
  margin-top: 20px;
  padding: 15px;
  background: linear-gradient(to right, #dc3545, #d81f37);
  color: var(--white);
  width: var(--full);
}
.testimonials h2 {
  text-align: center;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.testimonial {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--theme-border-radius);
  padding: 15px;
  margin-bottom: 12px !important;
  max-width: 600px;
}
.testimonial:last-child {
  margin-bottom: 0;
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.testimonial-author {
  text-align: right;
  font-weight: var(--fw5);
  color: #ffcc00;
  font-size: 0.9rem;
}
.rate-conversion-class .loan-type-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.rate-conversion-class .loan-type {
  flex: 1;
  min-width: 90px;
  padding: 10px 8px;
  text-align: center;
  background: #ffffff;
  border-radius: var(--theme-border-radius);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid #e8122d;
  font-size: 0.85rem;
}
.rate-conversion-class .loan-type:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.loan-type.active {
  background: var(--theme-color);
  border: 1px solid #e8122d;
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.rate-conversion-class .loan-type.active .type-name,
.rate-conversion-class .loan-type.active .type-rate {
  color: var(--white);
}
.rate-conversion-class .loan-type i {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #dc3545;
}
.rate-conversion-class .loan-type .type-name {
  font-weight: var(--fw6);
  color: #dc3545;
  font-size: 0.9rem;
}
.rate-conversion-class .loan-type .type-rate {
  font-size: 0.7rem;
  color: #dc3545;
  margin-top: 2px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  70% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes countUp {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.rate-conversion-class .counting {
  animation: countUp 0.5s ease-out;
}
.rate-conversion-class .compact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 15px;
}
.rate-conversion-class .compact-item {
  background: #f8f9fa;
  border-radius: var(--theme-border-radius);
  padding: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.rate-conversion-class .compact-title {
  font-size: 0.85rem;
  color: #7f8c8d;
  margin-bottom: 5px;
}
.rate-conversion-class .compact-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1b262c;
}
.rate-conversion-class .compact-highlight {
  color: #27ae60;
}
.rate-conversion-class .compact-negative {
  color: #e74c3c;
}
.rate-conversion-class .chart-wrapper {
  background: var(--white);
  border-radius: 10px;
  padding: 15px;
  margin: 15px 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  position: var(--relative);
  height: 300px;
}
.rate-conversion-class .chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.rate-conversion-class .chart-title {
  font-size: 1rem;
  font-weight: var(--fw6);
  color: #1b262c;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rate-conversion-class .chart-switcher {
  display: flex;
  gap: 6px;
}
.rate-conversion-class .chart-btn {
  background: #ffffff;
  border: 1px solid var(--theme-color);
  padding: 5px 10px;
  border-radius: var(--theme-border-radius);
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}
.rate-conversion-class .chart-btn.active {
  background: #c7162d;
  color: var(--white);
}

.loan-comparison-container .card-title span img {
  width: 24px;
}
.loan-comparison-container .card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 35px;
  margin-bottom: 30px;
  transition: var(--transition);
  position: var(--relative);
  overflow: hidden;
}
.loan-comparison-container .card:before {
  content: "";
  position: var(--absolute);
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: #d32f2f;
}
.loan-comparison-container .card.savings-card:before {
  background: linear-gradient(90deg, var(--success) 0%, #24a99a 100%);
}
.loan-comparison-container .card.loss-card:before {
  background: linear-gradient(90deg, var(--danger) 0%, #c9162d 100%);
}
.loan-comparison-container .card-title {
  font-size: 1.5rem;
  color: var(--theme-color);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--theme-font);
}
.loan-comparison-container .card-title span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffdddd69;
  height: 50px;
  width: 50px;
  border-radius: var(--full);
}
.loan-comparison-container .card-title i {
  background-image: url("./assets/rate-conversion-tool/home-loan.svg");
  background: #ffdddd69;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d32f2f;
  font-size: 1.5rem;
  transition: var(--transition);
}
.loan-comparison-container .savings-theme .card-title i {
  background: rgba(46, 196, 182, 0.15);
  color: var(--success);
}
.loan-comparison-container .loss-theme .card-title i {
  background: rgba(231, 29, 54, 0.15);
  color: var(--danger);
}
.loan-comparison-container label {
  display: block;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 0.85rem;
}
.loan-comparison-container .input-group {
  position: var(--relative);
}
.loan-comparison-container .card-footer {
  background: transparent;
}
.loan-comparison-container input,
.loan-comparison-container select {
  width: var(--full);
  padding: 10px 20px;
  border: 1px solid var(--off-white);
  border-bottom: 1px solid var(--black);
  border-radius: 6px !important;
  font-size: var(--default-font-size);
  transition: var(--transition);
  background: var(--white);
  font-weight: var(--fw5);
}
.loan-comparison-container input:focus,
.loan-comparison-container select:focus {
  outline: none;
  border: 1px solid var(--theme-color);
}
.loan-comparison-container .input-icon {
  position: var(--absolute);
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 1.2rem;
}
.loan-comparison-container .radio-group {
  display: flex;
  gap: 25px;
  margin-top: 10px;
}
.loan-comparison-container .radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 1.1rem;
}
.loan-comparison-container .radio-option input {
  width: auto;
  transform: scale(1.2);
}
.loan-comparison-container .btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--theme-border-radius);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.loan-comparison-container .btn:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(67, 97, 238, 0.35);
}
.loan-comparison-container .btn i {
  font-size: 1.3rem;
}
.loan-comparison-container .btn-block {
  width: var(--full);
  margin-top: 15px;
}
.loan-comparison-container .btn-outline {
  background: transparent;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
}
.loan-comparison-container .btn-outline:hover {
  background: #eef2ff;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
}
.loan-comparison-container .btn-success {
  background: var(--theme-color);
}
.report-modal textarea {
  width: var(--full);
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: var(--default-font-size);
  resize: vertical;
}
.loan-comparison-container .btn-success:hover,
.loan-comparison-container .btn-success:focus,
.loan-comparison-container .btn-warning,
.loan-comparison-container .btn-warning:hover,
.loan-comparison-container .btn-warning:focus {
  background: var(--theme-color);
  color: var(--white) !important;
}
.loan-comparison-container .btn-warning i {
  color: var(--white) !important;
}
.loan-comparison-container .btn-loss {
  background: var(--loss);
}
.loan-comparison-container .btn-loss:hover {
  background: #c9162d;
}
.loan-comparison-container .comparison-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
  justify-content: center;
}
.loan-comparison-container .loan-comparison-container .modal-header {
  background: none;
}
.loan-comparison-container .loan-card {
  flex: 1;
  min-width: 300px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
  transition: var(--transition);
  position: var(--relative);
  border: 2px solid #ffd4da;
  display: flex;
  flex-direction: column;
}
.loan-comparison-container .loan-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.loan-comparison-container .loan-card.savings-card {
  border-color: #0ecd3d;
  background: linear-gradient(to right, rgb(251 255 251), rgb(243 255 248));
}
.loan-comparison-container .loan-card.loss-card {
  border-color: var(--danger);
  background: linear-gradient(135deg, #fff4f5 0%, #fdfdfd 100%);
}
.loan-comparison-container .loan-card h3 {
  text-align: center;
  color: var(--theme-color);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f1f5f9;
  font-size: 1.3rem;
}
.loan-comparison-container .loss-card h3 {
  color: var(--danger);
}
.loan-comparison-container .loan-details {
  flex: 1;
}
.loan-comparison-container .loan-detail {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
}
.loan-comparison-container .loan-detail:last-child {
  border-bottom: none;
}
.loan-comparison-container .detail-label {
  font-weight: 400;
  font-size: 0.98rem;
}
.loan-comparison-container .detail-value {
  font-weight: var(--fw5);
  color: var(--dark);
  font-size:0.9rem;
  text-align: right;
  min-width: 120px;
}
.loan-comparison-container .loss-card .detail-value {
  color: var(--danger) !important;
}
.loan-comparison-container .comparison-result {
  flex: 0 0 330px;
  background: linear-gradient(135deg, var(--theme-color) 0%, #b22222 100%);
  color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--box-shadow);
  position: var(--relative);
  overflow: hidden;
  transition: var(--transition);
}

.loan-comparison-container .comparison-result.savings-result {
  background: linear-gradient(135deg, #0e3746 0%, #092630 100%);
}
.loan-comparison-container .comparison-result.loss-result {
  background: linear-gradient(135deg, var(--theme-color) 0%, #b22222 100%);
}
.loan-comparison-container .comparison-result h3 {
  color: #fff !important;
  font-weight: var(--fw5);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.loan-comparison-container .result-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.loan-comparison-container .result-item:last-child {
  border-bottom: none;
}
.loan-comparison-container .difference {
  font-weight: var(--fw6);
  font-size:0.9rem
}
.loan-comparison-container .positive {
  color: #f5ff99ff;
}
.loan-comparison-container .savings-result .positive {
  color: #f4efb0ff;
  font-weight: 500 !important;
}
.loan-comparison-container .loss-result .positive {
  color: #ffd1dc;
}
.loan-comparison-container .negative {
  color: #ffafcc;
  font-weight: 500 !important;
}
.loan-comparison-container .savings-result .negative {
  color: #b0f4e8;
}
.loan-comparison-container .edit-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: var(--full);
  height: var(--full);
  background: rgba(0, 0, 0, 0.7);
  z-index: 1234;
  align-items: center;
  justify-content: center;
}
.loan-comparison-container .edit-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}
.loan-comparison-container .modal-content {
  background: var(--white) !important;
  width: 90%;
  max-width: 500px;
  border-radius: 8px !important;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: var(--relative);
}
.loan-comparison-container .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.loan-comparison-container .modal-title {
  font-size: 1.4rem;
  color: var(--theme-color);
  font-weight: var(--fw5);
}
.loan-comparison-container .edit-modal i,
.report-modal i {
  color: var(--theme-color);
}
.report-modal i {
  margin-right: 5px;
}
.loan-comparison-container .close-modal-cross {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  transform: rotate(90deg);
}
.loan-comparison-container .close-modal-cross:hover {
  color: var(--theme-color);
}
.loan-comparison-container .modal-form {
  display: grid;
  gap: 20px;
}
.loan-comparison-container .modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  justify-content: center;
}
.loan-comparison-container .notification {
  position: fixed;
  top: 100px;
  right: 30px;
  background: var(--theme-color);
  color: var(--white);
  padding: 18px 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  font-weight: var(--fw5);
  transform: translateX(150%);
  transition: transform 0.4s ease;
}

.loan-comparison-container .notification.show {
  transform: translateX(0);
}
.loan-comparison-container .notification i {
  font-size: 1.8rem;
}
.loan-comparison-container .result-alert {
  text-align: center;
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: var(--font-16);
  font-weight: 400;
  color: var(--white);
  background: linear-gradient(135deg, #ed102c, #ffadb8);
}
.loan-comparison-container .savings-alert {
  background: linear-gradient(to right, rgb(92, 184, 92), rgb(39, 174, 96));
  color: var(--white);
}
.loan-comparison-container .loss-alert {
  background: linear-gradient(135deg, var(--danger) 0%, #c9162d 100%);
  color: var(--white);
}
.loan-comparison-container .edit-loan-btn {
  background: var(--theme-color);
  margin-top: 4px;
  color: var(--white);
  padding: 12px 25px;
  font-size: 0.9rem;
  border-radius: var(--theme-border-radius);
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  transition: var(--transition);
}
.loan-comparison-container .edit-loan-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes confetti {
  0% {
    transform: translateY(0) rotate(0);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}
.loan-comparison-container.confetti {
  position: fixed;
  width: 10px;
  height: 10px;
  background: #ffd700;
  top: -10px;
  opacity: 0;
  z-index: 1000;
}
.loan-comparison-container .auto-sync-notice {
  padding: 10px 15px;
  border-radius: var(--theme-border-radius);
  font-size: 0.9rem;
  color: var(--theme-color);
  text-align: center;
  margin-top: 10px;
  border: 1px dashed var(--theme-color);
  display: none;
}
.loan-comparison-container .auto-sync-notice.show {
  display: block;
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.loan-comparison-container .report-section {
  margin-top: 40px;
  text-align: center;
  background: var(--white);
  border-radius: var(--border-radius);
}
.loan-comparison-container .report-section p:first-child {
  font-size: 1rem;
  margin-bottom: 15px;
}
.loan-comparison-container .report-section p:last-child {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 10px;
}
.loan-comparison-container .report-btn {
  background: linear-gradient(135deg, #ed102c, #ffadb8);
  color: var(--white);
  border: none;
  padding: 16px 40px;
  border-radius: var(--border-radius);
  font-size: 1.2rem;
  font-weight: var(--fw6);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 15px 0;
  box-shadow: 0 4px 12px #ae272766;
}
.loan-comparison-container .report-btn:hover {
  transform: translateY(-3px);
  box-shadow: rgba(174, 39, 39, 0.6) 0px 6px 15px;
}
.loan-comparison-container .report-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: var(--full);
  height: var(--full);
  background: rgba(0, 0, 0, 0.7);
  z-index: 1234;
  align-items: center;
  justify-content: center;
}
.loan-comparison-container .report-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}
.loan-comparison-container .report-modal-content {
  background: var(--white);
  width: 90%;
  max-width: 70%;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: var(--relative);
}
.loan-comparison-container .report-modal-title {
  font-size: 1.5rem;
  color: var(--theme-color);
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.loan-comparison-container .report-info {
  font-size: var(--default-font-size);
  background: #fff8e6;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 25px;
  text-align: center;
  border-left: 4px solid var(--warning);
}
.loan-comparison-container .report-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: var(--fw5);
  padding-left: 3px;
  text-align: left;
}
.loan-comparison-container .report-form-group input {
  width: var(--full);
  padding: 14px 18px;
  border: 1px solid var(--off-white);
  border-bottom: 1px solid var(--black);
  border-radius: 6px !important;
  font-size: var(--default-font-size);
  transition: var(--transition);
}
.report-modal textarea {
  border: 1px solid var(--off-white);
  border-bottom: 1px solid var(--black);
  border-radius: 6px !important;
}
.loan-comparison-container .report-form-group input:focus,
.report-modal textarea:focus {
  outline: none;
  border-color: var(--theme-color);
  background: var(--white);
}
.loan-comparison-container .report-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  justify-content: center;
}
.loan-comparison-container input[type="radio"]:checked {
  accent-color: var(--theme-color) !important;
}

.modal-fixed-height {
  max-height: 100vh;
}
.modal-fixed-height .report-modal-content,
.modal-fixed-height .modal-content {
  overflow-y: auto !important;
  max-height: calc(100vh - 120px);
}

.emi-calculator .input-group {
  display: flex;
  flex-direction: row;
}
.range-wrapper {
  gap: 12px !important;
}
.emi-calculator-section input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: var(--theme-color);
  cursor: pointer;
  border-radius: 50%;
}
.emi-calculator-section input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--theme-color);
  cursor: pointer;
  border-radius: 50%;
  border: none;
}
.emi-calculator-section input[type="range"] {
  width: var(--full);
  height: 4px;
  background: #f6f5f5;
  border-radius: 5px;
  outline: none;
  -webkit-appearance: none;
}
.emi-calculator-section .input-group > input:focus {
  border: 1px solid var(--theme-color) !important;
}
.emi-calculator-section input[type="radio"]:checked {
  accent-color: var(--theme-color);
}
.emi-calculator-section label {
  font-size: 16px;
}
.nav-tabs-custom {
  border-bottom: none;
  background-color: var(--theme-color);
}
#emi-calculator .nav-tabs-custom,
.nav-tabs-custom .nav-link:first-child {
  border-top-left-radius: var(--theme-border-radius);
  border-top-right-radius: var(--theme-border-radius);
}
.nav-tabs-custom .nav-link:first-child:hover {
  color: var(--white);
  border: 1px solid var(--theme-color);
  border-bottom: none !important;
  opacity: 1;
}
.nav-tabs-custom .nav-link {
  color: #fff;
  border: none;
  border-radius: 0!important;
  padding: 16px 24px;
  opacity: 0.9;
}
.nav-tabs-custom .nav-link.active,
.nav-tabs-custom .nav-link.active,
.nav-tabs-custom .nav-link:hover,
.nav-tabs-custom .nav-link:focus,
.nav-tabs-custom .active {
  color: var(--white) !important;
  background-color: #cc2222 !important;
  opacity: 1;
  border: none !important;
  border-bottom: 4px solid var(--white) !important;
}
.emi-calculator-section .nav-tabs-custom .nav-link:hover {
  opacity: 1;
}
.emi-calculator .card-header {
  border: none !important;
}
.emi-calculator-section .form-check-input {
  cursor: pointer;
}
.emi-calculator-section .form-check-input:checked {
  background-color: var(--theme-color) !important;
  border-color: var(--theme-color) !important;
  box-shadow: none !important;
}
.emi-calculator-section .card-custom {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: none;
}
.emi-calculator-section .output-panel {
  background: linear-gradient(135deg, #d31027 0%, #b22222 100%);
  color: #fff;
  border-radius: 12px;
  padding: 16px;
}
.emi-calculator-section .output-panel span {
  font-size: 14px !important;
}
.emi-calculator-section .alert-info {
  background: rgba(255, 255, 255, 0.13) !important;
  color: var(--white) !important;
  border: none !important;
}
.emi-calculator-section .btn-custom {
  background-color: var(--theme-color);
  color: var(--white);
  padding: 12px 24px;
  font-weight: var(--fw6);
  border-radius: var(--theme-border-radius);
  border: none;
  width: var(--full);
}
.emi-calculator-section .btn-custom:hover {
  background-color: #b91c1c;
}
.emi-calculator-section .whole-calculator .input-group > #loanAmount,
.emi-calculator-section .whole-calculator .input-group > #monthlyIncome {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.emi-calculator-section .whole-calculator .input-group > #interestRate {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.loan-eligibility-checker-container .card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: var(--relative);
  overflow: hidden;
}
.loan-eligibility-checker-container .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.loan-eligibility-checker-container .card::before {
  content: "";
  position: var(--absolute);
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--primary);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.loan-eligibility-checker-container .card-title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--theme-color);
  font-family: var(--theme-font);
}
.loan-eligibility-checker-container .card-title i {
  padding: 2rem;
  font-size: 1.8rem;
  background: var(--primary);
  color: var(--white);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.loan-eligibility-checker-container .form-group {
  margin-bottom: 25px;
}
.loan-eligibility-checker-container label {
  display: block;
  margin-bottom: 10px;
  font-weight: var(--fw5);
  display: flex;
  align-items: center;
  gap: 10px;
}
.loan-eligibility-checker-container label i {
  color: var(--primary);
}
.loan-eligibility-checker-container .input-group {
  position: var(--relative);
}
.loan-eligibility-checker-container input,
.loan-eligibility-checker-container select {
  width: var(--full);
  padding: 15px 20px 15px 50px;
  border: 1px solid var(--off-white);
  border-bottom: 1px solid var(--black);
  border-radius: 6px !important;
  font-size: 14px !important;
  transition: var(--transition);
  background: var(--white);
  color: var(--dark);
}
.loan-eligibility-checker-container input:focus,
.loan-eligibility-checker-container select:focus,
.loan-eligibility-checker-container .input-group select:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid var(--theme-color);
}
.loan-eligibility-checker-container .input-group select {
  width: var(--full);
  padding-right: 30px;
  border: 1px solid var(--off-white);
  border-bottom: 1px solid var(--black);
  border-radius: 6px !important;
}
.loan-eligibility-checker-container .input-icon {
  position: var(--absolute);
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.loan-eligibility-checker-container .input-group {
  position: var(--relative);
}
.loan-eligibility-checker-container .input-icon {
  position: var(--absolute);
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  font-size: 1rem;
}
.loan-eligibility-checker-container .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: var(--fw5);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  text-decoration: none;
}
.loan-eligibility-checker-container .btn-block {
  display: flex;
  width: var(--full);
}
.loan-eligibility-checker-container .btn-success {
  background: linear-gradient(135deg, var(--success) 0%, #2e7d32 100%);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}
.loan-eligibility-checker-container .btn-success:hover {
  background: linear-gradient(135deg, #43a047 0%, #1b5e20 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(76, 175, 80, 0.4);
}
.loan-eligibility-checker-container .btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.loan-eligibility-checker-container .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}
.loan-eligibility-checker-container .employment-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--light);
  border-radius: var(--theme-border-radius);
  cursor: pointer;
  transition: var(--transition);
  flex: 1;
  min-width: 200px;
  border: 2px solid transparent;
}
.loan-eligibility-checker-container .employment-option:hover {
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.loan-eligibility-checker-container .employment-option.selected {
  background: var(--white);
  border: 1px solid var(--primary);
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.15);
}
.loan-eligibility-checker-container .employment-option i {
  font-size: 1.2rem;
  color: var(--primary);
  background: #ffdddd69;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.loan-eligibility-checker-container .employment-option h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--dark);
}
.loan-eligibility-checker-container .employment-option p {
  font-size: 0.9rem;
  color: var(--gray);
}
.loan-eligibility-checker-container .eligibility-alert {
  text-align: center;
  padding: 20px;
  border-radius: var(--theme-border-radius);
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 0.98rem;
  background: linear-gradient(135deg, #ed102c 0%, #ffadb8 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(211, 16, 39, 0.18);
}
.loan-eligibility-checker-container .eligibility-result {
  display: none;
  background: linear-gradient(135deg, #0e3746 0%, #092630 100%);
  color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  margin-top: 30px;
  box-shadow: var(--box-shadow);
  animation: fadeIn 0.8s ease;
}
.loan-eligibility-checker-container .eligibility-result.active {
  display: block;
}
.loan-eligibility-checker-container .eligibility-result h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 34px;
  margin-top: 9px;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
.loan-eligibility-checker-container .eligibility-result-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.loan-eligibility-checker-container .result-box {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}
.loan-eligibility-checker-container .result-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}
.loan-eligibility-checker-container .result-box h4 {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #e0e0ff;
  font-weight: 500 !important;
}
.loan-eligibility-checker-container .result-value {
  font-size: 1.8rem;
  font-weight: var(--fw6);
  margin: 10px 0;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.loan-eligibility-checker-container .result-description {
  font-size: 0.98rem;
  color: #c7d2fe;
  margin-top: 15px;
  line-height: 24px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fixed-deposit-section .alert-box {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
  border-radius: var(--theme-border-radius);
  padding: 14px 18px;
  font-size: var(--default-font-size);
  display: flex;
  align-items: center;
  gap: 10px;
}

.fixed-deposit-section .alert-box i {
  font-size: 1.2rem;
}
.fixed-deposit-section .main-content {
  margin: 30px auto 0 auto;
  width: var(--full);
  align-items: flex-start;
}
.fixed-deposit-section .left-panel-container {
  top: 100px;
}
.fixed-deposit-section .results {
  margin-top: 18px;
  padding: 32px 28px 28px 28px;
  border-radius: 20px;
}
.fixed-deposit-section .fd-history {
  margin-bottom: 10px;
}
.fixed-deposit-section .fd-history h3 {
  margin-bottom: 7px;
  font-size: 1.02rem;
  letter-spacing: 0.2px;
  font-weight: var(--fw6);
}
.fixed-deposit-section .fd-history table {
  width: var(--full);
  border-collapse: collapse;
  font-size: var(--default-font-size);
}
.fixed-deposit-section .fd-history th,
.fixed-deposit-section .fd-history td {
  padding: 5px 2px;
  text-align: center;
}
.fixed-deposit-section .fd-history th {
  background: var(--theme-color);
  color: var(--white);
  font-weight: var(--fw5);
}
.fixed-deposit-section .fd-history tr:nth-child(even) {
  background: #f9f9f9;
}
.fixed-deposit-section canvas #fd-rate-trend {
  height: 300px !important;
}
.fixed-deposit-section .rate-trend-chart {
  background: var(--white);
  border-radius: var(--theme-border-radius) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  padding: 12px 2px 2px 2px;
  margin-top: 7px;
}
.fixed-deposit-section .middle-panel {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: var(--theme-border-radius) !important;
}
.fixed-deposit-section .section-title {
  font-size: 1.2rem;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--theme-color);
  color: var(--theme-color);
  font-weight: var(--fw6);
  letter-spacing: 0.5px;
}
.fixed-deposit-section .input-group {
  margin-bottom: 18px;
}
.fixed-deposit-section .input-group label {
  width: var(--full);
  display: block;
  margin-bottom: 7px;
  font-size: var(--default-font-size);
  cursor: pointer;
}
.fixed-deposit-section .input-group input,
.fixed-deposit-section .input-group select {
  padding: 12px;
  border: 1px solid var(--off-white);
  border-bottom: 1px solid var(--black);
  border-radius: 6px !important;
  font-size: var(--default-font-size);
}
.fixed-deposit-section .input-group input:focus,
.fixed-deposit-section .input-group select:focus {
  box-shadow: none !important;
  outline: none !important;
  border-color: var(--theme-color) !important;
}
.fixed-deposit-section .popup-box input:focus,
.fixed-deposit-section .popup-box textarea:focus {
  border: 1px solid var(--theme-color) !important;
  box-shadow: none !important;
  outline: none !important;
}
.fixed-deposit-section .input-group #senior-citizen {
  width: unset;
}
.fixed-deposit-section .range-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 7px;
}
.fixed-deposit-section .range-container input[type="range"] {
  width: var(--full);
  height: 4px !important;
  padding: 0;
  -webkit-appearance: none;
  background: #f6f5f5;
  border-radius: 10px;
  border: none;
  outline: none;
  box-shadow: none;
}
.fixed-deposit-section
  .range-container
  input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: var(--theme-color);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transitionEase);
}
.fixed-deposit-section
  .range-container
  input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background: #b22222;
}
.fixed-deposit-section .btn-calculate {
  width: var(--full);
  padding: 14px;
  background: linear-gradient(135deg, #d31027 0%, #b22222 100%);
  color: var(--white) !important;
  text-align: center;
  border: none;
  border-radius: var(--theme-border-radius) !important;
  font-size: 1.08rem;
  font-weight: var(--fw6);
  cursor: pointer;
  transition: var(--transitionEase);
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(211, 16, 39, 0.18);
  position: var(--relative);
  overflow: hidden;
}
.fixed-deposit-section .btn-calculate:hover {
  background: linear-gradient(135deg, #b22222 0%, #d31027 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(211, 16, 39, 0.22);
}
.fixed-deposit-section .btn-calculate:active {
  transform: translateY(0);
}
.fixed-deposit-section .results {
  background: linear-gradient(135deg, #d31027 0%, #b22222 100%);
  border-radius: var(--theme-border-radius) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 32px 28px 28px 28px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: var(--relative);
  overflow: hidden;
}
.fixed-deposit-section .results::before {
  content: "";
  position: var(--absolute);
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.fixed-deposit-section .results::after {
  content: "";
  position: var(--absolute);
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.fixed-deposit-section .results .section-title {
  color: var(--white);
  border-bottom: 2px solid rgba(255, 255, 255, 0.22);
  position: var(--relative);
  z-index: 2;
}
.fixed-deposit-section .result-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  position: var(--relative);
  z-index: 2;
  animation: fadeIn 0.5s ease-out;
}
.fixed-deposit-section .result-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.fixed-deposit-section .result-value {
  font-size: 1.4rem;
  font-weight: var(--fw6);
}
.fixed-deposit-section .result-label {
  font-size: 1.08rem;
  opacity: 0.93;
}
.fixed-deposit-section #senior-citizen[type="checkbox"] {
  accent-color: var(--theme-color);
}
.fixed-deposit-section .info-text {
  background: rgba(255, 255, 255, 0.13);
  padding: 16px;
  border-radius: var(--theme-border-radius);
  margin-top: 18px;
  font-size: var(--default-font-size);
  line-height: 1.6;
  position: var(--relative);
  z-index: 2;
}
.fixed-deposit-section .bar-chart-container {
  border: none;
  background: var(--white);
  border-radius: 13px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 18px 8px 10px 8px;
  margin: 18px 0 0 0;
}
.fixed-deposit-section .feature-card {
  background: var(--white);
  border-radius: var(--theme-border-radius) !important;
  padding: 18px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  flex: 1;
  text-align: center;
  transition: var(--transitionEase);
  border: 1px solid #f0d9d96e;
}
.fixed-deposit-section .feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.09);
}
.fixed-deposit-section .feature-icon img {
  width: 23px;
}
.fixed-deposit-section .feature-card h3 {
  color: var(--theme-color);
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.fixed-deposit-section .feature-card p {
  color: #7f8c8d;
  font-size: var(--default-font-size);
}
.fixed-deposit-section .popup-bg {
  display: none;
  position: fixed;
  z-index: 1234;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.38);
  align-items: center;
  justify-content: center;
}
.fixed-deposit-section .popup-bg.active {
  display: flex;
}
.fixed-deposit-section .popup-box {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  max-width: 550px;
  width: 95vw;
  position: var(--relative);
  animation: fadeIn 0.3s;
}
.fixed-deposit-section .popup-box h2 {
  color: #a52a2a;
  font-size: 1.25rem;
  margin-bottom: 18px;
  text-align: center;
}
.fixed-deposit-section .popup-box label {
  font-weight: var(--fw5);
  color: var(--black);
  font-size: var(--default-font-size);
  margin-bottom: 4px;
  display: block;
}
.fixed-deposit-section .popup-box input,
.fixed-deposit-section .popup-box textarea {
  width: var(--full);
  padding: 10px;
  margin-bottom: 13px;
  border: 1px solid var(--off-white);
  border-bottom: 1px solid var(--black);
  border-radius: 6px !important;
  font-size: 1rem;
  background: #fffafa;
}
.fixed-deposit-section .popup-box textarea {
  min-height: 60px;
  resize: vertical;
}
.fixed-deposit-section .popup-close {
  position: var(--absolute);
  top: 10px;
  right: 14px;
  font-size: 1.3rem;
  color: var(--theme-color);
  cursor: pointer;
  background: none;
  border: none;
}
.fixed-deposit-section .popup-submit {
  width: var(--full);
  padding: 12px;
  background: linear-gradient(135deg, #d31027 0%, #b22222 100%);
  color: var(--white);
  border: none;
  border-radius: var(--theme-border-radius);
  font-size: 1.05rem;
  font-weight: var(--fw6);
  cursor: pointer;
  margin-top: 5px;
}
.fixed-deposit-section .popup-submit:hover {
  background: linear-gradient(135deg, #b22222 0%, #d31027 100%);
}
.fixed-deposit-section .popup-success {
  color: #078a3dff;
  text-align: center;
  margin-top: 10px;
  font-weight: var(--fw5);
  font-size: var(--default-font-size);
}
.fixed-deposit-section .popup-analyze-link {
  display: block;
  text-align: center;
  color: var(--theme-color);
  background: #fff3f3;
  border: 1px solid #f0d9d9;
  border-radius: var(--theme-border-radius) !important;
  padding: 10px 18px;
  font-weight: 400;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.fixed-deposit-section .popup-analyze-link:hover {
  background: #ffeaea;
}
.terms-condition {
  text-align: center;
  font-size: var(--default-font-size);
  color: #7f8c8d;
  margin: 30px 0 5px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-dismiss {
  background-color: #ffffff !important;
  border: 1px solid #00000020;
  border-radius: 50% !important;
  width: 36px;
  height: 36px;
  opacity: 1 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  position: var(--absolute);
  right: 20px;
  top: 30px;
}
.job-form .modal-dialog {
  height: var(--full);
  margin: 0;
  max-width: auto;
}
.job-form .modal-content {
  height: auto;
  border-radius: 0;
}

.job-form .modal-body {
  overflow-y: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}
.btn-dismiss {
  background-color: #ffffff !important;
  border: 1px solid #00000020;
  border-radius: 50% !important;
  width: 36px;
  height: 36px;
  opacity: 1 !important;
  position: var(--absolute);
  right: 20px;
  top: 20px;
  z-index: 999;
}
#fileNameContainer {
  align-items: center;
  display: none;
  margin-left: 25px;
  font-size: 12px;
  color: #6b6b6b;
  background: #e7e7e7;
  padding: 0.8% 3%;
  border-radius: 30px;
}
#fileNameContainer button {
  margin-left: 5px;
  border: none;
  background: none;
  cursor: pointer;
  color: #414040;
  font-weight: bold;
  font-size: 13px;
}
#removeFile:hover {
  color: darkred;
}
.attachment-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: var(--fw5);
  gap: 8px;
}
.attachment-label small{
  font-size:13px;
  display:block;
}
.attachment-icon {
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.attachment-label:hover .attachment-icon {
  color: var(--theme-color);
}
.custom-input {
  border: none;
  border: 1px solid var(--off-white);
  border-bottom: 1px solid var(--black);
  border-radius: 6px !important;
  box-shadow: none;
}
.custom-input:focus,
.custom-input:hover {
  border: 1px solid var(--off-white);
  border-bottom: 1px solid var(--theme-color);
}
.job-vaccancy {
  padding: 8% 2%;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: auto;
}
.job-title {
  font-size: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-weight: var(--fw6);
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: var(--default-font-size);
  border-top: 1px solid #f3f3f3;
  border-bottom: 1px solid #f3f3f3;
  padding: 10px 0;
  font-weight: var(--fw5);
}
.job-meta ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.job-meta ul li {
  display: flex;
  align-items: center;
  position: var(--relative);
  padding: 6px 16px;
  border-radius: var(--theme-border-radius);
}
.job-meta ul li:not(:last-child)::after {
  content: "";
  position: var(--absolute);
  right: 0;
  top: 50%;
  width: 1px;
  height: 14px;
  background: var(--black);
  opacity: 0.4;
  transform: translateY(-50%);
}
.job-description {
  font-size: var(--default-font-size);
  color: var(--muted);
  line-height: 1.6;
}
.job-description h5 {
  font-weight: var(--fw6);
  margin: 20px 0 30px;
}
.job-description ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.job-description ul li {
  margin-bottom: 20px;
  position: var(--relative);
  padding-left: 18px;
}
.job-description ul li::before {
  content: "-";
  position: var(--absolute);
  left: 0;
  top: 0;
  font-weight: 400;
}
.btn-apply {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: var(--theme-border-radius);
  cursor: pointer;
  font-size: var(--default-font-size);
  background: var(--theme-color);
  color: var(--white) !important;
  border: 1px solid var(--theme-color);
  padding: 1.7% 5%;
  transition: var(--transition);
  font-weight: 400;
  gap: 10px;
}
.btn-apply:hover,
.btn-apply:focus {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
  border: 1px solid var(--black);
  transition: var(--transition);
}
.btn-apply .icon {
  width: 18px;
  transform: rotate(53deg);
  transition: var(--transition);
  margin-left: -4% !important;
}
.btn-apply:hover .icon {
  margin-left: 0% !important;
  visibility: visible;
  width: 18px;
}
.cta {
  margin-top: 5%;
}
.job-info li img {
  width: 15px;
  margin-right: 3%;
  display: none;
}
.job-info li span {
  padding-left: 5px;
}

/* updates css */

/* === Extra Large Screens (≥1400px) === */
@media (min-width: 1400px) {
  .bridge-loan-documents-section img {
    height: 220px !important;
  }
}

/* === Large Screens (≥1200px) === */
@media (min-width: 1200px) {
  .msme-loan-types-section .card,
  .legal-advisory-container .card,
  .mutual-fund-main-section .card {
    height: 261px !important;
  }
  .retail-loan-benefits-section .card {
    height: 204px !important;
  }
  .legal-advisory-container .icons {
    width: 35px;
    height: 35px;
  }
  .legal-advisory-container .card span,
  .insurance-card-1 span,
  .insurance-card-2 span,
  .mutual-fund-main-section .card span {
    width: 70px !important;
    height: 70px !important;
  }
}

/* === Desktop / Large Screens (≥992px) === */
@media (min-width: 992px) {
  .arrow-btn {
    display: none !important;
  }
  .blog-text h4 {
    font-size: 1.15rem;
  }
  .article-card-1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .hero-section-area p {
    max-width: 75%;
  }
}

/* === Medium Screens (768px ≤ width < 992px) === */
@media (max-width: 991.98px) {
  .card-title {
    font-size: 21px !important;
  }
  .insurance-card-1,
  .insurance-card-2 {
    height: 171px !important;
    border: none !important;
  }
  .one-time-settlement-section .card.img-1,
  .one-time-settlement-section .card.img-2 {
    height: auto !important;
    object-fit: contain !important;
  }
  .article-inner-title {
    font-size: 30px;
    line-height: 36px;
  }
}

/* === Tablet / Medium Screens (≤768px) === */
@media (max-width: 768px) {
  .article-inner-card,
  .inner-card {
    padding: 1rem;
  }
  .referral-associate-advantages-section .card .title {
    height: 95px !important;
  }
  .summary-card .value {
    font-size: 1.3em;
  }
  .report-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  }
  #calculateBtn i {
    display: none;
  }
  .loan-comparison-container .comparison-container {
    flex-direction: column;
  }
  .loan-comparison-container .comparison-result {
    order: 1;
    height: 100% !important;
    flex: unset;
  }
  .loan-comparison-container .card {
    padding: 25px 20px;
  }
  .loan-comparison-container .result-alert {
    font-size: 1.2rem;
    flex-direction: column;
    text-align: center;
  }
  .loan-eligibility-checker-container .card-title {
    font-size: 1.5rem;
  }
  .loan-eligibility-checker-container .eligibility-result-content {
    grid-template-columns: 1fr;
  }
  .loan-eligibility-checker-container .eligibility-result h3 {
    font-size: 1.3rem;
  }
  .rate-conversion-class .loan-type {
    min-width: calc(50% - 8px);
  }
  .rate-conversion-class .comparison-wrapper {
    flex-direction: column;
  }
  .rate-conversion-class .chart-wrapper {
    height: 190px;
  }
  .nav-tabs-custom .nav-link {
    padding: 18px 16px;
    font-size: 0.9rem;
  }
  .article-main-img {
    height: 180px !important;
  }
}

/* === Small Screens (≤600px) === */
@media (max-width: 600px) {
  .loan-comparison-container .btn {
    padding: 10px 20px;
    font-size: var(--default-font-size);
  }
  .loan-comparison-container .loan-card {
    min-width: var(--full);
  }
}

/* === Extra Small Screens (≤575.98px) === */
@media (max-width: 575.98px) {
  .card-title {
    font-size: 20px !important;
  }
  .benefits-section .card-body {
    padding: 1.5rem;
  }
  .loan-comparison-container .notification {
    right: 20px;
    left: unset;
    margin: 0 auto;
  }
}

/* === Very Small Screens (≤500px) === */
@media (max-width: 500px) {
  #search-input1,
  #search-input2 {
    width: 94vw !important;
    border: 2px solid #ed102c !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
  }
  #search-icon1,
  #search-icon2 {
    width: 21px;
    height: 21px;
  }
}

/* === Small-Medium Screens (≥501px) === */
@media (min-width: 501px) {
  #search-icon1,
  #search-icon2 {
    width: 25px;
    height: 25px;
  }
}

/* === Extra Small Screens (≤480px) === */
@media (max-width: 480px) {
  .responsive-height {
    height: 200px !important;
  }
  .rate-conversion-class .wrapper {
    gap: 15px;
  }
  .rate-conversion-class .loan-box {
    min-width: var(--full);
  }
  .rate-conversion-class .card-body,
  .rate-conversion-class .results-card {
    padding: 15px;
  }
  .rate-conversion-class .chart-wrapper {
    height: 170px;
    padding: 10px;
  }
}

/* === Smaller Tablets / Phones (≤380px) === */
@media (max-width: 380px) {
  .referral-associate .referral-associate-card {
    height: 140px !important;
  }
}

/* === Very Small Phones (≤390px) - 2nd CSS === */
@media (max-width: 390px) {
  .modal-body .item_p .nav-link span {
    display: none;
  }
  .loanitol_center_area .btn {
    margin-bottom: 5%;
  }
  .h4-size-area {
    font-size: 30px !important;
  }
  .form-pd h3,
  .h6-size {
    font-size: 6vw !important;
  }
  .carousel-indicators {
    bottom: 64px !important;
  }
  .breadcrumb {
    display: none;
  }
}

/* === Specific Widths from 2nd CSS === */
@media screen and (width: 540px) {
  .carousel-indicators {
    margin-bottom: clamp(95px, 5vw, 45px) !important;
  }
  .testimonial_area .testimonial_img_section .sm-logo {
    left: 64vw !important;
  }
  .people_say .loanitol-service .owl-theme .owl-dots,
  .people_say2 .loanitol-service .owl-theme .owl-dots {
    margin-left: -25.5em !important;
  }
  .bg-contact-area {
    padding: 9% 5% !important;
  }
  .about_loan_area_gradient {
    padding: 12% 2% !important;
  }
  .document .bg-- {
    padding-bottom: 10% !important;
  }
  .eligibility {
    padding: 8% 2% !important;
  }
  .details-section {
    padding: 7% 2% !important;
  }
  .empower-section {
    padding: 9% 2% 8% 2% !important;
  }
  .copyright-bg-area {
    padding: 3% 0% !important;
  }
  .features-image-box img,
  .benefits-image-box img {
    object-position: top;
  }
  .video-frame {
    height: 24rem !important;
  }
  .partner-section-area {
    padding: 10% 3% !important;
  }
  .management_area_gradient h5 {
    padding-left: 12% !important;
  }
  .learn-inner .btn {
    padding: 2% 4% !important;
  }
}

@media only screen and (width: 720px) {
  .people_say .loanitol-service .owl-theme .owl-dots,
  .people_say2 .loanitol-service .owl-theme .owl-dots {
    margin-left: calc(10vw - 31rem) !important;
  }
  .features-image-box {
    height: 36vh !important;
  }
  .benefits-image-box {
    height: 32vh !important;
  }
  .about-timeline {
    padding: 70px 0 0px !important;
  }
  .management_area_gradient .quote-img {
    top: 6% !important;
  }
  .learn-inner .btn {
    margin-top: 4% !important;
  }
}

@media only screen and (width: 740px) {
  .management_area_gradient .quote-img {
    top: 6% !important;
  }
}

@media only screen and (width: 912px) {
  .features-image-box,
  .benefits-image-box {
    height: 15vh !important;
  }
}

.event-btn a{
    font-family: var(--theme-font);
    position: var(--relative);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--white);
    color: rgb(0, 0, 0) !important;
    padding: 1.5% 4%;
    font-size: 13px;
    cursor: pointer;
    border-radius: var(--theme-border-radius);
    display: flex;
    align-items: center;
    width: max-content;
    gap: 8px;
    transition: 0.3s ease-in-out;
}
.event-btn a:hover{
  transition: 0.3s ease-in-out;
  background: transparent;
  border: 1px solid var(--white)!important;
  color: var(--white)!important;
}