* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background-color: #f5f5f5;
    text-align: justify;
}

h2{
    font-weight: 700;
    padding: 0;
    line-height: 22px;
}
h1{
    font-weight: 700;
    padding: 0;
    line-height: 22px;
}


h5{
    font-size: 18px;
    font-weight: 700;
}
h4{
    font-size: 22px;
    font-weight: 600;
}
p{
    color: #666666;
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
}

a{
    color: #0079c2;
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
}
a:hover{
    text-decoration: none;
}


/* custom classes */
.w-40 {
    width: 40% !important;
}

.z-index-100 {
    z-index: 100;
}

.ml-30 {
    padding-left: 100px;
}
.pt-73{
    padding-top: 73px;
}
.pt-100{
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.text-black {
    color: #111 !important;
}
.bg-black{
    background: #111 !important;
}
.bg-bfooter {
    background-color: #323030;
}

.bg-light-gray{
background-color: #f0f0f0;
}
.bg-sky {
    background-color: #d8e9fc;
}

.bg-gray {
    background-color: #cecece !important;
}

.text-blue {
    color: #236597 !important;
}

.bg-blue {
    background-color: #236597 !important;
}

.bg-light-blue{
   background-color: #0079c2; 
}
.text-orange{
    color: #ff6600;
}
.light-blue{
    background-color: #c1dff2;
}

.text-15{
    font-size:15px;
}

.text-gray{
    color: #565656 !important;
}
.bg-lightgray{
    background-color: #565656; 
}
.border-r20{
    border-radius: 20px !important;
}
/* nav bar */
header{
    position: fixed;
    width: 100%;
    z-index: 10000;
}
.navbar {
    background: #202020;
    border: none;
    /*border-left: 6px solid #f0f0f0;*/
    margin: 0 !important;
    position: initial;
    top: 20px;
}

.navbar ul li a {
    color: #f2f2f2;
    font-size: 13px;
    font-weight: 500;
    line-height: 40px;
    transition: all 0.4s ease-in;
}

.navbar ul li:hover a {
    color: #ffa500;
}
/* home page */
.home-page{
    width: 100%;
    height: 700px;
}

.home-page .icon-box{
    margin-top: 140px;
}
.home-page .card{
    width: 167px;
    height: 100px;
    border-radius: 10px;
    cursor: pointer;
    margin-left: 3px;
}
.home-page .card .card-body h6{
    font-size:12px;
    line-height:22px;
    font-weight: 500;
}

.underline {
    content: "";
    padding: 2px 0px;
   /* border-bottom: 5px solid #ddd;*/
}
p, span{
    font-size: 15px !important;
    font-weight: 500 !important;
    color:#000 !important;
}
.main-btn{
margin-top: 7px;
padding: 8px 30px;
background-color: #007bff;
color: #000;
border: none;
font-weight: 600;
border-radius: 15px;
-webkit-border-radius:15px;
-moz-border-radius:15px;
-o-border-radius:15px;
transition: background-color 0.5s ease-in-out;
}

.main-btn.active{
    background-color: #0079c2 !important;
    color: #fff;
}



/* ========================EMI CALCULATOR=========================================== */
   
   #emi-calculation , #emi-output{
     border: 2px solid steelblue;
     box-shadow: 2px 5px 5px gray;
     border-radius: 5px;
    background-color: #F5F5F5;
   }
   #title{
     font-size: 30px;
     font-family: verdana;
     color: steelblue;
     text-align: center;
     text-decoration: underline;
   }
   #emi-output{
       width:500px;
       height: 400px;
   }

   .submit{
     text-align: center;
     margin-top: 20px;
   }
  
   @media screen and (max-width: 500px){
     #border{
       display: flex;
       flex-direction: column;
       width: 100%;
       margin-left: 5px;
       margin-right: 5px;
     }
     .label,.result{
       font-size: 10px;
     }
     #title{
       font-size: 20px;
     }
     #emi-calculation{
       max-width: 100%;
     }
     #emi-output{
       width: 100%;
       margin-left: 5px;
       margin-right: 5px;
     }
     .section{
       font-size: 16px;
     }
     .input{
       width: 100px;
     }
     #calc, #reset{
       width: 100px;
     }
     
   }

