body{
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    
}
*{
  margin: 0px;
  padding: 0px;
}

.container {
  width: 100%;
 
  margin-left: 0 auto;
  margin-right: 0 auto;
  padding: 0 0 0 0;
}
hr{
  margin: 0 !important;
}
li{
    list-style-type: none;
}
/* section{
    padding-top: 1rem;
    padding-bottom: 1rem;
} */

p{
    margin: 0 !important;
}



/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}








.top_header{
  background: linear-gradient(147.6deg, #0087D2 35.89%, #0087D2 47.56%, rgba(77, 172, 7, 0) 47.56%);
  height: 35px;
  display: flex;
  padding-right: 10px;
  align-items: center;
  justify-content: space-between;
}

.top_header p{
  font-style: normal;
  font-weight: 400;
  /* max-width: 700px; */
  font-size: 15px;
  line-height: 33px;
  color: #FFFFFF;
  padding-left: 10px;
  display: flex;
  /* align-items: center; */
}

/* .top_header button {
  align-items: center;
} */
.button_login {
  background-color: #0087D2; /* Green */
  border: none;
  color: white;
  text-decoration: none;
  font-size: 16px;
  width: 117px;
  height: 30px;
  float: right;
  border-radius: 20px;
}

.mobile{
  margin-right: 20px;
  text-decoration: none;
}
.mobile span{
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  color: #000000;
}
.mobile i{
  align-items: center;
  display: flex;
  color: #0087D2;
}


.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.popup i{
  align-items: center;
  /* display: flex; */
  margin-left: 5px;
}



.dropdown-item{
  border-bottom: 1px solid rgb(210, 210, 210) !important;
  color: #8d9194 !important;
}
.dropdown-item :hover{
  color: #000000 !important;
  transition: 0.5s;
}

.dropdown-item .number {
  padding: 2px 6px;
  font-size: 11px;
  background: #fd7e14;
  /* position: absolute; */
  /* top: 50%; */
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
  border-radius: 4px;
  color: #fff; }




















/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: auto;
  background-color: #fff;
  color: #fff;
  /* text-align: center; */
  border-radius: 2px;
  border: 1px solid #555;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  /* bottom: -125%; */
  /* left: 50%; */
  right: 0%;
  /* margin-left: -80px; */
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}




@media screen and (max-width: 1024px) {
  .top_header p{
    font-size: 13px !important;
  }
}

@media screen and (max-width: 600px) {
  .top_header p{
    font-size: 12px !important;
    line-height: 12px !important;
    max-width: 200px;
  }
  
  .mobile{
    margin-right: 5px !important;
  }

  .mobile span {
    display: flex;
    align-items: center;
    font-size: 10px !important;
    line-height: 10px !important;
  }
}


































/* Style the navbar with a grey background and some padding */
.navbar {
  overflow: hidden;
  background: #dfdddd;
  padding: 20px 10px;
  height: auto;
}

/* Style the navbar links */
.navbar a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the navbar to increase when the font gets bigger */
.navbar a.logo {
  font-size: 25px;
  font-weight: bold;
}

/* Change the background color on mouse-over */
.navbar a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active/current link*/
.navbar a.active {
  background-color: dodgerblue;
  color: white;
}

/* Float the link section to the right */
.navbar-right {
  float: right;
  display: flex;
  gap: 40px;
  padding-right: 10px;
}
.contact_icon i{
  align-items: center;
  display: flex;
  font-size: 28px;
  /* width: 20px; */
  margin-right: 10px;
  color: #0087D2;
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 600px) {
  /* .navbar a {
    float: none;
    display: block;
    text-align: left;
  } */
  .navbar-right {
    float: none;
  }
  .header{
    height: 75px !important;
  }
  .contact_icon p{
    line-height: 10px;
    font-size: 8px !important;
  }
  .navbar-right {
    float: right;
    display: flex;
    gap: 20px;
    padding-right: 3px !important;
  }
  .contact_icon i{
    align-items: center;
    display: flex;
    font-size: 7px !important;
  }
  .logo{
   max-width: 30% !important;
}
.fmdss_heading p{ 
  font-size: 12px !important;
}
}
.logo{
  max-width: 20%;
}

.row{
  margin: 4px 10px !important;
}

.header{
  height: 95px;
}













.col-lg-12{background-color:#eee; padding:10px;}
button:focus{
  outline:none!important;
}
#chcp_font_size button {
  border: none;
  background-color:transparent;
  /*background-color:#eee;*/
  text-shadow: none;
  /*+box-shadow: none;*/
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding:0px 5px;
  margin:0px;
  
}
#chcp_font_size button:hover{
  color:#FF5100;
}
#btn-decrease {
  font-size:12px;
}
#btn-orig {
  font-size:14px;
}
#btn-increase {
  font-size:12px;
}













