
:root{
    --primary1-color: #ff6c00;
    --primary2-color: #ff9c00;
    --secondary1-color:#1f63ae;
    --secondary2-color:#1b4a7e;
    --bg-light-color:#8CA4BE;
    --max-width: 100%;
}


*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
   
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

ul {
    list-style: none;
    

}

a {
    color: black;
    text-decoration: none;
}

h1, h2{
    font-weight: 300;
}



.btn{
    cursor: pointer;
    display: inline-block;
    padding: 5px 10px;
    background-image: linear-gradient(to right, var(--primary1-color), var(--primary2-color));
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-weight: bolder;
    font-size: 15px;
}

.btn-success{
    cursor: pointer;
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--secondary1-color)!important;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-weight: bolder;
    font-size: 15px;
}

.btn-success:hover{
    opacity: 0.8;
}

.btn-danger{
    cursor: pointer;
    display: inline-block;
    padding: 5px 10px;
    background-color: red!important;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-weight: bolder;
    font-size: 15px;
}

.btn-danger:hover{
    color: #fff!important;
    opacity: 0.8;
}

.btn:hover{
    opacity: 0.9;
}

.btn-primary, .bg-primary{
    background: var(--primary-color);
    color: #fff;
}

.btn-secondary{
    background: var(--secondary-color);
}

.btn-dark {
    background: #333;
}

.btn-light{
    background: #f4f4f4;
    color: #333;
}

.btn-outline{
    background: transparent;
    border: 1px solid #fff;

}


/* ############ HEADER ########### */

.navbar{
    width: 100%;
    display: grid;
    grid-template-columns: 30% 40% 30%;
    padding-top: 20px;
    padding-bottom: 20px;
    position: fixed;
    top: 0px;
    z-index: 2;
    background-color: #fff;
}

.navbar_child .logoWrap{
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-left: 10%;
}

#navbarChildTwo nav ul li a.active{
    color: var(--primary1-color)!important;
}

.navbar #navbarChildTwo nav ul{
    display: flex;
}


nav ul li a:hover{
    text-decoration: underline!important;
}

.navbar #navbarChildTwo nav ul li a{
    margin-left: 20px;
    font-size: 20px;
    color: var(--secondary1-color);
    font-weight: bolder;
}

#bank_link ul li a.btn{
    color: #fff;
    text-transform: uppercase;
    font-weight: bolder;
    font-size: 15px;
    
}

#bank_link > ul > li{
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
}

.content{
    display: flex;
    justify-content: space-between;
    max-width: 90%;
    align-items: center;
    height: 100vh;
    padding-left: 50px;
}



.content_circle img{
    display: flex;
    width: 100%;
}

#content_parent .wrapPhone{
    display: flex;
    justify-content: center;
    width: 380px;
    position: absolute;
    top: 0%;
   
}


.content_btn{
    display: flex;
    margin-top: 20px;
    justify-content: space-between;
    max-width: 250px;
    
    
}




.content .content_child h1{
    font-size: 50px;
    font-weight: bolder;
    line-height: 4rem;
    color: var(--secondary2-color);
    animation: slideInLeft 0.9s ease-out forwards;
    
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
.content .content_child h1 span{
    color: var(--primary1-color);
   
}

.content .content_child p{
    font-size: 14px;
    font-weight: bolder;
    color: #000000;
}



 .content_circle{
    border: 3px solid var(--secondary1-color);
    border-radius: 50%;
    width: 350px;
    height: 350px;
    position: relative;
    box-shadow: -6px 69px 50px -34px rgba(0,0,0,0.62);

    
 
}

 .content_circle .circle_child{
    border: 1px solid black;
    border-radius: 50%;
    position: relative;
    top: 3%;
    left: 3%;
    width: 94%;
    height: 94%;
}

#bgcontent{
    background: url(../img/curve.png) no-repeat center center/cover;
   background-position: 0 50%;

}

.active{
    color: #000000;
}

#nav_mobile_parent{
    background-color: var(--bg-light-color);
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 1000;
    padding: 40px;
    overflow-x: hidden;
    display: none;
    left: -100%;
    animation: showMenu 400ms ease forwards;
    
    
}


@keyframes showMenu {
    to{
        left: 0;
    }
}


#hamburger_close,
 #hamburger{
    color: var(--primary1-color);
    position: absolute;
    right: 20px;
    top: 10px;
    cursor: pointer;
    z-index: 10;

}
#hamburger_close,
 #hamburger span{
    font-size: 40px;
 }

