@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family:  'Poppins', sans-serif;
    box-sizing: border-box;
}

#logo{
    width: 10rem;
}

#m-navbar-btn{
    display: none;
}




/* CSS buttons*/
.green-btn{
  align-items: center;
  background-clip: padding-box;
  background-color: #10B910;
  border: 1px solid transparent;
  border-radius: .25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 400;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  padding: calc(.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  /* user-select: none;
  -webkit-user-select: none; */
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
}

.button-5:hover,
.button-5:focus {
  background-color: #bfffbf;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.button-5:hover {
  transform: translateY(-1px);
}

.button-5:active {
  background-color: #10B910;
  box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
  transform: translateY(0);
}

nav{
    /* background-color: white !important;  */
    background-color: transparent;
}

.navbar.bg-white {
    background-color: white; /* Override Bootstrap styles for background */
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7);
    transition: 0.3s ease all;
}
#navbar.bg-white .nav-link {
  color: black !important; /* Change the color of the links to black */
}

.navbar-container{
    padding: 0.5rem 1rem !important;
    display: flex;
    justify-content: space-between;
    width: 100%;
   
}
.dropdown .dropdown-menu .dropdown-item{
    font-size: 0.8rem;
    margin: 0.5rem 0rem;
    transition: 0.3s ease all;
}

.dropdown .dropdown-menu {
    width: 250%;
}

.dropdown .dropdown-menu .dropdown-item:hover{
    background-color: #C2FAAA;
}

.navbar-collapse{
    margin-left: 3rem;
}

nav .nav-link{
    margin-right: 2rem;
    font-weight: 500;
    font-size: 1rem;
    font-size: 0.9rem;
}

#mobile-navbar, #menu-bar{
    display: none;
}



#home-hero-section{
    width: 100%;
    /* background-color: #3cb603; */
    background: linear-gradient(0deg, rgb(217, 255, 214) 46%, rgba(255,255,255,1) 99%);
    padding-top: 4rem;
    padding-bottom: 0rem;
    margin: 0;


}

.home-hero-container{
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 4rem;
    
   
}

.hero-container-text-col{
    display: flex;
    flex-direction: column;
    /* padding-left: 1rem; */
    padding-bottom: 1rem;
}

.hero-container-text-col h1{
    color: black;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    line-height: 2.6rem;
    margin: 1rem 0rem;
}

.hero-container-text-col .green-btn{
    width: 30%;
}

.hero-container-text-col p{
    color: rgb(95, 95, 95);
    font-weight: 300;
    margin-bottom: 2rem;
}

.hero-container-img-col img{
    width: 14rem;
    height: auto;
    display: block;
    margin: auto;
}

.hero-apply-btn{
    background-color: #10B910;
    border: none;
    width: 40%;
    height: 10%;
    color: white;
    transition: 0.3s ease all;
    font-weight: 500;
    border-radius: 3px;
}

.home-hero-row{
    display: flex;
}




#products-section{
    margin-top: 3rem;
}

.review-container .products-heading{
    font-size: 1rem;
    width: 100%;
    text-transform: uppercase;
    display: inline-flex;
}

.review-container .products-heading::after{
    left: 1%;
    position: relative;
}

.products-container{
    padding: 1rem 0rem;
}

#mobile-products-container{
    display: none;
}



.products-container h1{
    font-size: 1rem;
    font-weight: 600;
    color: #02a002;
}

#d-products-subline{
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 1rem !important;
}

#products-row, #products-row2{
    margin: 0rem 0rem;
    padding: 0rem 0rem;
}

#products-row .col-lg-3{
    padding: 0;
}

#products-row2 .col-lg-3{
    padding: 0;
}

.products-item{
    /* box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3); */
    box-shadow: 0 2px 4px 0 rgba(5,47,95,.04), 0 12px 16px 0 rgba(52,105,203,.12);
    padding: 1rem 1rem;
    border-radius: 5px;
    margin: 1.2rem 0rem;
    width: 90%;
    border: 1px solid rgba(235,239,247,.8);
    height: 10rem;
    /* backdrop-filter: #FFFFFF; */
}

.fsr{
    display: flex;
}

.fsr h4{
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #004900;
    letter-spacing: 0.3px;
}

.fsr p{
    font-size: 0.7rem;
    font-weight:400;
    color: grey;
}

