/* Global css */

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    width: 100%;
    height: 100%;
}

body {
    color: var(--font-body);
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    min-width: 360px;
    width: 100%;
}

button,
input[type="submit"],
input[type="search"],
a {
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

a {
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
    color: blue;
}

a:hover {
    text-decoration: none;
    outline: 0;
    color: #3C0008;
}

a:focus {
    outline: none !important;
    outline-offset: inherit !important;
    text-decoration: none !important;
}

button:focus {
    outline: none;
}

a,
img {
    border: none;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

label {
    font-weight: 400;
    font-size: 15px;
    line-height: normal;
    margin-bottom: 0;
}

/* dl,
ol,
ul {
    list-style-position: inside;
    list-style: none;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--font-primary);
    font-weight: 600;
}

p {
    display: block;
    margin: 0;
    padding: 0 0 15px;
    word-wrap: break-word;
    letter-spacing: .2px;
}

.btn-custom {
    height: 40px;
    padding: 0 15px;
    line-height: 38px;
    min-width: 140px;
    color: #fff;
    background: var(--primary);
    font-size: 14px;
    text-align: center;
    text-shadow: none;
    font-weight: 500;
    border: 1px solid var(--primary);
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.btn-custom:hover,
.btn-custom:focus {
    background: var(--brown);
    color: #fff;
    border-color: var(--brown);
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--brown) !important;
    color: #fff;
    border-color: var(--brown) !important;
}

.btn-primary-bordered {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-primary-bordered:hover,
.btn-primary-bordered:focus {
    background: var(--primary);
    color: #fff;
    border-color: var(--white);
}

.btn-white {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary);
}

.btn-white:hover,
.btn-white:focus {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
}

.btn-white-bordered {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-white-bordered:hover,
.btn-white-bordered:focus {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

hr {
    margin-top: 10px;
    margin-bottom: 10px;
}

.container {
    width: 90%;
    max-width: 1410px;
}

.paddT60 {
    padding-top: 60px;
}

.paddB60 {
    padding-bottom: 60px;
}

.paddTB60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.bg-primary {
    background-color: var(--bg-primary) !important;
}

.bg-secondary {
    background-color: var(--bg-secondary) !important;
}

.bg-secondary-light {
    background-color: var(--bg-secondary-light);
}


/* For Placeholder Color */

input::-webkit-input-placeholder {
    color: #666 !important;
    opacity: 1;
}

input:-moz-placeholder {
    color: #666 !important;
    opacity: 1;
}

input::-moz-placeholder {
    color: #666 !important;
    opacity: 1;
}

input:-ms-input-placeholder {
    color: #666 !important;
    opacity: 1;
}

textarea::-webkit-input-placeholder {
    color: #666 !important;
    opacity: 1;
}

textarea:-moz-placeholder {
    color: #666 !important;
    opacity: 1;
}

textarea::-moz-placeholder {
    color: #666 !important;
    opacity: 1;
}

textarea:-ms-input-placeholder {
    color: #666 !important;
    opacity: 1;
}


/* header */

.header-top {
    display: flex;
    background: var(--secondary);
    align-items: center;
}

.header-links {
    display: flex;
    align-items: center;
}

.header-links a {
    color: var(--primary);
    border-right: 1px solid;
    padding: 0 10px;
    line-height: 10px;
    display: inline-block;
}

.header-links a:hover {
    color: var(--black);
}

.header-links a:last-child {
    border: none;
    padding-right: 0;
}

.header-mode {
    display: flex;
    column-gap: 1px;
}

.header-mode a {
    background: var(--primary);
    display: inline-block;
    width: 35px;
    height: 30px;
    text-align: center;
    color: var(--secondary);
}

.header-mode a:hover {
    background: var(--black);
    color: var(--white);
}

.logo {
    padding: 15px 0;
    width: 25%;
}

.logo img {
    width: 100%;
    max-width: 453px;
}

.logo-sec-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-right {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 15px 0 15px 0;
}

.logo-tags {
    position: relative;
    top: 12px;
}

.logo-hindi-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.head-right-logoes {
    display: flex;
}

.head-right-logoes a {
    margin-left: 7px;
}

.head-right-logoes a img {
    border-radius: 5px;
    border: 1px solid #dddddd;
    max-height: 65px;
}

.logo-tags p {
    padding-bottom: 0;
    color: var(--primary);
    font-weight: 600;
}

.logo-tags p span {
    margin-right: 20px;
}

.main-navbar {
    background-color: var(--bg-primary);
}

.main-navbar .navbar.bg-dark {
    background-color: transparent !important;
}

.navbar {
    background: transparent;
    padding: 0;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 1);
    line-height: normal;
    font-size: 15px;
    text-transform: capitalize;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler {
    background: var(--Primary);
    position: relative;
    padding: 0.1rem 0.3rem;
    margin: 5px 0;
}

.navbar-toggler-icon {
    background-image: none !important;
}

.navbar-toggler-icon:before {
    content: "\f0c9";
    font-family: 'Line Awesome Free' !important;
    color: #fff;
    position: relative;
    font-size: 26px;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
    font-weight: 900;
}

.main-navbar .navbar-nav .nav-link:focus,
.main-navbar .navbar-nav .nav-link:hover,
.main-navbar .navbar-nav .nav-link.active {
    color: #F1D00A;
    transition: all .3s ease;
}

.main-navbar {
    position: relative;
    width: 100%;
    padding: 0 0 0;
}

.navbar {
    justify-content: space-between;
    align-items: center;
}


.navbar-nav {
    display: flex;
    width: 100%;
}

.dropdown-menu {
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #212529;
    text-align: left;
    border: none;
    border-radius: 0;
    min-width: 220px;
}

.main-navbar .dropdown-menu li a {
    padding: 10px 15px !important;
    display: block;
    border-bottom: 1px solid #ddd;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
}

.main-navbar .dropdown-menu li a:hover {
    background: #fff;
    color: #C15A2E;
}


/* nav */

.navouter {
    background: var(--Primary);
}

.main-navbar .navbar-dark {
    padding: 0;
}

.main-navbar .navbar-dark .navbar-nav {
    height: 48px;
    justify-content: center;
}

.main-navbar .navbar-dark .navbar-nav .nav-item {
    display: flex;
    align-items: center;
}

.main-navbar .navbar-dark .navbar-nav .nav-item:hover .nav-link {
    color: var(--secondary);
    background: transparent;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.main-navbar .navbar-dark .navbar-nav .nav-link {
    color: var(--white);
    display: flex;
    align-items: center;
    font-weight: 400;
    padding: 18px 8px;
    line-height: 14px;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    text-transform: uppercase;
}

.main-navbar .navbar-dark .navbar-nav .nav-link:focus,
.main-navbar .navbar-dark .navbar-nav .nav-link:hover,
.main-navbar .navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
    background: transparent;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.main-navbar .btn {
    min-width: 145px;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.main-navbar .navbar-dark .navbar-nav .dropdown-menu {
    padding: 0;
    margin-top: 0;
    border-radius: 0;
    top: calc(100% - 0px);
    min-width: 200px;
}

.main-navbar .navbar-dark .navbar-nav .dropdown-menu li a {
    color: var(--brown);
}

.main-navbar .navbar-dark .navbar-nav .dropdown-menu li a:hover {
    background: #fff;
    color: var(--Secondary);
}

.main-navbar .navbar-dark .navbar-nav .nav-item.dropdown:hover>ul {
    display: block;
    background: var(--bg-secondary-light);
    margin-bottom: 0;
}

.main-navbar .navbar-dark .navbar-nav .nav-item .dropdown-submenu {
    position: relative;
}

.main-navbar .navbar-dark .navbar-nav .nav-item .dropdown-submenu>a.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-navbar .navbar-dark .navbar-nav .nav-item .dropdown-submenu>a.dropdown-toggle::after {
    margin-left: 10px;
    font-size: 9px;
}

.main-navbar .navbar-dark .navbar-nav .nav-item .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

.main-navbar .navbar-dark .navbar-nav .nav-item.dropdown:hover>ul li:hover>ul {
    display: block;
}

.navbar-brand {
    max-width: 420px;
}


/* Nav End */

.menu-secondary {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--brown);
    padding: 14px 0;
    margin-bottom: 0 !important;
}
 
.menu-secondary a {
    color: var(--brown);
    display: inline-block;
    line-height: 11px;
    border-right: 1px solid var(--brown);
    padding: 0 12px;
    text-transform: uppercase;
}

.menu-secondary a:last-child {
    border-right: none;
    padding-right: 0;
}

.middle-container {
    margin-top: 15px;
}

.slider-cap {
    position: relative;
}

.slider-cap img {
    border-radius: 15px;
}

.slider-text {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: rgba(0, 0, 0, .4);
    color: var(--white);
    bottom: 30px;
    max-width: 90%;
    height: 40px;
    border-radius: 40px;
    justify-content: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.notificationnav .nav-tabs {
    background-color: var(--bg-secondary);
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

ul.nav.nav-tabs li {
    width: 33.33%;
    display: flex;
    justify-content: center;
}

.notificationnav .nav-tabs .nav-item .nav-link {
    color: var(--brown);
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    width: 100%;
    text-align: center;
    display: flex;
    border-radius: 0;
    height: 44px;
    justify-content: center;
    align-items: center;
}

.notificationnav .nav-tabs .nav-item .nav-link.active {
    background-color: var(--bg-primary);
    color: var(--white);
}
.notificationnav .nav-tabs .nav-item .nav-link:hover {
    background-color: var(--bg-primary);
    color: var(--white);
}

.notificationnav .tab-content {
    height: calc(100% - 44px);
    background: var(--bg-secondary-light);
}

.notificationnav .tab-content .tab-pane,
.notificationnav .tab-content .tab-pane .notification-inner
 {
    height: 100%; 
}
.notificationnav .tab-content .tab-pane .notification-inner .marqueecustom{height: 640px;}

.notification-inner {
    padding: 0px 20px;
}

.marqueecustom ul {
    padding: 0;
    margin: 0;
}

.marqueecustom ul li {
    border-bottom: 1px solid var(--secondary);
    margin-bottom: 12px;
    margin-top: 18px;
}

.marqueecustom ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.marqueecustom ul li a {
    color: var(--primary);
}

.marqueecustom ul li a:hover {
    color: var(--brown);
}

.marqueecustom ul li a .date {
    color: var(--primary);
    background-color: var(--secondary);
    display: inline-block;
    border-radius: 30px;
    padding: 0 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.marqueecustom ul li a span+span {
    display: block;
    line-height: 20px;
    padding-top: 5px;
    padding-bottom: 10px;
}
h2.principal-name {
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 15px !important;
    margin-bottom: 0 !important;
}

span.designation {
    position: relative;
}

span.designation::before {
    background: var(--primary);
    width: 50px;
    height: 2px;
    content: "";
    position: absolute;
    right: calc(100% + 5px);
    top: 7px;
}

.heading_one {
    color: var(--black);
    font-size: 44px;
    margin-bottom: 10px;
}

.heading_one span {
    color: var(--primary);
}

.heading_one.withleftline {
    position: relative;
}

.heading_one.withleftline ::before {
    background: var(--primary);
    width: 50px;
    height: 2px;
    content: "";
    position: absolute;
    right: calc(100% + 5px);
    top: 26px;
}

.heading_two {
    color: var(--black);
    font-size: 36px;
    font-weight: 600;
}

.highligts-section {
    background-color: var(--bg-secondary);
}

.cele-thumb {
    position: relative;
}

.cele-thumb::before {
    border: 1px solid rgba(255, 255, 255, .7);
    position: absolute;
    left: 20px;
    top: 20px;
    content: "";
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    z-index: 1;
}

.cele-thumb img {
    width: 100%;
    border-radius: 20px;
}

.cele-thumb strong {
    position: absolute;
    left: 60%;
    top: 6%;
    background: var(--primary);
    color: var(--white);
    border-radius: 10px;
    padding: 24px 20px;
    width: 310px;
    font-size: 21px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 800;
    z-index: 2;
}

.cele-thumb strong span {
    color: var(--yellow);
}

.highligtscol {
    border: 1px solid var(--brown);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    height: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.highligtscol:hover {
    border: 1px solid var(--primary);
    background-color: var(--bg-primary);
}

.highligtscol:hover * {
    color: var(--white);
}

.highligtscol span {
    font-size: 50px;
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--brown);
}

.highligtscol h3 {
    color: var(--brown);
    margin-bottom: 10px;
}

.highligtscol p {
    padding-bottom: 0;
    font-size: 16px;
}

.highaction {
    font-size: 35px;
    color: var(--brown);
    position: absolute;
    right: 20px;
    bottom: 10px;
}

.highligtscol:hover .highaction {
    font-size: 35px;
    color: var(--white);
}

.celebrating-section {
    background-color: var(--bg-secondary-light);
}
.celebrating-section .row .row [class^="col-"]{margin-bottom: 15px;}

a.quicklink-col {
    background: #fff;
    border: 1px solid var(--brown);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

a.quicklink-col:hover {
    background: var(--primary);
}

span.thumb-sec {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

span.thumb-cir {
    width: 65px;
    height: 65px;
    background: var(--primary);
    border-radius: 50%;
    --webkit-border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

a.quicklink-col:hover span.thumb-cir {
    background: var(--secondary);
}

span.thumb-cir span {
    color: var(--yellow);
    font-size: 38px;
}

a.quicklink-col:hover span.thumb-cir span {
    color: var(--primary);
}

span.thumb-title {
    font-weight: 600;
    font-size: 18px;
    padding-left: 13px;
    line-height: 23px;
    color: var(--brown);
}

a.quicklink-col:hover span.thumb-title {
    color: var(--white);
}

span.quicklink-content {
    color: var(--black);
}

a.quicklink-col:hover span.quicklink-content {
    color: var(--white);
}

.img-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    display: block;
}

.img-card img {
    width: 100%;
    transition: transform .5s; 
}
.img-card:hover img {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
}

.card-cap {
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: center;
    width: 100%;
    padding: 75px 15px 15px 15px;
    background: rgb(229, 169, 118);
    background: linear-gradient(180deg, rgba(229, 169, 118, 0) 0%, rgba(185, 96, 37, 0.7931547619047619) 50%, rgba(185, 96, 37, 1) 79%);
    transition: transform .5s; 
}
.card-cap h3 {
    color: #fff;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.card-cap h3::before {
    width: 90px;
    height: 2px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #fff;
    content: "";
    position: absolute;
    bottom: 0;
}

.card-cap p {
    color: #fff;
    padding-bottom: 0;
}


/* inner */

.custom-list {
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
}

.custom-list li:last-child {
    margin-bottom: 0px;
}

.custom-list li:before {
    background-image: url(../images/checkmark.png);
    background-repeat: no-repeat;
    background-position: center top;
    width: 24px;
    height: 24px;
    background-size: 24px;
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
}

.square-animation-img {
    position: relative;
}

.square-animation-img::before {
    content: '';
    width: 72px;
    height: 72px;
    position: absolute;
    background: url(../images/square-shape.svg) no-repeat top center;
    -webkit-animation: floating2 7s infinite;
    -o-animation: floating2 7s infinite;
    animation: floating2 7s infinite;
}

footer {
    background-color: var(--bg-primary);
    position: relative;
}

.footerinner {
    display: flex;
}

.ftr-left {
    border-right: 1px solid var(--secondary);
    padding: 25px 30px 0px 0;
    flex-shrink: 0;
    width: 25%;
}

.ftr-logo {
    margin-bottom: 15px;
}

.ftr-left p {
    color: var(--secondary);
    text-align: left !important;
}
.ftr-right {
    padding: 25px 0 25px 25px;
    width: 75%;
}

.ftr-right h3 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.ftr-menu {
    padding-left: 0;
    list-style-position: inside;
    list-style-type: none;
}

.ftr-menu.twocolumn {
    column-count: 2;
}

.ftr-menu li {}

.ftr-menu li a {
    color: var(--secondary);
}

.ftr-menu li a:hover {
    color: var(--brown);
}

.footer-btm {
    background-color: var(--secondary);
    padding: 8px 0;
}

.footer-btm p {
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--primary);
    font-weight: 400;
    font-size: 13px;
}

.footer-btm p a {
    font-weight: 600;
    color: var(--primary);
    text-decoration: underline;
}

.hvr-top {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-top:hover,
.hvr-top:focus,
.hvr-top:active {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}

.square-animate-img {
    position: relative;
}

@keyframes floating2 {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}

.login-outer {
    position: relative;
}

.login-outer .login-btn .btn {
    min-width: auto;
    padding: 0 25px;
    background: #003263;
    color: #fff;
}

.login-outer .dropdown-menu {
    top: 8px !important;
    min-width: 140px;
    max-width: 140px;
}

.login-outer .dropdown-menu li a {
    background: var(--primary);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    padding: 12px 15px;
}

.login-outer .dropdown-menu li a:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* For old website */

.services strong {
    margin-bottom: 0;
}

#page h1, #page h2, #page h3, #page h4, #page h5, #page h6, #page figure {
    font-weight: 400;
    margin: 0 0 20px 0;
}
#page h5, #page .h5 {
    font-size: 16px;
}


.heading_h5 {
    font-weight: 500;
    font-family: inherit;
    margin-bottom: 20px;
}
.cd-popup-container h3, h4 {
    font-size: 16px;
    text-align: left;
}
table#table2, table#table2 tr td{border:1px solid #ddd;}
table#table2 tr th{border:1px solid #c3c3c3;}
.profiletable table#table2, .profiletable table#table2 tr td{border:none;}



#page .fac-col-right h5 {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 18px;
}
#page .deg-timetable .tablink li a {
    color: #555555;
}
#page .deg-timetable .tablink li.active a {
    color: #fff; 
}

.social-icons {
    display: flex;
}
.social-icons a {
    background: #fff;
    color: #ba6025;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-right: 5px;
}