#hamburger_close{
    display: none;
    color: #fff;
}

#hamburger_close span{
    font-size: 40px;
}
.nav_mobile_child{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


#nav_mobile_child > nav > ul > li > a{
    margin-top: 20px;
    font-weight: bolder;
    line-height: 3.6rem;
    color: #fff;
    transition: all 300ms ease;
    
}

#nav_mobile_parent #nav_mobile_child nav ul a:hover{
    margin-left: -15px;
  }

#B-link{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
   
 
}

#nav_mobile_child  nav  ul   #B-link li .btn{
    line-height: 2;
    text-align: center;
    margin-top: 20px;
  


}




.tab_parent{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-top: 20px;
    margin: 40px;
}

 .tab_child{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid var(--bg-light-color);
    padding: 20px;
}

.tab_child span{
    color: #fff;
}

.tabicon{
    border-radius: 50%;
    padding: 6px;
    background-color: var(--primary2-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fast_child{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;

}

.tab_parent h2{
    font-weight: bolder;
    color: #000000;
    font-size: 24px;
}
.innovative{
    padding: 50px;
}

.innovative h2{
    text-align: center;
    font-weight: bolder;
    color: #000000;

}

.innovative p{
    text-align: center;

}

.jfy{
    display: flex;
    justify-content: center;
    align-items: center;
}

.Choose{
    margin-top: 20px;
    margin-bottom: 20px;
}

#Features{
    background-color: #E3E8FB;
    height: 100%;
    padding: 20px;
    padding-bottom: 130px;

}

#Features h3{
    font-weight: bolder;
    color: #000000;
}


.feaIcon{
    height: 60px;
    width: 60px;

    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary2-color);
}

.feaIcon span{
    color: #ffff;
    font-size: 50px;
}

.feature_wrap{
    border-radius: 10px;
    height: 300px;
    padding: 40px;
    background-color: #fff;
    box-shadow: -3px 6px 15px -4px rgba(0,0,0,0.75);
    margin: 20px; 
}

.slide-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s, transform 0.5s;
  }
  
  .slide-in.active {
    opacity: 1;
    transform: translateY(0);
  }



.feature_wrap h4{
    margin-top: 10px;
    font-weight: bolder;
    font-size: 18px;
}

.feature_wrap p{
    font-size: 14px;
    text-align: center;
}



.feature_wrap.jfy{
    flex-direction: column;
}


#content_parent1{
    position: relative;
    margin-top: -100px;
}

#content_parent1 .wraplaptop{
    display: flex;
    justify-content: center;
    width: 380px;
    position: absolute;
    top: -60px;
    right: 0;
   
  
}



 .content_circle1{
    border: 3px solid var(--secondary1-color);
    border-radius: 50%;
    width: 250px;
    height: 250px;
    position: relative;

    
 
}

 .content_circle1 .circle_child1{
    border: 1px solid black;
    border-radius: 50%;
    position: relative;
    top: 3%;
    left: 3%;
    width: 94%;
    height: 94%;
}


.content_circle1 img{
    display: flex;
    width: 100%;
}


#Laptop .jfy{
    flex-direction: column;
    align-items: flex-end;
}


#bank{
    margin-top: -40px;
}

#bank h4{
    font-weight: bolder;
    font-size: 18px;
}


#Contact{
    margin-top: 100px;
}

.count{
    display: flex;
    justify-content: space-around;
}

.count p{
    font-size: 12px;
    font-weight: bolder;
}

.count h4{
    font-size: 18px;
    font-weight: bolder;
    color: var(--secondary2-color);
    
}

#Contact > div > div > div > h4{
    font-size: 18px;
    font-weight: bolder;
    color: var(--secondary2-color);
}

#Contact > div > div > div{
    text-align: center;
}

#Contact .jfy{
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.contact-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
}

.contact-wrap img{
    display: flex;
    width: 100%;
    object-fit: cover;
}

.count_child{
    margin-left: 20px;
    
}

#Contact > div > div > div:nth-child(2) > div:nth-child(3) > a{
    margin-top: 10px;
}

#start .jfy{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
}

#start{
    padding: 20px;
    background-image: linear-gradient(to right, var(--primary1-color), var(--primary2-color));
    margin-top: 40px;
    
}

#start h4{
    font-size: 20px;
    font-weight: bolder;
    color: #fff;
}

#start > div > div > div > div > a.btn{
    border: 2px solid #fff;
}