/* .header{
    margin: 4px 10px !important;
    justify-content: space-between;
} */
.header{
  display: flex;
  margin: 4px 10px !important;
  justify-content: space-between;
}
.aaryanak{
  background-color: #E6F6FF;
  overflow: hidden;
}

.minister img{
  width: 100% ;
  max-width: 70px;
}
.minister2 img{
  /* float: right; */
  margin-left: 50px;
  width: 100% ;
  max-width: 70px;
  /* display: grid; */
}


.minister p, .minister2 p{
  /* font-family: 'Courier New', Courier, monospace; */
  font-style: normal;
font-weight: 600;
font-size: 11px;
line-height: 13px;
/* or 100% */
/* display: flex; */
align-items: center;
letter-spacing: 0.8px;
color: #000000;

}

.aaranyak_logo{
    /* font-family: 'Sans Serif Collection'; */
    /* margin-top: 20px; */
    font-style: normal;
    font-weight: 400;
    font-size: 4vw;
    line-height: 100px;
    /* or 59% */
    /* display: flex; */
    align-items: center;
    text-align: center;
    letter-spacing: 0.8px;
    text-transform: uppercase;

    color: #C4006A;
}

.fmdss_heading p{
  font-style: normal;
  font-weight: 400; 
  font-size: 20px;
  /* line-height: 63px; */
  /* identical to box height, or 233% */
  align-items: center;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #000000;
}
















/* citizen Section */

/* @media screen and  (min-width:1600px) {
  .citizen_section{
    background: #E1F4FF;
    border: 2px solid #DCDCDC;
    border-radius: 10px;
  
}

.grid{
  width: 100%;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr)) !important;

}

.box1, .box2{
  height: 100%;
  max-width: 200px !important;
  border-radius: 10px;
}
.service_name_Y, .service_name_G {
  font-size: 18px !important;
}
.box1 a, .box2 a{
  font-size: 17px !important;
}
} */

.citizen_section{
    background: #E1F4FF;
    border: 2px solid #DCDCDC;
    border-radius: 10px;
    /* max-width: 1000px !important; */
    /* margin: 4px 10px !important; */
}
.citizen_section h2{
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 46px;
    line-height: 40px;
    /* identical to box height, or 87% */

    /* display: flex; */
    text-align: center;
    letter-spacing: 0.5px;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    color: #000000;
}
.grid{
    /* width: 100%;
    --grid-column-count: 4;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); */

    --grid-layout-gap: 20px;
    --grid-column-count:6;
    --grid-item--min-width: 150px; 
    --gap-count: calc(var(--grid-column-count) - 1);
    --total-gap-width: calc(var(--gap-count) * var(--grid-layout-gap));
    --grid-item--max-width: calc((100% - var(--total-gap-width)) / var(--grid-column-count));
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(max(var(--grid-item--min-width), var(--grid-item--max-width)), 1fr));
    grid-gap: var(--grid-layout-gap);
  }



.box1, .box2{
    height: 100%;
    /* max-width: 200px; */
    border-radius: 10px;
}

.service_name_Y, .service_name_G {
    font-family: 'Outfit';
    font-style: normal;
    margin-top: 5px !important;
    font-weight: 400;
    font-size: 17px;
    line-height: 19px;
    /* or 124% */
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    /* letter-spacing: 0.8px; */
    padding-left: 0px !important;
    color: #fff;
}

.box1 p, .box2 p{
    padding-left:10px;
}
.service_name_Y{
    background: #0087D2;
    border-radius: 8px;
    height: 50px;
    top: 12px;
}

.service_name_G{
    height: 50px;
    top: 472px;
    background: #0087D2;
    border-radius: 8px;
}

.box1{
    background: #E6F6FF;   
    filter: drop-shadow(0px 4px 18px rgba(0, 0, 0, 0.25));
}

.box2{
    background: #E6F6FF;
    filter: drop-shadow(0px 4px 18px rgba(0, 0, 0, 0.25));
}

.box1 a, .box2 a {
    font-family: 'outfit';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    letter-spacing: 0.8px;
    color: #525252;
    padding-top: 10px;
    cursor: pointer;
}

.info{
    padding-top: 20px !important;
    padding-right: 5px;
    padding-bottom: 5px;
    float: right;
    font-size: 18px !important;
}










.frquently_used{
  display: grid;
  justify-content: center;
}

