@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');
* {
	margin:0px;
	padding:0px;
}
html {
	scroll-behavior: smooth;
}
body {
	line-height: 20px;
	font-size: 14px;
	color: #2c2c2c;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	font-style: normal;
	overflow-x: hidden;
}
img{width: 100%;}
h1,h2, h3, h4, h5, h6{font-family: 'Lato', sans-serif; text-transform: uppercase; font-weight: 600;}
/*Header*/
nav{
   padding: 5px 0px;
    width: 100vw;
    background-color: #000;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    position: fixed;
    z-index: 10;
}
.logo img{width: 140px;}

/*Styling Links*/
.nav-links {
    display: flex;
    list-style: none; float: right;
    padding: 10px 0;
    justify-content: space-evenly;
    align-items: center;
    text-transform: uppercase;
    margin: 0;
}
.nav-links li a{
    text-decoration: none;
    margin: 0 0.7vw; color: #fff;
}
.nav-links li a:hover {
    color: #29d4a2;
}
.nav-links li {
    position: relative;
}
.nav-links li a::before {
    content: "";
    display: none;
    height: 3px;
    width: 0%;
    background-color: #29d4a2;
    position: absolute;
    transition: all ease-in-out 250ms;
    margin: 0 0 0 10%;
}
.nav-links li a:hover::before{
    width: 80%;
}
.owl-pagination{display: none;}
.slider .owl-pagination{display: block;}


/*Styling Hamburger Icon*/
.hamburger div{
    width: 30px;
    height:3px;
    background: #f2f5f7;
    margin: 5px;
    transition: all 0.3s ease;
}
.hamburger{
    display: none;
}
a.call-no {
    font-size: 15px;
    color: #0bd297;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 5px;
    display: inline-block;
    border: 1px solid #0bd297;
    margin: 3px 0 0;
}
/*Stying for small screens*/
@media screen and (max-width: 800px){
    nav{
        position: fixed;
        z-index: 3;
    }
    .hamburger{
        display:block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: all 0.7s ease;
    }
    .nav-links{
        position: fixed;
        background: #131418;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -20%);
        transition: all 1s ease-out;
        pointer-events: none;
    }
    .nav-links.open{
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
    }
    .nav-links li{
        opacity: 0;
    }
    .nav-links li:nth-child(1){
        transition: all 0.5s ease 0.2s;
    }
    .nav-links li:nth-child(2){
        transition: all 0.5s ease 0.4s;
    }
    .nav-links li:nth-child(3){
        transition: all 0.5s ease 0.6s;
    }
    .nav-links li:nth-child(4){
        transition: all 0.5s ease 0.7s;
    }
    .nav-links li:nth-child(5){
        transition: all 0.5s ease 0.8s;
    }
    .nav-links li:nth-child(6){
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }
    .nav-links li:nth-child(7){
        transition: all 0.5s ease 1s;
        margin: 0;
    }
    li.fade{
        opacity: 1;
    }
}
/*Animating Hamburger Icon on Click*/
.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
    transition: all 0.7s ease;
    width:0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}