.logo-light{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 170px;
}

.logo-light img{
    width: 100%;
    object-fit: cover;
    display: flex;
}


#footerDown{
    background-color: #333;
}


.fotter_parent{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding-top: 40px;
    padding-left: 40px;
   
    
 
}

.fotter_parent .fotter_child p a{
    color: #fff;
    transition: all 300ms ease;

}

.fotter_parent .fotter_child p a:hover{
    margin-left: -15px;

}



#foot_bottom{
    background-color: #000000;

}


#foot_bottom p{
    color: #fff;
}

.fotter_child{
    margin-top: 20px;
}

.fotter_parent hr{
    border-color: #ffff;
   
}

#back-to-top {
    position: fixed;
    bottom: 100px;
    right: 50px;
    z-index: 99;
    display: none; /* Initially hide the button */
  transition: opacity 0.3s;
  }

#top-child{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 10px;
    background-image: linear-gradient(to right, var(--primary1-color), var(--primary2-color));
    position: absolute;
    cursor: pointer;
   
}

#top-child span{
    font-size: 30px;
    color: #fff;
}





/* #########BUSINESS PAGE #############################################################################################################
##############################################################################################################################################
#########BUSINESS PAGE ########################################################################################################################
###############################################################################################################################################
#########BUSINESS PAGE ########################################################################################################################
###############################################################################################################################################
#########BUSINESS PAGE ########################################################################################################################
############################################################################################################################################### */

#business{
    background: url(../img/business.jpg) no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 200px;
    overflow: hidden;
}

#business::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    overflow: hidden;
}


 
#business * {
    position: relative;
    z-index: 1;
}

.business_parent{
    display: flex;
    justify-content: center;
    align-items: center;
}


.business_child h1{
    font-weight: bolder;
    text-align: center;
    color: #fff;
}


.business_child p{
    font-weight: bold;
    text-align: center;
    color: #fff;
}


.royal_child.jfy{
    flex-direction: column;
    padding: 30px;
}

.royal_child.jfy h2{
    font-size: 23px;
    font-weight: bolder;
    color: var(--secondary2-color);
}

.royal_child.jfy p{
    font-weight: bolder;
    font-size: 30px;
    text-align: center;
    max-width: 50%;
    color: #000000;
    
}

.var{
    padding: 30px;
}

.var h2{
    font-size: 24px;
    font-weight: bolder;
    color: #000000;
}

.var_list span{
    color: var(--secondary2-color);
    font-size: 30px;
   
}

.var_list .var_list_child{
    display: flex;

    justify-content: center;
    flex-direction: column;
    height: 20px;
}

.var_list {
    display: flex;
    align-items: center;
}


.list-icon{
    margin-top: -10px;
 
}

.list-p{
    margin-left: 10px;
}

.partner_child{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: -3px 12px 45px -17px rgba(0,0,0,0.75);
    transition: all 300ms ease;
    padding: 5px;

}

.partner_child:hover{
    box-shadow: -200px -200px 0px -200px rgba(0,0,0,0.75);
    border: 2px solid var(--primary1-color);

}

.partner_child img{
    display: flex;
    width: 65%;
    object-fit: cover;
}


#headerWrap > section:nth-child(6) > div > div > div:nth-child(1) > div:nth-child(2) > div > div > img{
    width: 80%;
}

#headerWrap > section:nth-child(6) > div > div > div:nth-child(2) > div:nth-child(2) > div > div > img{
    width: 100%;
}

#bottom-phone{
    background-color: #e6e6e6;
}

.partner{
    padding: 30px;
    display: flex;
    align-items: center;
    justify-items: center;
   
}

.pat-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pfront_parent{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.pfront{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 500px;
}

.pfront img{
    display: flex;
    width: 100%;
    object-fit: cover;
}


.get-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
}

.get-wrap img{
    display: flex;
    width: 100%;
    object-fit: cover;
}

.get{
    display: flex;
    align-items: center;
    background-color: #fff;
    width: 200px;
    height: 70px;
    border-radius: 10%;
    padding-left: 10px;
    
}

#bottom-phone > div.col-sm-12.col-lg-6.app > div > div:nth-child(2) > div:nth-child(2) > p{
    margin-left: 10px;
}


.get p{
    font-weight: bolder;
}


.get-container{
    display: flex;
    align-items: center;


}

.get:last-child{
    margin-left: 30px;
}

.app{
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #000000;
    padding: 30px;

}

