html {
    scroll-behavior: smooth;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yrsa:ital,wght@0,300..700;1,300..700&display=swap');

body {
    font-family: "Nunito", sans-serif !important;
    font-weight: 500;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: "Roboto Condensed", sans-serif;
    font-weight: bold;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

a {
    text-decoration-line: none;
}

/* color variable */

:root {
    --orange-color: #f46101;
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
}

:root {
    --yellow-color: #ffe200;
}

:root {
    --deep-blue: #022d62;
}

:root {
    --light-blue: #038bfb;
}

:root {
    --light-blue_ultra: #e7fffe;
}

:root {
    --white: #fff;
}

:root {
    --black: #000;
}

.default-btn {
    color: var(--white);
    background-color: var(--deep-blue);
    border: 1px solid var(--deep-blue);
    padding: 10px 20px;
    border-radius: 4px;
    transition: 0.5s;
}

.default-btn:hover {
    color: var(--black);
    background-color: #fff;
    border: 1px solid var(--black);
    padding: 10px 20px;
    border-radius: 4px;
    transition: 0.5s;
}

.default-btn i {
    color: var(--orange-color);
    margin-left: 5px;
}

.seminar-box-list .default-btn {
    padding: 5px 10px;

    font-size: 14px;
}

/* Header Start */

.top-header {
    background-color: var(--deep-blue);
    color: var(--white);
    font-size: 14px;
    padding: 8px 0;
}

.top-header .left span {
    font-size: 14px;
    margin-right: 6px;
}

.top-header .right {
    float: right;
    display: flex;
    align-items: center;
}

.top-header .right span {
    padding: 0 10px;
    border-right: 1px solid var(--white);
}

.top-header .right input[type="radio"] {
    margin-left: 2px;
    margin-right: 2px;
}

.top-header .right span button {
    background-color: transparent;
    color: var(--white);
    border: none;
    padding: 0;
    margin: 0 2px;
}

.top-header .right span button:nth-child(2) {
    background-color: var(--white);
    color: var(--black);
    padding: 0 5px;
}

.top-header .right span a {
    color: var(--white);
}

.top-header .right .dropdown {
    margin-left: 10px;
}

.top-header .right .dropdown .dropdown-toggle {
    color: var(--white);
}

.middle-header {
    padding: 10px 0;
    /* background-color: var(--light-blue_ultra); */
}

.middle-header .header-logo img {
    width: 100%;
}

.middle-header .right {
    display: flex;
    justify-content: flex-end;
}

.middle-header .search form {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.middle-header .search input[type="text"] {
    width: 300px;
    border-radius: 4px 0 0 4px;
    box-shadow: none;
}

.middle-header .search .search-btn {
    border: none;
    padding: 6px 12px;
    border: 1px solid var(--black);
    background-color: var(--black);
    color: var(--white);
    border-radius: 0 4px 4px 0;
    transition: 0.5s;
}

.middle-header .search .search-btn:hover {
    background-color: transparent;
    color: var(--black);
}

.language li {
    list-style-type: none;
}

/* custom megamenu start */

#menuArea {
    margin-left: 30px;
    display: none;
}

.input {
    display: none;
}

.open {
    background-color: var(--black);
    width: 25px;
    height: 3px;
    display: block;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    top: 15px;
    left: 7px;
    z-index: 99;
}

.open:before {
    content: "";
    background-color: var(--black);
    width: 25px;
    height: 3px;
    display: block;
    border-radius: 2px;
    position: relative;
    top: -8px;
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

.open:after {
    content: "";
    background-color: var(--black);
    width: 25px;
    height: 3px;
    display: block;
    border-radius: 2px;
    position: relative;
    top: 5px;
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

.menuOpen {
    width: 40px;
    height: 25px;
    cursor: pointer;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
}

.menuOpen:hover .open:before {
    top: -9px;
}

.sub-link {
    padding-bottom: 7px;
}

.menuOpen:hover .open:after {
    top: 5px;
}

.menu-animation {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: var(--deep-blue);
}

.menu-animation label {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 20px;
    background-size: 100%;
    cursor: pointer;
}

.menu-animation .menuContent {
    position: relative;
    top: 20%;
    padding-bottom: 20px;
    margin-top: -60px;
    overflow: auto;
    max-height: 692px;
}

.menuContent h5 {
    color: var(--orange-color);
    text-transform: capitalize;
    font-weight: bold;
}

.menu-animation ul {
    list-style: none;
    margin: 0 auto;
}

.menu-list ul {
    padding: 0;
}

.menu-list h6 {
    color: var(--white);
}

.menu-animation ul li a {
    display: block;
    color: var(--white);
    text-decoration: none;
    transition: 0.4s;
    padding-left: 3px;
    font-size: 14px;
}

.menu-animation ol {
    color: var(--black);
}

.menu-animation ol li a {
    color: var(--black);
}

.menu-animation ul li a:hover {
    color: var(--light-blue);
}

.menuEffects {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

.menuEffects ul {
    transform: translateY(0%);
    transition: all 0.5s;
}

#menuToggle:checked~.menuEffects {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s;
       z-index: 18;
}

#menuToggle:checked~.menuEffects ul {
    opacity: 1;
}

#menuToggle:checked~.menuOpen .open {
    background-color: transparent;
}

#menuToggle:checked~.menuOpen .open:before {
    content: "";
    background-color: var(--white);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9;
}

#menuToggle:checked~.menuOpen .open:after {
    content: "";
    background-color: var(--white);
    transform: rotate(-45deg);
    position: relative;
    top: 0;
    right: 0;
    z-index: 9;
}

#menuToggle:not(:checked)~.menuEffects ul {
    transform: translateY(-30%);
}

.administration-menus {
    padding: 0;
}

/* custom megamenu end */

.bottom-header {
    background-color: #efeffd;
    text-align: center;
}

.bottom-header nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom-header nav ul li {
    display: block;
}

.bottom-header nav ul li:last-child .dropdown-menu {
    right: 0;
}

.bottom-header nav ul li:last-child .dropdown-menu .col-sm-4.col-12.col-md-3 {
    width: 100% !important;
    display: flex;
}

.bottom-header nav ul li:last-child .dropdown-menu .col-sm-4.col-12.col-md-3 .list-group {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(4, 1fr);

}

.bottom-header nav ul li a {
    font-size: 15px;
    color: var(--deep-blue);
    padding: 10px 20px;
    display: block;
    transition: 0.5s;
}

.dropdown-menu .list-group a {
    padding: 4px 0px 10px 0;
    font-size: 13px;
    display: block;
    transition: 0.5s;
    border-bottom: 1px solid #f9f9f9;
}

.dropdown-menu .list-group a:hover {
    background: #efeffc;
    padding: 5px 10px;
    border-radius: 5px;
}

.dropdown {
    position: relative;
}

.mega-content .list-group {
    margin-bottom: 15px;
/*     max-height: 170px;
    overflow-y: scroll; */
}



/*
 *  STYLE 7

.mega-content .list-group::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
	border-radius: 10px;
}

.mega-content .list-group::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

.mega-content .list-group::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-image: -webkit-gradient(linear,
									   left bottom,
									   left top,
									   color-stop(0.44, rgb(122,153,217)),
									   color-stop(0.72, rgb(73,125,189)),
									   color-stop(0.86, rgb(28,58,148)));
}


 */


.dropdown-content {
    display: none;
    position: absolute;
    background-color: #efeffd;
    width: 280px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    width: 100%;
    text-align: left;
    transition: 0.5s;
    border-bottom: 1px solid #00000012;
}

.dropdown-content a:hover {
    padding: 10px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.fixed {
    position: fixed;
    width: 100%;
    z-index: 99;
    background-color: var(--white);
    box-shadow: 0 0 3px #00000054;
    transition: 0.3s ease-in-out;
    top: 0;
}

.none {
    display: none;
}

/* Header End */

/* Banner Start */

.index-banner {
    height: unset !important;
}

.banner .banner-image {
    background-repeat: no-repeat;
    background-size: cover;
    height: 72vh;
    position: relative;
    background-position: center;
}

.banner .pic01 {
    background-image: url("../images/banner1.jpg");
}

.banner .pic02 {
    background-image: url("../images/banner2.jpg");
}

.banner .pic03 {
    background-image: url("../images/banner3.jpg");
}

.banner .banner-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}


.banner .banner-image .overlay .banner-desc .title-section h1 {
    color: var(--deep-blue);
    font-size: 20px;
    line-height: 22px;
    font-weight: bold;
    width: fit-content;
    margin-bottom: 0;
    display: inline-block;
}
.banner .banner-image .overlay .banner-desc p {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    width: 400px;
    margin-bottom: 0px;
    /*    margin-bottom: 40px;*/
}

.banner .banner-image .overlay .banner-desc a {
    background-color: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
    border-radius: 4px;
    padding: 12px 24px;
    transition: 0.5s;
}

.banner .banner-image .overlay .banner-desc a:hover {
    background-color: transparent;
}

.banner .banner-image .overlay .banner-desc {
    bottom: 19%;
    width: 500px;
    background: rgb(255 255 255 / 45%);
    padding: 30px 20px;
    position: absolute;
    left: 50%;
    margin-left: -250px;
    text-align:center;
    display:none !important;
    
}

.banner .carousel-control-prev {
       top: 78%;
    left: 47%;
    width: 0;
    height: 0;
    padding: 18px;
    border-radius: 100%;
    opacity: 1;
    background-color: var(--white);
    border: 1px solid var(--white);
    transition: 0.5s;
}

.banner .carousel-control-next {
    top: 78%;
    left: 50%;
    width: 0;
    height: 0;
    padding: 18px;
    border-radius: 100%;
    opacity: 1;
    background-color: var(--white);
    border: 1px solid var(--white);
    transition: 0.5s;
}

.banner .carousel-control-prev:hover {
    background-color: transparent;
}

.carousel-control-next:hover {
    background-color: transparent;
}

.banner .carousel-control-prev-icon,
.carousel-control-next-icon {
    padding: 12px;
}

/* Banner End */

