@font-face {
  font-family: "Lato";
  src: url("/assets/font/Lato-Regular.ttf");
}
* {
  font-family: "Lato";
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 26px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 18px;
}

p {
  font-size: 16px;
}

a {
  font-size: 16px;
}

.primary-but {
  background-color: #790962;
  color: white;
  padding: 6px 40px;
  border: 0px;
  border-radius: 5px;
  margin: 15px 6px;
}

.secondary-but {
  background-color: #000000;
  color: white;
  padding: 6px 40px;
  border: 0px;
  border-radius: 5px;
  margin: 15px 6px;
}

.primary-outlined-but {
  background-color: white;
  color: #790962;
  padding: 6px 40px;
  border: 1px solid #790962;
  border-radius: 5px;
  margin: 15px 6px;
}
.primary-outlined-but:hover {
  background-color: #790962;
  color: white;
}

.secondary-outlined-but {
  background-color: white;
  color: #000000;
  padding: 6px 40px;
  border: 1px solid #000000;
  border-radius: 5px;
  margin: 15px 6px;
}
.secondary-outlined-but:hover {
  background-color: #000000;
  color: white;
}

@media (min-width: 600px) and (max-width: 1200px) {
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 16px;
  }
  p {
    font-size: 14px;
  }
  a {
    font-size: 14px;
  }
  .primary-but {
    background-color: #790962;
    color: white;
    padding: 4px 30px;
    border: 0px;
    border-radius: 5px;
    font-size: 14px;
    margin: 10px 4px;
    text-wrap: nowrap;
  }
  .secondary-but {
    background-color: #000000;
    color: white;
    padding: 4px 30px;
    border: 0px;
    border-radius: 5px;
    font-size: 14px;
    margin: 10px 4px;
    text-wrap: nowrap;
  }
  .primary-outlined-but {
    background-color: white;
    color: #790962;
    padding: 4px 30px;
    border: 1px solid #790962;
    border-radius: 5px;
    font-size: 14px;
    margin: 10px 4px;
    text-wrap: nowrap;
  }
  .secondary-outlined-but {
    background-color: white;
    color: #000000;
    padding: 4px 30px;
    border: 1px solid #000000;
    border-radius: 5px;
    font-size: 14px;
    margin: 10px 4px;
    text-wrap: nowrap;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 16px;
  }
  p {
    font-size: 14px;
  }
  a {
    font-size: 14px;
  }
  .primary-but {
    background-color: #790962;
    color: white;
    padding: 4px 20px;
    border: 0px;
    border-radius: 5px;
    font-size: 14px;
    margin: 10px 4px;
    text-wrap: nowrap;
  }
  .secondary-but {
    background-color: #000000;
    color: white;
    padding: 4px 20px;
    border: 0px;
    border-radius: 5px;
    font-size: 14px;
    margin: 10px 4px;
    text-wrap: nowrap;
  }
  .primary-outlined-but {
    background-color: white;
    color: #790962;
    padding: 4px 20px;
    border: 1px solid #790962;
    border-radius: 5px;
    font-size: 14px;
    margin: 10px 4px;
    text-wrap: nowrap;
  }
  .secondary-outlined-but {
    background-color: white;
    color: #000000;
    padding: 4px 20px;
    border: 1px solid #000000;
    border-radius: 5px;
    font-size: 14px;
    margin: 10px 4px;
    text-wrap: nowrap;
  }
}
.top-location {
  background-color: #be3ac3;
  color: white;
}
.top-location span {
  font-size: 14px;
}
.top-location span a {
  text-decoration: none;
  color: white;
  font-size: 14px;
}
.top-location .location-bt {
  border: 0;
  background-color: #be3ac3;
  color: white;
  padding-right: 10px;
  border-right: 1px solid #f8ebfa;
}
.top-location .icons {
  padding-left: 10px;
}
.top-location .icons i {
  padding-right: 10px;
  color: white;
}

.sticky-top {
  z-index: 1;
}

.navbar {
  z-index: 1;
}
.navbar .navbar-nav {
  padding-left: 80px;
}
.navbar .navbar-nav .nav-item {
  position: relative;
  text-wrap: nowrap;
  font-weight: 600;
}
.navbar .navbar-nav .nav-item .menu {
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  position: absolute;
  margin: auto;
  padding: 10px 20px 20px 20px;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: opacity 0.3s ease-in, transform 0.3s ease-in;
}
.navbar .navbar-nav .nav-item .menu a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: black;
}
.navbar .navbar-nav .nav-item .menu a:hover {
  background-color: #f8f9fa;
}
.navbar .navbar-nav .nav-item .menu .img {
  height: 200px;
}
.navbar .navbar-nav .nav-item:hover .menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.navbar .navbar-nav .nav-item:nth-child(7) {
  padding-right: 60px;
}