.fsr img{
    width: 3rem;
    height: 3rem;
    display: block;
    margin: auto;
}

.msr{
    display: flex;
}

.products-link{
    color: blue;
    text-decoration: none;
    font-size: 0.8rem;
    margin-top: auto !important;
    cursor: pointer;
   
}

.fa-arrow-right{
    margin-left: 0.8rem;
    align-items: center;
}

#mobile-row{
    display: flex;
    align-items: center;
}

#mobile-text-col{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

#mobile-img-col img{
    width: 80%;
}


#mobile-text-col h1{
    font-size: 3rem;
    font-weight: 700;
}

#mobile-text-col span{
    color: #00CC00;
}

#mobile-text-col  p{
    color: grey;
}

#m-mobile-subtext{
    display: none;
}

#mobile-div{
    margin: 5rem 0rem;
}

#products-row2{
    margin-top: 5rem;
}

.products-heading{
    position: relative;
    font-size: 1rem;
    font-weight: 600;
    color: #02a002;
  
}

.products-heading::after{
    content: '';
    height: 4px;
    background-color: #02a002;
    position: absolute;
    left:12%;
    width: 10%;
    margin-top: 0.8rem;
 

}


#review{
    margin: 3rem 0rem ;
    background-color: #F2FFEB;
}

.review-container{
    padding:4rem !important;
}

.review-container p{
    font-size: 0.9rem;
    margin: auto;
}

#review-row1, #review-row2{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2.5rem auto ;
   
}

#review-row2{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2.5rem auto;
}

.review-col{
    padding: 2rem;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    height: 12rem;
    width: 23rem;
    background-color: white;

}

#m-partners-sub-text{
    display: none;
}

.rsr {
    display: flex;

}

.rsr-text-col{
    margin-left: 2rem;
}

.rsr-text-col h4{
    margin-bottom: 0.3rem !important;
    font-size: 1rem;
    font-weight: 600;
}

.rsr-text-col img{
    width: 60% !important;
}

.rsr img{
    width: 3.5rem;
    height: auto !important;
}

.review-content{
    margin-top: 1.2rem;
}
.review-content p{
    font-size: 0.8rem;
   
}

#mobile-review{
    display: none;

}

/*Testimonial CSS CODE START*/





/*Testimonial CSS CODE END*/


/*Avail CSS CODE START*/
#avail{
    margin: 3rem auto;
    padding: 3rem auto;
    /* background: rgba(194, 250, 170, 0.37); */
}

.avail-container{
    padding: 5rem 0rem;
}

.avail-text-col{
    width: 60%;
    border: 2px solid grey;
    height: 20rem;
    margin: auto;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.avail-text-col h2{
    font-weight: 600;
    font-size: 3rem;
}

#avail-btn-div{
    width: 60%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0rem;
}

#avail-btn-1{
    background-color: #02a002;
    width: 35%;
    padding: 0.6rem 1.3rem;
    border: none;
    border-radius: 5px;
    color: white;
    margin: 0rem 2rem;
    font-size: 1rem;
}

#avail-btn-2{
    width: 35%;
    padding: 0.6rem 1.3rem;
    border: none;
    border-radius: 5px;
    color: white;
    margin: 0rem 2rem;
    background-color: grey;
    font-size: 1rem;    
}

/*Avail CSS CODE END*/




/*Contact Page CSS Code Start*/
.contact-heading{
    font-weight: 600;
    font-size: 2rem;
    margin: 0.5rem 0rem;
    color: #000000;
  }
  
  #hero-contact{
    padding: 10rem 0rem 6rem 0rem;
    background: linear-gradient(0deg, rgba(229,252,220,1) 0%, rgba(255,255,255,1) 100%);
  }
  