/* Latest Update news Start */
/* Breaking news css start */
.breaking-news-ticker {
    display: block;
    width: 100%;
    border: solid 1px #2d2d2d;
    background: #ccf1f7;
    height: 40px;
    box-sizing: border-box;
    position: relative;
    line-height: 40px;
    overflow: hidden;
    border-radius: 0px !important;
    text-align: auto;
    font-size: 14px;
}

.breaking-news-ticker * {
    box-sizing: border-box;
}

.breaking-news-ticker.bn-fixed-top {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
}

.breaking-news-ticker.bn-fixed-bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
}

/*********************************/
/*title styles start**************/
.bn-label {
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    position: absolute;
    background-color: #000;
    text-align: center;
    color: #fff;
    font-weight: bold;
    z-index: 3;
    padding: 0 15px;
    white-space: nowrap;
}

/*title styles end****************/

/*********************************/
/*news item style start **********/
.bn-news {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    right: 0;
    overflow: hidden;
}

.bn-news ul {
    display: block;
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    position: absolute;
}

.bn-news ul li {
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
    text-decoration: none;
    -webkit-transition: color 0.2s linear;
    -moz-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear;
    position: absolute;
    width: 100%;
    display: none;
    color: #000000;
}

.bn-news ul li a {
    white-space: nowrap;
    text-overflow: ellipsis;
    text-decoration: none;
    padding: 0 10px;
    color: #000000;
    position: relative;
    display: block;
    overflow: hidden;
}

.bn-news ul li a:hover {
    color: #069;
}

.bn-loader-text {
    padding: 0 10px;
}

.bn-seperator {
    display: inline-block;
    float: left;
    margin-right: 15px;
    width: 30px;
    height: 40px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
}

.bn-seperator.bn-news-dot {
    margin-right: 0;
}

.bn-seperator.bn-news-dot:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
    top: 50%;
    margin-top: -4px;
    left: 50%;
    margin-left: -4px;
}

.bn-prefix {
    color: #2d2d2d;
    margin-right: 15px;
    padding-left: 10px;
}

.bn-positive {
    color: #0b8457;
    font-weight: bold;
}

.bn-negative {
    color: #2d2d2d;
    font-weight: bold;
}

/*news item style end ************/

/*********************************/
/*controls style start ***********/
.bn-controls {
    width: auto;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    position: absolute;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.bn-controls button {
    width: 30px;
    float: left;
    height: 100%;
    cursor: pointer;
    border: none;
    border-left: solid 1px #eee;
    text-align: center;
    background-color: #f6f6f6;
    outline: none;
}

.bn-controls button:hover {
    background-color: #eee;
}

.bn-arrow {
    margin: 0;
    display: inline-block;
    height: 8px;
    position: relative;
    width: 8px;
    top: -2px;
}

.bn-arrow::after {
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-right-style: solid;
    border-right-width: 2px;
    content: "";
    display: inline-block;
    height: 8px;
    left: 0;
    position: absolute;
    top: 0;
    width: 8px;
}

.bn-arrow.bn-next {
    -moz-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
    left: -3px;
}

.bn-arrow.bn-prev {
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    left: 3px;
}

.bn-arrow::after {
    border-color: #999999;
}

.bn-arrow::before {
    background-color: #999999;
}

.bn-play {
    position: relative;
    background: #999999;
    width: 0;
    height: 12px;
    display: inline-block;
    margin-left: -5px;
}

.bn-play::after {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-left-color: #999999;
    border-width: 8px;
    margin-top: -8px;
}

.bn-pause {
    position: relative;
    width: 0;
    height: 14px;
    display: inline-block;
    top: 1px;
    left: -1px;
}

.bn-pause::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    left: 3px;
    background-color: #999999;
}

.bn-pause::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    left: -3px;
    background-color: #999999;
}

/*controls style end *************/
/*********************************/
.bn-direction-rtl {
    direction: rtl;
}

.bn-direction-rtl .bn-label {
    left: auto;
    right: 0;
}

.bn-direction-rtl .bn-controls {
    right: auto;
    left: 0;
}

.bn-direction-rtl .bn-seperator {
    margin-left: 15px;
    margin-right: 0;
    float: right;
}

.bn-direction-rtl .bn-prefix {
    margin-left: 15px;
    margin-right: 0;
    padding-left: 0;
    padding-right: 10px;
}

.bn-direction-rtl .bn-controls button {
    border-left: none;
    border-right: solid 1px #eee;
}

.bn-effect-scroll .bn-news ul {
    display: block;
    width: 100%;
    position: relative;
}

.bn-effect-scroll .bn-news ul li {
    display: list-item;
    float: left;
    position: relative;
    width: auto;
}

.bn-effect-scroll.bn-direction-rtl .bn-news ul li {
    float: right;
}

#places-visit {
    background: #d8d8d8 !important;
}

.bn-effect-scroll .bn-news ul li {
    position: relative;
}

.bn-effect-scroll .bn-news ul li::before {
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: #104e8d;
    position: absolute;
    left: 0;
    top: 17px;
    content: "";
}

.bn-news ul li a:hover {
    color: var(--optional-color);
    cursor: pointer;
}

.new-gif {
    width: 38px;
    padding: 5px;
}

/* Latest Update news End */

/* About Us Start */

.about-us {
    padding: 40px 20px;
}

.about-us:hover .about-us-image {
    box-shadow: 10px 10px 0 var(--deep-blue);
}

.about-us .title-section h2 {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.about-us .title-section h2::after {
    /* content: 'IISER'; */
    -webkit-text-stroke: 2px #cfcfcf;
    -webkit-text-fill-color: var(--white);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 94px;
    font-weight: bolder;
    opacity: 0.2;
    text-shadow: -11px -12px 9px BLACK;
    letter-spacing: 20px;
    z-index: 0;
    width: 100%;
}

.about-us .left .about-us-image {
    width: 100%;
    border-radius: 40px 0 0 40px;
    transition: 0.5s;
}

.about-us .right {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-us .right .position {
    position: absolute;
    top: 11%;
    left: -20%;
    width: 120%;
    padding: 30px 50px;
    background-color: var(--white);
    box-shadow: 0 0 10px #00000038;
    border-radius: 5px;
}

.about-us .right .position h3 {
    font-size: 28px;
    font-weight: bold;
}

.about-us .right .position h6 {
    font-size: 20px;
    font-weight: bold;
    color: var(--orange-color);
}

.about-us .right .position p {
    text-align: justify;
}

.about-us .right .position a {
    /* float: right; */
    color: var(--white);
    background-color: var(--deep-blue);
    border: 1px solid var(--deep-blue);
    padding: 10px 20px;
    border-radius: 4px;
    transition: 0.5s;
}

.about-us .right .position a i {
    color: var(--orange-color);
    margin-left: 5px;
}

.about-us .right .position a:hover {
    background-color: transparent;
    color: var(--black);
}

/* About Us End */

/* Campus information meter range */

.campus-image {
    border: 1px solid #ccc;
    border-radius: 5px;
}

.campus-image img:hover {
    filter: saturate(0.5);
}

.campus-title {
    text-align: justify;
}

.campus-image h3 {
    font-size: 18px;
    padding: 12px 0 0 14px;
    color: var(--deep-blue);
    font-weight: bold;
}

.campus-image h5 {
    font-size: 15px;
    padding: 0 0 0 14px;
}

.campus-content .campus-title h3 {
    font-size: 30px;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 25px;
}

.counter-card {
    margin-bottom: 30px;
}

.counter-card h1 {
    font-size: 60px;
    margin-bottom: 5px;
    line-height: 1;
}

.counter-card h1 .target {
    color: #e32845;
    position: relative;
    top: 4px;
}

.counter-card h1 .target.heading-color {
    color: #111d5e;
    font-size: 60px;
    margin-left: -4px;
}

.mega-content h5 {
    color: var(--orange-color);
    font-size: 13px;
    font-weight: bold;
}

.text-right {
    text-align: right !important;
}

.event-news .default-btn {
    color: var(--deep-blue);
    background-color: transparent;
    border: 2px solid var(--deep-blue);
    padding: 3px 10px;
    margin-left: 15px;
    margin-bottom: 10px;
    border-radius: 3px;
    transition: 0.5s;
    font-size: 13px;
}

.event-news .default-btn:hover {
    border: 1px solid var(--deep-blue);
}

.event-time {
    padding: 0 10px;
    height: 25px;
    line-height: 25px;
    color: var(--deep-blue);
    position: relative;
    display: flex;
    margin-top: 10px;
    width: fit-content;
    font-size: 14px;
}

.event-time::before,
.event-time::after {
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--deep-blue);
    content: '';
    opacity: 0.2;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    pointer-events: none;
}

.event-time::before {
    top: 0;
    left: 0;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    transform-origin: 0 0;
}

.event-time::after {
    right: 0;
    bottom: 0;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: 100% 0;
    -moz-transform-origin: 100% 0;
    transform-origin: 100% 0;
}

.event-time:hover::before,
.event-time:hover::after,
.event-time:focus::before,
.event-time:focus::after {
    opacity: 1;
}

.event-time:hover::before,
.event-time:focus::before {
    left: 50%;
    -webkit-transform: rotate(0deg) translateX(-50%);
    -moz-transform: rotate(0deg) translateX(-50%);
    transform: rotate(0deg) translateX(-50%);
}

.event-time:hover::after,
.event-time:focus::after {
    right: 50%;
    -webkit-transform: rotate(0deg) translateX(50%);
    -moz-transform: rotate(0deg) translateX(50%);
    transform: rotate(0deg) translateX(50%);
}

/* ``````````````````````````````````````````````````````````````````````````````````````` */

.sectionClass {
    position: relative;
    display: block;
}

.fullWidth {
    width: 100% !important;
    display: table;
    float: none;
    padding: 0;
    min-height: 1px;
    height: 100%;
    position: relative;
}

.sectiontitle {
    background-position: center;
    margin: 30px 0 0px;
    text-align: center;
    min-height: 20px;
}

.sectiontitle h2 {
    font-size: 30px;
    color: #222;
    margin-bottom: 0px;
    padding-right: 10px;
    padding-left: 10px;
}

.headerLine {
    width: 160px;
    height: 2px;
    display: inline-block;
    background: #101f2e;
}

.projectFactsWrap {
    display: flex;
    margin-top: 30px;
    flex-direction: row;
    flex-wrap: wrap;
}

#projectFacts .fullWidth {
    padding: 0;
}

