* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", serif;
    font-weight: 400;
}

::-webkit-scrollbar,
::-webkit-scrollbar-thumb,
::-webkit-scrollbar-track {
	width: 10px;
	height: 10px;
	border: none;
	background: transparent;
}
::-webkit-scrollbar-button,
::-webkit-scrollbar-track-piece,
::-webkit-scrollbar-corner,
::-webkit-resizer {
	display: none;
}
::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #011E45;
}
::-webkit-scrollbar-track {
background-color: #c0cdde;
border: 3px solid transparent;
background-clip: content-box;
}


html{
    font-size: 16px;
}

body .fi {
    display: inline-flex;
    position: relative;
    top: 3px;                                                                                         
 }

a{
    text-decoration: none;
}
ul{
    list-style-type: none;
    padding-left: 0;
}
body img{
    max-width: 100%;
}
body .white-color{
    color: #ffffff !important;
}
body .black-color{
    color: #011E45 !important;
}
body .blue-color{
    color: #005a9d !important;
}
body .green-color{
    color: #005c55 !important;
}
body .gray-color{
    color: #627792 !important;
}


body .padding-tb-80{
    padding: 80px 0 ;
}
body .padding-tb-60{
    padding: 60px 0 ;
}
body .padding-tb-50{
    padding: 50px 0 ;
}

body .weight-500{
    font-weight: 500 !important;
}
body .weight-600{
    font-weight: 600 !important;
}
body .weight-700{
    font-weight: 700 !important;
}

body h2{
    font-size: 30px;
    font-weight: 600;
    color: #011E45;
    margin-bottom: 20px;    
}
body h3{
    font-size: 22px;
    font-weight: 600;
    color: #011E45;
    line-height: 30px; 
}
body h4{
    font-size: 24px;
    font-weight: 500;
    color: #011E45;
    margin-bottom: 20px;    
}
body h5{
    font-size: 18px;
    font-weight: 600;
    color: #011E45;
    margin-bottom: 12px;  
}

body .psg{
    font-size: 15px;
    color: #627792; 
    font-weight: 500;  
}

body .title-bottom-spacing{
    padding-bottom: 40px;
}

body .b-right-gray{
    border-right: 1px solid #9ad7ff    !important;
}



body .btn{
    font-size: 15px;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 5px;
    border: 0;
    transition: all 0.3s ease-in-out;
}

body .btn-primary{
    color: #ffffff;
    background-color: #005c55;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border: 1px solid #005c55;
}
body .btn-primary:hover{
    background-color: #005a9d !important;
    border-color: #005a9d !important;
    color: #ffffff !important;
    transition: all 0.3s ease-in-out;
}
body .btn-secondary{
    background-color: #005c55;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 20px 0 rgb(86 90 207 / 30%);
}
body .btn-secondary:hover{
    background-color: #005a9d !important;
    border-color: #005a9d !important;
    color: #ffffff !important;
    transition: all 0.3s ease-in-out;
}

body .btn-white{
    background-color: #ffffff;
    color: #005c55;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 20px 0 rgb(86 90 207 / 30%);
}
body .btn-white:hover{
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: #1ee0d2 !important;
    transition: all 0.3s ease-in-out;
}



  body .form-label,
  body label {
      font-size: 13px;
      font-weight: 600;
      color: #22303c;
      margin-bottom: 3px !important;
  }
  body .form-control {
      border: 2px solid #dfe6ed;
      font-size: 16px;
      font-weight: 500;
      color: #011E45;
      width: 100%;
      padding: 8px 20px;
      border-radius: 6px !important;
      -webkit-appearance: auto;
      -moz-appearance: auto;
      appearance: auto;
      background-color: #ffffff;
      transition: all 0.3s ease-in-out;
  }
  body .form-control::placeholder {
      color: #878787;
  }
  body .form-control:hover {
      border-color: #005c55;
  }
  body .form-control:focus {
      border-color: #005c55;
      background-color: #ffffff;
      box-shadow: none;
  }



body .card-box{
    width: 100%;
    border-radius: 16px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 2px 10px 50px 0px #D1DBEE;
    transition: all 0.3s ease-in-out;
}

body header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    width: 100%;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
    -webkit-transition: all ease-out .5s;
    -moz-transition: all ease-out .5s;
    -o-transition: all ease-out .5s;
    transition: all ease-out .5s;
}
body header.active{
    background-color: #003763;
    transition: all 0.5s ease-in-out;
}