.app h3{
    text-transform: uppercase;
    color: var(--secondary2-color);
}

#bottom-phone > div.col-sm-12.col-lg-6.app > h3:nth-child(4){
    text-transform: capitalize;
    color: #000000;
    margin-top: 10px;
    margin-bottom: 20px;
}

#bottom-phone > div.col-sm-12.col-lg-6.app > p{
    margin-top: 10px;
}



/* #########ABOUT US PAGE #############################################################################################################
##############################################################################################################################################
#########ABOUT US PAGE ########################################################################################################################
###############################################################################################################################################
#########ABOUT US PAGE ########################################################################################################################
###############################################################################################################################################
#########ABOUT US PAGE ########################################################################################################################
############################################################################################################################################### */

#personal{
    background: url(../img/personal.jpg) no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 200px;
    overflow: hidden;
}

#personal::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    overflow: hidden;
}


 
#personal * {
    position: relative;
    z-index: 1;
}

.personal_parent{
    display: flex;
    justify-content: center;
    align-items: center;
}


.personal_child h1{
    font-weight: bolder;
    text-align: center;
    color: #fff;
}


.personal_child p{
    font-weight: bold;
    text-align: center;
    color: #fff;
}


/* #########LOAN PAGE #############################################################################################################
##############################################################################################################################################
#########LOAN PAGE ########################################################################################################################
###############################################################################################################################################
#########LOAN PAGE ########################################################################################################################
###############################################################################################################################################
#########LOAN PAGE ########################################################################################################################
############################################################################################################################################### */



#loan{
    background: url(../img/loan.jpg) no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 200px;
    overflow: hidden;
}

#loan::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    overflow: hidden;
}


 
#loan * {
    position: relative;
    z-index: 1;
}

.loan_parent{
    display: flex;
    justify-content: center;
    align-items: center;
}


.loan_child h1{
    font-weight: bolder;
    text-align: center;
    color: #fff;
}


.loan_child p{
    font-weight: bold;
    text-align: center;
    color: #fff;
}


.loan-box{
    background-color: #fff;
    height: 400px;
    width: 200px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0px 4px 31px -2px rgba(0,0,0,0.64);
    margin: 20px;
}

.box-img-wrap{
    display: flex;
    width: 200px;
    height: 200px;

}

.box-img-wrap img{
    display: flex;
    width: 100%;
    object-fit: cover;
}

.header2{
    display: flex;
    width: 200px;
    height: 150px;
    justify-content: center;
    align-items: center;
}

.header2 h2{
    font-weight: bolder;
    color: #000000;
    font-size: 20px;
}

.box-link-wrap{
    display: flex;
    width: 200px;
    height: 50px;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to right, var(--primary1-color), var(--primary2-color));
}

.box-link-wrap a{
    color: #fff;
    font-weight: bolder;
    transition: all 300ms ease;
}

.box-link-wrap a:hover{
    margin-left: -15px;
}

.loan-box-parent{
    display: flex;
    justify-content: center;
    align-items: center;
}


#details{
    padding: 40px;
}

#details h2{
    font-weight: bolder;
    color: #000000;
    text-transform: uppercase;
    font-size: 24px;
}

#details hr{
    border: 2px solid black;
}



/* #########CONTACT PAGE #############################################################################################################
##############################################################################################################################################
#########CONTACT PAGE ########################################################################################################################
###############################################################################################################################################
#########CONTACT PAGE ########################################################################################################################
###############################################################################################################################################
#########CONTACT PAGE ########################################################################################################################
############################################################################################################################################### */



#contact{
    background: url(../img/contact.jpg) no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 200px;
    overflow: hidden;
}

#contact::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    overflow: hidden;
}


 
#contact * {
    position: relative;
    z-index: 1;
}

.contact_parent{
    display: flex;
    justify-content: center;
    align-items: center;
}


.contact_child h1{
    font-weight: bolder;
    text-align: center;
    color: #fff;
}


.contact_child p{
    font-weight: bold;
    text-align: center;
    color: #fff;
}

.location-grand{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.location-parent{
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: -2px 3px 18px 1px rgba(0,0,0,0.71);
    padding: 20px;
    transition: all 800ms ease;
    width: 300px;
    height: 150px;
}


.location-parent:hover{

    box-shadow: 10px 10px 5px -200px rgba(0,0,0,0.75);
    
}



.loc-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--secondary2-color);
    border-radius: 50%;
    padding: 20px;
}

