  main > .contianer {
    padding: 0 15px 0;
  }
  .main {
	  background-color: #F0F3F4;
  }
  
  .btn-custom {
	  z-index: 0 !important;
  }
  
  
.background-gradient {
   background: radial-gradient(circle, #ffffff, #f5f7fa, #c3cfe2);
  /*display: flex;*/
}


  .submitBtn {
  width: 300px;
  height: 60px;
  border-radius: 40px;
  border: 2px solid #065af3;
	color: #065af3;
	background: white;
  
  outline: none;
  cursor: pointer;
}
.submitBtn:hover {
	border:none; 
  background: linear-gradient(93deg, #53b2fe, #065af3);
  color:white;

}
.submitContainer.active .submitBtn {
   animation: animate-line 0.3s ease-in, spinner 0.5s infinite;
   animation-delay: 0.1s, 0.5s;
  -webkit-animation-fill-mode: forwards;
}

.submitContainer.active .text {
  display: none;
  font-size: 20px;
}

@keyframes animate-line {
	0% {
    width: 300px;
  }
  
  100% {
    width: 60px;
    border-bottom-color: transparent;
    border-right-color: transparent;
  }

}

@keyframes spinner {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
  .bg-custom-info {background-color:#d4d4d4;}
  
  .custombackgroundimage {
	  
	  background: url('../images/banner.jpg') no-repeat center center fixed, linear-gradient(#bdc3c7, #2c3e50);
  	  -webkit-background-size: cover;
  	  -moz-background-size: cover;
  	  -o-background-size: cover;
  	  background-size: cover;
  	  position: relative;
  }
  
 
  .custombackgroundimage:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}


  .customnavbar .nav-link{color:#000000;}
  
 .accordion-body {color:#000;}

 .accordion-button {font-size: 18px;}
  
  .custombread{background-color: #1434A4 !important;} /*#4682B4 blue   #1cb381 green*/
  @media screen and (max-width: 768px) {
  
  body{  padding-top: 55px !important;}
}
  @media screen and (min-width: 768px) {
  
  body{  padding-top: 87px !important;}
}
  
  
  body {


  font-size: 1.1rem;
   font-family: 'Mukta', sans-serif;
  color:#000 !important;
}

.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}


.animate-charcter
		{
		   text-transform: uppercase;
		  background-image: linear-gradient(
		    -225deg,
		    #ff0000 0%,
		    #44107a 29%,
		    #ff0000 67%,
		    #f8ff00 100%
		  );
		  background-size: auto auto;
		  background-clip: border-box;
		  background-size: 200% auto;
		  color: #fff;
		  background-clip: text;
		  text-fill-color: transparent;
		  -webkit-background-clip: text;
		  -webkit-text-fill-color: transparent;
		  animation: textclip 1s linear infinite;
		  display: inline-block;
		      font-size: 190px;
		}
		@keyframes textclip {
		  to {
		    background-position: 200% center;
		  }
	}



/*----| Custom button CSS -- Gradient animation |-----*/
.gradient-btn {
  flex: 1 1 auto;
  padding: 30px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.2s;
  background-size: 200% auto;
  color: white;
  text-shadow: 0px 0px 10px rgba(0,0,0,0.2);
  box-shadow: 0 0 0px #eee;
  border: none;
  border-radius: 10px;
 }
.gradient-btn:hover {
  background-position: right center; /* change the direction of the change here */
}
.gradient-btn-green {
  background-image:  linear-gradient(to right, #0ba360, #199e34, #30dd8a, #199e34);
  box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75);
}
.gradient-btn-blue {
  background-image:  linear-gradient(to right, #0ba360, #199e34, #30dd8a, #199e34);
  box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75);
}






/* ------| Custom button CSS -- with border animation |------*/
.custom-btn {
  width: 130px;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
}

/* 3 */
.btn-3 {
  background: rgb(0,172,238);
background: linear-gradient(0deg, rgba(0,172,238,1) 0%, rgba(2,126,251,1) 100%);
  width: 130px;
  height: 40px;
  line-height: 42px;
  padding: 0;
  border: none;
  
}
.btn-3 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.btn-3:before,
.btn-3:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
   background: rgba(2,126,251,1);
  transition: all 0.3s ease;
}
.btn-3:before {
  height: 0%;
  width: 2px;
}
.btn-3:after {
  width: 0%;
  height: 2px;
}
.btn-3:hover{
   background: transparent;
  box-shadow: none;
}
.btn-3:hover:before {
  height: 100%;
}
.btn-3:hover:after {
  width: 100%;
}
.btn-3 span:hover{
   color: rgba(2,126,251,1);
}
.btn-3 span:before,
.btn-3 span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
   background: rgba(2,126,251,1);
  transition: all 0.3s ease;
}
.btn-3 span:before {
  width: 2px;
  height: 0%;
}
.btn-3 span:after {
  width: 0%;
  height: 2px;
}
.btn-3 span:hover:before {
  height: 100%;
}
.btn-3 span:hover:after {
  width: 100%;
}


 


/*  xxx-----xxx  */

.form-label  {font-weight:bold; }
.breadcrumb {
    padding: 0px;
	background: #D4D4D4;
	list-style: none; 
	overflow: hidden;
    margin-bottom:0;
}
/* 

.breadcrumb.breadcrumb-custom .breadcrumb-item {

    background: #dbe3e6;
    padding: 0.56rem 10px;
    color: #000;
    display: inline-block;
    vertical-align: top;
}

.breadcrumb.breadcrumb-custom .breadcrumb-item:before {
    content: "";
}

.breadcrumb.breadcrumb-custom .breadcrumb-item a {
    position: relative;
    color: inherit;
    border: 1px solid #dbe3e6;
    display: inline-block;
    vertical-align: top;
}

.breadcrumb.breadcrumb-custom .breadcrumb-item a:before {
    right: -22px;
    z-index: 3;
    border-left-color: #dbe3e6;
    border-left-style: solid;
    border-left-width: 12px;
}

.breadcrumb.breadcrumb-custom .breadcrumb-item a:after {
    border-top: 21px solid transparent;
    border-bottom: 22px solid transparent;
    border-left: 12px solid #ffffff;
    top: -9px;
    right: -25px;
}

.breadcrumb.breadcrumb-custom .breadcrumb-item:last-child {
    background: transparent;
}

.breadcrumb.breadcrumb-custom .breadcrumb-item:before {
    content: "";
}
.breadcrumb.breadcrumb-custom .breadcrumb-item a:before, .breadcrumb.breadcrumb-custom .breadcrumb-item a:after {
    position: absolute;
    top: -9px;
    width: 0;
    height: 0;
    content: "";
    border-top: 21px solid transparent;
    border-bottom: 21px solid transparent;
}

a:link{
    
    text-decoration:none;
}
.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: #6c757d;
    content: "/";
}


.breadcrumb {
    border: 1px solid #f3f3f3;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
  
    margin-bottom: 0;
  
 
}
 */

 .customnavbar_va{background-color: #fafafa !important; color: #000000 !important;}
 .custom_off_va {background-color: #fafafa !important; color: #000000 !important;}
 .breadcrumb>li+li:before {
	padding: 0;
}

.nav-link:hover {font-weight: bolder;}
.marq {background-color:#1434A4!important;}
.breadcrumb li { 
	float: left;  border-right:1px solid #fafafa; 
} 

.breadcrumb-custom li a.link-pageactive {
                
	background: #ffc107 ;  
	color:#1434A4 ;
	font-weight: bolder;
}
.english.active{
	color:#fafafa;
	font-weight: bolder;
	background-color:#1434A4;
	border-radius: 10px;
}
.hindi.active{
	color:#fafafa;
	font-weight: bolder;
	background-color:#1434A4;
	border-radius: 10px;
}
.accordion{
	--bs-accordion-btn-bg:white ;
	--bs-accordion-color: white;
           
}

.onenumber.active{
	
	border-bottom:5px solid orange !important;
}
.twonumber.active{
	
	border-bottom:5px solid orange !important;
}
.threenumber.active{
	
	border-bottom:5px solid orange !important;
}
.fournumber.active{
	
	border-bottom:5px solid orange !important;
}
.fivenumber.active{
	
	border-bottom:5px solid orange !important;
}
.sixnumber.active{
	
	border-bottom:5px solid orange !important;
}
.sevennumber.active{
	border-bottom:5px solid orange !important;
}
.eightnumber.active {
	border-bottom:5px solid orange !important;
}
.ninenumber.active {
	border-bottom:5px solid orange !important;
}
.tennumber.active {
	border-bottom:5px solid orange !important;
}
.elevennumber.active {
	border-bottom:5px solid orange !important;
}

.form-check-input {
	border: 1px solid blue;
}

#displayage:focus {
	outline: #fafafa;
	border: none;
	
}
#exServPeriodValueDDMMYY:focus {
	outline: #fafafa;
	border: none;
	
}

.breadcrumb li a {
	color: white;
	text-decoration: none; 
	padding: 7px;
	position: relative; 
	display: block;
	float: left;
}
/*.breadcrumb li a:after { 
	content: " "; 
	display: block; 
	width: 0; 
	height: 0;
	border-top: 50px solid transparent;           Go big on the size, and let overflow hide
	border-bottom: 50px solid transparent;
	border-left: 30px solid hsla(0, 0%, 83%, 1);
	position: absolute;
	top: 50%;
	margin-top: -50px; 
	left: 100%;
	z-index: 2; 
}*/	
/*.breadcrumb li a:before { 
	content: " "; 
	display: block; 
	width: 0; 
	height: 0;
	border-top: 50px solid transparent;           Go big on the size, and let overflow hide
	border-bottom: 50px solid transparent;
	border-left: 30px solid white;
	position: absolute;
	top: 50%;
	margin-top: -50px; 
	margin-left: 1px;
	left: 100%;
	z-index: 1; 
}	 
*/

.breadcrumb-item + .breadcrumb-item {padding-left:0;}
.breadcrumb li:first-child a {
	padding-right: 10px;
}
.breadcrumb li a:hover { background: #ffc107; color:#2c3e36; }



.breadcrumb-item + .breadcrumb-item::before {content:none}
label.error {
  color: red;

  display: block;
  margin-top: 5px;
}

input.error,
textarea.error,
select.error {
  border: 1px solid red;

  color: red;
}




#loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: none;
  
}


/* Transparent Overlay */
#loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
 
}

/* :not(:required) hides these rules from IE9 and below */
#loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

#loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}


@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


@media print {
	@page {
	size: A4;
	margin: 5mm auto 5mm auto; 
	-moz-page-size: A4;
	-webkit-print-color-adjust: exact;
	  
} 


.container {
	border: none ! important;
}

.shadow {
	box-shadow: none ! important;
}
 
}
