body header .navbar{
    padding: 16px 0;
}
body header .navbar .navbar-brand{
    margin-right: 30px;
    padding: 0;
}
body header .navbar .navbar-brand img{
    width: 120px;
  
}
body header .navbar .navbar-toggler{
    background-color: #ffffff;
    border-radius: 0;
}
body header .navbar .navbar-toggler .navbar-toggler-icon{
    background-image: url('../images/icons/menu.png');
    background-size: 25px;
}
body header .navbar .navbar-toggler:focus{
    box-shadow: none;
    outline: none;
}
body header .navbar .navbar-nav .nav-item{
    position: relative;
}
body header .navbar .navbar-nav .nav-item .nav-link{
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 12px;
    transition: all 0.3s ease-in-out;
    position: relative;
}
body header .navbar .navbar-nav .nav-item .nav-link i{
    font-size: 18px;
    padding-left: 2px;
    top: 4px;
}
header .navbar .navbar-nav .nav-item .nav-link.active::before{
    width: 100%;
    transition: all 0.3s ease-in-out;
} 
body header .navbar .navbar-nav .nav-item .nav-link:hover{
    color: #ffffff;
    transition: all 0.3s ease-in-out;
}
body header .navbar .navbar-nav .nav-item .nav-link.active{
    color: #ffffff;
    transition: all 0.3s ease-in-out;
}

body header .navbar .navbar-nav .nav-item:hover .header-menu-list {
	display: block;
	transition: all 0.3s ease-in-out;
}

body header .navbar .navbar-nav .nav-item .header-menu-list {
	position: absolute;
	top: 100%;
	left: 0;
    width: 100%;
	border-radius: 10px;
	padding: 20px;
	-webkit-box-shadow: 2px 10px 30px 0px #0c1e401f;
	box-shadow: 2px 10px 30px 0px #0c1e401f;
	background-color: #ffffff;
	transition: all 0.3s ease-in-out;
	z-index: 1;
	display: none;
    min-width: 300px;
}
body header .navbar .navbar-nav .nav-item .header-menu-list ul {
    list-style-type: none;
    padding: 0;
    padding-left: 16px;
}
body header .navbar .navbar-nav .nav-item .header-menu-list ul li {
	position: relative;
}
body header .navbar .navbar-nav .nav-item .header-menu-list ul li .menu-link {
    font-size: 14px;
    font-weight: 500;
    color: #627792;
    transition: all 0.3s ease-in-out;
    display: block;
    padding: 7px 0;
    border-radius: 5px;
    cursor: pointer;
}
body header .navbar .navbar-nav .nav-item .header-menu-list ul li .menu-link:hover {
    color: #1ee0d2;
}
body header .navbar .mobile-show{
    display: none;
}


body .banner-section{
    background-image: url('../images/BG.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    min-height: 100vh;
    
    
}
body .banner-section .banner-info{
    padding: 200px 0;
}
body .banner-section .banner-info .banner-title{
    font-size: 48px;
    color: #ffffff;
    font-weight: 600;
}
body .banner-section .banner-info p{
    color: #ffffff;
    font-weight: 400;
    font-size: 22px;
}

/* body .banner-count-section{
    margin-top: -50px;
} */
body .banner-count-section .banner-count-box{
    text-align: center;
    width: 100%;
}


body .dreamLife-section .dreamLife-box{
    padding: 10px;
}
body .dreamLife-section .dreamLife-box .dreamLife-img img{
    width: 70px;
    margin-right: 16px;
}   


body .how-Works-box-wrapper{
    position: relative;
}
body .how-Works-box-wrapper::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    width: 100%;
    border-bottom: 2px dotted #005a9d;
    text-align: center;
    z-index: -1;
}

body .how-Works-section .how-Works-box{
    width: 100%;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    background-color: #eef6ff;
}
body .how-Works-section .how-Works-box .how-Works-img{
    height: 70px;
    width: 70px;
    line-height: 70px;
    background-color: #005a9d;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 auto;
    margin-bottom: 20px;
} 

body .mobileApp-section{
    background-color: #003763;
}