.loc-icon span{
    display: flex;
    font-size: 40px;
    color: #fff;
}

.location.two h3{
    font-weight: bolder;
    color: #000000;
}

.location.two p{
    font-weight: bold;
    max-width: 200px;
}


#headerWrap > section:nth-child(4) > div > div > div > div > div:nth-child(2){
    margin-left: 30px;
}


.location-grand{
    padding-top: 100px;
    padding-bottom: 100px;
}

.location{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}





.row.g-3{
    margin-top: 20px;
}


#message{
    width: 100%;
    resize: none;
    height: 100px;
    padding: 10px;
}

.leave{
    padding: 30px;
}


.leave h1{
    font-weight: bolder;
    text-transform: uppercase;
}

#headerWrap > section:nth-child(5) > div > div > form > button{
    margin-top: 40px!important;
}



/* #########LOGIN PAGE #############################################################################################################
##############################################################################################################################################
#########LOGIN PAGE ########################################################################################################################
###############################################################################################################################################
#########LOGIN PAGE ########################################################################################################################
###############################################################################################################################################
#########LOGIN PAGE ########################################################################################################################
############################################################################################################################################### */


.email-verify-layout{
    width: 100%;
    height: 30px;
    background-color: green;
    transition: all 300ms ease;
    opacity: 0.9;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    padding-left: 40px;
    padding-right: 40px;
    

}




.verify-email p{
    color: #fff;
    text-align: center;
}

.verify-email-layout{
    width: 100%;
    height: 30px;
    background-color: red;
    transition: all 300ms ease;
    opacity: 0.9;
    position: fixed;
    top: 0;
    left: 0;
    padding-left: 40px;
    padding-right: 40px;
    display: none;

   
    

}


.verify-email-layout p{
    color: #fff;
    text-align: center;
}




.email-verify-layout p{
    color: #fff;
    text-align: center;
}





#form-logo .form-logo-wrap{
    display: flex;
    width: 200px;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form-logo-wrap img{
    display: flex;
    width: 100%;
    object-fit: cover;

}


.log{
    height: 100vh;
}

.log-parent{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    height: 100%;
}

.log-parent .log-child{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.log-wrap{
    width: 60%;
    padding: 20px;
    box-shadow: -8px 3px 23px 0px rgba(0,0,0,0.25);
    background-color: #fff;
}

.log-parent .log-child img{
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.log-parent .log-child label{
    display: block;
    
}
.log-parent .log-child .item{
    width: 100%;
    height: 40px;
}

.log-parent .log-child h1{
    font-weight: bolder;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.log-parent .log-child:last-child .formgroup{
    margin-top: 20px;
}


.log-parent .log-child:last-child{
    line-height: 40px;
    background-color: #FFF;
}

.log-parent .log-child .rem-wrap{
    display: flex;

}

.log-parent .log-child .rem-wrap a{
    margin-left: 20%;
    color: var(--primary-color);
    justify-self: flex-end;
    font-size: 10px;
}


.log-parent .log-child .rem-wrap label{
    margin-left: 10px;
}




.log-parent .log-child:last-child .btn{
    width: 100%;
}

.log-parent .log-child:last-child .log-footer{
    text-align: center;
}

.log-parent .log-child:last-child .log-footer a{
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
}


.forpass{
    display: flex;
    

}

.forpass_wrap{
    display: flex;
    justify-content: space-between;
}


#loginForm > div.forpass_wrap > div.forpass > div:nth-child(2) > label{
    margin-left: 10px;
    font-size: 12px;
    font-weight: bolder;
}

.forpass-link a{
    font-weight: bolder;
    font-size: 12px;
    color: #333;
}

#loginForm > div.log-footer > p > a:hover{
    color: var(--primary1-color);
}

.log-parent .log-child input{
    padding: 10px;
}


#password-container{
    position: relative;
}

.fa-eye-slash,
.fa-eye{
    position: absolute;
    right: 3%;
    bottom: 10px;
    cursor: pointer;
    color: #666666;
}


.log-wrap h1{
    font-size: 24px;
    color: var(--secondary2-color)!important;
}



/* ######### REGISTER PAGE #############################################################################################################
##############################################################################################################################################
######### REGISTER PAGE ########################################################################################################################
###############################################################################################################################################
######### REGISTERPAGE ########################################################################################################################
###############################################################################################################################################
######### REGISTER PAGE ########################################################################################################################
############################################################################################################################################### */


#register-page{
    background-color: #e6e6e6;
    height: 100%;
    padding: 20px;
}

