@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;500;600;700&display=swap');


:root{
    --blue: #004478;
    --black: #000000;
    --white: #fff;
    --border: .1rem solid rgba(0,0,0,.1);
    --border-hover: 1rem solid var(var(--black));    
}

*{ 
    font-family: 'Poppins', sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none; border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .2s linear;
    transition: width none;
}

h1{
    font-size: 28px;
    font-family: 'poppins', sans-serif;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 5rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width: 1rem;
}

html::-webkit-scrollbar-track{
    background: transparent;
}

html::wewbkit-scrollbar-thumb{
    background: var(--black);
}

section{
    padding: 5rem 9%;
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding: .9rem 3rem;
    border-radius: .5rem;
    color: #fff;
    background: #81f90100;
    font-size: 1.7rem;
    cursor: pointer;
    font-weight: 500;
}

.btn:hover{
    background: var(--);
}

.header .header-1 {
    background: #000000;
    padding: 1.1rem 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header nav{
  position: fixed;
  width: 100%;
  height: 68px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #ffffff;
  align-items: center;
  padding: 1vw 8vw;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
}

.header nav img{
  width: 200px;
  cursor: pointer;
}

.header nav .navigation{
    display: flex;
}

#menu-btn{
    width: 30px;
    height: 30px;
    display: none;
}

#menu-close{
    display: none;
}

.header nav .navigation ul{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header nav .navigation ul li{
  list-style: none;
  margin-left: 30px;
}

.header nav .navigation ul li a{
  text-decoration: none;
  color: #004478;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
}

.header nav .navigation ul li a:hover{
  color: rgb(153, 255, 0);
}

/* Home */

#home{
  background-image: linear-gradient(rgba(9, 5, 54, 0.3),rgba(5,4,46,0.7)),url("images/loan.png") ; 
  width: 100%;
  height: 100vh;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

#home h2{
  color: #ffffff;
  font-size: 3.2rem;
  letter-spacing: 1px;
  font-family: montserrat,sans-serif;
  text-decoration: none;
}

#home h2 span{
  color: #3bf901;
}

#home a{
  text-decoration: none;
  font-size: 1.3rem;
  padding: 13px 35px;
  background-color: #014ff9;
  font-weight: 600;
  border-radius: 10px;
}

#home a.blue{
  color: #fff;
  background: #000000;
  transition: 0.3s ease;
}

#home a.blue:hover{
    color: rgb(21, 21, 100);
    background: #fff;
}

#home a.green{
    color: #fff;
    background: #81f901;
    transition: 0.3s ease;
}

#home a.green:hover{
    color: #81f901;
    background: #fff;
}


/* features */

.features{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 30px;
}

.row{
    margin-top: 1%;
    display: flex;
    justify-content: space-between;
}

.features-col{
    flex-basis: 31%;
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 7%;
    padding: 20px 12px;
    box-sizing: border-box;
    box-shadow: 0 0 10px 0px #000000;
}
.features-col1{
    flex-basis: 25%;
    background: #2BACF7;
    border-radius: 10px;
    margin-bottom: 7%;
    padding: 20px 12px;
    box-sizing: border-box;

    box-shadow: 0 0 10px 0px #000000;
}
.features-col i{
    font-size: 3.5rem;
    margin-bottom: 14px;
    text-align: center;
    color: #000000;
}

.features-col h3{
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    font-family: montserrat, sans-serif;
    margin-bottom: 8px;
    margin: 10px 0;
}

.features-col p{
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    font-family: montserrat, sans-serif;
    color: #2b2b2b;
}