body .financial-section .financial-box .financial-img{
    height: 50px;
    width: 50px;
    line-height: 50px;
    background-color: #002e52;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 auto;
    margin-right: 20px;
    position: relative;
}
body .financial-section .financial-box .financial-img::before{
    content: "";
    position: absolute;
    top: 60px;
    left: 23px;
    height: 100%;
    width: 2px;
    border-right: 2px solid #002e52;
}
body .financial-section .financial-box .financial-img.last-child-img::before{
    display: none;
}

body .EMI-calculator-section .EMI-calculator-box{
    width: 100%;
    padding: 12px 20px;
    border-radius: 5px;
    background-color: #f3f7fb;
    text-align: center;
}


body .footer-section{
    background-color: #003763;
}
body .footer-section .footer-logo{
    width: 150px;
}
body .footer-section .footer-info h5{
    color: #ffffff;
    margin-bottom: 8px;
    min-height: 32px;
    font-size: 20px;
}





body .footer-section .footer-info ul li a{
    font-size: 15px;
    font-weight: 400;
    padding: 5px;
    display: inline-block;
    cursor: pointer;
    color: #ffffff !important;
    transition: all 0.3s ease-in-out;
}
body .footer-section .footer-info ul li a:hover{
    color: #1ee0d2 !important;
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}
body .footer-section .social-icons a{
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    background-color: #144a74;
    display: block;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
}
body .footer-section .social-icons  a img{
    width: 20px;
}
body .footer-section .social-icons  a:hover{
    background-color: #005c55;
    transition: all 0.3s ease-in-out;
}
body .footer-bottom{
    background-color: #005c55;
    padding: 20px 0;
    border-top: 1px solid #595959;
}
body .footer-bottom p{
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 0;
}









@media (min-width: 992px) and (max-width: 1200px){
    body header .navbar .navbar-nav .nav-item .nav-link{
        font-size: 14px;
        padding: 10px 6px;
    }
}

@media (min-width: 767px) and (max-width: 992px){

    body header .navbar{
        background-color: #003763;
    }
    body header .navbar .header-btn{
        display: none;
    }
    body header .navbar .mobile-show{
        display: block;
    }
    body .banner-section{
        background-image: url('../images/Mobilebanner2.png');
        margin-top: 100px;
        width:20px;
    }
    body .banner-section .banner-info{
        text-align: center;  
        padding: 140px 0;  
    }
    body .banner-section .banner-info .banner-title{
        font-size: 36px;
    }
}
@media (min-width: 576px) and (max-width: 767px){

    body .padding-tb-80{
        padding: 50px 0;
    }
    body h2{
        font-size: 23px;
    }
    body .psg{
        font-size: 14px;
    }
    body header .navbar{
        background-color: #003763;
    }
    body header .navbar .header-btn{
        display: none;
    }
    body header .navbar .mobile-show{
        display: block;
    }
    body header .navbar .navbar-brand img{
        width: 120px;
        margin-top: 0;
    }
    body header .navbar .navbar-nav .nav-item .nav-link{
        padding: 16px;
    }
    body header .navbar .header-btn{
        display: none;
    }
    body .banner-section{
        background-image: url('../images/Mobilebanner2.png');
        margin-top: 100px;
    }
    body .banner-section .banner-info{
        text-align: center;  
        padding: 70px 0;  
    }
    body .banner-section .banner-info .banner-title{
        font-size: 30px;
    }
    body .banner-section .banner-info p{
        font-size: 16px;
    }

}
@media (min-width: 320px) and (max-width: 576px) {

    body .padding-tb-80{
        padding: 50px 0;
    }
    body h2{
        font-size: 20px;
    }
    body h3{
        font-size: 18px;
    }
    body .psg{
        font-size: 14px;
    }
    body header .navbar{
        background-color: #003763;
    }
    body header .navbar .header-btn{
        display: none;
    }
    body header .navbar .mobile-show{
        display: block;
    }
    body header .navbar .navbar-brand img{
        width: 120px;
        margin-top: 0;
    }
    body header .navbar .navbar-nav .nav-item .nav-link{
        padding: 16px;
    }
    body .banner-section{
        background-image: url('../images/Mobilebanner2.png');
        margin-top: 80px;
    }
    body .banner-section .banner-info{
        text-align: center;  
        padding: 65px 0;  
    }
    body .banner-section .banner-info .banner-title{
        font-size: 24px;
        margin-bottom: 20px !important;
    }
    body .banner-section .banner-info p{
        font-size: 14px;
        margin-bottom: 20px !important;
    }
}   