.content{
    display: grid;
    list-style: none;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-gap: 20px 20px; 
    padding:10px 0;
}
.content .card-wrapper{
    border-radius: 10px;
    cursor: pointer; 
}
.content .card-wrapper h6 {
    font-size: 12px;
    line-height: 22px;
    font-weight: 500;
}
/* footer */
.footer-top li{
    color:#fff;
    font-weight: 600;
}
.footer-top p{
    color:#b6b6b6;
}

.footer-middle{
    background-color: #424242;
    }
    .footer-middle p, span{
        color: #fff;
    }
footer .social-icon li a {
    background-color: #303030;
    margin-right: 4px;
    color: #909090;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 15px;
    text-align: center;
    transition: all 0.4s ease-in;
}

footer .social-icon li:hover a {
    background-color: #d54ab6;
    color: #fff;

}

/* credit card page */

.credit-card .card{
    border-radius: 10px;
}

.credit-card .card-body{
    padding-left:9px !important;
    padding-right:9px !important;

}
#top {
    position: fixed;
    z-index: 5000;
    right: 20px;
    bottom: 20px;
    display: none;
}
#top i {
    border: 2px solid #0079c2;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 23px;
    color: #0079c2;
}
/* feature page */
.feature h5{
    color: #9CCEEB;
}
.feature ul li{
    font-size: 12px;
    font-weight: 500;
    line-height: 23px;
}
.p-73{
    padding-top: 73px;
}

.credit-card-img {
            background-size: cover;
            min-height: 300px;
            background-repeat: no-repeat;
            background-position: center;
        }
.header-img-text h3 {
            padding-top: 70px !important;
            padding-left: 147px !important;

        }
        @media only screen and (min-width:330px) and (max-width:767px) {
            .credit-card-img {
                background-size: cover;
                min-height: 100px;
                background-repeat: no-repeat;
                background-position: -54px 0px;
            }

            .header-img-text h3 {
                font-size: 19px;
                width: 213px;
                padding-top: 17px !important;
                padding-left: 35px !important;
            }
        }
        Button:focus{outline: none;}
        /* emi calculaor */
.range {
  position: relative;
  width: 550px;
  height: 5px;
}

.range input {
  width: 100%;
  position: absolute;
  top: 2px;
  height: 0;
  -webkit-appearance: none;
}
.range input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin: -8px 0 0;
  border-radius: 50%;
  background: #236597;
  cursor: pointer;
  border: 0 !important;
}
.range input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  margin: -8px 0 0;
  border-radius: 50%;
  background: #236597;
  cursor: pointer;
  border: 0 !important;
}
.range input::-ms-thumb {
  width: 18px;
  height: 18px;
  margin: -8px 0 0;
  border-radius: 50%;
  background: #236597;
  cursor: pointer;
  border: 0 !important;
}
.range input::-webkit-slider-runnable-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: #b2b2b2;
}
.range input::-moz-range-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: #b2b2b2;
}
.range input::-ms-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: #b2b2b2;
}
.range input:focus {
  background: none;
  outline: none;
}
.range input::-ms-track {
  width: 100%;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

.range-labels {
  margin: 18px -41px 0;
  padding: 0;
  list-style: none;
}
.range-labels li {
  position: relative;
  float: left;
  width: 90.25px;
  text-align: center;
  color: #b2b2b2;
  font-size: 14px;
  cursor: pointer;
}
.range-labels li::before {
  position: absolute;
  top: -25px;
  right: 0;
  left: 0;
  content: "";
  margin: 0 auto;
  width: 9px;
  height: 9px;
  background: #b2b2b2;
  border-radius: 50%;
}
.range-labels .active {
  color: #236597;
}
.range-labels .selected::before {
  background: #236597;
}
.range-labels .active.selected::before {
  display: none;
}
text.highcharts-credits{
    display: none;
}