.contact-heading::after{
    content: " ";
    width: 80%;
    height: 6px;
    display: block;
    background-color: green;
    position: relative;
    border-radius: 10px;
    margin: 1rem 0rem;
  }
  
  .contact-text-col p{
    margin-top: 1rem;
    font-weight: 400;
    color: #000000;
    font-size: 0.8rem;
  }
  
  #contact-btn{
    border-radius: 0 !important;
  }
  .contact-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* background-color: red; */
    height: 80%;
    padding-right: 2rem;
  
  }
  
  .contact-input-feilds{
    margin: 1rem 0rem;
    border-radius: 0 !important;
    background-color: red;
  }

  .contact-form-col .btn-1{
    width: 40%;
  }
  
  
  #icon-gp{
    width: 50%;
  }
  
  #icon-gp h3{
    margin-bottom: 2rem;
  }

  .credential-container{
    margin: 4rem auto;
  }
  
  .icon-group{
    width: 100%;
    justify-content: space-between;
  }
  
  .icon-group i{
    color: black;
    
  }

  #contact-btn{
    background-color: #029702;
    border: none;
    padding: 0.3rem 0.5rem;
    color: white;
    margin: 2rem 0rem;
}


  .connect-text{
    font-size: 0.9rem;
  }

  #logo-subtext{
    font-size: 0.6rem;
  }

  .contact-col p{
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    font-weight: 300 !important;
  }

  .visit-container .visit-row{
    margin: auto auto !important;
  }

  .cred-col{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 6px 12px rgba(26, 43, 26, 0.2);
    width: 100%;
    padding: 2rem 1.2rem;
   
  }

  .cred-col p{
    align-items: center;
    margin: auto;
    font-size: 1rem;
    font-weight: 500;
  }

  .m-cred-col{
    padding: 0.5rem;
    margin: 1rem auto !important;

  }

  #visit{
    margin: 3rem auto;
  }

  .cred-col img{
    width: 10%;
    margin: auto 1rem;
    display: block;
    
  }

  .tc-close-btn{
    width: 30%;
    background-color: #02a002;
    color: white;
    border: none;
    font-weight: 300;
    padding: 0.4rem 0.6rem;
    border-radius: 5px;
}


/*Contact Page CSS Code End*/


/*********************************Questions CSS CODE START***********************************/
#questions{
    margin-top: 3rem;
}

.questions-container{
    margin: 3rem auto;
}

.questions-text-col h1{
    color: #02a002;
    margin-bottom: 0.6rem;
    font-size: 1.4rem;
    font-weight:600;
    text-transform: uppercase;
    
}

.questions-text-col p{
    font-size: 0.8rem;
    text-transform: uppercase;
    color: grey;
    font-weight: 400;
}

.accordion p{
    margin-top: 3rem;
    color: black;
    margin: 0.5rem 0rem;

}

.accordion-item{
    margin: 1.2rem auto;
}
.questions-img-col{

    display: flex;
    align-items: center;
    justify-content: center;
}


.questions-img-col img{
    width: 70%;
   
}
/*********************************Questions CSS CODE END***********************************/





/*Footer Section CSS Code Start*/

footer{
    background-color:#F2FFEB;
}

#footer-container{
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.footer-cols img{
    width: 12rem;
}

.footer-cols{
    display: flex;
    flex-direction: column;
    padding: 0rem 1.5rem !important;
}
.footer-cols a{
    margin: 0.4rem 0rem;
    text-decoration: none;
    color: rgb(75, 75, 75);
    font-weight: 500;
    font-size: 0.8rem;
}

.footer-cols h5{
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
}

#icons-div{
    display: flex;
    margin-top: 1rem;
}

#icons-div img{
    width: 2rem;
    margin: 0rem 0.6rem ;
}

#sub-footer{
    display: flex;
    justify-content: space-between;
   
}

#modal-btn-div{
    width: 40%;
    display: flex;
}

.modal::-webkit-scrollbar{
    width: 0 !important;
    display: none; 
}

hr{
    height:0.1rem;
    background-color: grey;
    margin: 3rem 0rem !important;
}

footer{
    overflow-x: hidden;
}

.footer-btn{
    border: none;
    margin-left: 1rem;
    width: 50%;
    background-color: transparent;
    font-weight: 500;
    font-size: 0.8rem;
    text-decoration: underline;
}

.modal-body h5{
    font-size: 1.2rem;
  }

  .modal-body{
    padding: 3rem !important;
  }

  .modal-body p{
    font-size: 0.8rem;
  }

  .modal-body ul li{
    font-size: 0.8rem;
  }

  .modal-header h1{
    font-size: 1.4rem;
  }


  /*=======================Contact Page CSS Start====================================*/
  .contact-heading{
    font-weight: 600;
    font-size: 2rem;
    margin: 0.5rem 0rem;
    color: #000000;
  }
  
  #hero-contact{
    padding: 10rem 0rem 6rem 0rem;
    background: linear-gradient(0deg, rgba(229,252,220,1) 0%, rgba(255,255,255,1) 100%);
  }
  