.features-col2{
    flex-basis: 31%;
    background: linear-gradient(#009fcf, #018c60);
    border-radius: 10px;
    margin-bottom: 7%;
    padding: 20px 12px;
    box-sizing: border-box;
    box-shadow: 0 0 10px 0px #000000;
}

.features-col2 i{
    font-size: 3.5rem;
    margin-bottom: 14px;
    text-align: center;
    color: rgb(231, 231, 231);
}

.features-col2 h3{
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    font-family: montserrat, sans-serif;
    margin-bottom: 8px;
    margin: 10px 0;
    color: #ededed;
}

.features-col2 p{
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    font-family: montserrat, sans-serif;
    color: #d3d3d3;
}

.features-col:hover{
    background-color: #ebebeb;
}
@media(max-width: 700px){
   
    .row{
        flex-direction: column;
    }
    .features h1{
        font-size: 20px;
        padding-bottom: 10px;
        text-decoration: underline;
    }
}

.steps{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 10px;
    background-color: #f2f2f2;
    margin-top: -45px;
}

.row{
    margin-top: 1%;
    display: flex;
    justify-content: space-between;
}

.steps-col{
    flex-basis: 31%;
    background: #ffffff;
    /*border-radius: 10px;*/
    margin-bottom: 4%;
    padding: 20px 12px;
    /*box-sizing: border-box;*/
    /*box-shadow: 0 0 10px 0px #000000;*/
    background-color:#DCD9D9;
}

.steps-col i{
    font-size: 3.5rem;
    margin-bottom: 14px;
    text-align: center;
    color: #353535;
}

.steps-col h3{
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    font-family: montserrat, sans-serif;
    margin-bottom: 8px;
    margin: 10px 0;
}

.steps-col p{
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    font-family: montserrat, sans-serif;
    color: #2b2b2b;
}

.steps-col2{
    flex-basis: 31%;
    background: linear-gradient(#009fcf, #018c60);
    border-radius: 10px;
    margin-bottom: 7%;
    padding: 20px 12px;
    box-sizing: border-box;
    box-shadow: 0 0 10px 0px #000000;
}

.steps-col2 i{
    font-size: 3.5rem;
    margin-bottom: 14px;
    text-align: center;
    color: rgb(231, 231, 231);
}

.steps-col2 h3{
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    font-family: montserrat, sans-serif;
    margin-bottom: 8px;
    margin: 10px 0;
    color: #ededed;
}

.steps-col2 p{
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    font-family: montserrat, sans-serif;
    color: #d3d3d3;
}

i{
    font-size: 3.5rem;
    margin-bottom: 14px;
    text-align: center;
    color: #46d1fc;
}

h3{
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    font-family: montserrat, sans-serif;
    margin-bottom: 8px;
    margin: 10px 0;
}

p{
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    font-family: montserrat, sans-serif;
}

.features-col:hover{
    background-color: #626262;
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
    .steps{
        width: 100%;
        margin: auto;
        text-align: center;
        padding-top: 10px;
        background-color: #e9e9e9;
        margin-top: -15px;
    }
    .steps h1{
        font-size: 20px;
    }
    .steps p{
        font-size: 14px;
        padding-bottom: 15px;
    }
}
/*changes*/

.eligible-container1{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: 10px;
    border-style: solid;
    border-color: #009fcf;
    border-radius: 25px 25px 25px 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #fff;
}

.eligible-container1 .eligible{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
}

.eligible-container1 .eligible i{
    font-size: 3.5rem;
    color: #0030cf;
    margin-bottom: 3px;
}

.eligible-container1 .eligible h3{
    font-size: 17px;
    color: #000000;
    padding-bottom: .5rem;
    text-align: left;
}

/**/
.eligible-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: 10px;
    border-style: solid;
    border-color: #009fcf;
    border-radius: 25px 25px 25px 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #fff;
}

.eligible-container .eligible{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
}

.eligible-container .eligible i{
    font-size: 3.5rem;
    color: #009fcf;
    margin-bottom: 3px;
}

.eligible-container .eligible h3{
    font-size: 17px;
    color: #000000;
    padding-bottom: .5rem;
    text-align: left;
}

h2{
    font-size: 26px;
    font-weight: 800;
    font-family: montserrat, sans-serif;
    padding-top: 80px;
    padding-bottom: 35px;
    text-decoration: underline;
}

ol li{
    font-size: 15px;
    font-weight: 600;
    text-align: left;
}

.btn{
    margin-top: 80px;
}

.btn a{
    background-color: #ffffff;
    padding: 13px 75px;
    border: 2px solid;
    border-color: #009fcf;
    border-radius: 25px;  
    font-size: 19px;
    font-weight: 700;  
}

.btn a:hover{
    background-color: #009fcf;
    padding: 13px 75px;
    border: 2px solid;
    border-color: #000000;
    border-radius: 25px;  
    font-size: 19px;
    font-weight: 700;
    color: #e9e9e9;  
}

.details{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 10px;
    background-color: #f2f2f2;
    margin-top: 1px;
}

.row{
    margin-top: 1%;
    display: flex;
    justify-content: space-between;
}

.det-col{
    flex-basis: 25%;
    background: #01c4ff;
    border-radius: 10px;
    margin-bottom: 7%;
    padding: 20px 12px;
    box-sizing: border-box;
    box-shadow: 0 0 10px 0px #000000;
    margin-right: 25px;
    margin-top: 30px;
}

.det-col img{
    width: 3.5rem;
    margin-bottom: 14px;
    text-align: center;
    color: #d70707;
}

.det-col h3{
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    font-family: montserrat, sans-serif;
    margin-bottom: 8px;
    margin: 10px 0;
}

.steps-col p{
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    font-family: montserrat, sans-serif;
    color: #2b2b2b;
}

.services{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 10px;
    background-color: #fff;
    margin-top: -40px;
}

.servrow{
    margin-top: 1%;
    display: flex;
    justify-content: space-between;
}

.services-col{
    flex-basis: 31%;
    background: linear-gradient(#3893af, #01778c);
    border-radius: 10px;
    margin-bottom: 7%;
    margin-top: 10px;
    padding: 20px 12px;
    box-sizing: border-box;
    box-shadow: 0 0 10px 0px #000;
}

.services-col img{
    width: 7.5rem;
    margin-bottom: 14px;
    text-align: center;    
}

.services-col h3{
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    font-family: montserrat, sans-serif;
    margin-bottom: 8px;
    margin: 10px 0;
}

.services-col1{
    flex-basis:100%;
    background: white;
    border-radius: 10px;
    margin-bottom: 7%;
    margin-top: 10px;
    padding: 20px 12px;
    box-sizing: border-box;
    box-shadow: 0 0 10px 0px #000;
}

.services-col1 img{
    width: 7.5rem;
    margin-left: -10px;
    /*text-align: center;    */
        background-color:red;

}

.services-col1 h3{
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    /*position:relative;*/
    /*margin-left:10px;*/
    font-family: montserrat, sans-serif;
    /*margin-bottom: 8px;*/
    /*margin: 10px 0;*/
}.services-col1 a{
    /*position:relative;*/
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    /*position:relative;*/
    margin-top:10px;
    /*font-family: montserrat, sans-serif;*/
    /*margin-bottom: 8px;*/
    /*margin: 10px 0;*/
}

.faq{
    margin-top: -50px;
    width: 100%;
    text-align: center;
}
#accordion{
    margin: 30px auto;
    width: 100%;
    margin: auto;
}

#accordion li{
    list-style: none;
    width: 100%;
    margin-bottom: 10px;
    background: rgb(184, 184, 184);
    padding: 10px;
    border-radius: 4px;
}