.projectFactsWrap .item {
    width: 32%;
    height: 100%;
    padding: 26px 0px;
    text-align: center;
}

.projectFactsWrap .item:nth-child(1) {
    background: rgb(16, 31, 46);
}

.projectFactsWrap .item:nth-child(2) {
    background: rgb(18, 34, 51);
}

.projectFactsWrap .item:nth-child(3) {
    background: rgb(21, 38, 56);
}

.projectFactsWrap .item:nth-child(4) {
    background: rgb(23, 44, 66);
}

.projectFactsWrap .item p.number {
    font-size: 40px;
    padding: 0;
    font-weight: bold;
}

.projectFactsWrap .item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin: 0;
    padding: 10px;
    font-family: "Open Sans";
}

.projectFactsWrap .item span {
    width: 60px;
    background: rgba(255, 255, 255, 0.8);
    height: 2px;
    display: block;
    margin: 0 auto;
}

.projectFactsWrap .item i {
    vertical-align: middle;
    font-size: 50px;
    color: rgba(255, 255, 255, 0.8);
}

.projectFactsWrap .item:hover i,
.projectFactsWrap .item:hover p {
    color: white;
}

.projectFactsWrap .item:hover span {
    background: white;
}

@media (max-width: 786px) {
    .projectFactsWrap .item {
        flex: 0 0 50%;
    }

}


/* Announcement Section Start */

.notification_services.announcements {
    box-shadow: 0px 0px 3px #0003;
    padding: 0px 6px 0 6px;
    height: 350px;
    overflow: hidden;
}
.news{
    margin-bottom:15px;
}
.notification_services .notification .desc ul {
    top: 6em;
    position: relative;
    box-sizing: border-box;
    animation: animation 15s linear infinite;
    -webkit-animation: animation 15s linear infinite;
    padding-left: 0px;
}

.notification_services .notification .desc:hover ul {
    animation-play-state: paused;
}

@keyframes animation {
    0% {
        top: 8em;
    }

    100% {
        top: -11em;
    }
}

/* ------------------------------------------------------------------------- */
.notification_services.middle-bar .notification .desc ul {
    top: 6em;
    position: relative;
    box-sizing: border-box;
    animation: animation2 10s linear infinite;
    -webkit-animation: animation2 10s linear infinite;
    padding-left: 0px;
}

.notification_services.middle-bar .notification .desc:hover ul {
    animation-play-state: paused;
}

@keyframes animation2 {
    0% {
        top: 10em;
    }

    100% {
        top: -20em;
    }
}

.view-btn a {
    background: #000;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    padding: 5px 5px;
}

.announcements-title h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--black);
    padding: 8px;
}

.announcements-title {
    display: flex;
    justify-content: space-between;
}

.desc.news {
    height:325px;
}

.desc.news ul li {
    color: var(--white);
    font-size: 15px;
    margin: 10px 0;
    /* padding-left: 40px; */
    position: relative;
    background-color: #fff3eb;
    padding: 8px 13px;
}

.notification_services .desc ul li a p {
    color: #000;
    font-size: 12px !important;
    padding: 0 !important;
    margin: 0 !important;
}

.notification_services .notification .desc ul li a h6 {
    font-size: 13px;
    font-weight: bold;
    color: #820d3f;
    text-decoration: none !important;
}

/* Information Desk Start  meter range*/

.information-desk {
    height: 400px;
    background-image: url(https://www.nits.ac.in/storage/Campuslife_image/Campuslife_67a055649ce7f.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0;
    background-attachment: fixed;
    position: relative;
    background-position: center;
}

/* .information-desk::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, 0.18);
} */
.information-desk .information-desk-title {
    margin-bottom: 40px;
}

.information-desk .information-desk-title h3 {
    color: var(--white);
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 0;
}

.information-desk .information-desk-desc {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    /* width: 30%; */
    margin-right: 15px;
}

.information-desk .information-desk-desc .logo {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background-color: #e9fdff;
    margin: 0 auto 20px;
    position: relative;
}

.information-desk .information-desk-desc:hover .logo {
    transform: rotate(360deg);
    border: 1px dashed var(--deep-blue);
    transition: 0.9s;
}

.information-desk .information-desk-desc .logo-image {
    width: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;

}

.information-desk .information-desk-desc .name {
    width: 100%;
    margin: 0 auto;
}

.information-desk .information-desk-desc .name a {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0;
    display: block;
}

.contact-and-address .contact-and-address-content {
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.contact-card {
    text-align: center;
    padding: 10px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    margin-top: 15px;
    flex-direction: column;
    justify-content: center;
    align-content: center;

}

.contact-card .icon {
    font-size: 22px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    border: 1px solid var(--deep-blue);
    color: var(--deep-blue);
    text-align: center;
    border-radius: 100%;

}

.academic-facilities {
    /* padding: 25px; */
    background: #fafafa;
    border-radius: 6px;
    height: 100%;
}

.contact-card:hover .icon {
    border: 1px solid var(--orange-color);
    color: var(--orange-color);

}

.contact-card:hover a {
    color: #fff;
}

.contact-card h4 {
    font-size: 18px;
    font-weight: 600;
    padding-left: 15px;
}

.contact-card h4 a {
    color: var(--black);
}

.contact-card p {
    margin-bottom: 10px;
}

.contact-card p {
    margin-bottom: 10px;
}

/* .academic-facilities { margin-top: 24px;} */
.academic-facilities .owl-nav.disabled {
    display: none;
}

.academic-facilities h3 {
    font-size: 24px;
    font-weight: bold;
    color: var(--black);
}

.academic-facilities .owl-dots {
    margin-top: 15px !important;
}

/* Information Desk End */

/* News From Campus Start */

.news-from-campus {
    padding-top: 40px;
}

.news-from-campus .news-from-campus-title {
    margin-bottom: 40px;
}

.news-from-campus .news-from-campus-title h3 {
    color: var(--black);
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 0;
}

.news-from-campus .box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    box-shadow: 0 0 1px var(--black);
    transition: 0.5s;
}

.news-from-campus .box:hover {
    box-shadow: none;
    background-color: var(--deep-blue);
    color: var(--white);
}

.news-from-campus .box .text {
    font-size: 22px;
    font-weight: bold;
}

.news-from-campus .box .text i {
    font-size: 30px;
}

/* News From Campus End */

/* sgpgim-Centers start */

.latest-news.sgpgim-Centers {
    background-color: #ededed;
}

/* sgpgim-Centers end  */

/* Our Faculty Start */
.latest-news {
    padding-top: 40px;
    background-color: var(--white);
}

.latest-news .title {
    font-size: 30px;
    font-weight: bold;
    color: var(--black);
    text-align: center;
    margin-bottom: 40px;
}

.latest-news .card {
    /* width: 300px; */
    border: none;
    box-shadow: 0 0 5px #00000042;
    position: relative;
}

.latest-news .card::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0%;
    height: 3px;
    background-color: var(--light-blue);
    transition: 0.9s;
}

.latest-news .card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background-color: var(--light-blue);
    transition: 0.9s;
}

.latest-news .card:hover::before {
    width: 100%;
}

.latest-news .card:hover::after {
    width: 100%;
}

.latest-news .card .card-body .card-text {
    font-size: 12px;
    color: #858585;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.latest-news .card .card-body .card-text span {
    margin-right: 4px;
}

.latest-news .card .card-body .card-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--deep-blue);
    min-height: 50px;
}

.latest-news .card .card-body .card-body-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.latest-news .card .card-body .card-body-bottom .left {
    display: flex;
    align-items: center;
}

.latest-news .card .card-body .card-body-bottom .left .image {
    width: 30px;
    margin-right: 10px;
}

.latest-news .card .card-body .card-body-bottom .left .image img {
    width: 100%;
    border-radius: 100%;
}

.latest-news .card .card-body .card-body-bottom .left span {
    font-size: 12px;
    color: #858585;
}

.latest-news .card .card-body .card-body-bottom .right a {
    text-decoration-line: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--deep-blue);
    transition: 0.4s;
}

.latest-news .card .card-body .card-body-bottom .right a:hover {
    color: var(--light-blue);
}

.latest-news .owl-carousel .item {
    padding: 5px;
}

.latest-news .owl-carousel .owl-nav {
    display: block;
}

.latest-news .owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 45%;
    left: -65px;
    width: 35px !important;
    height: 35px !important;
    background-color: var(--deep-blue);
    color: var(--white);
    border-radius: 100%;
}

.latest-news .owl-carousel .owl-nav .owl-prev span {
    font-size: 50px;
    line-height: 22px;
}

.latest-news .owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 45%;
    right: -55px;
    width: 35px !important;
    height: 35px !important;
    background-color: var(--deep-blue);
    color: var(--white);
    border-radius: 100%;
}

.latest-news .owl-carousel .owl-nav .owl-next span {
    font-size: 50px;
    line-height: 22px;
}

.card-body {
    padding: 1rem 1.3rem;
}

/* centers slider start */
.latest-news.centers {
    background: #ffe1ca;
}

.latest-news.centers .card-body {
    background: #001123;
    -webkit-transition-duration: 0.7s;
    transition-duration: 0.7s;
}

.latest-news.centers .card-body .card-title {
    color: #fff;
}

.latest-news.centers .card-body .card-body-bottom .right a {
    color: #fff;
}

.latest-news.centers .card-body .card-body-bottom .right a:hover {
    color: #f46101;
}

.latest-news.centers .card-body .card-text {
    font-size: 13px;
    color: var(--white);
}

.latest-news.centers .card-body:hover {
    background: #ffffff;
}

.latest-news.centers .card-body:hover .card-title {
    color: #001123;
}

.latest-news.centers .card-body:hover .card-body-bottom .right a {
    color: #000;
}

.latest-news.centers .card-body:hover .card-body-bottom .right a:hover {
    color: #f46101;
}

.latest-news.centers .card-body:hover .card-text {
    color: #001123;
}