.contact-heading::after{
    content: " ";
    width: 80%;
    height: 6px;
    display: block;
    background-color: green;
    position: relative;
    border-radius: 10px;
    margin: 1rem 0rem;
  }
  
  .contact-text-col p{
    margin-top: 1rem;
    font-weight: 400;
    color: #000000;
    font-size: 0.8rem;
  }
  
  #contact-btn{
    border-radius: 0 !important;
  }
  .contact-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* background-color: red; */
    height: 80%;
    padding-right: 2rem;
  
  }
  
  .contact-input-feilds{
    margin: 1rem 0rem;
    border-radius: 0 !important;
    background-color: red;
  }

  .contact-form-col .btn-1{
    width: 40%;
  }
  
  
  #icon-gp{
    width: 50%;
  }
  
  #icon-gp h3{
    margin-bottom: 2rem;
  }

  .credential-container{
    margin: 4rem auto;
  }
  
  .icon-group{
    width: 100%;
    justify-content: space-between;
  }
  
  .icon-group i{
    color: black;
    
  }

  #contact-btn{
    background-color: #029702;
    border: none;
    padding: 0.3rem 0.5rem;
    color: white;
    margin: 2rem 0rem;
}


  .connect-text{
    font-size: 0.9rem;
  }

  #logo-subtext{
    font-size: 0.6rem;
  }

  .contact-col p{
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    font-weight: 300 !important;
  }

  .visit-container .visit-row{
    margin: auto auto !important;
  }

  .cred-col{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 6px 12px rgba(26, 43, 26, 0.2);
    width: 100%;
    padding: 2rem 1.2rem;
   
  }

  .cred-col p{
    align-items: center;
    margin: auto;
    font-size: 1rem;
    font-weight: 500;
  }

  .m-cred-col{
    padding: 0.5rem;
    margin: 1rem auto !important;

  }

  #visit{
    margin: 3rem auto;
  }

  .cred-col img{
    width: 10%;
    margin: auto 1rem;
    display: block;
    
  }

  .tc-close-btn{
    width: 30%;
    background-color: #02a002;
    color: white;
    border: none;
    font-weight: 300;
    padding: 0.4rem 0.6rem;
    border-radius: 5px;
}

/*Footer Section CSS Code End*/

/*======About US CSS CODE START=================*/
.about-container{
    padding-top: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .about-container img{
    width: 40%;
    margin:2rem auto ;
  }
  
  .about-container p{
    margin: 2rem auto;
  
  }
/*======About US CSS CODE END=================*/




/*===============Personal loan CSS CODE START*/

#pl-hero-section{
    background: linear-gradient(0deg, rgba(229,252,220,1) 0%, rgba(255,255,255,1) 100%);

}
.pl-container{
    width: 100%;
    padding-top: 8rem;
}

.pl-row{
    display: flex;

}

.pl-image-col img{
    width: 30rem ;
    height: auto;
   opacity: 1;
   overflow: hidden;
   display: block;
   margin: auto;  
}

.pl-text-col ul{
    padding-left: 0;
}
.pl-text-col ul li{
    background-color: rgb(210, 248, 204);
    margin: 1rem 0rem;
    padding: 0.4rem 1rem;
    list-style: none;
    width: 50%;
    border-radius: 15rem;
    color: #029702;
    font-weight: 600;

}

.pl-text-col ul li i{
    margin-right: 0.8rem;
    color: grey;
}



.pl-image-col {
    margin-top: auto;
    display: flex;
}

.pl-text-col{
    display: flex;
    flex-direction: column;
    justify-content:center;
    letter-spacing: 0.3px;
}

.pl-text-col h1{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: rgb(48, 48, 48);
}

.pl-text-col p{
    font-size: 1.4rem;
    font-weight: 600;
    color: grey;
    margin-bottom: 1em;
}

#pl-apply-btn{  
    background-color: #43A617;
    color: white;
    text-align: center;
    font-size: 1rem;
    width: 30%;
    margin: 1.5rem 0rem;
    text-decoration: none;
    padding: 0.7rem 1.6rem;
    border-radius: 4px;

}


