/*@font-face {
    font-family: gs;
    src: url(../font/gs.ttf);
  }*/
body{
    font-family: 'gs' ,sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1em;
    box-sizing: border-box;
    background-color: #DFF2FD;
   
}
main{
  display: flex;
  flex-direction: column;
  align-self: start;
  height: 100vh;
}
.logo{
  max-width: 30%;
}
.top-row{
  background-color: transparent;
  margin-top: 0.5em;
}
.form-check-label{
  padding: 0.5em 2em;
}
.banner{
  width: 100%;
  height: calc(100vh - 50vh);
  display: flex;
  background-color: palevioletred;
  background: url(../images/bannerweb.png) center center no-repeat;
  background-size: 100% 100%;
}
.bg-1{
  background-color: #F6F7F8;
}
label{
  margin: 0.5em 0em;
}
ul.indicatiors {
  padding: 1em;
  margin: 0;
  list-style: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
ul.indicatiors li{
  width: 25%;
  position: relative;
  padding-top: 2em;
}
ul.indicatiors li:before{
  content: "";
  position: absolute;
  border:solid 2px #9B9B9B;
  background-color: #ffffff;
  width: 20px;
  height: 20px;
  margin: auto;
  border-radius: 50%;
  left: 0;
  right: 0;
  top: 0px;
  z-index: 9;
}
ul.indicatiors li.active, ul.indicatiors li.finish{
  font-weight: bold;
}
ul.indicatiors li.active:before{
  border:solid 2px #0062A8;
  background-color: #ffffff;
}
ul.indicatiors li.finish:before{
  border:solid 2px #0062A8;
  background: url('../images/check.svg') center center no-repeat;
  background-color: #0062A8;
}
ul.indicatiors li:after {
  content: "";
  position: absolute;
  background-color:#9B9B9B;
  width: 100%;
  height: 2px;
  left: 50%;
  right: 0;
  z-index: 5;
  top: 0.5em;
}
ul.indicatiors li:last-child:after {
  width: 0px;
  height: 0px;
}
.common-form{
  width: 100%;
  max-width: 80%;
  margin: auto;
  padding-top: 2em;
}
.msg{
  display: block;
}
.info{
  color: #0062A8;
}
.error{
  color: red;
}
.cstm-inp .input-group-text{
  background-color: #ffffff;
  border-right: solid 1px #ffffff;
}
.cstm-inp .form-control{
  border-left: solid 1px #ffffff;
}
.cstm-inp2 .form-control{
  border-right: solid 1px #ffffff;
}
.cstm-inp2 .input-group-text{
  border-right: 1px solid #ced4da;
  border-left:none;
  font-size: 0.7em;
  color: red;
}
.cstm-inp2 .input-group-prepend .input-group-text{
  border-left: 1px solid #ced4da;
}
.btn-1{
  background-color: #D71920;
  position: relative;
  color: #ffffff;
  font-size: 1.2em;
  width: 200px;
  padding-left: 35px;
  text-align: center;
}
.btn-1:before{
  content: "";
  position: absolute;
  width: 50px;
  height: 110%;
  background: url('../images/right.png') center center no-repeat;
  background-color: transparent;
  left: -1px;
  top: -1px;
  display: flex;
  border-right: solid 2px #ffffff;
}
.aadhar-pic{
  width: 80px;
  height: 80px;
  margin: 1em 0em;
}
.sorry{
  height: 65vh !important;
}
.text-blue{
  color: #0062A8;
}
.text-red{
  color: #D71920;
}
.card-feature{
  padding-left: 12px;
}
.card-feature li{
  margin-bottom: 10px;
  list-style-image: url('../images/calender.svg');
}
.xx-small{
  font-size: 0.6em;
}
.attachment{
  color: #9B9B9B;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 10px;
}












/* Media CSS for Tabs & Mobiles Below width 767px */
@media only screen and (max-width:767px) {
  .top-row{
    background-color: #ffffff;
  }
  .logo{
    max-width: 75%;
  }
  .banner{
    background: url(../images/bannermobile.png) center center no-repeat;
    background-size: 100% 100%;
  }
  .common-form{
    max-width: 100%;
  }
}
