/*Developed by Sarvesh M. Raje*/
/*Original Colour*/
/*:root {
  --main-background: #666400;
  --light-background: #D6E47E;
  --table-dark:#800000;
  --heading-color:#000066;
  --light-text:#fff;
  --dark-text:#000;
}*/

/*Pallet colur*/

.footer .footer-widget .footer-desc {
        line-height: 30px;
}

.footer .footer-widget h4 {
        margin-bottom: 35px;
        font-weight: 500;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
        .footer .footer-widget h4 {
                font-size: 22px;
        }
}

.footer .footer-widget ul.footer-links li a {
        color: #6a7c92;
        display: block;
        line-height: 35px;
        transition: all 0.3s;
}

.footer .footer-widget ul.footer-links li a:hover {
        color: #3a3784;
}

.footer .footer-widget ul {
        padding-left: 20px;
}

.footer .footer-widget ul li {
        list-style: disc;
}

.footer .footer-widget .footer-contact li p {
        line-height: 35px;
}
.cetBtn {
        display: inline-block;
        font-weight: 200;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        user-select: none;
        padding: 8px 16px;
        font-size: 16px;
        border-radius: 50px;
        color: #fff;
        cursor: pointer;
        z-index: 5;
        transition: all 0.4s ease-in-out;
        border: none;
        background: linear-gradient(to left, #3a3784 0%, #e22328 50.39%, #3a3784 100%);
        background-size: 200% auto;
        overflow: hidden;
}

.cetBtn:hover, .cetBtn:focus {
    background-position: right center;
    color: #fff;
    box-shadow: 0px 0px 30px rgb(46 87 217 / 45%);
}

:root {
  --main-background: #666400;
  --light-background: #F8F2CB;
  --table-dark:#005B49;
  --heading-color:#007470;
  --light-text:#fff;
  --dark-text:#000;
}

* {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}



body {
  background: var(--light-background);
	-webkit-overflow-scrolling: touch;
	scrollbar-color: var(--main-background);
	scroll-behavior: smooth;
	scrollbar-width: thin;
	background: var(--light-background);  
	font-weight: 500;
	color: #4f4f4f;
}


a,a:hover{
  color:  var(--heading-color);
  text-decoration: underline;
}

/*naviagation*/
#navbar-container {
  padding-top: 20px;
  display: flex;
  justify-content: center;
}

.navbar-toggler{margin:0px auto;}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: #fff;;
}

.nav-item {
  margin: 5px 5px;
}

.navbar-light .navbar-nav .nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.navbar-expand-md .navbar-nav {
  text-align: center;
  display: flex;
  justify-content: center;
}

#header {
  background: var(--main-background);
  color: #fff;
}

#header-container {
  padding: 20px;
}

#logo-container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#logo {
  max-width: 100%;
  max-height: 100px;
  margin: 0px auto;
}

#heading-container{
  display: flex;
  text-align: center;
  flex-direction: column;
}

#heading-container a, #heading-container a:hover{
  color:#fff;
  text-decoration: underline;
}


#main-heading { 
  padding: 20px 0px;
  font-size: 2rem;
}


/*Content Section*/
#main-section {
  padding: 50px;
  min-height: 600px;
}

#main-content h3.section-title{
  font-size: 2rem;
  font-weight: 600;
  color:var(--heading-color);
  margin-bottom: 10px;
}

#main-content h5.section-sub-title{
  font-size: 1.5rem;
  font-weight: 600;
  color:var(--heading-color);
  margin-bottom: 10px;
}


#main-content p{
  padding: -2px 0px;
  font-size: 1rem;
  margin-bottom: 1px;
}

table{
  text-align: center;
}
table thead {
  background-color: var(--table-dark);
  color: var(--light-text);
}
table th{
  border: 2px solid var(--table-dark)!important;
  border-right: 2px solid var(--light-text)!important;
}
table td,table th:last-child{
  border: 2px solid var(--table-dark)!important;
}

.button{
  margin: 5px 0px;
  display: inline-block;
  background: var(--table-dark);
  border: 1px solid var(--table-dark)!important ;  
  border-radius: 5px;
  color: var(--light-text);
  text-decoration: none;
  padding:10px;
  margin:20px;
  font-weight: 600;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  
  transition: all ease 0.5s;
}
.button:hover{
  background: var(--light-text);
  color:var(--table-dark)!important;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  text-decoration: none;
}

#sidebar{
  padding: 10px;
}

.sidebar-exam-holder{
  background: var(--main-background);
  border-radius: 5px;
  padding: 10px;
  text-align: center;  
  color: var(--light-text);
  margin-bottom: 30px;
}

.sidebar-exam-holder a{
  color:var(--light-text);  
  text-decoration: underline;
  transition: all ease 0.3s;
}
.sidebar-exam-holder a:hover{
  color:var(--light-text);
  text-decoration: none;
}

footer {
  padding: 20px;
  background: var(--main-background);
  color: #fff;
  align-content: center;
}
#footer-links{
  display: block;
  max-width: 700px;
  text-align: center;
  margin: 0px auto;
}
#footer-links a{
  color:#fff;  
  text-decoration: none;
}
footer ul{
  list-style: none;  
}
footer li{
  display: inline-block;
  padding: 0px 10px;
}