#pl-application{
    /* margin-top: 3rem; */
    background-color: #E7FDDE;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.pl-app-container h1{
    font-weight: 700;
    color: rgb(48, 48, 48);

}

.pl-app-row{
    margin-top:5rem !important;
}
.pl-app-img-col img{
    display: block;
    margin: auto;
    width: 70%;
}


.pl-app-text-col ul{
    padding-left: 0;
}

.pl-app-text-col ul li{
    list-style: none;
    margin:2rem 0rem;
    font-weight: 600;
}

.pl-app-text-col ul li i{
    margin-right: 1rem;
    color: #029702;
}

.pl-app-text-col{
    display: flex;
    flex-direction: column;
}


#pl-desktop-box{
    display: flex;
    flex-direction: column;
}

#pl-desktop-box #pl-apply-hero-image{
    width: 60%;
    margin: 1rem auto;
}





#pl-process{
    margin: 6rem auto;
    /* background-color: greenyellow; */
  }

  .s-container{
    display: none;
  }

  .pl-process-row{
    display: flex;
    justify-content:center;
    align-self: center;
    margin: 5rem auto !important;
    gap: 1rem;
  }

  .pl-process-heading, .partners-icon-container h1 {
    color: #029702;
    font-weight: 600;
  }


  .pl-process-col{
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

  }

  .pl-process-col p{
    font-size: 1rem;
    margin: 2rem auto;
    font-weight: 500;
  }

  .pl-process-col img{
    width: 5rem;

  }

  .p-container{
    margin: 2rem 0rem;
  }

.logos img{
    width: 5rem;
    margin: 0rem 3rem;
}

#logo-slider{
    margin-top: 4rem;
}

  .partners-icon-container {
    overflow: hidden;
    margin: 1rem 0rem;
    .slider {
      animation: slidein 10s linear infinite;
      animation-duration: 16s;
      white-space: nowrap;
      .logos{
        width: 100%;
        display: inline-block;
        margin: 0px 0;
        .fab {
          width: calc(100% / 5);
          animation: fade-in 0.1s 
            cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
        }
      }
    }
  }
  
  @keyframes slidein {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(-100%, 0, 0);
    }
  }
  
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  #lending-partners{
    margin: 4rem 0rem;
  }

#feature{
    margin: 5rem 0rem ;
}

.feature-row {
    margin: 10rem 0rem;
 
}


.feature-img-col{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem !important;
}

.feature-text-col{
    padding: 2rem !important;
}

.feature-img-col img{
    height: 100% !important;
}

.feature-text-col h1{
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 4rem;
    margin-bottom: 1rem;

}

.feature-text-col p{
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.8rem;
}

.feature-text-col span{
    color: #808080;
}

.feature-icon-col{
    display: flex;
    align-items: center;
    
}
.fivestar-logo{
    width: 10rem;
    margin: 0.5rem 0rem;
}

.brand-logo{
    width: 7rem;
    margin:1rem 0rem;
}

.sub-icon-col{
    display:flex;
    flex-direction: column;
    margin-right: 8rem;
}

.feature-btn, #apl-btn-1{
    background-color:#43A617;
    width: 30%;
    margin: 1rem 0rem;
    padding: 0.5rem 1rem;
    text-align: center;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

#feature hr{
    margin: 1rem 0rem;
}

#approved{
    margin: 5rem 0rem  ;   
}

#approved-container{
    padding: 5rem 0rem;
}

.approved-img-col img{
    width: 70%;
    display: block;
    margin: auto;
}

.approved-text-col h1{
    font-size: 3rem;
    font-weight: 600;
    line-height: 4rem;
    margin-bottom: 2rem;
}

.approved-text-col span{
    color: #808080;
}
.approved-text-col ul{
    padding-left: 0;
    margin-top: 2rem;
   
}
.approved-text-col li {
    list-style: none;
    font-weight: 600;
    font-size: 1.3rem;
    margin: 1rem 0rem;
   
}
.approved-text-col p{
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.8rem;
}


.approved-text-col  i{
    margin-right: 1rem;
}

#apl-btn-2{
    background-color: transparent;
    border: 1px solid rgb(66, 66, 66);
    padding: 0.5rem 1.2rem;
    border-radius: px;
    margin-left: 3rem;
    color: rgb(66, 66, 66);
    font-weight: 500;
    text-decoration: none;
}