/*Header End*/
/*Slider Information*/
#main-slider{background: #775a40; display: inline-block;}
.banner-description {
    /* border: 1px solid #6c6c6c; */
    margin: 28px 0px 0 0;
    padding: 14px 0px 0;
    text-align: center;
    background: #faf0cd;
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0 0 5px #2c2c2c;
}
 .brand-logo{
    position: absolute;
    width: 133px;
    bottom: 22px;
    left: 11px;
}
.banner-description h4 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 0;
    font-weight: 600;
    background: #000;
    padding: 10px;
}
.banner-description img{width: 93%;}
.slider-strip .col-md-8, .slider-strip .col-md-4{padding: 0px;}
.banner-logo {
    margin: 10px 0 22px;
}
.banner-logo img {
    width: auto;
}
.banner-description h3 {
    text-transform: capitalize;
    color: #fff;
    font-weight: 400;
    margin: 0 0 10px;
    padding: 0 51px;
    font-size: 17px;
    line-height: 25px;
}
.slider-description {
    
    /* display: inline-block; */
    width: 88%;
    margin: 0px auto;
    margin-top:13vh;
}
.banner-btn{width: 100%; margin-bottom: 15px}
.banner-description p {
    color: #fff;
    line-height: 18px;
    margin-bottom: 5px;
    font-weight: 500;
}
.banner-description h5 {
    color: #fff;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    margin: 12px 0 0px;
    font-size: 19px;
    text-transform: capitalize;
    background: #583d24;
    padding: 7px 10px 6px;
    display: inline-block;
    border-radius: 3px;
}
.apply-now {
    border: 1px solid #fff!important;
    color: #fff!important;
    font-weight: 400!important;
    font-size: 15px;
    letter-spacing: 2px!important;
}
.apply-now:hover{background: #fff; color: #000!important; font-weight: 600!important}
/*Slider Information*/

.heading_center_text{ text-align: center; }
.heading_center_text h2{position: relative; margin-bottom: 12px; display: inline-block;}
.heading_center_text p {
    margin: 15px 0 0;
    /* font-weight: 500; */
}
.strip{ width: 250px; margin: 0px auto; height: 3px; background: #000; }

/*Scheme Information*/
.awas_yojana_scheme{padding: 60px 0px;}
.yojana-scheme-details{display: inline-block; width: 100%; clear: both; margin: 35px 0 0;}
.scheme-info{text-align: center; position: relative; margin: 10px; position: relative;}
.owl-controls{display: block!important;}
.scheme-image{ width: 100%; border-bottom: 5px solid #0067b4; position: relative; }
.scheme-text {
    width: 100%;
    background: #fff;
    box-shadow: 0 0px 14px 0px rgb(0 0 0 / 25%);
    display: inline-block;
}
.scheme-location {
    background: #0579cb;
    width: 90%;
    margin: 0px auto;
    padding: 9px 0;
    margin-top: -18px;
    position: relative;
}
.scheme-location span{color: #fff; font-size: 15px; color: #fff; text-transform: uppercase; letter-spacing: 2px;}
.project-scheme-name{margin-top: 10px; display: inline-block; width: 100%;}
.project-scheme-price{font-weight: 600; margin: 3px 0; color: #1b926f; font-size: 13px;}
.project-scheme-price span { color: #333;
   
}
a:focus{outline: none; text-decoration: none;}
.project-scheme-price i{color:#1b926f;}
.scheme-button {
    width: 100%;
    margin: 15px 0 20px;
    display: inline-block;
    text-align: center;
    margin: 15px 0 0;
}
.btns {
   
    padding: 14px 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    color: #000;
    font-weight: 600;
    font-size: 16px;
}
.btns:hover{text-decoration: none;}
.know-btn {
  /*  border: 1px solid #0162b6;*/
    color: #fff;
    background: #0162b6;
}
.scheme-button a:focus{color: #fff}
.know-btn:hover{background:#000; color: #fff;}
.download-btn{border:1px solid #0579cb; color: #0579cb;}
.download-btn:hover{background: #0579cb; color: #fff; font-weight: 400}

/*Awas Yojana Step*/
.awas_yojana_steps{ width: 100%; clear: both; background: #e5e5e5; padding: 70px 0px; }
.step-infos{width: 100%; margin: 50px 0px;}
.step-infos p{font-size: 14px;}
.step-name{width: 100%; clear: both;}
.text-right{text-align: right;}
.step-infos img{width: auto;}
.step-name h5{font-size: 16px; text-transform: capitalize;}
.heading_1 h3 {
    color: #1b926f;
    display: inline-block;
   margin: 0px;
    font-size: 28px;
}
.icon-step-left{float: right; height: 90px; margin-left: 10px;}
.icon-step-rights{float: left; height: 90px; margin-right: 10px;}
.left-steps .heading_1 h3{margin:35px 0 0;}
.right-steps .heading_1 h3{margin: 35px 0 0;}
.text-left{text-align: left;}

.step2 .heading_1 h3 { color: #de5610;}
.step3 .heading_1 h3 { color: #0c7bcb; }
.step4 .heading_1 h3 { color: #cb052a; }
.owl-controls .owl-page {
    cursor: pointer;
    background: #636161;
    width: 20px;
    display: inline-block;
    height: 5px;
    margin: 4px;
    border-radius: 0;
}
.owl-pagination .active {
    background: #fff!important;
}
.slider .owl-carousel .owl-controls {
    position: absolute;
   top: auto; 
  left: auto; 
  right: auto; 
    width: 100%;
    text-align: center;
    bottom: 0px;
}
.step_row{width: 100%; margin: 35px 0 0; clear: both; display: inline-block;}
.circle-slider{display: none; position: absolute; top: 17px; left: 17px;}
.circle-strip{width: 500px; height: 500px; position: relative; padding: 20px; border-radius: 50%; border: 2px dotted #1b9370; margin: 0px auto; margin-top:15px; background: #fff; }
/*Get In Touch*/
.footer-row {
    width: 100%;
    clear: both;
    background: #eee;
    padding: 20px 0px 0;
}
.get-in-touch{clear: both; width: 100%;}
.enquiry-form{ box-shadow: 0 0px 14px 0px rgb(0 0 0 / 25%);    transition: transform 0.28s ease-in-out, -webkit-transform 0.28s ease-in-out; margin: 40px 0 40px 0; display: inline-block; padding: 20px 35px 35px; border-radius: 5px; background: #fff;}
.enquiry-form:hover{box-shadow: 0 0px 28px 0px rgb(0 0 0 / 25%)}
.form-radio,
.form-group {
  position: relative;
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}
.center{width: 100%; text-align: center;}
.enquiry-form input[type="submit"]{
 	border: 1px solid #000;
   
    color: #000;
   text-transform: uppercase; letter-spacing: 2px;
    font-size: 18px;
    font-weight: 400;
    margin-top: 20px;
    padding: 10px 33px;
    display: inline-block;
    border-radius: 0px;
  
}
.enquiry-form input[type="submit"]:hover{background: #000; color: #fff;}
.form-inline > .form-group,
.form-inline > .btn {
  display: inline-block;
  margin-bottom: 0;
}

.form-help {
  margin-top: 0.125rem;
  margin-left: 0.125rem;
  color: #b3b3b3;
  font-size: 0.8rem;
}
.checkbox .form-help, .form-radio .form-help, .form-group .form-help {
  position: absolute;
  width: 100%;
}
.checkbox .form-help {
  position: relative;
  margin-bottom: 1rem;
}
.form-radio .form-help {
  padding-top: 0.25rem;
  margin-top: -1rem;
}


.form-group textarea {
  resize: none;
}
.form-group select {
  width: 100%;
  font-size: 1rem;
  height: 1.6rem;
  padding: 0.125rem 0.125rem 0.0625rem;
  background: none;
  border: none;
  line-height: 1.6;
  box-shadow: none;
}
.form-group .control-label {
    position: absolute;
    top: 5px;
    pointer-events: none;
    padding-left: 0.125rem;
    z-index: 1;
    color: #333;
    font-size: 12px;
    font-weight: normal;
    -webkit-transition: all 0.28s ease;
    transition: all 0.28s ease;
}
.form-group .bar {
  position: relative;
  border-bottom: 0.0625rem solid #333;
  display: block;
}
.form-group .bar::before {
    content: '';
    height: 1px;
    width: 0;
    left: 50%;
    bottom: -1px;
    position: absolute;
    background: #f00;
    -webkit-transition: left 0.28s ease, width 0.28s ease;
    transition: left 0.28s ease, width 0.28s ease;
    z-index: 2;
}
.form-group input, .form-group textarea {
    display: block;
    background: none;
    padding: 5px 0;
    font-size: 12px;
    border-width: 0;
    border-color: transparent;
    line-height: 1.9;
    width: 100%;
    color: transparent;
    -webkit-transition: all 0.28s ease;
    transition: all 0.28s ease;
    box-shadow: none;
}
.form-group input[type="file"] {
  line-height: 1;
}
.form-group input[type="file"] ~ .bar {
  display: none;
}
.form-group select,
.form-group input:focus,
.form-group input:valid,
.form-group input.form-file,
.form-group input.has-value,
.form-group textarea:focus,
.form-group textarea:valid,
.form-group textarea.form-file,
.form-group textarea.has-value {
  color: #333;
}
.form-group select ~ .control-label, .form-group input:focus ~ .control-label, .form-group input:valid ~ .control-label, .form-group input.form-file ~ .control-label, .form-group input.has-value ~ .control-label, .form-group textarea:focus ~ .control-label, .form-group textarea:valid ~ .control-label, .form-group textarea.form-file ~ .control-label, .form-group textarea.has-value ~ .control-label {
    font-size: 11px;
    color: gray;
    top: -25px;
    left: 0;
}
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
}
.form-group select:focus ~ .control-label,
.form-group input:focus ~ .control-label,
.form-group textarea:focus ~ .control-label {
  color: #f00;
}
.form-group select:focus ~ .bar::before,
.form-group input:focus ~ .bar::before,
.form-group textarea:focus ~ .bar::before {
  width: 100%;
  left: 0;
}
/*Get In Touch*/
.disclaimer{width: 100%; clear: both; text-align: center;}
.disclaimer p{font-size: 12px;}
.copyrights{text-align: center; padding: 30px 0px; clear: both;}
.copyrights p{font-weight: 600;}
.footer-bg-bottom{background:url(../imageslan/footer-bg.png) repeat-x; width: 100%; height: 70px;}
.f-socail ul li{display: inline-block;}
.f-socail ul li a.fa {
  padding: 11px 0;
  font-size: 18px; border-radius: 50%;
  width: 40px; height: 40px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

.f-socail ul li a.fa:hover {
    opacity: 0.9; color: #fff;
}
.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-twitter {
  background: #55ACEE;
  color: white;
}

.fa-google {
  background: #dd4b39;
  color: white;
}
.scroll_top {
    background: #fff;
    color: #000;
    width: 40px;
    position: fixed;
    bottom: 26px;
    border-radius: 50%; display: none;
    right: 10px;
    height: 40px;
    text-align: center;
    padding: 2px;
    cursor: pointer;
    font-size: 32px;
    box-shadow: 0 0px 14px 0px rgb(0 0 0 / 25%);
}
.fa-linkedin {
  background: #007bb5;
  color: white;
}
.mobile-show{display: none;}
.step-infos{text-align: center; min-height: 230px; box-shadow: 0 0 5px #d0cece; margin: 20px 0px; background: #fff; padding: 15px; border-radius: 10px;}
.icon-step-rights{float: none; height: auto;}
.heading_1 h3{margin: 10px 0px!important; font-size: 20px!important}

.img_tag {
    text-align: right;
    color: #fff;
    z-index: 99;
    font-size: 11px;
    letter-spacing: 1px;
    position: absolute;
    right: 32px;
    bottom: 5px;
    width: 100%;
}
.slider .owl-controls{display:none!important;}
.awas_yojana_steps .scheme-button{text-align:center!important}


.barcode-search {
    text-align: center;
 border: 1px solid #066eb7;
      padding: 0 0px 30px;
    width: 400px;
    margin: 0px auto;
}

.barcode-heading{background:#066eb7; margin-bottom:30px; color:#fff; padding:15px;}
.barcode-heading h4 {
    margin: 0px;
    text-transform: capitalize;
    line-height: 25px;
    font-weight: 400;
    font-size: 18px;
}
.barcode-img {
    width: 130px;
    border: 1px solid #066eb7;
    display: inline-block;
    box-shadow: 0 0 14px #ddd;
    background: #fff;
}
.goog-te-gadget-simple{width:170px!important}
.text-infor-slider{
    text-align: center;
    margin: 24px 0 0;
}
.text-infor-slider p {
    margin: 0px;
    color: #fff;
    font-size: 16px;
    line-height: 26px;
}