.btn-3 a:hover {
    color: #ffffff;
}

/* centers slider end */

/* Our Faculty End */

/* Latest event and news start */
/*Latest News and events*/
section.sec-events {
    padding: 40px 0 30px;
    background-image: url("../images/background01.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 35px;
}

.news-event-title {
    margin-bottom: 25px;
}

.news-event-title h3 {
    color: var(--color3);
    text-align: center;
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 0;
    position: relative;
}

.news-event-title h3:before {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    margin-left: -5px;
    background-color: #ff5722;
    z-index: 9;
}

.news-event-title h3:after {
    width: 100px;
    height: 1px;
    display: block;
    content: "";
    position: relative;
    margin-top: 25px;
    left: 50%;
    margin-left: -50px;
    background-color: #b9b9b9;
}

.img_txt {
    background: #fff;
    border: 1px solid #f3eaea;
    padding: 7px;
    position: relative;
}

.date {
    color: #ffffff;
    font-size: 14px;
    padding: 3px 12px 2px 12px;
    background: var(--orange-color);
    display: inline-block;
    box-shadow: 2px 2px 4px 0px #000;
    border-radius: 0 30px 30px 0;
    position: absolute;
    left: 11px;
    top: 10px;
}

.n_title {
    font-size: 14px;
    min-height: 76px;
    padding-top: 10px;
    font-weight: 500;
}

/* Latest event and news end */

/* Top Footer Start */

footer .top-footer {
    background-color: var(--deep-blue);
    padding-top: 50px;
    padding-bottom: 30px;
}

footer .top-footer .logo-desc .logo {}

footer .top-footer .logo-desc .logo img {
    max-width: 100%;
}

footer .top-footer .logo-desc .desc {
    margin: 20px 0;
}

footer .top-footer .logo-desc .desc a {
    color: #fff;
}

footer .top-footer .logo-desc .desc p {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 10px;
}

footer .top-footer .footer-links h5 {
    color: var(--white);
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 15px;
    margin-bottom: 10px;
    position: relative;
}

footer .top-footer .footer-links h5::after {
    content: "";
    background-color: var(--orange-color);
    width: 55px;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 5px;
}

footer .top-footer .footer-links ul {
    padding: 0;
    margin: 0;
}

footer .top-footer .footer-links ul li {
    margin-top: 0px;
}

footer .top-footer .footer-links ul li a {
    text-decoration-line: none;
    color: var(--white);
    font-size: 13px;

    transition: 0.5s;
}

footer .top-footer .hover-links ul li a:hover {
    /* color: var(--orange-color); */
    padding-left: 8px;
}

footer .top-footer .social-links ul li {
    display: inline-block;
}

footer .top-footer .social-links ul li {
    margin-right: 10px;
}

footer .top-footer .social-links ul li:last-child {
    margin-right: 0;
}

footer .top-footer .social-links ul li a {
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 100%;
    padding: 10px 13px;
    font-size: 20px;
    transition: 0.5s;
}

footer .top-footer .social-links ul li .facebook {
    padding: 10px 16px;
}

footer .top-footer .social-links ul li .facebook2 {
    padding: 10px 13px;
}

footer .top-footer .social-links ul li .youtube {
    padding: 10px 11px;
}

footer .top-footer .social-links ul li .facebook:hover {
    background-color: var(--white);
    color: #4267b2;
}

footer .top-footer .social-links ul li .linkedin:hover {
    background-color: var(--white);
    color: #0077b5;
}

footer .top-footer .social-links ul li .twitter:hover {
    background-color: var(--white);
    color: #1da1f2;
}

footer .top-footer .social-links ul li .youtube:hover {
    background-color: var(--white);
    color: #ff0000;
}

footer .top-footer .tiranga-image-section {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
}

footer .top-footer .tiranga-image-section .tiranga-image {
    width: 150px;
}

footer .top-footer .tiranga-image-section .tiranga-image img {
    width: 100%;
}

footer .top-footer .last-update-section {
    margin-top: 20px;
    padding-left: 10px;
}

footer .top-footer .last-update-section h6 {
    color: var(--white);
    font-size: 16px;
}

/* Top Footer End */

/* Bottom Footer Start */

footer .bottom-footer {
    background-color: var(--deep-blue);
    border-top: 2px solid var(--light-blue);
    padding: 10px 0;
}

footer .bottom-footer .text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .bottom-footer .text p {
    color: var(--white);
    margin-bottom: 0;
    font-size: 12px;
}

/* Bottom Footer End */

/* Our Partner Logo start */

.logo-img-scroll {
    background-color: #ffffff;
    padding-top: 0px;
    padding-bottom: 40px;
}

.logo-img-scroll .wraper {
    padding: 0px 40px;
}

.owl-carousel-4 .owl-dots {
    display: none;
}

.owl-carousel-4 .owl-prev {
    position: absolute;
    left: -50px;
    top: 35%;
}

.owl-carousel-4 .owl-prev {
    background-color: var(--black) !important;
    color: var(--white) !important;
    width: 28px;
    height: 28px;
    border-radius: 50px !important;
}

.owl-carousel-4 .owl-next {
    position: absolute;
    right: -50px;
    top: 35%;
}

.owl-carousel-4 .owl-next {
    background-color: var(--black) !important;
    color: var(--white) !important;
    width: 28px;
    height: 28px;
    border-radius: 50px !important;
}

.logo-img-scroll .owl-carousel .owl-item {
    border: 1px solid #ccc;
    padding: 10px;
}

/* photo-gallery */

.filtering {
    margin-bottom: 40px;
}

.filtering span {
    border-bottom: 2px solid transparent;
    color: #282b2d;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-right: 20px;
    display: inline-block;
    margin-bottom: 5px;
}

.filtering span:last-child {
    margin: 0;
}

.filtering .active {
    padding: 5px 10px;
    background-color: #003366;
    color: #ffffff;
}

.portfolio-wrapper {
    position: relative;
    overflow: hidden;
}

.portfolio-overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    transition: all 500ms ease;
}

.portfolio-wrapper .portfolio-image img {
    transform: scale(1.2);
    will-change: transform;
    transition: all 0.5s ease;
    width: 100%;
    border: rgb(231, 236, 248) solid 5px;
    box-shadow: 0 0 10px 0 rgb(0, 0, 0, 0.18);
    aspect-ratio: 1 / 0.6;
}

.portfolio-wrapper:hover .portfolio-image img {
    transform: none;
}

.portfolio-overlay:before {
    position: absolute;
    display: inline-block;
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    border: 1px solid rgba(0, 0, 0, 0.36);
    content: "";
    opacity: 0;
    transition: all 0.5s ease;
    transform: scale(0.85);
}

.portfolio-overlay .portfolio-content {
    position: absolute;
    bottom: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    padding: 0 35px;
}