#approved-button-div{
    margin-top:1.5rem ;
}

#apply-pl-form-col{
    padding: 7rem 5rem;
   padding: 10vh  6vh;
 
    /* height: 100vh; */
}

#apply-pl-text-col{
    display: flex;
    flex-direction: column;
    /* background-image: url(/Backgrounds/green.jpg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat; */
    padding: 5rem 3rem;
    position: sticky;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #d1ffbd;
}

#apply-logo{
    width: 10rem;
}

#apply-hero-img{
    width: 60%;
    display: block;
    margin: auto;
}
.form-group{
    margin: 0.8rem 0rem;
}

.form-control{
    padding: 0.5rem 1rem !important; 
}

#form-heading{
    font-size: 2rem;
    line-height: 3rem;
    font-weight: 700;
    margin: 3rem 0rem;

}
#apply-pl-form-col span{
    color: #808080;
}

.pl-apply-container{
    align-items: start;
    display: flex;
}

#back-btn{
    background-color: #07be07;
    width: 15%;
    padding: 0.3rem 1.2rem;
    text-align: center !important;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

#pl-submit-btn{
    background-color: #0cb30c;
    width: 25%;
    color: white;
    padding: 0.5rem 0.8rem;
  }

  #pl-mobile-box{
    display: none;
  }

  .invalid-feedback p{
    margin-bottom: 0.4rem ;
}

.form-check-input{
    cursor:pointer;
}
/*===============Personal loan CSS CODE END*===========/


/*================Pl apply CSS Start=================*/
#apply-pl-form-col{
    padding: 7rem 5rem;
   padding: 10vh  6vh;
 
    /* height: 100vh; */
}

#apply-pl-text-col{
    display: flex;
    flex-direction: column;
    /* background-image: url(/Backgrounds/green.jpg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat; */
    padding: 5rem 3rem;
    position: sticky;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #d1ffbd;
}

#apply-logo{
    width: 10rem;
}

#apply-hero-img{
    width: 60%;
    display: block;
    margin: auto;
}
.form-group{
    margin: 0.8rem 0rem;
}

.form-control{
    padding: 0.5rem 1rem !important; 
}

#form-heading{
    font-size: 2rem;
    line-height: 3rem;
    font-weight: 700;
    margin: 3rem 0rem;

}
#apply-pl-form-col span{
    color: #808080;
}

.pl-apply-container{
    align-items: start;
    display: flex;
}


#back-btn{
    background-color: #07be07;
    width: 15%;
    padding: 0.3rem 1.2rem;
    text-align: center !important;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

#pl-submit-btn{
    background-color: #0cb30c;
    width: 25%;
    color: white;
    padding: 0.5rem 0.8rem;
  }

  #pl-mobile-box{
    display: none;
  }

  .invalid-feedback p{
    margin-bottom: 0.4rem ;
}

.form-check-input{
    cursor:pointer;
}
/*================Pl apply CSS END=================*/




/*=======Personal loan Guide CSS CODE START========*/


/*+========================Personal loan Guide CSS Code======================================+*/
#pl-guide-hero{
    /* padding-top: 6rem; */
    height: 25rem;
    background: linear-gradient(0deg, rgb(217, 255, 214) 46%, rgba(255,255,255,1) 99%);
    width: 100%;
    /* padding-bottom:4rem; */
}

.pl-guide-hero-container{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.pl-guide-hero-container h1{
    color: black;
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-top: 3rem;
}


.pl-guide-hero-container p{
    color: rgb(109, 109, 109);
    margin-top: 1rem;
    font-size: 1rem;
    padding: 0;
}


.criteria-container{
    margin: 3rem auto;
    padding: 2rem;
}

.cri-row{
    display: flex;
    justify-content: space-between !important;
    margin: 3rem 0rem;
    
}

.cri-row .row{
    display: flex;
    justify-content: space-between;
    /* background-color: red; */
    padding: 0;
}


.cri-item{
    /* border: 2px solid grey; */
    height: auto;
    margin: 0;
    border-radius:10px ;
    /* box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.2); */
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
    width: 100%;
   
}

.cri-item table{
    font-size: 0.6rem;
    margin: 0.5rem auto;

   
}



.cri-main-row{
    display: flex;
    /* background-color: red; */
    justify-content: space-between;
}

.cri-data{
    display: flex;
    justify-content: space-between;
    background-color: wheat;
    align-items: center;
    border-radius: 3px;
    padding: 0.3rem 0.5rem;
}

.cri-data p{
    margin: 0;
}


.cri-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cri-logo h3{
    font-weight: 600;
    letter-spacing: 0.7px;
    color: #3d3d3d;
}

.cri-logos{
    width:10rem;
    height: auto;
    display: block;
    margin: auto;
}

#collapse-btn{
    margin-top:auto !important  ; 
    width: 40%;
}