.frquently_used h6{
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  display: flex;
  line-height: 29px;
  align-items: center;
  text-align: center;
  letter-spacing: -0.8px;
  color: #000000;

}

.frquently_used_links{
    align-items: center;
    display: flex;
    margin-left: 0px !important;
    /* justify-content: center; */
}


.frquently_used_links a{
  /* font-family: 'Roboto'; */
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 23px;
  /* display: flex; */
  /* text-align: center; */
  align-items: center;
  letter-spacing: -0.5px;
  color: #A70477;
  text-decoration: none;
}

.frquently_used img{
  max-width: 40px;
  float: right;
}



.frquently_links{
  box-sizing: border-box;

/* position: absolute; */
  width: 239px;
  height: 380px;
  /* left: 1143px;
  top: 448px; */

  background: #FFFFFF;
  border: 4px solid #0087D2;
  box-shadow: 0px 0px 38px rgba(0, 102, 51, 0.15);
  border-radius: 20px 20px 0px 20px;
}

hr{
  /* height: 1.24px;
  width: 113px; */
  width: 2px;
  background: linear-gradient(270deg, #EDEEED 0%, #006633 50%, #006633 100%);
/* transform: rotate(90deg); */
}













/* about section start */

@media screen and (max-width: 600px) {
    .about p{
      font-size: 15px !important;
      line-height: 18px !important;
    }
    .about_pointer{
      font-size: 13px !important;
      line-height: 17px !important;

    }
}

.about{
    padding-top: 1rem;
}

.about p{
    /* font-family: 'Outfit'; */
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 29px;
    /* or 121% */
    /* max-width: 80%; */
    display: flex;
	text-align: justify;
    /* align-items: center; */
    letter-spacing: 0.8px;
    color: #292929;
}

.fa-leaf{
    padding-right: 1.5rem;
}
ul{
	text-align: justify
}
.about_pointer{
    /* font-family: 'Outfit'; */
font-style: normal;
font-weight: 400;
font-size: 20px;
line-height: 29px;
/* or 121% */

display: flex;
align-items: center;
letter-spacing: 0.8px;

color: #00324E;
}

/* about section end  */




/* Department login start  */


.dept_login_box{
  width: 239px;
  height: 150px;
  background: #E9F7FF;
  box-shadow: 0px 4px 17px 2px rgba(0, 0, 0, 0.25);
}

.dept_green_box{
  padding: 80px 0 0 0;
	display: flex;
    justify-content: center;
}

.dept_login h4{
  /* font-family: 'Outfit'; */
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  color: #000000;
  padding-top: 10px;
}

.dept_login_btn button{
  /* font-family: 'Outfit'; */
  font-style: normal;
  font-weight: 600;
  font-size: 25px;
  line-height: 32px;
  /* identical to box height */
  width: 138px;
  height: 37px;
  color: #FFFFFF;
  background: #0087D2;
  border-radius: 22px 0px;
  border: #0087D2;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.dept_login_btn{
  display: flex;
  justify-content: center;
}

@media screen  and (max-width: 600px) {
  .dept_green_box{
    padding: 0px !important;
    justify-content: center;
    display: flex;
  }
  
}

/* Department login end  */



  
  
  


/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 600px) {
  .footer_links{
      display: block !important;
  }
}

.footer_links{
  display: flex;
  gap: 20px;
  text-decoration: none;
}
.footer_links a{
  text-decoration: none;
}

.visitor_box{
  width: 80px;
height: 16px;
border-radius: 5px;
border: none;
}

.footer_bottom{
  background-image: url(../Images/bottom_footer.png);
  justify-content: space-evenly;
  color: #9d9d9d;
}

.footer_bottom p{
  font-size: 15px;
}

.footer_bottom span{
  background-color: #fff;
  padding: 0 10px;
  border-radius: 6px;
}







  @media screen and (min-width: 1024px) {

    /* html,
    body {
        font-size: 24px;
    } */
}

@media screen and (max-width: 1024px) {

    /* html,
    body {
        font-size: 16px;
    } */
    /* .minister img{
      width: 70% ;
    } */
    
}

@media screen and (max-width: 600px) {

    html,
    body {
        font-size: 14px;
    }

    .minister img{
      width: 60% ;
    }

    .minister2 img{
      width: 50% ;
    }
    .minister p, .minister2 p{
      /* font-family: 'Courier New', Courier, monospace; */
      font-style: normal;
    font-weight: 600;
    font-size: 08px;
    line-height: 7px;
    align-items: center;
    letter-spacing: 0.8px;
  }
}