#accordion li label{
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: #009fcf;
}

#accordion li label span{
    transform: rotate(90deg);
    font-size: 22px;
    color: #004478;
}

#accordion label + input[type="radio"]{
    display: none;
}

#accordion .content{
    padding: 0 10px;
    line-height: 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
}

#accordion label + input[type="radio"]:checked + .content{
    max-height: 400px;
}

#accordion .content p{
    text-align: left;
}

.faq h1{
    text-align: center;
    font-family: montserrat, sans-serif;
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 15px;
}

/* footer */

.footer {
    display: flex;
    flex-flow: row wrap;
    padding: 30px 30px 20px 30px;
    color: #d8d8d8;
    background-color: #004478;
    border-top: 1px solid #e5e5e5;
  }
  
  .footer > * {
    flex:  1 100%;
  }
  
  .footer__addr {
    margin-right: 1.25em;
    margin-bottom: 2em;
  }
  
  .footer__logo {
    font-family: 'montserrat', sans-serif;
    font-weight: 400;
    text-transform: lowercase;
    font-size: 1.5rem;
  }
  
  .footer__addr h2 {
    margin-top: 1.3em;
    font-size: 15px;
    font-weight: 400;
  }

  .footer__addr img{
    width: 200px;
  }
  
  .nav__title {
    font-weight: 600;
    font-size: 17px;
    font-family: montserrat, sans-serif;
    text-decoration: none;
  }
  
  .footer address {
    font-style: montserrat, sans-serif;
    color: #999;
    font-size: 15px;
    font-weight: 600;
  }
  
  .footer__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    max-width: max-content;
    background-color: rgb(221, 221, 221);
    border-radius: 100px;
    color: #2f2f2f;
    line-height: 0;
    margin: 0.6em 0;
    font-size: 1rem;
    padding: 0 1.3em;
  }
  
  .footer ul {
    list-style: none;
    padding-left: 0;
  }
  
  .footer li {
    line-height: 2em;
  }
  
  .footer a {
    text-decoration: none;
    font-family: montserrat, sans-serif;
    font-size: 15px;
    font-weight: 500;
  }
  
  .footer__nav {
    display: flex;
      flex-flow: row wrap;
  }
  
  .footer__nav > * {
    flex: 1 50%;
    margin-right: 1.25em;
  }
  
  .nav__ul a {
    color: rgb(239, 239, 239);
    font-size: 16px;
  }
  
  .nav__ul--extra {
    column-count: 1;
    column-gap: 1.25em;
  }
  
  .legal {
    display: flex;
    flex-wrap: wrap;
    color: #999;
  }
    
  .legal__links {
    display: flex;
    align-items: center;
  }
  
  .heart {
    color: #2f2f2f;
  }
  
  @media screen and (min-width: 24.375em) {
    .legal .legal__links {
      margin-left: auto;
    }
  }
  
  @media screen and (min-width: 40.375em) {
    .footer__nav > * {
      flex: 1;
    }
    
    .nav__item--extra {
      flex-grow: 2;
    }
    
    .footer__addr {
      flex: 1 0px;
    }
    
    .footer__nav {
      flex: 2 0px;
    }
  }

  .form {
    background-color: white;
    /* display: flex; */
    justify-content: center;
    flex-direction: column;
    padding: 0 80px;
    height: 200px;
    width: 90vh;
    /* margin-left: -30px; */
    margin-top: 10px;
    margin-left: 80vh;
    padding-top: 20px;
    /* position: absolute; */
  }