.bank-body{
    padding:0rem  2rem !important;
}


.bank-body img{
    border-radius: 10px;
    margin:0rem auto;
    display: block;
    width: 1000%;
   
}

#privacy .modal-header, #terms .modal-header{
    padding: 1.5rem 2.5rem !important;
}

#privacy::-webkit-scrollbar{
    width: 0;
    display: none;
}

#privacy .modal-content, #terms .modal-content{
    padding: 0rem 0rem;
}

#privacy .modal-footer, #terms .modal-footer{
    padding: 1rem 2.5rem !important;
}


#icicibank-modal .modal-header{
    padding: 1rem 2.5rem !important;
    align-items: center;
}

.criteria-modal .modal-header h1{
    margin: 0;
    font-weight:600;
    font-size: 2rem;
}
.cri-btn{
    margin-left: auto !important;
    color: blue;
    font-weight: 600;
}



.data-table{
    border: 2px solid rgb(34, 34, 34);
    font-weight: 600;
    padding: 0.2rem;
    font-size: 0.9rem;
}

.table-container {
    padding: 0 !important;
}

.table-container .table-row{
    margin: 1rem 0rem ;
    justify-content: space-between;
}

.loan-amount-table{
    border: 2px solid rgb(34, 34, 34);
    font-weight: 600;
    padding: 0.2rem;
    font-size: 0.9rem;

}


.table-row .table-col{
    padding: 0.5rem;
    
}



#icici-bank-table th{
    background-color: #FFF0E6;  
}

#hdfc-modal th{
    background-color: #d6eaff;
}

#hdfc-modal table, #axis-modal table, #idfc-modal table, #yesbank-modal table, #kotak-modal table, #dbs-modal table, #bandhan-modal table{
    border: 1px solid black;
}


#axis-modal th{
    background-color: #ffe9f3;

}

#idfc-modal th{
    background-color: #FFEFED;
}

#yesbank-modal th{
    background-color: #E9F6FF;
}

#kotak-modal th{
    background-color: #FFE4E5;
}

#dbs-modal th{
    background-color: #F4F0F4;
}

#bandhan-modal th{
    background-color: #FFDFE0;
}

div.dataTables_wrapper {
    margin-bottom: 3em;
}


.cat-btn{
    width: 100%;
    background-color: #029702;
    color: white;
    padding: 0.5rem 1.2rem;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
   
}

.modal-content{
    border: transparent;
    background-clip: padding-box;
}

.modal-header-img{
    width: 100%;
}


.modal-header, .modal-footer{
    border: none !important;
    padding: 2rem 3rem!important;
}


/*Business loan CSS Codes*/


#bl-hero-section{
    /* background-image: url(/Backgrounds/bl-bg.png); */
    background-size: cover;
    background-position: bottom;
    padding-bottom: 2rem;

}

.bl-hero-container{
    width: 100%;
    align-items: center;
    padding-top: 6rem;
   
}

.pl-guide-text-col p{
    text-align: center;
    margin: 1rem auto;
}

#circle-logo{
    display: flex;
    margin-top: 0.5rem;

}

#circle-logo img{
    width: 40%;
    
}

#circle-logo p{
    font-size: 0.9rem !important; 
    margin-left: 1.5rem;
}


.docs-heading{
    margin-bottom: 1rem;
    font-weight: 500;
}

#bl-hero-text-col{
    /* background-color: yellow; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100% ;
    padding-left: 5rem;
    /* background-color: red; */
}

#bl-hero-text-col h1{
    color: #ffffff;
    font-weight: 700;
    /* color: #029702; */
    color: #000000;
    margin-top: 2rem ;
    margin-bottom: 0;
    font-size: 3.5rem;
    line-height:4rem;
    letter-spacing: 1.2px;
}

