html{
    scroll-behavior: smooth;
}
#home_bg{
  background-image: url('static/img/hero-bg.png');
}
#nav{
    z-index: 50;
    width: 100%;
    display: flex;
    flex-wrap: wrap;  
}
#nav_a:after{
  content: "";
  position: absolute;
  background-color: blue;
  height: 3px;
  width: 0;
  left: 0;
  bottom: 100px;
}
#nav_a:hover::after{
  width: 100%;
}
#img_nav{
  width: 48px;
  height: 45px;
  padding: 0.5rem;
  border-radius: 9999px; 
}
.btn-login i{
  transition: 0.5s;
}
.btn-login:hover i{
  transform: translateX(5px);
}
#toggle{
  overflow: hidden;
  transition: 0.5s;
}
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
}
#Intro{
    margin-left: 0%;
    margin-right: 0%;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
    display: flex;
    
    align-items: center;
  }
#tick_img{
  display: inline-block;
}

#Intro_child{
   flex-grow: 1;
   padding-right: 6rem; 
   padding-left: 2.5rem;
}
#Intro_head{
    margin-top: 20px;
    margin-bottom: 2.5rem;
    display: inline-block;
    margin-bottom: 1rem;
    color: #1E3A8A;
    font-size: 50px;
    font-weight: bolder;
    /* font-display:inherit; */
}
.btn-get-started i{
  transition: 0.3s;
}
.btn-get-started:hover i{
  transform: translateY(5px);
}


@media (max-width: 320px){
  #Intro_head{
    font-size: 10px;
  }
}
@media (max-width: 480px){
  #Intro_head{
    font-size: 27px;
  }
}
@media (max-width: 640px){
  #Intro_head{
    font-size: 35px;
  }
}

@media (max-width: 780px){
  #Intro_head{
    font-size: 25px;
  }

}
@media (min-width: 1440px){
  #Intro_head{
    font-size: 55px;
  }
}
@media (min-width: 1440px){
  #hero-img{
    margin-left: 150px;
  }
}
@media (min-width: 1440px){
  #Intro{
    margin-top: 48px;
    margin-left: 55px;
  }
}

#br_head{
    display: inline-block;
  }
#Intr_paragraph{
    line-height: 1.625;
}
#Pan{
  background-color: #EC4899;
}
#Voter_id{
  background-color: #10B981;
}
#DL{
  background-color: #3B82F6;
}
#Bank_account{
  background-color: #DC2626;
}
#Electricity_bill{
  background-color: rgb(141, 13, 141);
}
#GST{
  background-color:	rgb(106,90,205);
}
#Registration_certificate{
  background-color: rgb(255,165,0);
}
#LPG-cylinder{
  background-color: rgb(180,0,0);
}
#LPG-pipeline{
  background-color: rgb(255,215,0);
}
#Distance-triangulation{
  background-color: rgb(112,128,144);
}
#Passport{
  background-color: rgb(128,0,0);
}
#Aadhar{
  background-color: rgb(	255,140,0);
}
#DIN-details{
  background-color: rgb(50,205,50);
}
#MSME{
  background-color: rgb(0,0,205);
}
#CIN-details{
  background-color: rgb(128,0,128);
}
#Water-bill{
  background-color: rgb(0,206,209);
}
figure{
  overflow: hidden;
  margin: 0 0;
}
.image #zoom-In figure img{
  transform: scale(1);
  transition: 0.3s ease-in-out;
}
.image #zoom-In figure:hover img{
  transform: scale(0.90);
}
.footer{
  width: 100%;
  position: fixed;
  background-color: white;
  padding: 10px 0;
}
.footer{
  bottom: 0;
}
.message{
  margin-left: 350px;
  font-size: 14px;
  color: red;
}
.message{
  overflow: hidden;
  white-space: nowrap;
  animation: 
    typing 20s forwards;
  width: 0;
}

@keyframes typing{
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.my_button {
  position: relative;
  overflow: hidden;
  transition: background 400ms;
  color: #fff;
  background-color: #6200ee;
  padding: 0.2rem 1rem;
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  outline: 0;
  border: 0;
  border-radius: 0.25rem;
  cursor: pointer;
  box-shadow: 5px 5px 5px grey;
}

.my_button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.my_button span:after {
  content: '\00bb';
  position: relative;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.my_button:hover span {
  padding-right: 1rem;
  padding-left: 0.5rem;
}

.my_button:hover span:after {
  opacity: 1;
  right: 0;
}

.my_button:active {
  transform: translateY(4px);
  box-shadow: 0px 1px 5px grey;
}

.my_button span.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 600ms linear;
  background-color: rgba(255, 255, 255, 0.7);
}

@keyframes ripple {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(4);
    opacity: 0;
  }
}