#register{
    padding-top: 30px;
}

.register-logo{
    display: flex;
    flex-direction: column;
    width: 200px;
}


.register-logo img{
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mar-heading{
    background-color: var(--secondary2-color);
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 13px;
}

#register .row:first-child{
    padding-bottom: 30px;
    padding-top: 30px;
}


.mar-parent{
    display: flex;
    justify-content: center;
}

.mar-person p{
    color: #fff;
    font-weight: bolder;
    font-size: 17px;
}
.mar-person:last-child{
    margin-left: 10px;
}


.mar-heading .mar-person span{
    color: #fff;
}


#form-details textarea:focus, input:focus, input[type]:focus, .uneditable-input:focus {   
    border-color: rgba(27, 74, 126, 0.8);
    box-shadow: 0 1px 1px rgba(229, 103, 23, 0.075) inset, 0 0 8px rgba(27, 74, 126, 0.6);
    outline: 0 none;
}

#form-details label{
    margin-bottom: 10px;
    font-weight: bold;
    color: #666666;
}


#form-details  h2{
    font-weight: bolder;
    font-size: 18px;
    color: #333;
}


#form-details{
    background-color: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
}



.p_start h2{
    margin-top: 30px;
}

#house-details{
    margin-top: 20px;
}




#form-footer button.btn{
    background-color: var(--secondary1-color)!important;
}


#t_c p a{
    text-decoration: underline;
    color: blue;
}

#t_c p a:hover{
    text-decoration: none;
}


/* ######### REGISTER PAGE #############################################################################################################
##############################################################################################################################################
######### REGISTER PAGE ########################################################################################################################
###############################################################################################################################################
######### REGISTERPAGE ########################################################################################################################
###############################################################################################################################################
######### REGISTER PAGE ########################################################################################################################
############################################################################################################################################### */

.article ul li,
.article p{
    text-align: justify;
}

.article ul{
    list-style: disc;
    
}

#goback-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
}


#errorPhone{
    color: red;
    font-size: 12px;
}



/* ######### FORGET PASSWORD #############################################################################################################
##############################################################################################################################################
######### FORGET PASSWORD ########################################################################################################################
###############################################################################################################################################
######### FORGET PASSWORD ########################################################################################################################
###############################################################################################################################################
######### FORGET PASSWORD ########################################################################################################################
############################################################################################################################################### */







#forget-password-page .log-parent .log-child:last-child {
    font-family: poppins, sans-serif;
    
}

#forgetSection .forget-logo-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
}

#forgetSection .forget-logo-wrap .forget-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 80px;
    padding: 10px;
    border-radius: 50%;
    background-color: var(--secondary1-color);
    margin-bottom: 20px;
}

#forgetSection .forget-logo-wrap .forget-logo span{
    font-size: 50px;
    color: #fff;
}



#forgetSection .row:nth-child(2) .col-lg-12 h2{
    font-weight: bolder;
    font-size: 25px;
    color: #000000;
    text-align: center;
}

#forgetSection .row:nth-child(2) .col-lg-12 p{
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    line-height: 2;
    margin-left: 10%;
    margin-right: 10%;
}

#forgetSection .row:nth-child(3) .col-lg-12 .emailwrap-forget{
    padding-left: 10%;
    padding-right: 10%;
}


#forgetSection > div:nth-child(3) > div > form > div > div > div {
    padding-left: 10%;
    padding-right: 10%;
}




#forgetSection > div:nth-child(3) > div > form > div > div > div > button{
    width: 100%!important;
    margin-top: 20px;
}


/* ######### FORGET PASSWORD _CHECK EMAIL #############################################################################################################
##############################################################################################################################################
######### FORGET PASSWORD _CHECK EMAIL ########################################################################################################################
###############################################################################################################################################
######### FORGET PASSWORD _CHECK EMAIL ########################################################################################################################
###############################################################################################################################################
######### FORGET PASSWORD _CHECK EMAIL ########################################################################################################################
############################################################################################################################################### */




.input-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .split-input {
    width: 50px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    border: 1px solid #ccc;
    margin-right: 5px;
    outline: none;
  }
  
  .split-input:last-child {
    margin-right: 0;
  }
  
  .split-input:focus {
    border-color: #66afe9;
    box-shadow: 0 0 8px rgba(102, 175, 233, 0.6);
  }

  #passError{
    display: none;
  }


  #passError p{
    color: red;
    font-size: 12px;
    
}