.portfolio-content h4 {
    color: #000;
    font-weight: 600;
    font-size: 20px;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.portfolio-content p {
    color: #000;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.portfolio-content>a {
    line-height: 42px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #000;
    display: inline-block;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 800;
}

.portfolio-wrapper:hover .portfolio-overlay {
    background-color: rgba(192, 210, 243, 0.85);
}

.portfolio-wrapper:hover .portfolio-overlay:before {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.portfolio-wrapper:hover .portfolio-overlay .portfolio-content {
    transform: translateY(50%);
    transition: transform 0.5s ease;
    opacity: 1;
}

@media screen and (max-width: 1199px) {
    .portfolio-content h4 {
        font-size: 18px;
    }
}


@media screen and (max-width: 991px) {
    .portfolio-content h4 {
        margin-bottom: 10px;
    }

    .portfolio-content p {
        font-size: 15px;
    }

    .portfolio-content>a {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {
    .portfolio-content h4 {
        font-size: 17px;
    }

    .portfolio-content p {
        font-size: 14px;
    }
}

@media screen and (max-width: 575px) {
    .portfolio-content h4 {
        font-size: 16px;
    }
            .banner .banner-image {
        height: 200px !important;
    }
}

.gallery .gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery .gallery-item .portfolio-wrapper {
    position: relative;
    overflow: hidden;
}

.gallery .gallery-item .portfolio-overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    transition: all 500ms ease;
}

.gallery .gallery-item .portfolio-wrapper .portfolio-image img {
    transform: none;
    will-change: transform;
    transition: none;
    width: 100%;
}

.gallery .gallery-item .portfolio-wrapper:hover .portfolio-image img {
    transform: none;
}

.gallery .gallery-item .portfolio-overlay:before {
    position: absolute;
    display: inline-block;
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    border: 1px solid rgba(255, 255, 255, 0.808);
    content: "";
    opacity: 0;
    transition: all 0.5s ease;
    transform: scale(0.85);
}

.gallery .gallery-item .portfolio-overlay .portfolio-content {
    position: absolute;
    bottom: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
}

.gallery .gallery-item .portfolio-content h4 {
    color: rgb(241, 237, 237);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 20px;
    margin-bottom: 10px;
}

.gallery .gallery-item .portfolio-content p {
    color: rgb(252, 249, 249);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.gallery .gallery-item .portfolio-content a {
    line-height: 36px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #000;
    display: inline-block;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 800;
}

.gallery .gallery-item .portfolio-wrapper:hover .portfolio-overlay {
    background-color: rgba(46, 52, 61, 0.795);
}

.gallery .gallery-item .portfolio-wrapper:hover .portfolio-overlay:before {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.gallery .gallery-item .portfolio-wrapper:hover .portfolio-overlay .portfolio-content {
    transform: translateY(50%);
    transition: transform 0.5s ease;
    opacity: 1;
}

@media screen and (max-width: 1199px) {
    .gallery .gallery-item .portfolio-content h4 {
        font-size: 18px;
    }
}

@media screen and (max-width: 991px) {
    .gallery .gallery-item .portfolio-content h4 {
        margin-bottom: 10px;
    }

    .gallery .gallery-item .portfolio-content p {
        font-size: 15px;
    }

    .gallery .gallery-item .portfolio-content a {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {
    .gallery .gallery-item .portfolio-content h4 {
        font-size: 17px;
    }

    .gallery .gallery-item .portfolio-content p {
        font-size: 14px;
    }
}

@media screen and (max-width: 575px) {
    .gallery .gallery-item .portfolio-content h4 {
        font-size: 16px;
    }

    .gallery .gallery-item .portfolio-overlay:before {
        top: 10px;
        right: 10px;
        bottom: 10px;
        left: 10px;
    }
}

/* photo-gallery-end */

.bottom-footer .text p a {
    color: #fff !important;
}

/* contact us */

.contact-banner {
    background-image: url("../images/contact_banner.jpg");
    background-size: 100%;
    background-repeat: no-repeat;
    height: 215px;
    display: flex;
    align-items: center;
}

.contact_section {
    margin-bottom: 50px;
}

.contact-us-title {
    /* padding-top: 6%; */
    color: #fff;
}

.contact_middle ul li {
    list-style: disc;
}

.contact_middle {
    margin: 40px 0;
}

.contact_middle-top {
    margin: 30px 0;
}

.contact_middle-top h2 {
    font-size: 30px;
    color: var(--deep-blue);
    font-weight: bold;
}

.email_section ul {
    padding-left: 20px;
}

.email_section ul li a {
    color: #000;
    transition: 0.3s;
}

.email_section ul li a:hover {
    color: #00366b;
    padding-left: 1px;
}

.email_section {
    margin-bottom: 30px;
}

.visitor-section h2 {
    border-bottom: 1px solid #0009;
    font-weight: bold;
    color: var(--deep-blue);
}

.visitor-section {
    margin-top: 50px;
}

.visitor-section h2 {
    border-bottom: 1px solid #0009;
    font-weight: bold;
    color: var(--deep-blue);
}

.email_section-title {
    font-weight: bold;
    font-size: 28px;
    color: var(--deep-blue);
    border-bottom: 1px dashed #003365;
    padding-bottom: 5px;
}

.accommodation-section h2 {
    border-bottom: 1px solid #0009;
    font-weight: bold;
    color: var(--deep-blue);
}

.accordion-button {
    font-weight: bold;
    color: var(--deep-blue);
}

.faculty_details-tab .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: #003365;
    color: #fff;
}

.faculty_details-tab .researchPublications {
    border: 1.5px solid #0002;
    border-top: none;
    padding: 10px;
}

.faculty_details-tab .nav {
    background-color: #0001;
}

.researchPublicationsTitle {
    border-bottom: 1px solid #00000042;
    padding-bottom: 11px;
}

.new-logo-width {
    /* width: 400px; */
}

.font-change button {
    font-size: 14px;
}

.color-change-btn {
    display: flex;
    align-items: center;
}

/* color-change-theme-start */

.light,
.dark {
    cursor: pointer;
}

.background-black {
    background-color: var(--black);
}

.background-black .top-header {
    background-color: rgb(41, 40, 40);
}

.background-black .top-header .right span {
    color: var(--yellow-color);
}

.background-black .top-header .right span button {
    color: var(--yellow-color);
}

/* .background-black .top-header .right .dropdown .dropdown-toggle {
    color: var(--yellow-color);
} */

.background-black .middle-header {
    background-color: var(--black);
}

.background-black .middle-header .search .search-btn {
    background-color: var(--black);
    border: 1px solid var(--yellow-color);
}

.background-black .latest-update .left {
    background-color: var(--yellow-color);
    color: var(--black);
}

.background-black .bottom-header nav ul li a {
    color: var(--yellow-color);
}

.background-black .bottom-header nav ul {
    background-color: rgb(41, 40, 40);
}

.background-black .dropdown:hover .dropdown-content {
    background-color: rgb(41, 40, 40);
}

.background-black .open:before {
    background-color: var(--yellow-color);
}

.background-black .open:after {
    background-color: var(--yellow-color);
}

.background-black .open {
    background-color: var(--yellow-color);
}

.background-black .about-us {
    background-color: var(--black);
}

.background-black .latest-update .right {
    background-color: rgb(41, 40, 40);
}

.background-black .about-us .right .position {
    background-color: rgb(41, 40, 40);
}

.background-black .about-us .right .position p {
    color: var(--yellow-color);
}

.background-black .about-us .right .position h3 {
    color: var(--yellow-color);
}

.background-black .information-desk .information-desk-desc {
    background-color: var(--black);
}

.background-black .information-desk .information-desk-desc .name p {
    color: var(--yellow-color);
}

.background-black .information-desk-title {
    color: var(--yellow-color);
}

.background-black .logo-img-scroll {
    background-color: var(--black);
}

.background-black .news-from-campus {
    background-color: var(--black);
}

.background-black .news-from-campus .box .text {
    color: var(--yellow-color);
}

.background-black .news-from-campus .box {
    border: 1px solid var(--yellow-color);
}

.background-black .latest-news {
    background-color: var(--black);
}

.background-black .title {
    color: var(--yellow-color);
}

.background-black footer .top-footer {
    background-color: rgb(41, 40, 40);
}

.background-black footer .top-footer .logo-desc .desc p {
    color: var(--yellow-color);
}

.background-black footer .top-footer .logo-desc .desc p a {
    color: var(--yellow-color);
}

.background-black footer .top-footer .footer-links ul li a {
    color: var(--yellow-color);
}

.background-black footer .top-footer .footer-links h5 {
    color: var(--yellow-color);
}

.background-black footer .top-footer .last-update-section h6 {
    color: var(--yellow-color);
}

.background-black footer .bottom-footer {
    background-color: var(--black);
}

.background-black .owl-carousel-4 .owl-next {
    background-color: var(--yellow-color) !important;
}

.background-black .owl-carousel-4 .owl-prev {
    background-color: var(--yellow-color) !important;
}

.background-black .banner .banner-image .overlay .banner-desc .title-section h1 {
    color: var(--yellow-color);
}

.background-black .banner .banner-image .overlay .banner-desc p {
    color: var(--yellow-color);
}

.background-black .banner .carousel-control-prev {
    background-color: var(--yellow-color) !important;
}

.background-black .banner .carousel-control-next {
    background-color: var(--yellow-color) !important;
}

.background-black .information-desk .information-desk-title h3 {
    color: var(--yellow-color);
}

.background-black .menu-animation {
    background-color: var(--black);
}
.background-black .middle-header .header-logo img {
  
    filter: invert(1);
}
.background-black .bg-white{
background:#2a2a2a !important;
}
.background-black footer .bottom-footer .text p {
    color: var(--yellow-color);
}
.background-black .list-bullet li a ,
.background-black  table{
color: var(--yellow-color);
}
.background-black .news-from-campus-title h3,
.background-black small{
    color: var(--yellow-color);
}
.background-black .default-btn{
background:#000000 !important;
}
.background-black section.sec-events,
.background-black .become_partner_sec{
	background:#000000;
}
.background-black .img_txt,
.background-black .pod,
.background-black .pod__link:hover, 
.background-black .pod__link:focus{
	background:#2a2a2a;
}
.background-black .become_img_sec{
	background:#2a2a2a;
}
.background-black .logo-img-scroll i{
color:#2a2a2a !important;
}
.background-black .default-btn:hover{
color: var(--yellow-color);
}
.background-black .crf-box,
.background-black .our-team .team-content{
background:#2a2a2a;
}
.background-black .bread-new {
    background: linear-gradient(20deg, #000000 0%, #080808 17.57%, #737683 34.86%, #000000 52.23%, #080808 65.17%, #394556 97.75%);
}
.background-black .bread-new h1,
.background-black .box-platter-director{
color:#ffffff;
}
.background-black .director-images::before {
   
    background: #262626;
 }
.faculty_details-tab .nav-tabs .nav-link {
    width: 100%;
    height: 100%;
    padding: 0;
}

.faculty_details-tab ul .nav-item {
    margin: 0 auto;
    width: 16.66%;
    font-size: 0.9rem;
    height: 3.5rem;
}

.background-black .card-body {
    background-color: rgb(39, 37, 37);
}

.background-black .latest-news .card .card-body .card-text {
    color: var(--yellow-color);
}

.background-black .latest-news .card .card-body .card-title {
    color: white;
}

.background-black .latest-news .card .card-body .card-body-bottom .right a {
    color: #fff;
}

.background-black .full-area a,
.full-area a:hover,
.full-area a:focus,
.full-area a:active {
    background-color: var(--yellow-color);
    color: var(--black);
}

.background-black .full-area a::after {
    border-color: transparent transparent transparent var(--yellow-color);
}

.background-black .full-area a::before {
    border-color: transparent transparent transparent var(--black);
}

.background-black h2 {
    color: var(--white) !important;
}

.background-black p {
    color: var(--yellow-color) !important;
}

.background-black h4 {
    color: var(--white);
}

.background-black section.why-iim-section {
    background-image: none;
    background-color: var(--gray);
}

.background-black li {
    color: var(--yellow-color);
}

.background-black .desc.news ul li {
    background-color: #140c06;
}

:root {
    --gray: rgb(41, 40, 40);
}

.background-black .facultyDetailsSection .facultyDetailsSectionRight .head {
    background-color: var(--gray);
}

.background-black .facultyDetailsSection .facultyDetailsSectionRight .body button {
    background-color: var(--yellow-color);
}

.background-black .facultyDetailsSection .facultyDetailsSectionRight .body button {
    color: #000;
}

.background-black i {
    color: var(--yellow-color) !important;
}

.background-black .facul {
    background-color: var(--gray);
}

.background-black .faculty_details-tab .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    /* background-color: var(--yellow-color);
    color: #000; */
}

.background-black span {
    color: var(--white) !important;
}

.background-black .email_section ul li a,
.background-black table td,
.background-black .wst-cont ol a{
    color: var(--yellow-color) !important;
}

.background-black h5 {
    color: var(--white) !important;
}

.background-black h3 {
    color: var(--white) !important;
}

.background-black h6 {
    color: var(--white) !important;
}

.background-black .accommodation-section {
    background-color: var(--black);
}

.background-black .accordion-body {
    background-color: var(--black);
}

.background-black .accordion-button {
    background-color: var(--gray);
    color: var(--white);
}

.background-black .accordion-button:not(.collapsed) {
    color: var(--yellow-color);
}

.background-black .about-director {
    background-image: none;
    background-color: var(--gray);
}

.background-black .about-director-txt {
    background-color: #000;
}

.background-black .faculty-members .card {
    background-color: black;
}

.background-black .faculty-members .card .card-body {
    background-color: var(--gray);
}

.background-black .mail {
    background-color: var(--gray);
}

.background-black .phone {
    background-color: var(--gray);
}

/* Courses CSS Start */

.visa-guide {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #fff;
}

.visa-guide .title {
    font-weight: bold;
    color: #00143e;
    text-align: center;
    padding-bottom: 20px;
}

.visa-guide .nav-tabs .nav-item .nav-link {
    text-decoration-line: none;
    padding: 10px 79px;
    background-color: #00a6ee;
    color: #fff;
    border-radius: 0;
    font-size: 20px;
    font-weight: 600;
}

.visa-guide .nav-tabs .nav-link:hover {
    border-color: transparent;
}

.visa-guide .nav-tabs .nav-item {
    position: relative;
}

.visa-guide .nav-tabs .nav-item .active {
    background-color: #00143e;
    border-color: transparent;
}

.visa-guide .nav-tabs .nav-item .nav-link {
    position: relative;
}


.visa-guide .tab-content {
    margin-top: 50px;
}

.visa-guide .tab-content .left h5 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
}

.visa-guide .tab-content .left p {
    font-size: 18px;
    margin-bottom: 25px;
}

.visa-guide .tab-content .right {
    padding: 10px 100px;
}

.visa-guide .tab-content .right img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 15px 15px 0 #00a6ee;
}

.visa-guide .nav-item {
    width: 50%;
    text-align: center;
}

.visa-guide ul.lists-ul li {
    display: inline-block;
    width: 23%;
    margin: 0 15px 20px 0;
    border: 1px solid #1f8fe3;
    padding: 0;
    text-align: center;
    font-size: 13px;
    line-height: 20px;
    color: #222426;
    vertical-align: top;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    position: relative;
}

.visa-guide ul.lists-ul li:before {
    /* content: '\f19d'; */
    content: "";
    position: absolute;
    top: -13px;
    left: -13px;
    width: 28px;
    height: 28px;
    font-family: FontAwesome;
    font-size: 20px;
    background: #f1f6ff;
    color: #1066bf;
    transition: 0.1s;
    -webkit-transition: 0.1s;
    -moz-transition: 0.1s;
    -ms-transition: 0.1s;
    -o-transition: 0.1s;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: url(../images/courseiconn.png) no-repeat;
    background-size: 28px;
    background-position: center;
}

.visa-guide ul.lists-ul li a {
    padding: 18px 10px;
    background: linear-gradient(179deg, #00659d 0%, #2e3d68 100%);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    font-size: 20px;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-weight: bold;
}

.visa-guide ul.lists-ul li a:hover,
.visa-guide ul.lists-ul li a.active {
    text-decoration: none;
    background: linear-gradient(250deg, #4e95ed 0%, #03228f 100%);
    color: #fff;
}

/* Courses CSS End */

/* lightbox start */
section.lightbox-gallery {
    margin-top: 55px;
}

.lightbox-gallery .isotope-pager {
    display: none;
}

.lightbox-gallery .home-img-gallery h3 {
    font-size: 30px;
    font-weight: bold;
    color: var(--black);
    text-align: center;
    margin-bottom: 40px;
}

.lightbox-gallery .header p {
    text-align: center;
    background: -webkit-linear-gradient(#e3ca66, #b48e47);
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 20px;
}

.lightbox-gallery .grid-item {
    display: inline-block;
    height: auto;

    overflow: hidden;
    text-align: center;
    width: 300px;
}

.lightbox-gallery .grid-item img {
    width: 100%;
    height: auto;
    filter: url(filters.svg#grayscale);
    filter: gray;
    -webkit-filter: grayscale(0.5);
    transition: 0.9s;
}

.lightbox-gallery .grid-item img:hover {
    filter: none;
}

.lightbox-gallery .isotope-pager .pager {
    display: inline-block;
}

.lightbox-gallery .filters {
    width: 100%;
    text-align: center;
    padding-bottom: 35px;
    padding-top: 20px;
}

.lightbox-gallery .filters ul {
    list-style: none;
    padding: 8px 10px;
    box-shadow: -1px 1px 11px rgba(0, 0, 0, 0.4);
    margin: 0 40px;
    border-radius: 30px;
    background-color: #232323;
}

.lightbox-gallery .filters li {
    display: inline-block;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.filters li a {
    color: #b6b6b6;
    text-decoration: none;
}

.lightbox-gallery .filters li a:hover {
    color: #fff;
}

.lightbox-gallery .filters li:hover {
    box-shadow: -1px 1px 11px rgba(0, 0, 0, 0.4);
    border-radius: 15px;
}

.lightbox-gallery .filters li.active a {
    color: #e3ca66;
    border: 1px solid #e3ca66;
    border-radius: 15px;
    box-shadow: -1px 1px 11px rgba(0, 0, 0, 0.4);
    padding: 10px 25px;
}

.lightbox-gallery .isotope-pager a {
    margin: 6px 1px;
    display: inline-block;
    width: 50px;
    line-height: 31px;
    color: #b6b6b6;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: -1px 1px 11px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    background-color: #232323;
    border: 0.5px solid #e3ca66;
    text-decoration: none;
}

.lightbox-gallery .isotope-pager a:hover {
    color: #fff;
    border: 0.5px solid #ffeeac;
    box-shadow: -1px 1px 10px 3px rgba(0, 0, 0, 0.1);
}

.lightbox-gallery .isotope-pager .active {
    color: #e3ca66 !important;
    box-shadow: -1px 1px 10px 5px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    background-color: #161616;
    border: 1px dotted #e3ca66;
}

.lightbox-gallery .isotope-pager .prev {
    border-radius: 30px 0 0 30px;
}

.lightbox-gallery .isotope-pager .next {
    border-radius: 0 30px 30px 0;
}

.lightbox-gallery .isotope-pager a::before,
.isotope-pager a:after {
    content: "";
    position: absolute;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
}

.lightbox-gallery .isotope-pager .num::before,
.next::before {
    border-right: 20px solid #2c3e50;
    right: 100%;
}

.lightbox-gallery .isotope-pager .num:after,
.prev:after {
    border-right: 20px solid #f1f1f1;
    right: 0;
}

.lightbox-gallery .overlay {
    position: absolute;
    bottom: 0%;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5);
    /* Black see-through */
    color: #f1f1f1;
    width: 100%;
    transition: 0.5s ease;
    opacity: 0;
    color: white;
    font-size: 20px;
    padding: 20px;
    text-align: center;
}

.lightbox-gallery .grid-item:hover .overlay {
    opacity: 1;
}

.faculty-sec .item .card img {
    height: 200px;
    width: auto;
    object-fit: contain;
}

/*---------------------- home gallery ---------------*/

.portfolio-menu {
    text-align: center;
}

.portfolio-menu ul li {
    display: inline-block;
    margin: 0;
    list-style: none;
    padding: 10px 15px;
    cursor: pointer;
    -webkit-transition: all 05s ease;
    -moz-transition: all 05s ease;
    -ms-transition: all 05s ease;
    -o-transition: all 05s ease;
    transition: all 0.5s ease;
}

.portfolio-item .item {
    /*width:303px;*/
    float: left;
    margin-bottom: 30px;
}

/*--------------------- courses-slider ===================*/

.courses-slider.owl-carousel .owl-stage {
    display: flex;
}

.courses-slider.owl-carousel .owl-item,
.courses-slider.owl-carousel .item {
    height: 100%;
}

.courses-slider .features-item {
    background-color: #fff;
    margin-bottom: 30px;
    padding: 65px 15px 30px;
    position: relative;
    transition: 0.3s;
    border-radius: 2px;
    border: 1px solid #ccc;
    margin-top: 50px;
}

.courses-slider .features-item:hover {
    box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.22);
    cursor: pointer;
}

.courses-slider .features-item:hover .features-icon {
    color: var(--deep-blue);
    border-color: var(--deep-blue);
}

.courses-slider .features-item:hover .features-info .title {
    color: var(--deep-blue);
    border-color: var(--deep-blue);
}

.features-icon {
    font-size: 36px;
    width: 96px;
    height: 96px;
    line-height: 96px;
    text-align: center;
    background: #fff;
    border-radius: 60px;
    border: 2px dashed #f0f0f0;
    box-shadow: 0 0 0 10px #fff;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translate(-50%);
    color: #bdbdbd;
    transition: 0.3s;
}

#projectFacts .count-area-content {
    height: 100%;
    padding: 30px 15px;
    text-align: center;
    color: #fff;
    border-radius: 5px;
}

.count-digit-holder {
    font-size: 40px;
    font-weight: bold;
}

#projectFacts .count1 {
    background: #01579B;
}

#projectFacts .count2 {
    background: #0277BD;
}

#projectFacts .count3 {
    background: #0288D1;
}

.count-digit-icon {
    margin-bottom: 15px;
}

.count-digit-icon i,
.count-digit-icon span {
    font-size: 40px;
    color: var(--white);
}

.owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel .owl-stage .item {
    height: 100%;
}

/* course */
.grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gap-8 {
    gap: 2rem;
}

.jos {
    transition: 0.7s 0.5s;
}

.duration-300 {
    transition-duration: 300ms;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.pill-course {
    padding: 10px;
    gap: 1.5rem;
    background: #ffffff;
    border-radius: 100px;
    align-items: center;
}

.pill-course:hover {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.text-colorBlackPearl {
    color: #011c1a;
    font-size: 18px;
    line-height: normal;
    font-weight: 700;
    display: block;
    margin-bottom: 0;
}

.flex-1 {
    flex: 1 1 0%;
}

/* .text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #aa4400;
} */
.icon-round {
    background-color: rgb(255 135 51 / 15%);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 72px;
    display: inline-flex;
}

.featureCard.-type-1 {
    height: 100%;
}

.featureCard.-type-1 .featureCard__content {
    height: 100%;
    background: #eef2f6;
    border-radius: 8px;
    padding: 26px 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 160px;
    margin-right: 30px;
    transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.featureCard__content:hover {
    background-color: #140342 !important;
}

.featureCard.-type-1 .featureCard__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: #fff;
    width: 90px;
    height: 90px;
}

.featureCard.-type-1 .featureCard__title {
    margin-top: 20px;
    font-size: 17px;
    font-weight: 500;
    line-height: 26px;
    color: #140342;
}

.featureCard__content:hover .featureCard__title {
    color: #ffffff;
}

.featureCard.-type-1 .featureCard__text {
    margin-top: 10px;
    font-size: 13px;
    line-height: 15px;
    font-weight: 400;
    color: #4f547b;
}

.holder-department {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 2rem;
}

.featureCard__content:hover .featureCard__text {
    color: #ffffff;
}

.department-holder {
    display: flex;

}

.research-id-box {
    flex-wrap: wrap;
}

.research-id-box a img {
    max-width: 100px;
    background: #2b4375;
    padding: 1px;
    border-radius: 2px;
    margin-right: 15px;
    max-height: 40px;
    display: block;
    margin-top: 3px;
}

.research-id-box {
    margin-top: 15px;
    z-index: 999;
    position: relative;
    margin-bottom: 15px;
}

.titletext {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(to right, #127b66 0, #002d5f 70%);
    -webkit-background-clip: text;
    font-family: "Roboto Condensed", sans-serif;
}

.titlebloc-cc,
.titlebloc-gray,
.titlebloc-white {
    display: flex;
    line-height: 36px;
    margin-bottom: 0;
}

.titlebloc-cc:after {
    background-color: #002d5f;
    content: "";
    display: inline-block;
    flex-grow: 1;
    margin-left: 12px;
}

.first-letter {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 400;
}

.second-letter {
    font-size: 35px;
    font-weight: 900;
}

.nav-tabs-vertical-publi {
    background-color: #002d5f !important;
    display: block;
    width: 100%;
    float: left;

}

.nav-tabs-vertical-publi li a {
    color: #ffffff !important;
    box-shadow: none;
    border: 0 !important;
    padding: 12px 15px !important;
}

.nav-tabs-vertical-publi li a.active {
    background-color: #004b99 !important;
    color: rgb(255 255 255);
}

.cursor-pointer {
    cursor: pointer;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.bg-black {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity));
    padding: 10px 0;
}

.team-single-social-links {
    font-size: 25px;
}

.info-numbers {
    margin-top: -140px;
    position: relative;
    z-index: 99;
    margin-bottom: 35px;
}

.item-count {
    background-color: hsl(0deg 0% 100% / 72%);
    text-align: center;
    padding: 10px 25px;
    margin-right: 15px;
    border-radius: 5px;
    font-size: 13px;

}

.item-count:nth-child(1) {
    background-color: #64B5F6;
}

.item-count:nth-child(2) {
    background-color: #90CAF9;
}

.item-count:nth-child(3) {
    background-color: #BBDEFB;
}

.item-count:nth-child(4) {
    background-color: #E3F2FD;
}

.item-count h4 {
    display: block;
    margin-bottom: 5px;
    padding: 0;
}

.item-count:hover {
    background-color: #ffffff;
}

.items-info .accordion-button {
    font-weight: bold;
    color: var(--deep-blue);
    border: 1px solid #ee7126;
}

.items-info .accordion-button:not(.collapsed) {
    color: #ffffff !important;
    background-color: #ee7126;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.items-info .accordion-button:not(.collapsed)::after {
    filter: brightness(45);
}

.items-info .accordion-body {
    padding: 1rem 1.25rem;
    background: #ffe8df;
}

.notice-box-list {
    background: #ffffff;
    height:350px;
    margin-bottom:15px;
    overflow:hidden;

}

.notice-box-list h4 {
    background: #022d62;
    padding: 10px 25px;
    color: #fff;
    margin: 0px;
    border-radius: 5px;
}

.notice-box-list ul {
    height: 350px;
}

.notice-box-list li {
    margin-bottom: 10px;

}

.notice-box-list li i {
    transform: rotate(273deg);
    margin-right: 10px;

}

ul.requirement-list {
    padding: 15px;
    background: var(--color6);
    border-radius: 5px;
}
.new-inner ul.requirement-list{
	max-height: 180px;
	overflow-y:scroll;
	border: 1px solid #f1f1f1;
	padding: 15px;
	    margin-bottom: 15px;
}
.requirement-list li {
    text-align: justify;
}

.requirement-list li a i {
    color: #c10404 !important;
}

.requirement-list li a {
    color: var(--black);
}

.crf-box {
    border: 5px solid #ffffff;
    width: 100%;
    background-color: #eeeeee;
    text-align: left;
    align-items: center;
}

.crf-box p {
    margin-bottom: 0;
}

.crf-box ul {
    padding-left: 25px;
}

.crf-box ul li {
    list-style: disc;
}

.panel {
    width: 100%;
    border: 4px solid var(--orange-color);
}

.box-platter-director {
    padding: 2rem;
    background: var(--text-white);
    -webkit-box-shadow: 0px 0px 16.8px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 16.8px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 16.8px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.director-images {
    position: relative;
}

.director-images img {
    width: 90%;
    z-index: 9;
    position: relative;
    border: 10px solid var(--text-white);
}

.director-images::before {
    content: "";
    position: absolute;
    background: var(--color3);
    width: 75%;
    height: 125%;
    right: -5rem;
    top: -50px;
}

img {
    max-width: 100%;
}

.sec-events .accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #002d5f;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.activity-tab .nav-link {
    padding: 15px 40px 15px;
    font-size: 20px;
    color: #000;
   cursor:pointer;
	
}

.activity-tab .nav-link.active {
    font-weight: bold;
    color: #464646;
    background: #f8f9fa;

    border-radius: 0;

}

.activity-tab .tab-content {
    display: block;
    background: #f8f9fa;
    padding: 25px;
}

.activity-tab .nav-pills .nav-link {
    border-bottom: 1px solid #e5e5e5;
    font-size: 16px;
    text-align: left;
}

/*********************facility-tab-box************************* */
.facility-tab-box {
    margin: 2rem 0;
}

.facility-tab-box .nav-tabs .nav-link {
    border-radius: 20px 0px 20px;
    color: var(--orange-color);
}

.facility-tab-box .nav-tabs .nav-link.active {
    color: var(--white);
}

.gallery-box .nav-tabs {
    flex-direction: column;
    border-bottom: 0;
}

.gallery-box .nav-tabs li {
    border-right: 1px solid #f0f0f0;
}

.gallery-box .nav-tabs .nav-link.active {
    background: transparent !important;
    color: #ff5722;
    font-weight: bold;
    border: 0;
    border-right: 2px solid #ff5722;
}

.gallery-box .nav-tabs .nav-link {
    border: 0;
    width: 100%;
    border-radius: 0;
    color: var(--black);
    text-align: left;
}

.custom-gallery-item {
    display: inline-block;
    position: relative;
    overflow: hidden;
    cursor: pointer
}

.react-photo-gallery--gallery {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    max-width: 1200px;
    margin: 10px auto;

}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease
}

.custom-gallery-item:hover .gallery-image {
    transform: scale(1.05)
}

/***********************************************************/
.our-team {
    margin-bottom: 25px;
}

.our-team .pic {
    position: relative;
    overflow: hidden;
}

.our-team .pic img {
      width: 100%;
    height: 300px;
    text-align: center;
    object-fit: cover;
    object-position: top;
}

.our-team .over-layer {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -100%;
    left: 0;
    background: rgb(255 87 34 / 65%);
    transition: all 0.5s ease 0s;
}

.our-team:hover .over-layer {
    bottom: 0;
}

.our-team .over-layer:before {
    content: "";
    width: 90%;
    height: 0;
    position: absolute;
    top: 5%;
    left: 5%;
    border-top: 5px solid rgba(255, 255, 255, 0.7);
    border-left: 5px solid rgba(255, 255, 255, 0.7);
    opacity: 0;
    transition: all 0.5s ease 0.5s;
}

.our-team:hover .over-layer:before {
    opacity: 1;
    height: 90%;
}

.our-team .social-links {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    position: relative;
    top: 45%;
    transform: scale(0);
    opacity: 0;
    transition: all 0.5s ease 1s;
}

.our-team:hover .social-links {
    opacity: 1;
    transform: scale(1);
}

.our-team .social-links li {
    display: inline-block;
    margin-left: 5px;
}

.our-team .social-links li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    display: block;
    font-size: 13px;
    color: #fff;
    background: rgba(11, 32, 56, 0.7);
}

.our-team .team-content {
    background: #f3f5f7;
    padding: 15px;
    min-height: 205px;
    font-size: 14px;
    word-break: break-all;
}
.our-team .team-content p{
	margin-bottom:0;
}
.team-content .tab-pane{
    max-height: 450px;
    overflow-y: auto;
    padding-right: 10px;
}
.team-content .tab-pane::-webkit-scrollbar {
  width: 4px;
}

.team-content .tab-pane::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 5px;
}

.team-content .tab-pane::-webkit-scrollbar-track {
  background: transparent;
}
.our-team .team-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--deep-blue);
    margin: 0 0 5px 0;
}