#bl-hero-text-col p{
    font-size: 1.6rem;
    margin-top: 1rem;
    font-weight:700;
    letter-spacing: 1px;
}

#bl-hero-text-col span{
    color: #07BF07;
}

#bl-apply-btn{
    width: 30%;
    margin: 1.5rem 0rem;
    border: none;
    background-color: #07BF07;
    padding: 0.5rem 0.8rem;
    color: white;
    font-weight: 500;
    border-radius: 5px;
}

#bl-hero-img-col img{
    display: block;
    margin: auto;
 
}


#bl-features{
    margin: 3rem 0rem;
    background-color: #f3f3f3;
    padding: 2rem 0rem;
}

.card-title{
    font-size: 1.4rem;
    font-weight: 500;
}

.card{
    padding: 1.5rem;
    border:none !important;
    background-color: transparent !important;
}
.card .card-img-top{
    width: 4rem;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
    border-radius: 3px;
}

.card-body{
    padding: 0.5rem 0 !important;
}

.card-text {
    text-align: justify;
    font-size: 1rem;
    color: grey;
}





/*=======Personal loan Guide CSS CODE END========*/



/*=============Partners Container CSS CODE==========*/

#partners{
    background-color: #f2ffeb;
}



.partners-container{
    padding: 5rem 0rem;
  
}

.partner-item{
    /* border: 1px solid grey; */
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(235,239,247,.8);
    border-radius:10px;
    width: 11rem;
    box-shadow: 0 2px 4px 0 rgba(5,47,95,.04), 0 12px 16px 0 rgba(52,105,203,.12);
    margin: 1rem 0rem;
    background-color: #ffffff;
}

.partner-item img{
    width:7rem;
   
}

#partners-heading{
    color: #029702;
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 600;
    display: inline-flex;
    width: 100%;

}

#partners-heading::after{
    content: " ";
    width: 20%;
    height: 4px;
    left: 1%;
    display: block;
    background-color: green;
    position: relative;
    border-radius: 10px;
    margin: 1rem 0rem;

}

.partners-container p{
    color: grey;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight:400;
}

#mobile-partners{
    display: none;
}





#registrations{
    height: 60vh;
    
}


/*************************Business loan CSS Code START*************************************/

#bl-hero-section{
    /* background-image: url(/Backgrounds/bl-bg.png); */
    background-size: cover;
    background-position: bottom;
    padding-bottom: 2rem;

}

.bl-hero-container{
    width: 100%;
    align-items: center;
    padding-top: 6rem;
   
}

.pl-guide-text-col p{
    text-align: center;
    margin: 1rem auto;
}

#circle-logo{
    display: flex;
    margin-top: 0.5rem;

}

#circle-logo img{
    width: 40%;
    
}

#circle-logo p{
    font-size: 0.9rem !important; 
    margin-left: 1.5rem;
}


.docs-heading{
    margin-bottom: 1rem;
    font-weight: 500;
}

#bl-hero-text-col{
    /* background-color: yellow; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100% ;
    padding-left: 5rem;
    /* background-color: red; */
}

#bl-hero-text-col h1{
    color: #ffffff;
    font-weight: 700;
    /* color: #029702; */
    color: #000000;
    margin-top: 2rem ;
    margin-bottom: 0;
    font-size: 3.5rem;
    line-height:4rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

#bl-hero-text-col p{
    font-size: 1.6rem;
    margin-top: 1rem;
    font-weight:700;
    letter-spacing: 1px;
}

#bl-hero-text-col span{
    color: #07BF07;
}

#bl-apply-btn{
    width: 30%;
    margin: 1.5rem 0rem;
    border: none;
    background-color: #07BF07;
    padding: 0.5rem 0.8rem;
    color: white;
    font-weight: 500;
    border-radius: 5px;
}

#bl-hero-img-col img{
    display: block;
    margin: auto;
 
}


#bl-features{
    margin: 3rem 0rem;
    background-color: #f3f3f3;
    padding: 2rem 0rem;
}

.card-title{
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card{
    padding: 1.5rem;
    border:none !important;
    background-color: transparent !important;
}
.card .card-img-top{
    width: 4rem;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
    border-radius: 3px;
}

.card-body{
    padding: 0.5rem 0 !important;
}

.card-text {
    text-align: justify;
    font-size: 0.9rem;
    color: grey;
}