.home-banner-sec .image-back {
  position: relative;
}
.home-banner-sec .image-back .image-content {
  position: absolute;
  top: 25%;
  right: 15%;
  color: white;
  text-align: end;
}
.home-banner-sec .image-back .image-content .content-black {
  color: #000;
}
.home-banner-sec .image-back .image-content h1 {
  font-size: 52px;
  font-weight: bold;
}
.home-banner-sec .image-back .image-content .primary-but {
  padding: 10px 50px;
  font-size: 20px;
  margin-top: 30px;
}
.home-banner-sec .image-back .image-content .secondary-but {
  padding: 10px 50px;
  font-size: 20px;
  margin-top: 30px;
}
.home-banner-sec .image-back .image-content .animated-line {
  opacity: 0;
  transform: translateY(-20px);
  animation: dropLine 0.5s forwards;
}
.home-banner-sec .image-back .image-content .animated-line {
  opacity: 0;
  transform: translateY(-20px);
  animation: dropLine 0.5s forwards;
}
.home-banner-sec .image-back .image-content .animated-line:nth-child(1) {
  animation-delay: 0.2s;
}
.home-banner-sec .image-back .image-content .animated-line:nth-child(2) {
  animation-delay: 0.4s;
}
.home-banner-sec .image-back .image-content .animated-line:nth-child(3) {
  animation-delay: 0.6s;
}
.home-banner-sec .image-back .image-content .animated-line:nth-child(4) {
  animation-delay: 0.8s;
}
.home-banner-sec .image-back .image-content .animated-line:nth-child(5) {
  animation-delay: 1s;
}
@keyframes dropLine {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-second-sec .card1,
.home-second-sec .card3 {
  opacity: 0.9;
  position: relative;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.home-second-sec .card1 h5,
.home-second-sec .card3 h5 {
  color: #790962;
  font-weight: 600;
}
.home-second-sec .card1 .color-img,
.home-second-sec .card3 .color-img {
  display: block;
}
.home-second-sec .card1 .color-img1,
.home-second-sec .card3 .color-img1 {
  display: none;
}
.home-second-sec .card1 .primary-outlined-but,
.home-second-sec .card3 .primary-outlined-but {
  position: absolute;
  bottom: 0%;
  opacity: 0;
  left: -5%;
  transition: left 0.6s ease-in-out, opacity 0.5s ease-in-out;
}
.home-second-sec .card1:hover,
.home-second-sec .card3:hover {
  background-image: url("/assets/images/loan-opportunities-img2.webp");
  background-size: 100% 100%;
  color: white;
}
.home-second-sec .card1:hover h5,
.home-second-sec .card3:hover h5 {
  color: white;
}
.home-second-sec .card1:hover .color-img,
.home-second-sec .card3:hover .color-img {
  display: none;
}
.home-second-sec .card1:hover .color-img1,
.home-second-sec .card3:hover .color-img1 {
  display: block;
}
.home-second-sec .card1:hover .primary-outlined-but,
.home-second-sec .card3:hover .primary-outlined-but {
  opacity: 1;
  left: 55%;
}
.home-second-sec .card2 {
  background-image: url("/assets/images/businessman-giving-money-img2.webp");
  background-size: 100% 100%;
  color: white;
  position: relative;
}
.home-second-sec .card2 h5 {
  color: white;
  font-weight: 600;
}
.home-second-sec .card2 .color-img {
  display: none;
}
.home-second-sec .card2 .color-img1 {
  display: block;
}
.home-second-sec .card2 .primary-outlined-but {
  position: absolute;
  bottom: 1%;
  opacity: 0;
  left: -5%;
  transition: left 0.6s ease-in-out, opacity 0.5s ease-in-out;
}
.home-second-sec .card2:hover .color-img {
  display: block;
}
.home-second-sec .card2:hover .color-img1 {
  display: none;
}
.home-second-sec .card2:hover .primary-outlined-but {
  opacity: 1;
  left: 55%;
}
.home-second-sec .card3:hover {
  background-image: url("/assets/images/standard-quality-control-concept-m.webp");
  background-size: 100% 100%;
}
.home-second-sec .card3:hover h5 {
  color: white;
}

.about-us-sec {
  background-color: #f8ebfa;
}
.about-us-sec .about-picture {
  position: relative;
}
.about-us-sec .about-picture .about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: white;
  border-radius: 5px;
  position: absolute;
  bottom: 5%;
  left: -20%;
  opacity: 0;
  transition: left 0.6s ease-in-out, opacity 0.5s ease-in-out;
}
.about-us-sec .about-picture:hover .about-content {
  left: 5%;
  opacity: 1;
}
.about-us-sec .about-us-content {
  display: flex;
  align-items: end;
  justify-content: start;
}
.about-us-sec .about-us-content .bord {
  border-right: 1px solid #000000;
}
.about-us-sec .about-us-content h5 {
  color: #501952;
  margin: 15px 0px;
  font-weight: 600;
}
.about-us-sec .about-us-content h2 {
  margin-bottom: 20px;
  font-weight: 600;
}
.about-us-sec .about-us-content p {
  margin-bottom: 20px;
}
.about-us-sec .about-us-content i {
  color: #be3ac3;
  margin-bottom: 30px;
}

.services-sec {
  background-image: url("/assets/images/services-bg-img.webp");
  background-size: 100% 100%;
}
.services-sec i {
  font-size: 32px;
  margin-bottom: 20px;
  color: white;
}
.services-sec h5 {
  color: white;
  text-align: center;
}
.services-sec h3 {
  color: white;
  margin-bottom: 40px;
  text-align: center;
}
.services-sec a {
  text-decoration: none;
}
.services-sec a .card {
  padding: 20px;
  background-color: rgba(190, 58, 195, 0.4);
}
.services-sec a .card h4 {
  font-weight: 600;
  color: white;
}
.services-sec a .card p {
  color: white;
}
.services-sec a .card:hover {
  box-shadow: rgba(244, 244, 245, 0.2) 0px 8px 24px;
}

.get-quote-sec .row {
  margin: 0px;
}
.get-quote-sec h5 {
  color: #be3ac3;
}
.get-quote-sec h2 {
  color: #501952;
  font-weight: 600;
}
.get-quote-sec .get-form {
  padding: 25px;
}
.get-quote-sec .get-form label {
  font-size: 20px;
  margin-bottom: 15px;
}
.get-quote-sec .get-form input,
.get-quote-sec .get-form select,
.get-quote-sec .get-form option {
  border: 0;
  background-color: #f8ebfa;
  padding: 15px;
}
.get-quote-sec .get-form .progress .progress-bar {
  background-color: #be3ac3;
}
.get-quote-sec .get-form .secondary-but {
  padding: 10px 50px;
}
.get-quote-sec .get-form .range-slide-container {
  width: 100%;
}
.get-quote-sec .get-form .range-slide-container .slider {
  padding: 0px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: linear-gradient(to right, #f8ebfa, #790962);
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.get-quote-sec .get-form .range-slide-container .slider:hover {
  opacity: 1;
}
.get-quote-sec .get-form .range-slide-container .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border: 10px solid #be3ac3;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}

.testimonial-sec h5 {
  color: #be3ac3;
  font-weight: 600;
}
.testimonial-sec h2 {
  color: #790962;
  font-weight: 600;
}
.testimonial-sec .card {
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  background: rgb(248, 235, 250);
  background: linear-gradient(42deg, rgb(248, 235, 250) 2%, rgb(248, 235, 250) 57%, rgb(255, 255, 255) 96%);
  background-size: 100% 100%;
  border: 0;
}
.testimonial-sec .card .card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-sec .card .card-head h3 {
  color: #790962;
  font-weight: 600;
}
.testimonial-sec .card .card-head i {
  color: #be3ac3;
}
.testimonial-sec .card .card-content {
  color: #000;
  font-weight: 600;
}
.testimonial-sec .card .card-last {
  background: rgb(0, 0, 0);
  background: linear-gradient(43deg, rgb(0, 0, 0) 24%, rgb(190, 58, 195) 100%);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: start;
  color: white;
  border-radius: 0px 10px 10px 0px;
  width: 60%;
  margin-left: -30px;
}
.testimonial-sec .card .card-last h6 {
  color: white;
  font-weight: 600;
  margin-bottom: 2px;
}
.testimonial-sec .card .card-last .img {
  height: 60px;
  width: 60px;
  border-radius: 50px;
  margin-right: 25px;
}
.testimonial-sec .card .card-last .img img {
  border-radius: 40px;
}
.testimonial-sec .card .card-last p {
  margin-bottom: 2px;
}

.blogs-head-sm {
  color: #be3ac3;
}

.blogs-head-l {
  color: #790962;
  font-weight: 600;
}

.footer-sec {
  background-color: #790962;
}
.footer-sec .footer-box {
  background-color: rgba(249, 248, 249, 0.4);
  padding: 35px;
}
.footer-sec .footer-box h6 {
  color: white;
}
.footer-sec .footer-box .icons h5 {
  color: white;
  font-weight: 600;
}
.footer-sec .footer-box .icons i {
  font-size: 26px;
  padding-right: 10px;
  color: #790962;
}
.footer-sec .footer-box .icons i:hover {
  color: white;
}
.footer-sec h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 25px;
}
.footer-sec ul {
  padding: 0;
}
.footer-sec ul li {
  list-style: none;
  margin-bottom: 10px;
}
.footer-sec ul li a {
  text-decoration: none;
  color: white;
}
.footer-sec .footer-contact {
  color: white;
}
.footer-sec .footer-contact a {
  text-decoration: none;
  color: white;
}
.footer-sec .footer-contact i {
  font-size: 20px;
  padding-right: 25px;
}
.footer-sec .bord {
  border-bottom: 1px solid #f8ebfa;
}
.footer-sec .copy-rights {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-sec .copy-rights h6 {
  color: white;
}
.footer-sec .copy-rights li {
  padding-right: 15px;
}

.modal-header {
  background-color: #790962;
}
.modal-header h5,
.modal-header button {
  color: white;
}

.popup-form {
  padding: 25px;
}
.popup-form label {
  font-size: 18px;
  margin-bottom: 8px;
}
.popup-form input,
.popup-form select,
.popup-form option {
  border: 0;
  background-color: #f8ebfa;
  padding: 10px;
}

/* mobile view bottom-panel-section start*/
.bottom-panel-section {
  background-color: #be3ac3;
  text-align: center;
}
.bottom-panel-section i,
.bottom-panel-section a {
  color: white;
}

/* mobile view bottom-panel-section end */
.scroll-top-btn {
  position: fixed;
  bottom: 45px;
  right: 5px;
  display: none;
  background-color: #000;
  color: #be3ac3;
  border: none;
  border-radius: 2px;
  width: 45px;
  height: 45px;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.scroll-top-btn:hover {
  background-color: #be3ac3;
  color: white;
}
.scroll-top-btn:focus {
  outline: none;
}

@media (min-width: 990px) and (max-width: 1536px) {
  .home-banner-sec .image-back {
    position: relative;
  }
  .home-banner-sec .image-back .image-content h1 {
    font-size: 32px;
  }
  .home-banner-sec .image-back .image-content .primary-but {
    padding: 8px 35px;
    font-size: 14px;
    margin-top: 30px;
  }
  .home-banner-sec .image-back .image-content .secondary-but {
    padding: 8px 35px;
    font-size: 14px;
    margin-top: 30px;
  }
}
@media (min-width: 990px) and (max-width: 1200px) {
  .navbar .navbar-nav {
    padding-left: 0px;
  }
  .navbar .navbar-nav .nav-item a {
    font-size: 14px;
  }
  .navbar .navbar-nav .nav-item:nth-child(7) {
    padding-right: 30px;
  }
  .navbar .navbar-nav .nav-item:last-child {
    padding-right: 30px;
  }
  .home-banner-sec .image-back {
    position: relative;
  }
  .home-banner-sec .image-back .image-content h1 {
    font-size: 32px;
  }
}
@media (min-width: 600px) and (max-width: 990px) {
  .home-banner-sec .image-back {
    position: relative;
  }
  .home-banner-sec .image-back .image-content {
    text-align: center;
    left: 0;
    right: 0;
  }
  .home-banner-sec .image-back .image-content .content-black {
    color: white;
  }
  .home-banner-sec .image-back .image-content h1 {
    font-size: 32px;
    margin-bottom: 25px;
  }
  .home-banner-sec .image-back .image-content h6 {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .top-location .dropdown {
    border-right: none;
  }
  .navbar .navbar-nav {
    padding-left: 10px;
  }
  .bord {
    border-right: none !important;
  }
  .home-banner-sec .image-back .image-content {
    text-align: start;
    top: 20%;
    width: 100%;
    left: 0;
    right: 0;
  }
  .home-banner-sec .image-back .image-content h1 {
    font-size: 28px;
  }
  .home-banner-sec .image-back .image-content .content-black {
    color: white;
  }
  .home-banner-sec .image-back .image-content .primary-but {
    padding: 8px 25px;
    font-size: 14px;
    margin-top: 30px;
  }
  .home-banner-sec .image-back .image-content .secondary-but {
    padding: 8px 30px;
    font-size: 14px;
    margin-top: 30px;
  }
  .home-banner-sec .carousel-control-next-icon,
  .home-banner-sec .carousel-control-prev-icon {
    background-image: none;
    display: none;
  }
  .about-us-sec .about-img .about-content {
    padding: 8px;
    font-size: 14px;
  }
  .about-us-sec .about-img .about-content h5 {
    font-size: 14px;
    margin-bottom: 0px;
  }
  .about-us-sec .about-img .about-content:hover .about-content {
    left: 4%;
  }
  .get-quote-sec .get-form {
    padding: 10px;
  }
  .get-quote-sec .get-form label {
    margin-bottom: 4px;
    font-size: 14px;
  }
  .get-quote-sec .get-form input,
  .get-quote-sec .get-form select,
  .get-quote-sec .get-form option {
    padding: 10px;
  }
  .testimonial-sec .card .card-head {
    text-wrap: nowrap;
    text-align: justify;
  }
  .testimonial-sec .card .card-last {
    width: 90%;
  }
  .footer-sec h5 {
    margin-bottom: 10px;
  }
  .footer-sec .copy-rights {
    flex-direction: column;
  }
  .footer-sec .copy-rights h6 {
    font-size: 14px;
    margin-top: 4px;
  }
  .footer-sec .copy-rights li {
    margin-bottom: 0px;
  }
}
.home-loan h3 {
  color: #790962;
  font-weight: 600;
}

.loan-faq-section h3 {
  text-align: center;
  color: #790962;
  font-weight: 600;
}
.loan-faq-section .accordion-button:not(.collapsed) {
  background-color: #cfe2ff;
}
.loan-faq-section .accordion-button {
  background-color: #e9f2ff;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #000;
  font-size: 18px;
  font-weight: 500;
}
.loan-faq-section .accordion-button:focus {
  box-shadow: none;
}
.loan-faq-section .accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-width: none;
}
.loan-faq-section .accordion-body {
  color: #000;
}

.home-loan-banner-sec .loan-banner-img {
  position: relative;
}
.home-loan-banner-sec .loan-banner-img .image {
  opacity: rgba(89, 89, 89, 0.2);
}
.home-loan-banner-sec .loan-banner-img .content {
  position: absolute;
  top: 40%;
  left: 0px;
  right: 0px;
  margin: auto;
  text-align: center;
}
.home-loan-banner-sec .loan-banner-img .content h2 {
  color: white;
  font-weight: 600;
}
.home-loan-banner-sec .loan-banner-img .content p {
  color: #be3ac3;
}
.home-loan-banner-sec .loan-banner-img .content p a {
  text-decoration: none;
  color: #f8ebfa;
}

.features-of-home-loan-sec h3 {
  text-align: center;
  color: #790962;
  margin-bottom: 10px;
}
.features-of-home-loan-sec .home-loan-fatures-card {
  padding: 10px 6px;
  transition: 0.1s ease-out;
}
.features-of-home-loan-sec .home-loan-fatures-card .loan-features-sec {
  background-color: rgba(248, 235, 250, 0.368627451);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
}
.features-of-home-loan-sec .home-loan-fatures-card .loan-features-sec h5 {
  font-weight: 600;
  margin: 10px 0;
}
.features-of-home-loan-sec .home-loan-fatures-card .loan-features-sec .about-home-loan-fatures {
  display: none;
}
.features-of-home-loan-sec .home-loan-fatures-card .loan-features-sec .icon {
  width: 70px;
  height: 70px;
  background-image: url("/assets/images/clock-time-icon.svg");
  background-size: cover;
  background-position: center;
  margin: 0 auto;
  transition: background-image 0.7s;
}
.features-of-home-loan-sec .home-loan-fatures-card .loan-features-sec:hover {
  transition: 0.9s ease-out;
  background-color: #790962;
  color: #fff;
}
.features-of-home-loan-sec .home-loan-fatures-card .loan-features-sec:hover .icon {
  background-image: url("/assets/images/wall-clocks-svg.svg");
  transition: background-image 0.9s;
}
.features-of-home-loan-sec .home-loan-fatures-card .loan-features-sec:hover .about-home-loan-fatures {
  display: block;
}

.loan-emi-calculator-sec {
  background-color: #f8ebfa;
}
.loan-emi-calculator-sec .calculate-interest-head {
  text-align: center;
  color: #6d2e70;
}
.loan-emi-calculator-sec label {
  font-weight: 600;
}
.loan-emi-calculator-sec .emi-input-container {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.loan-emi-calculator-sec .emi-input-container .currency-symbol {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  color: #6d2e70;
}
.loan-emi-calculator-sec .emi-input-container .percentage-symbol {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  color: #6d2e70;
}
.loan-emi-calculator-sec .emi-input-container .form-controls {
  padding-left: 30px;
  border: none;
  border-bottom: 1px solid #be3ac3;
  width: 150px;
  outline: none;
}
.loan-emi-calculator-sec .range-slide-container {
  width: 100%;
}
.loan-emi-calculator-sec .range-slide-container .slider {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: linear-gradient(to right, #f8ebfa, #790962);
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.loan-emi-calculator-sec .range-slide-container .slider:hover {
  opacity: 1;
}
.loan-emi-calculator-sec .range-slide-container .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border: 10px solid #be3ac3;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}
.loan-emi-calculator-sec .loan-emi-values-sec {
  margin: 0 5%;
  background: linear-gradient(to right, #790962, #e363e7);
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  color: #fff;
  font-family: "Lato";
}
.loan-emi-calculator-sec .loan-emi-values-sec h6 {
  margin-top: 35px;
}

.eligibility {
  background-color: #f8ebfa;
}
.eligibility h4 {
  color: #790962;
  font-weight: 600;
}
.eligibility table {
  width: 100%;
}
.eligibility .eligibility-required td:first-child {
  font-weight: 600;
}
.eligibility table,
.eligibility td {
  border: 5px solid #f8ebfa;
  border-collapse: collapse;
}
.eligibility .documents td:last-child {
  font-size: 16px;
}
.eligibility .documents td:last-child i {
  padding-right: 8px;
  font-size: 18px;
}
.eligibility .documents td:last-child :hover {
  color: #790962;
}
.eligibility td {
  background-color: #fff;
  padding: 20px;
  font-size: 18px;
}

.types-of-loans h3 {
  color: #000;
  font-weight: 600;
  margin-bottom: 25px;
}
.types-of-loans .card {
  border: none;
  box-shadow: rgba(220, 169, 201, 0.25) 0px 2px 5px -1px, rgba(224, 181, 224, 0.3) 0px 1px 3px -1px;
}
.types-of-loans .card:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.types-of-loans .card .accordion-header button {
  font-size: 18px;
  color: #790962;
  font-weight: 600;
  margin-bottom: 15px;
}

.modal .modal-content .modal-header .btn-close {
  color: white !important;
  background-image: url("/assets/images/close-button.png");
}
.modal .modal-content .modal-body .model-details {
  margin-bottom: 15px;
  padding: 10px 20px;
}
.modal .modal-content .modal-body .model-details h5 {
  color: #790962;
}
.modal .modal-content .modal-body .model-details i {
  font-size: 14px;
  padding-right: 2px;
}
.modal .modal-content .modal-body .model-details span {
  font-weight: 500;
  padding-right: 2px;
}
.modal .modal-content .modal-body .model-details span:nth-child(7) {
  font-weight: 600;
}

@media only screen and (max-width: 600px) {
  .loan-emi-calculator-sec .loan-emi-values-sec h6 {
    font-size: 14px;
    margin-top: 10px;
  }
  .loan-emi-calculator-sec .loan-emi-values-sec h3 {
    font-size: 18px;
  }
  .loan-emi-calculator-sec .loan-emi-values-sec h3 i {
    font-size: 18px;
  }
}
.blogs .blog-card {
  position: relative;
}
.blogs .blog-card img {
  width: 100%;
  height: 300px;
  border-radius: 10px;
}
.blogs .blog-card .blog-desc {
  background: white;
  padding: 20px;
  border-radius: 15px;
  position: absolute;
  bottom: -150px;
  border-top-right-radius: 0;
  box-shadow: 0px 15px 60px -10px rgba(109, 117, 143, 0.33);
  width: 95%;
  margin: 0px 0px 0px 25px;
}
.blogs .blog-card .blog-desc .payment-btn {
  border: 2px solid #790962;
  padding: 2px 20px;
  border-radius: 10px;
  font-weight: 500;
  color: #be3ac3;
  font-size: 16px;
  display: inline-block;
  border-radius: 30px;
  text-decoration: none;
}
.blogs .blog-card .blog-desc .payment-btn:hover {
  background-color: #debcdf;
  color: #000;
}
.blogs .blog-card .blog-desc span {
  margin-left: 10px;
  font-weight: 500;
}
.blogs .blog-card .blog-body h4 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #790962;
}
.blogs .blog-card .blog-body a {
  color: #000;
  text-decoration: none;
}
.blogs .blog-card .blog-body a:hover {
  text-decoration: underline;
}
.blogs .col-lg-4,
.blogs .col-md-6,
.blogs .col-sm-12 {
  display: flex;
  align-items: stretch;
  margin-bottom: 10px;
}

.blogs-updater h3 {
  text-align: center;
  font-weight: 600;
}

.contact-banner {
  background: url(/assets/images/contact-banner.webp) no-repeat;
  background-size: cover;
}
.contact-banner .contact-content {
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.contact-banner h1 {
  color: white;
}
.contact-banner a {
  text-decoration: none;
  color: white;
  padding: 0px 10px;
}
.contact-banner p {
  color: #be3ac3;
}

.connect-us {
  background-color: #f8ebfa;
}

.connect-section h2 {
  color: #790962;
  font-size: 52px;
  font-weight: bold;
}
.connect-section i {
  color: white;
  background-color: #790962;
  padding: 20px;
  font-size: 28px;
  border-radius: 50%;
}
.connect-section h5 {
  font-size: 28px;
}
.connect-section span {
  font-weight: 600;
}
.connect-section p {
  padding: 20px 0px;
  font-size: 20px;
}
.connect-section .contact-number {
  border-bottom: 1px solid #debcdf;
}

.contact-form input,
.contact-form textarea {
  border: none;
  outline: none;
  padding: 20px;
}
.contact-form ::-moz-placeholder {
  font-size: 20px;
}
.contact-form ::placeholder {
  font-size: 20px;
}
.contact-form textarea {
  height: 180px;
  border-radius: 6px;
}
.contact-form label {
  font-size: 20px;
  padding-left: 10px;
}
.contact-form label span {
  font-weight: 600;
}
.contact-form input[type=checkbox] {
  height: 20px;
  width: 20px;
}

.get-btn {
  border: none;
  outline: none;
  border-radius: 10px;
  background-color: #790962;
  color: white;
  font-size: 20px;
  padding: 15px 20px;
}

@media (max-width: 600px) {
  .connect-section h2 {
    font-size: 26px;
  }
  .connect-section i {
    padding: 10px;
    font-size: 16px;
  }
  .connect-section h5 {
    font-size: 20px;
  }
  .connect-section span {
    font-size: 16px;
  }
  .connect-section p {
    padding: 6px 0px;
    font-size: 14px;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 10px;
  }
  .contact-form ::-moz-placeholder {
    font-size: 14px;
  }
  .contact-form ::placeholder {
    font-size: 14px;
  }
  .contact-form input[type=checkbox] {
    height: 10px;
    width: 10px;
  }
  .contact-form label {
    font-size: 16px;
  }
  .get-btn {
    font-size: 14px;
    padding: 8px 15px;
  }
}
@media (min-width: 600px) and (max-width: 990px) {
  .connect-section h2 {
    font-size: 32px;
  }
}
.about-banner {
  background: url(/assets/images/about-banner.webp) no-repeat;
  background-size: cover;
}
.about-banner .banner-content {
  background-color: rgba(0, 0, 0, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.about-banner h1 {
  color: white;
}
.about-banner a {
  text-decoration: none;
  color: white;
  padding: 0px 10px;
}
.about-banner p {
  color: #be3ac3;
}

.welcome-section h5 {
  color: #790962;
}
.welcome-section h2 {
  font-weight: 600;
}
.welcome-section .about-img-section {
  font-family: "Lato";
  position: relative;
}
.welcome-section .about-img-section .about-img {
  width: 100%;
}
.welcome-section .about-img-section .image-section-1 img {
  width: 70%;
  position: absolute;
  bottom: 10%;
  left: 62%;
  border: 10px solid white;
  animation: moveHorizontal2 2s linear infinite;
}
@keyframes moveHorizontal2 {
  0% {
    transform: translateZ(0);
  }
  50% {
    transform: translate3d(-10px, 0, 0);
  }
  100% {
    transform: translateZ(0);
  }
}
.welcome-section .about-img-section .image-section-2 {
  width: 100%;
  position: absolute;
  top: 7%;
  left: 110%;
  z-index: -1;
  animation: zumpBottom 2s linear infinite;
}
@keyframes zumpBottom {
  0% {
    transform: translateZ(0);
  }
  50% {
    transform: translate3d(0, 10px, 0);
  }
  100% {
    transform: translateZ(0);
  }
}
.welcome-section p {
  font-size: 18px;
}
.welcome-section .list-view {
  display: flex;
}
.welcome-section .list-view i {
  padding-right: 10px;
  color: #be3ac3;
  font-size: 20px;
  padding-top: 8px;
}
.welcome-section .list-view p {
  margin: 0px;
  font-size: 20px;
}
.welcome-section .know-button button {
  font-size: 20px;
  padding: 6px;
  margin-top: 20px;
}
.welcome-section .know-button button i {
  padding: 6px;
}
.welcome-section .know-button button span {
  border-right: 1px solid #790962;
  padding: 0px 8px;
}
.welcome-section .know-button button:hover {
  background-color: #be3ac3;
  color: white;
}
.welcome-section .know-button button:hover span {
  border-right: 1px solid white;
}

.why-choose {
  background-color: #f8ebfa;
}
.why-choose h6 {
  color: #790962;
  font-weight: 600;
}
.why-choose h2 {
  font-weight: 600;
}
.why-choose .choose-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.why-choose .choose-content {
  display: flex;
  align-items: center;
}
.why-choose .choose-content i {
  color: #790962;
}
.why-choose .choose-content p {
  margin: 0;
}
.why-choose .choose-img {
  position: relative;
}
.why-choose .choose-img img {
  width: 100%;
}
.why-choose .choose-img .overlap-img img {
  width: 100%;
  position: absolute;
  bottom: -15%;
  right: -70%;
  animation: moveHorizontal2 2s linear infinite;
}

.loan-reasons h5 {
  color: #be3ac3;
}
.loan-reasons h2 {
  color: #790962;
  font-weight: 600;
}
.loan-reasons .top-img img {
  height: -webkit-fill-available;
}
.loan-reasons .loan-card {
  background-color: #f8ebfa;
  padding: 30px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}
.loan-reasons .loan-card .circle {
  position: absolute;
  background-color: #790962;
  width: 234px;
  height: 117px;
  background-color: #790962;
  border-radius: 1000px 1000px 0 0;
  z-index: 1;
  bottom: 0%;
  right: 0;
  padding: 10px;
}
.loan-reasons .loan-card .cash-img img {
  position: absolute;
  bottom: 0;
  right: 5%;
  z-index: 1;
}
.loan-reasons .loan-card h2 {
  font-size: 52px;
}
.loan-reasons .loan-card i {
  font-size: 30px;
  background-color: #790962;
  color: white;
  padding: 10px 15px;
  border-radius: 50%;
  margin-top: 50px;
  margin-bottom: 20px;
}
.loan-reasons .reason-card {
  min-height: 200px;
  background-color: #f8ebfa;
  padding: 20px;
  border-bottom: 5px solid #790962;
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}
.loan-reasons .reason-card p {
  margin: 0;
}

.teams-section h5 {
  color: #be3ac3;
}
.teams-section h2 {
  color: #790962;
  font-weight: 600;
}
.teams-section .team-card {
  position: relative;
  padding-bottom: 35px;
  transition: top 0.6s ease-in-out, opacity 0.5s ease-in-out;
}
.teams-section .team-card img {
  border-radius: 10px;
}
.teams-section .team-card .team-content {
  position: absolute;
  background-color: white;
  border-radius: 20px;
  bottom: -2%;
  padding: 20px;
  width: 85%;
  box-shadow: 0px 15px 60px -10px rgba(109, 117, 143, 0.33);
  left: 7%;
}
.teams-section .team-card .team-content .plus-icon i {
  position: absolute;
  top: -25%;
  right: 10%;
  font-size: 30px;
  background-color: #790962;
  color: white;
  padding: 15px;
  border-radius: 50%;
}
.teams-section .team-card .team-content .icon-group {
  position: absolute;
  top: -220%;
  right: 10%;
}
.teams-section .team-card .team-content .icon-group i {
  opacity: 0;
  margin: 6px 0px;
  font-size: 30px;
  background-color: #790962;
  color: white;
  padding: 15px;
  border-radius: 50%;
  transition: top 0.6s ease-in-out, opacity 0.5s ease-in-out;
}
.teams-section .team-card:hover .icon-group i {
  opacity: 1;
}

.counting-section {
  background-color: #f8ebfa;
}

.count-card {
  text-align: center;
}
.count-card span {
  font-size: 52px;
  font-weight: 800;
  color: #f8ebfa;
  text-shadow: 2px 2px 0 #790962, -2px -2px 0 #790962, 2px -2px 0 #790962, -2px 2px 0 #790962, 2px 2px 0 #790962;
}
.count-card p {
  font-weight: 600;
}

@media (max-width: 600px) {
  .welcome-section h5 {
    font-size: 14px;
  }
  .welcome-section h2 {
    font-size: 24px;
  }
  .welcome-section p {
    font-size: 14px;
  }
  .welcome-section .list-view {
    display: flex;
  }
  .welcome-section .list-view i {
    padding-right: 10px;
    color: #be3ac3;
    font-size: 16px;
    padding-top: 8px;
  }
  .welcome-section .list-view p {
    margin: 0px;
    font-size: 16px;
  }
  .welcome-section .know-button button {
    font-size: 16px;
    padding: 0px;
    margin-top: 10px;
  }
  .about-img {
    width: 70% !important;
  }
  .image-section-1 img {
    width: 50% !important;
    bottom: 10% !important;
    left: 42% !important;
  }
  .team-content i {
    font-size: 20px !important;
    padding: 20px;
  }
  .image-section-2 {
    display: none;
  }
  .choose-img {
    position: relative;
  }
  .choose-img img {
    width: 50% !important;
  }
  .choose-img .overlap-img img {
    width: 50% !important;
    bottom: -10% !important;
    right: 10% !important;
  }
  .why-choose .choose-card {
    padding: 15px;
  }
  .loan-reasons .loan-card h2 {
    font-size: 26px;
  }
}
@media (min-width: 600px) and (max-width: 900px) {
  .about-img {
    width: 70% !important;
  }
  .image-section-1 img {
    width: 50% !important;
    bottom: 10% !important;
    left: 42% !important;
  }
  .image-section-2 {
    width: 50% !important;
    left: 75% !important;
  }
  .reason-card {
    min-height: 240px;
  }
  .icon-group {
    position: absolute;
    top: -190% !important;
  }
  .team-content i {
    font-size: 12px !important;
    padding: 15px;
  }
  .choose-img {
    position: relative;
  }
  .choose-img img {
    width: 70% !important;
  }
  .choose-img .overlap-img img {
    width: 70% !important;
    bottom: -10% !important;
    right: 0% !important;
  }
}
@media (min-width: 900px) and (max-width: 990px) {
  .about-img {
    width: 70% !important;
  }
  .image-section-1 img {
    width: 50% !important;
    bottom: 10% !important;
    left: 42% !important;
  }
  .image-section-2 {
    width: 50% !important;
    left: 75% !important;
  }
  .icon-group {
    position: absolute;
    top: -190% !important;
  }
  .team-content i {
    font-size: 12px !important;
    padding: 15px;
  }
  .choose-img {
    position: relative;
  }
  .choose-img img {
    width: 70% !important;
  }
  .choose-img .overlap-img img {
    width: 70% !important;
    bottom: -10% !important;
    right: 10% !important;
  }
}
@media (min-width: 990px) and (max-width: 1200px) {
  .icon-group {
    position: absolute;
    top: -250% !important;
  }
  .choose-img {
    position: relative;
  }
  .choose-img img {
    width: 70% !important;
  }
  .choose-img .overlap-img img {
    width: 70% !important;
    bottom: -10% !important;
    right: -20% !important;
  }
}
@media (min-width: 1200px) and (max-width: 1536px) {
  .about-img-section {
    margin: 0px auto;
    justify-content: center;
  }
  .choose-img img {
    width: 100% !important;
    margin-left: -80px !important;
  }
  .choose-img .overlap-img img {
    width: 100% !important;
    bottom: -15% !important;
    right: -40% !important;
  }
}
.blog-details-banner {
  background: url(/assets/images/about-banner.webp) no-repeat;
  background-size: cover;
}
.blog-details-banner .blog-details-banner-content {
  background-color: rgba(0, 0, 0, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.blog-details-banner h1 {
  color: white;
}
.blog-details-banner a {
  text-decoration: none;
  color: white;
  padding: 0px 10px;
}
.blog-details-banner p {
  color: #be3ac3;
}

.blog-left h2, .blog-left h5 {
  color: #790962;
}
.blog-left h5 {
  font-weight: 600;
}
.blog-left li {
  font-size: 18px;
  margin: 0;
  padding: 6px 0px;
}
.blog-left p {
  padding: 10px 0px;
  font-size: 18px;
  margin: 0;
}
.blog-left .blog-admin {
  color: #790962;
  font-weight: 600;
}

.blog-card {
  position: relative;
  margin-bottom: 180px;
}
.blog-card img {
  width: 100%;
  height: 300px;
  border-radius: 10px;
}
.blog-card .blog-desc {
  background: white;
  padding: 20px;
  border-radius: 15px;
  position: absolute;
  bottom: -150px;
  border-top-right-radius: 0;
  box-shadow: 0px 15px 60px -10px rgba(109, 117, 143, 0.33);
  width: 95%;
  margin: 0px 0px 0px 25px;
}
.blog-card .blog-desc .payment-btn {
  border: 2px solid #debcdf;
  padding: 2px 20px;
  border-radius: 10px;
  font-weight: 500;
  color: #debcdf;
  font-size: 16px;
  display: inline-block;
  border-radius: 30px;
  text-decoration: none;
}
.blog-card .blog-desc .payment-btn:hover {
  background-color: #debcdf;
  color: white;
}
.blog-card .blog-desc span {
  margin-left: 10px;
  font-weight: 500;
}
.blog-card .blog-body h4 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #790962;
}
.blog-card .blog-body a {
  color: #000;
  text-decoration: none;
}
.blog-card .blog-body a:hover {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .blog-left li {
    font-size: 16px;
  }
  .blog-left p {
    font-size: 16px;
  }
}
.home-loan h3 {
  color: #790962;
  font-weight: 600;
}

.loan-faq-section h3 {
  text-align: center;
  color: #790962;
  font-weight: 600;
}
.loan-faq-section .accordion-button:not(.collapsed) {
  background-color: #cfe2ff;
}
.loan-faq-section .accordion-button {
  background-color: #e9f2ff;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #000;
  font-size: 18px;
  font-weight: 500;
}
.loan-faq-section .accordion-button:focus {
  box-shadow: none;
}
.loan-faq-section .accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-width: none;
}
.loan-faq-section .accordion-body {
  color: #000;
}

.home-loan-banner-sec .loan-banner-img {
  position: relative;
}
.home-loan-banner-sec .loan-banner-img .image {
  opacity: rgba(89, 89, 89, 0.2);
}
.home-loan-banner-sec .loan-banner-img .content {
  position: absolute;
  top: 40%;
  left: 0px;
  right: 0px;
  margin: auto;
  text-align: center;
}
.home-loan-banner-sec .loan-banner-img .content h2 {
  color: white;
  font-weight: 600;
}
.home-loan-banner-sec .loan-banner-img .content p {
  color: #be3ac3;
}
.home-loan-banner-sec .loan-banner-img .content p a {
  text-decoration: none;
  color: #f8ebfa;
}

.features-of-home-loan-sec h3 {
  text-align: center;
  color: #790962;
  margin-bottom: 10px;
}
.features-of-home-loan-sec .home-loan-fatures-card {
  padding: 10px 6px;
  transition: 0.1s ease-out;
}
.features-of-home-loan-sec .home-loan-fatures-card .loan-features-sec {
  background-color: rgba(248, 235, 250, 0.368627451);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
}
.features-of-home-loan-sec .home-loan-fatures-card .loan-features-sec h5 {
  font-weight: 600;
  margin: 10px 0;
}
.features-of-home-loan-sec .home-loan-fatures-card .loan-features-sec .about-home-loan-fatures {
  display: none;
}
.features-of-home-loan-sec .home-loan-fatures-card .loan-features-sec .icon {
  width: 70px;
  height: 70px;
  background-image: url("/assets/images/clock-time-icon.svg");
  background-size: cover;
  background-position: center;
  margin: 0 auto;
  transition: background-image 0.7s;
}
.features-of-home-loan-sec .home-loan-fatures-card .loan-features-sec:hover {
  transition: 0.9s ease-out;
  background-color: #790962;
  color: #fff;
}
.features-of-home-loan-sec .home-loan-fatures-card .loan-features-sec:hover .icon {
  background-image: url("/assets/images/wall-clocks-svg.svg");
  transition: background-image 0.9s;
}
.features-of-home-loan-sec .home-loan-fatures-card .loan-features-sec:hover .about-home-loan-fatures {
  display: block;
}

.loan-emi-calculator-sec {
  background-color: #f8ebfa;
}
.loan-emi-calculator-sec .calculate-interest-head {
  text-align: center;
  color: #6d2e70;
}
.loan-emi-calculator-sec label {
  font-weight: 600;
}
.loan-emi-calculator-sec .emi-input-container {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.loan-emi-calculator-sec .emi-input-container .currency-symbol {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  color: #6d2e70;
}
.loan-emi-calculator-sec .emi-input-container .percentage-symbol {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  color: #6d2e70;
}
.loan-emi-calculator-sec .emi-input-container .form-controls {
  padding-left: 30px;
  border: none;
  border-bottom: 1px solid #be3ac3;
  width: 150px;
  outline: none;
}
.loan-emi-calculator-sec .range-slide-container {
  width: 100%;
}
.loan-emi-calculator-sec .range-slide-container .slider {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: linear-gradient(to right, #f8ebfa, #790962);
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.loan-emi-calculator-sec .range-slide-container .slider:hover {
  opacity: 1;
}
.loan-emi-calculator-sec .range-slide-container .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border: 10px solid #be3ac3;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}
.loan-emi-calculator-sec .loan-emi-values-sec {
  margin: 0 5%;
  background: linear-gradient(to right, #790962, #e363e7);
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  color: #fff;
  font-family: "Lato";
}
.loan-emi-calculator-sec .loan-emi-values-sec h6 {
  margin-top: 35px;
}

.eligibility {
  background-color: #f8ebfa;
}
.eligibility h4 {
  color: #790962;
  font-weight: 600;
}
.eligibility table {
  width: 100%;
}
.eligibility .eligibility-required td:first-child {
  font-weight: 600;
}
.eligibility table,
.eligibility td {
  border: 5px solid #f8ebfa;
  border-collapse: collapse;
}
.eligibility .documents td:last-child {
  font-size: 16px;
}
.eligibility .documents td:last-child i {
  padding-right: 8px;
  font-size: 18px;
}
.eligibility .documents td:last-child :hover {
  color: #790962;
}
.eligibility td {
  background-color: #fff;
  padding: 20px;
  font-size: 18px;
}

.types-of-loans h3 {
  color: #000;
  font-weight: 600;
  margin-bottom: 25px;
}
.types-of-loans .card {
  border: none;
  box-shadow: rgba(220, 169, 201, 0.25) 0px 2px 5px -1px, rgba(224, 181, 224, 0.3) 0px 1px 3px -1px;
}
.types-of-loans .card:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.types-of-loans .card .accordion-header button {
  font-size: 18px;
  color: #790962;
  font-weight: 600;
  margin-bottom: 15px;
}

.modal .modal-content .modal-header .btn-close {
  color: white !important;
  background-image: url("/assets/images/close-button.png");
}
.modal .modal-content .modal-body .model-details {
  margin-bottom: 15px;
  padding: 10px 20px;
}
.modal .modal-content .modal-body .model-details h5 {
  color: #790962;
}
.modal .modal-content .modal-body .model-details i {
  font-size: 14px;
  padding-right: 2px;
}
.modal .modal-content .modal-body .model-details span {
  font-weight: 500;
  padding-right: 2px;
}
.modal .modal-content .modal-body .model-details span:nth-child(7) {
  font-weight: 600;
}

@media only screen and (max-width: 600px) {
  .loan-emi-calculator-sec .loan-emi-values-sec h6 {
    font-size: 14px;
    margin-top: 10px;
  }
  .loan-emi-calculator-sec .loan-emi-values-sec h3 {
    font-size: 18px;
  }
  .loan-emi-calculator-sec .loan-emi-values-sec h3 i {
    font-size: 18px;
  }
}
.IR-banner {
  background: url(/assets/images/contact-banner.webp) no-repeat;
  background-size: cover;
}
.IR-banner .IR-content {
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.IR-banner h1 {
  color: white;
}
.IR-banner a {
  text-decoration: none;
  color: white;
  padding: 0px 10px;
}
.IR-banner p {
  color: #be3ac3;
}

.IR-block-inside {
  display: none;
}

.IR-block-inside_active {
  display: block;
}

.tab-heading {
  text-align: center;
  color: #790962;
  font-weight: 600;
  margin: -40px 0px 20px 0px;
}

.IR button {
  background-color: #790962;
  color: white;
  width: 100%;
  outline: none;
  border: none;
  padding: 15px;
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
}
.IR .IR_button_active {
  border: 1px solid #470f34;
  color: #be3ac3;
  background-color: white;
  font-weight: 700;
}

.pdf-block {
  border: 1px solid #debcdf;
  border-radius: 6px;
  background-color: #f8ebfa;
  padding: 20px;
}
.pdf-block img {
  width: 50%;
}
.pdf-block a {
  text-decoration: none;
}
.pdf-block p {
  word-break: break-all;
  margin: 0;
  color: #790962;
  font-weight: 600;
  text-align: center;
}

.IR-block-inside .accordion-button:not(.collapsed) {
  background-color: #f8ebfa;
  box-shadow: none;
}
.IR-block-inside .accordion-button:focus {
  box-shadow: none;
  background-color: #f8ebfa;
}

@media only screen and (max-width: 600px) {
  .IR button {
    font-size: 12px;
  }
}
.how-it-works h5,
.how-it-works h3 {
  font-weight: 600;
  color: #790962;
}
.how-it-works .works-block {
  text-align: center;
  padding: 10px;
}
.how-it-works .works-block img {
  height: 70px;
  width: 70px;
}

.calc-Tabs {
  background-color: #f8ebfa;
}

.calc-block-inside {
  display: none;
}

.calc-block-inside_active {
  display: block;
}

.calc-section {
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-section button {
  background-color: #790962;
  color: white;
  outline: none;
  border: none;
  border-radius: 7px;
  padding: 10px 20px;
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
}
.calc-section .calc_button_active {
  border: 1px solid #470f34;
  color: #be3ac3;
  background-color: white;
}

@media only screen and (max-width: 900px) {
  .calc-section button {
    width: 100%;
    font-size: 16px;
  }
}
.login-section {
  background-color: #f8ebfa;
}
.login-section img {
  width: 60%;
}

.login-form {
  background-color: white;
  padding: 20px;
  width: 70%;
}
.login-form h4 {
  color: #790962;
  font-weight: 600;
}
.login-form input[type=text] {
  padding: 10px 20px;
  border: 1px solid #790962;
}
.login-form input[type=submit] {
  width: 100%;
  background-color: #790962;
  color: white;
  padding: 10px 20px;
  outline: none;
  border: none;
}
.login-form p {
  margin: 0px;
  padding: 20px 0px;
  font-size: 20px;
  text-align: center;
  position: relative;
}
.login-form p:before {
  content: "";
  display: block;
  width: 42%;
  height: 2px;
  background: #000;
  left: 0;
  top: 50%;
  position: absolute;
}
.login-form p:after {
  content: "";
  display: block;
  width: 42%;
  height: 2px;
  background: #000;
  right: 0;
  top: 50%;
  position: absolute;
}

@media only screen and (max-width: 900px) {
  .login-form {
    width: 100%;
  }
  .login-section img {
    width: 100%;
  }
}
@media only screen and (min-width: 900px) and (max-width: 990px) {
  .login-form {
    width: 100%;
  }
  .login-section img {
    width: 100%;
  }
}
.faqs-section h3 {
  font-weight: 600;
  color: #790962;
}
.faqs-section .accordion-item {
  border: 1px solid #790962;
  margin: 10px 0px;
}
.faqs-section .accordion-body {
  background-color: #f8ebfa;
}/*# sourceMappingURL=main.css.map */