.our-team .post {
    display: block;
    font-size: 16px;
    color: var(--orange-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.our-team .post:after {
    content: "";
    display: block;
    width: 35px;
    height: 3px;
    background: var(--orange-color);
    margin-top: 7px;
}

.our-team .description {
    font-size: 14px;
    color: var(--deep-blue);
    margin-bottom: 0;
}

.our-team .read {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    padding: 8px 8px 8px 25px;
    background: var(--orange-color);
    ;
    z-index: 1;
    position: relative;
    transition: all 0.5s ease 0s;
}

.our-team .read:hover {
    background: var(--deep-blue);
    text-decoration: none;
    color: #fff;

}

.our-team .read:after {
    content: "";
    width: 36px;
    height: 100%;
    background: var(--orange-color);
    position: absolute;
    top: 0;
    right: -18px;
    transform: skewX(-45deg);
    z-index: -1;
    transition: all 0.5s ease 0s;
}

.warden-box .our-team .read {
    width: 75%;
}

.warden-box .our-team .read:after {
    transform: skewX(346deg);
}

.our-team .read:hover:after {
    background: var(--deep-blue);
    color: #fff;
}

@media screen and (max-width: 990px) {
    .our-team {
        margin-bottom: 20px;
    }
}

.event-box-campus {
    border-radius: 50px 50px 50px 0;
    padding: 15px;
    background: white;

    transition: 0.7s;
}

.event-box-campus:hover {
    transform: scale(0.9);
}

.event-box-campus>img {
    border-radius: 35px 35px 35px 0;
    width: 100%;
    margin-bottom: 15px;
}

.event-box-campus h3 {
    color: var(--color3);
    font-size: 20px;
}

.event-box-campus p {
    max-height: 150px;
    overflow-y: scroll;
    text-align: justify;
    padding-right: 15px;
}

/* width */
.event-box-campus p::-webkit-scrollbar {
    width: 4px;
}

/* Track */
.event-box-campus p::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
.event-box-campus p::-webkit-scrollbar-thumb {
    background: var(--orange-color);
    border-radius: 5px;
}

/* Handle on hover */
.event-box-campus p::-webkit-scrollbar-thumb:hover {
    background: var(--color3);
}

.justify-content-space-between {
    justify-content: space-between !important;
}

.gal-head {
    justify-content: space-between;
}

.gal-head h4 {
    font-size: 16px;
    width: 75%;
}

.galdate {
    font-size: 13px;
    color: var(--orange-color);
}

.bottom,
.paragraph--type--az-text-media .az-full-width-column-content.bottom {
    margin-top: -5em;
    padding: 2em;
}
.bottom{
	padding: 0;
	font-size:14px;
}
.region-content .az-full-width-column-content {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.list-bullet li a{
    font-size:14px;
    color:var(--color3)
}
.list-bullet li::before{
    content:'';
    border-radis:50%;
    height: 7px;
    width: 7px;
    text-align: center;
    line-height: 40px;
    background: linear-gradient(to right, #ffa000, #ff6000);
    color: #fff;
    display: inline-block;
    margin-right: 10px;
    
}
/***************************/
.become_img_sec {
    position: absolute;
    right: 10%;
    width: 38%;
    top: 10%;
    background-color: #fff;
    padding: 25px;
    box-shadow: 20px 40px 50px rgb(0 0 0 / 40%);
    opacity: 1 !important;
    height: fit-content;
}

.become_partner_sec {
    /* padding-bottom: 100px; */
    position: relative;
    background-color: #fff
}

.become_partner_sec .feature_item_box {
    background: #002d5f;
    position: relative;
    /* min-height: 445px; */
    padding: 70px 160px 70px 70px;
}

.become_content .event-time {
    margin-top: 30px;
    font-size: 16px;
}

.become_content .event-time::before,
.become_content .event-time::after {
    background-color: #fff
}

.rank-card-holder {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.rank-card {
    width: 47%;
    margin: 10px 3px;
    flex-direction: column;
    align-items: center;
}

.rank-card h4 {
    font-size: 50px;
    color: var(--orange-color);
}

.social-boost-holder-border {
    width: 75%;
    border: 4px solid var(--deep-blue);
    border-radius: 25px;
    margin: 35px auto -55px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.social-boost-holder-border iframe {
    border-radius: 20px;
    margin-bottom: -5px;
}

.social-booster {
    border: 5px solid #ffffff;
    width: 100%;
    padding: 25px;
    background: url('../images/social-bg.jpg');
    border-radius: 25px;
    background-size: cover;
    align-items: center;
}

.social-feed-box {
    background: #002d5f;
    border-radius: 30px 30px 0 0;
    padding: 85px 25px 35px;
    justify-content: center;
    display: flex;
}

.social-feed-box a {
    font-size: 35px;
    padding-right: 15px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.social-feed-box a span {
    font-size: 14px;
}

.social-feed-box .fa-facebook-f {
    color: #1877F2;
}

.social-feed-box .fa-youtube {
    color: #FF0000;
}

.social-feed-box .fa-youtube {
    color: #FF0000;
}

.social-feed-box .fa-instagram {
    color: #f10fc4;
}

.social-feed-box .fa-linkedin-in {
    color: #0077B5;
}

/* .social-feed-box .fa-x-twitter{
    color: #000000;
} */
.social-feed-box a:hover {
    color: var(--white);
}

.call-section {
    background-color: var(--deep-blue);
    border-radius: 5px;
}

.gradient_btn {
    background: #ffa000;
    background-image: linear-gradient(to left, #ffa000, #ff6000, #ffa000, #ffa000);
    background-repeat: repeat-x;
    background-position: 50% 0;
    background-size: 300% 100%;
    transition: .6s cubic-bezier(.55, .17, .05, .85);
    will-change: transform, background-position, box-shadow;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    line-height: 1.5em;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 20px 40px 50px rgb(0 0 0 / 40%);
    border: none
}



.gradient_btn:hover {
    box-shadow: none;
    background-position: 100% 0;
    color: #fff
}

#chartdiv {
    width: 100%;
    height: 350px;
}

.contact-form {
    padding: 30px 25px;
    background-color: #f8f8f8;
    border-radius: 8px;
    width: 100%;
    height: 100%;
}

.contact-form textarea {
    resize: none;
}

.contact-form .form-input,
.form-text-area {
    background-color: #ffffff;
    height: 50px;
    padding-left: 16px;
}

.contact-form .form-text-area {
    background-color: #ffffff;
    height: auto;
    padding-left: 16px;
}

.contact-form .form-control::placeholder {
    color: #aeb4b9;
    font-weight: 500;
    opacity: 1;
}

.contact-form .form-control:-ms-input-placeholder {
    color: #aeb4b9;
    font-weight: 500;
}

.contact-form .form-control::-ms-input-placeholder {
    color: #aeb4b9;
    font-weight: 500;
}

.contact-form .form-control:focus {
    border-color: #C4D9FF;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.07), 0 0 8px #C4D9FF;
}



.contact-form .submit-button-wrapper {
    text-align: right;
}

.contact-form .submit-button-wrapper input {
    border: none;
    border-radius: 4px;

    color: white;
    text-transform: uppercase;
    padding: 10px 60px;
    font-weight: 500;
    letter-spacing: 2px;
}

.contact-form .submit-button-wrapper input:hover {
    background-color: #C4D9FF;
}

.tender-search-section {
    margin: 2rem 0;
}

.tender-search-section form {
    padding: 15px;
    background: #f1f1f1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.tender-search-section .form-floating>.form-control {
    padding: 7px .75rem;
}

.tender-search-section .form-floating>label {
    left: 20px;
}

.form-box .form-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.form-box .form-group input {
    padding: 7px 12px !important;
}



.form-box .btn.btn-lg.download-butt.bg-white {
    background: #000 !important;
    color: #fff;
}

.form-box form i {
    font-size: 20px;
}

span.heading-message {
    display: block;
    color: white;
    position: absolute;
    top: 15px;
    left: 35px;
    text-transform: capitalize;
}

#gsc_hist_opn {
    display: none;
}

.allnots {
    top: 6em;
    position: relative;
    box-sizing: border-box;
    animation: animation 15s linear infinite;
    -webkit-animation: animation 15s linear infinite;
}

.profile-button-manage {
    position: absolute;
    top: 15px;
    right: 0;
    left: auto;
    width: fit-content;
}
.gsc_rsb_header{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    margin-top: 15px;
    color: #e77500;
}
.gsc_rsb_s{
    border:1px solid #f5f5f5;
    margin-bottom:25px;
    padding:15px;
}
.edit-profile-link{
    margin-top: -5px;
    margin-left: 15px;
    background: orange;
    padding: 3px 15px;
    color: #ffffff;
    border-radius: 3px;
    font-weight: bold;
}
/**********************************black bg********************************/
.background-black .academic-facilities,
.background-black .az-full-width-column-content,
.background-black .notice-box-list,
.background-black ul.requirement-list,
.background-black .campus-widget .content,
.background-black .bottom-header,
.background-black .dropdown-menu,
.background-black .card,
.background-black .faculty_details-tab .nav-tabs .nav-item.show .nav-link, .background-black .nav-tabs .nav-link.active,
.background-black .event-box-campus,
.background-black .activity-tab .nav-link,
.background-black .activity-tab .tab-content,
.background-black .seminar-box-list{
    background: #242424 !important;
}

.background-black .notification_services.announcements {
    border: 1px solid #242424;
}

.background-black .bg-light,
.background-black .dropdown-menu .list-group a:hover {
    background-color: #000000 !important;
}
.background-black .tab-content,
.background-black .event-time {
    color: #ffffff;
}
.training-placement-section{
    position: absolute;
    background: white;
    padding: 10px 25px;
    top: 50%;
    left: 50%;
    margin-top: -22px;
    margin-left: -65px;
    border-radius: 7px;
    font-weight: bold;
}
@media screen and (max-width: 1400px) {
    .become_img_sec {
        position: absolute;
        right: 1%;
        width: 50%;
        bottom: 5%;
        background-color: #fff;
        padding: 25px;
        box-shadow: 20px 40px 50px rgb(0 0 0 / 40%);
        opacity: 1 !important;
    }

    .become_partner_sec .feature_item_box {
        background: #002d5f;
        position: relative;
        /* min-height: 445px; */
        padding: 70px 25% 70px 25px !important;
    }
    .become_img_sec{
        width:48%;
        right:1%
    }
	
}
.stage-content-biog{
    text-align:justify;
}
.table-box th{
	background: #4a7af8;
	color:#ffffff;
}
.new-inner ul.requirement-list{
	max-height: 180px;
	overflow-y:scroll;
	border: 1px solid #f1f1f1;
	padding: 15px;
	    margin-bottom: 15px;
}
/* 05-05-25 */
@keyframes stu-scrl{
    0%{
        transform:translateY(100px)
    }
    100%{
        transform:translateY(-96%)
    }
}

ul.allnots.student-corner-ul {
    top: unset;
    height:auto !important;
    animation:stu-scrl 75s infinite linear !important;
}

ul.allnots.student-corner-ul:hover{
    animation-play-state:paused !important;
}