/* media queries */

@media (max-width: 1200px){
    #home{
        width: 100%;
        height: 90vh;
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
      }
      .form {
        background-color: white;
        /* display: flex; */
        justify-content: center;
        flex-direction: column;
        padding: 0 80px;
        height: 150px;
        width: 90vh;
        margin-left: -30px;
        /* position: absolute; */
      }
  
      .form-container {
        top: 10px;
        transition: all 0.6s ease-in-out;
      }
  
      .sign-in-container {
  
        top: 10px;
        left: 0;
        /*z-index: 1;*/
      }
}

@media (max-width: 850px){
    nav{
        padding: 15px 20px;
    }
    nav img{
        width: 130px;
    }
    #menu-btn{
        display: initial;
    }
    #menu-close{
        display: initial;
        font-size: 1.9rem;
        color: #fff;
        padding: 30px 0 20px 20px;
    }
    .header nav .navigation ul{
        position: absolute;
        top: 0;
        right: 0;
        right: -220px;
        width: 220px;
        height: 100vh;
        background: #000000;
        border: 1px solid rgba(255, 255, 255, 0.18);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: 0.3s ease;
    }

    .header nav .navigation ul.active{
        right: 0;
    }

    .header nav .navigation ul li{
        padding: 20px 0 20px 40px;
        margin-left: 0;
    }
    .header nav .navigation ul li a{
        color: #fff;
    }
    .homecontainer{
        margin-left: 0%;
       /* width: 80%;
        margin-left: 10%;
    */
    /* margin-top: 500px;  */
    height: 595px;

}
.form-container{
    margin-top: 600px;
}
    #home{
        width: 100%;
        height: 40vh;
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px;
      }



}

@media (max-width:991px){

    html{
        font-size: 55%;
    }

    .header .header-1{
        padding: 2rem;
    }

    section{
        padding: 3rem 2rem;
    }

    .home{
        background-size: cover;
        background-position: center;
        height: 380px;
    }
}

@media (max-width:768px){

    html{
        scroll-padding-top: 0;
    }

    body{
        padding-bottom: 6rem;
    }
    
    .header .header-2{
        display: none;
    }

    .bottom-navbar{
        display: block;
    }

    #search-btn{
        display: inline-block;
        color: #004478;
    }

    .header .header-1{
        box-shadow: #004478;
        position: relative;
    }

    .header .header-1 .search-form{
        position: absolute;
        top: -115%; right: 4.5rem;
        width: 90%;
        box-shadow: #d2d1d1;
    }

    .header .header-1 .search-form.active{
        top:115%;
    }

    .home .row .content{
        text-align: center;
    }

    .home .row content h3{
        font-size: 3.5rem;
    }

    .home{
        background-size: cover;
        background-position: center;
        height: 310px;
    }
}

@media (max-width:450px){

    html{
        font-size: 55%;
    }

    .home{
        background-size: cover;
        background-position: center;
        height: 240px;
    }
}
  