/**
* Website Name: University of Barishal, Bangladesh.
* Updated: June 01 2024 with Bootstrap v5.3.0
* Author: Designed & Developed by : " PeopleNTech "
* Designer : Bikrom Roy - PeopleNTech software
* Address: Good Luck Center 151/7 Green Road, 8th Floor Dhaka 1205 Bangladesh
* contact-us: Phone: +880 9613 337448 EXT: 2020 , Email: Software@peoplentech.net
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: Google Fonts and Trending Color Palettes
--------------------------------------------------------------*/

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
/* Fonts */
:root {
    --font-default: "Poppins", sans-serif;
    --font-primary: "Poppins", sans-serif;
    --font-secondary: "Poppins", sans-serif;
    --font-un-name: "Noto Serif Bengali", serif;
}

/* Global Colors */
:root {
    --color-background-topbar: #6679EE;
    --color-background-bottombar: #002147;
    --color-default: #212529;
    --color-default-rgb: 33, 37, 41;
    --color-background: #ffffff;
    --color-background-rgb: 255, 255, 255;
    --color-primary: #6679EE;
    --color-primary-rgb: 102, 121, 238;
    --color-secondary: #ffb606;
    --color-secondary-rgb: 255, 182, 6;
    --color-box-background: #ffffff;
    --color-box-background-rgb: 255, 255, 255;
    --color-inverse: #ffffff;
    --color-inverse-rgb: 255, 255, 255;
    --text-title-color: #002147;
    --text-title-rgb: 0, 33, 71;
    --footer-second-color: #aaaaaa;
    --button-hover-color: #407ae1;
    --nav-items-hover: #d1eaf2;
}

/* Nav Menu Colors */
:root {
    --color-nav: #3a3939;
    --color-nav-hover: #f85a40;
    --color-nav-dropdown: #3a3939;
    --color-nav-dropdown-hover: #f85a40;
    --color-nav-dropdown-background: #ffffff;
    --color-nav-mobile-background: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    color: var(--color-default);
    background-color: var(--color-background);
    font-family: var(--font-default);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: rgba(var(--color-primary-rgb), 0.7);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
}

section {
    color: var(--color-default);
    background-color: var(--color-background);
    padding: 45px 0;
    overflow: clip;
}

/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    color: var(--text-title-color);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: var(--color-primary);
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
}
/*--------------------------------------------------------------
# Common Button
--------------------------------------------------------------*/
.common-btn {
    margin-top: 35px;
}

.common-btn a {
    font-family: "Poppins", sans-serif;
    background-color: var(--color-primary);
    color: var(--color-inverse);
    padding: 10px 40px 10px;
    font-size: 14px;
    line-height: 25px;
    font-weight: 700;
    border-radius: 3px;
    transition: all 250ms;
}

.common-btn a:hover {
    /* box-shadow: rgba(25, 20, 91, 0.35) 0 -25px 18px -14px inset,
        rgba(25, 20, 91, 0.25) 0 1px 2px, rgba(25, 20, 91, 0.25) 0 2px 4px,
        rgba(25, 20, 91, 0.25) 0 4px 8px, rgba(25, 20, 91, 0.25) 0 8px 16px,
        rgba(25, 20, 91, 0.25) 0 16px 32px; */
    box-shadow: rgba(75, 44, 187, 0.35) 0 -25px 18px -14px inset,
    rgba(54, 44, 187, 0.25) 0 1px 2px, rgba(49, 44, 187, 0.25) 0 2px 4px,
    rgba(54, 44, 187, 0.25) 0 4px 8px, rgba(49, 44, 187, 0.25) 0 8px 16px,
    rgba(54, 44, 187, 0.25) 0 16px 32px;

    transform: scale(1.05) rotate(-1deg);
    color: var(--color-inverse);
    background-color: var(--button-hover-color);
}
/*--------------------------------------------------------------
# Card common button
--------------------------------------------------------------*/
.common-card-button {
    color: var(--text-title-color);
    font-family: "Poppins", sans-serif;
    border: 2px solid var(--text-title-color);
    border-radius: 30px;
    padding: 4px 11px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}
.common-card-button:hover {
    background-color: var(--text-title-color);
    color: var(--color-inverse);
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: var(--color-background-topbar);
    padding: 20px 0;
    font-size: 14px;
    /* height: 130px; */
}

#topbar .contact-info h4 {
    color: var(--color-inverse);
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 20px;
    font-family: var(--font-un-name);
    letter-spacing: 1.9px;
}

#topbar .social-login-links a {
    color: var(--color-inverse);
    line-height: 0;
    transition: 0.3s;
    font-weight: 500;
    margin-left: 20px;
    text-transform: uppercase;
}

#topbar .social-login-links a:hover {
    color: #ffeb3b;
}
#topbar .home-logo {
    text-align: right;
}
#topbar .home-logo img {
    height: 110px;
    margin: 0 auto;
}
#topbar .government-logo {
    text-align: left;
}
#topbar .government-logo img {
    height: 110px;
    margin: 0 auto;
}
#topbar .university-name {
    text-align: center;
}
#topbar .university-name h2 {
    /*text-transform: capitalize;*/
    color: #fbfbfb;
    /* text-shadow: 2px 2px 5px #000; */
    text-shadow: 2px 3px 6px #000;
    text-align: left;
    font-size: 33px;
    font-weight: 500;
    margin-top: 10px;
    font-family: "Noto Serif Bengali", serif;
}
#topbar .university-name h3 {
    margin-top: 8px;
    color: #fbfbfb;
    text-shadow: 2px 3px 6px #000;
    text-align: left;
    font-size: 32px;
    font-weight: 600;
    font-family: "Noto Serif Bengali", serif;
}

#topbar .university-name h3 {
    font-size: 46px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 60px;
    transition: all 0.5s;
    z-index: 997;
    background-color: var(--color-inverse);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
        rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

#header .fixed-top {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

#header .logo {
    z-index: 1;
    text-align: center;
    margin-top: -60px;
    margin-bottom: 0px;
    box-shadow: none;
    border-radius: 50%;
    padding: 2px;
    transition: all 0.5s ease-in-out;
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 10px 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    width: 85px;
    margin-top: 4px;
}

#header .img-fixed-witdth {
    margin-top: 0px;
    margin-bottom: 0px;
    width: 70px !important;
}

.scrolled-offset {
    margin-top: 70px;
}

.moblie-logo a img {
    height: 48px;
}
.moblie-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
/*.only-mobile {
    display: none;
}*/
.moblie-logo span {
    font-size: 11px;
    font-weight: 600;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-title-color);
    white-space: nowrap;
    padding: 10px 0px 10px 16px;
    text-transform: capitalize;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: var(--color-primary);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-inverse);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: all 0.5s ease-in-out;
    border-top: 2px solid var(--color-primary);
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 15px;
    font-size: 13px;
    text-transform: none;
    font-weight: 500;
    color: var(--text-title-color);
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: var(--color-primary);
    background-color: var(--nav-items-hover);
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: 90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: 100%;
    }
}

.navbar .megamenu {
    position: static;
}

.navbar .megamenu ul {
    right: 0;
    padding: 10px;
    display: flex;
    align-items: flex-start;
}

.navbar .megamenu ul li {
    flex: 1;
    border-right: solid 1px #f0f0f0;
}

.navbar .megamenu ul li:last-child {
    border-right: none;
}

.navbar .megamenu ul li .menu-title {
    padding-left: 20px;
    font-weight: 600;
    margin-top: 5px;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-size: 14px;
    color: var(--color-primary);
}

.navbar .megamenu ul li a,
.navbar .megamenu ul li:hover > a {
    color: var(--text-title-color);
    background: none;
}

.navbar .megamenu ul li a:hover,
.navbar .megamenu ul li .active,
.navbar .megamenu ul li .active:hover {
    color: var(--color-primary);
    background-color: var(--nav-items-hover);
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: var(--text-title-color);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: var(--color-inverse);
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(14, 11, 10, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: var(--color-inverse);
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--text-title-color);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: var(--color-primary);
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: var(--color-inverse);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    border-top: 2px solid var(--color-primary);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: var(--color-primary);
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--color-inverse);
    line-height: 0;
}

.scroll-top:hover {
    background-color: rgba(var(--color-primary-rgb), 0.8);
    color: var(--color-inverse);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
.preloader-inner {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999999999999;
    background-color: #030724;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    margin: 120px auto;
    width: 60px;
    height: 60px;
    position: relative;
    text-align: center;
    animation: sk-rotate 2s infinite linear;
}

.dot1,
.dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #fdc800;
    border-radius: 100%;
    animation: sk-bounce 2s infinite ease-in-out;
}

.dot2 {
    top: auto;
    bottom: 0;
    animation-delay: -1s;
}
@keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}
@keyframes sk-bounce {
    0%,
    100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }
    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 70px 0 60px 0;
    min-height: 30vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.breadcrumbs:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    inset: 0;
}
.breadcrumbs h2 {
    font-size: 43px;
    font-weight: 600;
    color: var(--color-inverse);
    font-family: var(--font-secondary);
    text-align: center;
}
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-secondary);
}
.breadcrumbs ol a {
    color: var(--color-inverse);
    transition: 0.3s;
    font-weight: 500;
}
.breadcrumbs ol a i {
    margin-right: 3px;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}
.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: var(--color-inverse);
    content: "/";
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    padding: 40px 0px;
    padding-bottom: 0px;
    background: var(--text-title-color);
    color: var(--color-inverse);
}

.footer-top {
    padding-bottom: 30px;
}

.footer-imp-link h4 {
    color: var(--color-inverse);
    font-weight: 600;
    padding-bottom: 6px;
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.4;
    font-size: 18px;
}

.footer-imp-link ul {
    list-style: none;
    padding: 0;
}

.footer-imp-link ul li {
    color: var(--color-inverse);
    padding-bottom: 5px;
}

.footer-imp-link ul li a {
    color: var(--footer-second-color);
    transition: all 0.4s;
    font-size: 13px;
}

.footer-imp-link ul li a:hover {
    color: var(--color-primary);
}

.footer-contact h4 {
    color: var(--color-inverse);
    font-weight: 600;
    padding-bottom: 6px;
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.4;
    font-size: 18px;
}

.footer-contact h5 {
    color: var(--footer-second-color);
    font-weight: 500;
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.4;
    font-size: 14px;
}

.footer-contact h6 {
    color: var(--footer-second-color);
    font-weight: 500;
    margin-bottom: 7px;
    text-align: left;
    line-height: 1.4;
    font-size: 14px;
}

.footer-contact h3 {
    color: var(--footer-second-color);
    font-weight: 600;
    margin-top: 5px;
    font-size: 17px;
    margin-bottom: 15px;
}

.footer-contact h3 a {
    color: var(--footer-second-color);
}

.footer-find h4 {
    color: var(--color-inverse);
    font-weight: 600;
    border-bottom: 3px solid #eeeeee;
    text-align: left;
    line-height: 1.4;
    margin-bottom: 5px;
    font-size: 18px;
}

.social-links a {
    font-size: 18px;
    display: inline-block;
    background: #133b68;
    color: var(--color-inverse);
    line-height: 1;
    margin-top: 7px;
    margin-bottom: 7px;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--color-primary);
    color: #807f7f;
    text-decoration: none;
}

.footer-bottom {
    background: rgba(255, 255, 255, 0.06);
    padding: 20px 0px;
    text-align: center;
}

.footer-text h5 {
    margin-bottom: 0;
    color: var(--color-inverse);
    line-height: 26px;
    font-weight: 400;
    font-size: 15px;
}

/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
/* Hero Section - Home Page
------------------------------*/
#hero {
    width: 100%;
    height: 70vh;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    position: relative;
    padding: 0;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: absolute;
    bottom: 60px;
    top: 70px;
    left: 55px;
    right: 55px;
}

#hero .carousel-content {
    background: rgba(4, 4, 4, 0.5);
    padding: 15px;
    color: var(--color-inverse);
    text-align: center;
}

#hero .carousel-content h2 {
    color: var(--color-inverse);
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.6);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
    background: rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
    cursor: pointer;
    background: var(--color-inverse);
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
}

#hero .carousel-indicators li.active {
    opacity: 1;
    background: var(--color-primary);
}

@media (min-width: 1024px) {
    #hero .carousel-content {
        width: 85%;
    }

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

@media (max-width: 992px) {
    #hero .carousel-container {
        top: 58px;
    }

    #hero .carousel-content h2 {
        margin-bottom: 15px;
        font-size: 22px;
    }

    #hero .carousel-content p {
        font-size: 15px;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 100vh;
    }
}

/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
/* Least Notice - Home Page
------------------------------*/
.leastNotice {
    padding: 0px 0px;
}
.leastNotice .notice-top {
    display: inline-block;
    position: relative;
    background-color: var(--color-background-topbar);
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}
.leastNotice .notice-top h4 {
    color: var(--color-inverse);
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 0;
}
.leastNotice .notice-top-content {
    display: inline-block;
    position: relative;
    background-color: #e3e3e3;
    height: 40px;
    padding-right: 20px;
    line-height: 40px;
    width: 100%;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    color: var(--text-title-color);
}
.leastNotice .notice-top-content a {
    color: var(--text-title-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0;
    padding-right: 15px;
    font-family: var(--font-secondary);
}

/*--------------------------------------------------------------
# left side notice
--------------------------------------------------------------*/
/* left side notice - Home Page
------------------------------*/
#home-hero .left-slide-notice {
    padding-top: 0px;
    margin-top: 0px;
    width: 100%;
    height: 70vh;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px,
        rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    overflow: hidden;
    position: relative;
    /* background: red; */
}
#home-hero .left-slide-notice .slide-notice {
    height: auto;
    width: 100%;
    overflow: hidden;
}
#home-hero .slide-notice-padding {
    padding: 20px;
}

#home-hero .nav-pills {
    border-bottom: 1px solid rgba(var(--text-title-rgb), 0.2);
}
#home-hero .nav-pills li + li {
    margin-left: 25px;
}
#home-hero .nav-link {
    background: none;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-title-color);
    padding: 12px 0;
    margin-bottom: -2px;
    border-radius: 0;
    font-family: var(--font-secondary);
}
#home-hero .nav-link.active {
    color: var(--color-primary);
    background: none;
    border-bottom: 3px solid var(--color-primary);
}
@media (max-width: 575px) {
    #home-hero .nav-link {
        font-size: 16px;
    }
}
#home-hero .home-hero-news {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
#home-hero .home-hero-news .home-news-date {
    text-align: center;
    min-width: 75px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: -3px;
    background: var(--text-title-color);
    height: 63px;
    border-radius: 4px;
    padding: 3px;
    color: var(--color-inverse);
    display: flex;
    align-items: center;
    justify-content: center;
}
#home-hero .home-hero-news .home-news-date h4 {
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1;
    font-size: 24px;
    margin-bottom: 0px;
}
#home-hero .home-hero-news .home-news-date span {
    font-size: 12px;
    margin-bottom: 0px;
}
#home-hero .home-hero-news .home-news-content h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-title-color);
    margin-bottom: 0px;
}
#home-hero .home-hero-news .home-news-content h4 a {
    color: var(--text-title-color);
}
#home-hero .home-news-btn {
    background: var(--color-inverse);
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 0px;
    text-align: end;
    padding: 10px 20px;
    border-top: 1px solid rgba(var(--text-title-rgb), 0.2);
}
#home-hero .home-news-btn a {
    color: var(--text-title-color);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
}

#home-hero .home-news-btn a:hover {
    color: var(--color-primary);
}

#home-hero .home-hero-notice {
    display: flex;
    align-items: stretch;
    gap: 15px;
    margin-bottom: 20px;
}
#home-hero .home-hero-notice .home-notice-icons i {
    font-size: 18px;
    color: var(--color-primary);
}
#home-hero .home-hero-notice .home-notice-content h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-title-color);
    margin-bottom: 0px;
}
#home-hero .home-hero-notice .home-notice-content h4 a {
    color: var(--text-title-color);
    transition: 0.3s all;
}
#home-hero .home-hero-notice .home-notice-content h4 a:hover {
    color: var(--color-primary);
}
/* Message from the Vice Chancellor - Home Page
------------------------------*/
.vice-message {
    padding: 60px 0px;
    position: relative;
}
.vice-message .count-shape-1 {
    position: absolute;
    left: -22px;
    bottom: -26px;
}
.vice-message .count-shape-2 {
    position: absolute;
    right: -22px;
    top: 40px;
}
.vice-message .pattern-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 432px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}
.vice-message .vice-message-card {
    position: relative;
    background: var(--color-inverse);
    /* box-shadow: 0px 6px 15px rgba(8, 14, 28, 0.06); */
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    border-radius: 10px;
    padding: 110px 30px 30px 30px;
    margin-top: 50px;
}
.vice-message .vice-image {
    background-color: #d2d4d5;
    width: 150px;
    text-align: center;
    border-radius: 10px;
    border: 6px solid #d2d4d5;
    position: absolute;
    top: -50px;
    left: 30px;
}
.vice-message .vice-image img {
    border-radius: 10px;
    width: 100%;
}
.vice-message .quote {
    height: 36px;
    width: 36px;
    line-height: 36px;
    background-color: var(--color-primary);
    border-radius: 50%;
    text-align: center;
    position: absolute;
    bottom: -18px;
    left: calc(50% - 18px);
    z-index: 2;
    margin: -28px auto 0 auto;
}

.quote::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--color-primary);
    z-index: -1;
    border-radius: 50%;
    transition: all ease 0.4s;
}
.quote::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--color-primary);
    z-index: -1;
    border-radius: 50%;
    transition: all ease 0.4s;
}
.vice-message .quote img {
    position: relative;
    z-index: 1;
    width: 22px;
    height: 22px;
    object-fit: fill;
}

.vice-text p {
    text-align: justify;
    margin-bottom: 3px;
    color: gray;
    line-height: 26px;
    font-weight: 500;
    font-size: 14px;
}
.vice-text h4 {
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 17px;
    color: var(--text-title-color);
    text-transform: capitalize;
    margin-top: 10px;
}
.vice-text .vice-title {
    font-size: 15px;
    text-align: unset;
}
.vice-message .vice-ms-title {
    font-weight: 700;
    color: var(--text-title-color);
    font-size: 21px;
    padding-bottom: 6px;
    padding-top: 10px;
}
.vice-message .vice-ms-more {
    text-align: right;
}
.vice-message .vice-ms-more a {
    color: var(--color-inverse);
    border: 1px solid var(--text-title-color);
    background: var(--text-title-color);
    border-radius: 6px;
    padding: 2px 9px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.35s ease-in-out;
    margin-top: 13px;
}

/* Message from the Vice Chancellor - Home Page
------------------------------*/
#message-vice .Message-Treasurer {
    padding-top: 40px;
}
#message-vice {
    padding-bottom: 60px;
}

#message-vice .message-vice-image {
    height: 310px;
    overflow: hidden;
    text-align: center;
    border-radius: 5px 0px 0px 5px;
    background: var(--color-inverse);
    transition: 0.3s;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
        rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border-right: 1px solid #eee;
}

.message-vice-image .member-info h4 {
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 19px;
    color: var(--text-title-color);
    text-transform: uppercase;
}

.message-vice-image .member-info span {
    display: block;
    font-size: 14px;
    font-weight: 500;
}

#message-vice .vice-info {
    height: 230px;
    text-align: center;
    margin: 0 auto;
}

.message-vice-image .member-img {
    position: relative;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 12px;
}

.member-img img {
    height: 210px;
}

#message-vice .Vice-message a {
    display: block;
    height: 310px;
    padding: 39.5px 30px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
        rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    background: var(--color-inverse);
    transition: all 0.5s ease;
}

#message-vice .Vice-message-info h4 {
    font-weight: 700;
    color: var(--text-title-color);
    font-size: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #15a52d;
}

#message-vice .Vice-message-info h4 span {
    padding-bottom: 11px;
    border-bottom: 4px solid #15a52d;
}

#message-vice .Vice-message-info p {
    text-align: justify;
    margin-bottom: 0;
    color: gray;
    line-height: 26px;
    font-weight: 500;
    font-size: 14px;
    margin-top: 15px;
}

.Vice-message-more {
    background-color: transparent;
    color: var(--color-inverse);
    border: 2px solid var(--text-title-color);
    background: var(--text-title-color);
    border-radius: 30px;
    display: inline-block;
    padding: 3px 10px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.35s ease-in-out;
    margin-top: 10px;
}

.Vice-message .ri-double-quotes-l,
.Vice-message .ri-double-quotes-r {
    color: gray;
    font-size: 25px;
}

.Vice-message .ri-double-quotes-l {
    display: inline-block;
    left: -5px;
    position: relative;
}

.Vice-message .ri-double-quotes-r {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 8px;
}

/* Pro-Vice Chancellor - Home Page
------------------------------*/
.Pro-Vice {
    padding: 30px 0;
}

.Pro-Vice .Pro-Vice-member {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 5px;
    background: var(--color-inverse);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    transition: all 0.4s ease-in-out;
}

.Pro-Vice .Pro-Vice-member:hover .Pro-Vice-member-img img {
    transform: scale(1.15);
}

.Pro-Vice .Pro-Vice-member:hover {
    box-shadow: none;
    transform: translateY(-7px);
}

.Pro-Vice .Pro-Vice-member .Pro-Vice-member-img img {
    transition: all 0.6s;
}

.Pro-Vice .Pro-Vice-member:hover .Pro-Vice-member-info h4 {
    color: var(--color-primary);
}

.Pro-Vice .Pro-Vice-member .Pro-Vice-member-img {
    position: relative;
    overflow: hidden;
    background: #d6d6d8;
}

.Pro-Vice .Pro-Vice-member .Pro-Vice-member-info {
    padding: 20px 15px;
}

.Pro-Vice .Pro-Vice-member .Pro-Vice-member-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 17px;
    color: var(--text-title-color);
    text-align: center;
    text-transform: uppercase;
}

.Pro-Vice .Pro-Vice-member .Pro-Vice-member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
}

.Pro-Vice .Pro-Vice-member .Pro-Vice-member-info p {
    font-style: italic;
    font-size: 14px;
    line-height: 26px;
}

/* Stats Section - Home Page
------------------------------*/
.stats {
    --color-default-stats: #444444;
    --color-default-rgb: 255, 255, 255;
    --color-background: #000000;
    --color-background-rgb: 0, 0, 0;
    position: relative;
    padding: 120px 0;
    --background-color: color-mix(
        in srgb,
        var(--color-primary),
        transparent 94%
    );
}
.stats i {
    color: var(--color-inverse);
    background-color: var(--color-primary);
    box-shadow: 0px 2px 25px
        color-mix(in srgb, var(--color-default-stats), transparent 92%);
    width: 54px;
    height: 54px;
    font-size: 24px;
    border-radius: 50px;
    border: 2px solid var(--background-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.stats img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
}

.stats:before {
    content: "";
    background: rgba(var(--color-background-rgb), 0.6);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.stats .container {
    position: relative;
    z-index: 3;
}

.stats .stats-item {
    background-color: var(--color-inverse);
    margin-top: -27px;
    padding: 30px 30px 25px 30px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0px 2px 35px
        color-mix(in srgb, var(--color-default-stats), transparent 92%);
    border-radius: 4px;
    z-index: 0;
}

.stats .stats-item span {
    font-size: 40px;
    color: var(--color-default);
    font-weight: 700;
    text-align: center;
    line-height: 50px;
    margin: 10px 0;
}

.stats .stats-item p {
    padding: 0;
    margin: 0;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: rgba(var(--text-title-rgb), 0.7);
    text-align: center;
}

/* FACULTIES and INSTITUTES Section - Home Page
------------------------------*/
#FACULTIES {
    padding-bottom: 30px;
}

#FACULTIES .FACULTIES-container {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.09);
    padding: 20px;
    border-radius: 4px;
}

.FACULTIES-single .FACULTIES-line {
    width: 100%;
    height: 5px;
    background-color: #673ab7;
}

.FACULTIES-single h3 {
    color: #673ab7;
    text-align: center;
    text-transform: uppercase;
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 22px;
}

.FACULTIES-single .faculties-items {
    background: rgb(230, 240, 250);
    padding: 8px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: left;
    border-radius: 5px 0px 0px 5px;
    display: flex;
    align-items: center;
}

.faculties-items i {
    font-size: 20px;
    margin-right: 8px;
    line-height: 1;
    background: #673ab7;
    padding: 5px;
    border-radius: 50%;
    border: 2px solid #b48cfa;
    color: var(--color-inverse);
}

.FACULTIES-single .faculties-items:hover {
    background-color: #673ab7;
    transition: background-color 1s ease-out;
}

.FACULTIES-single .faculties-items:hover a {
    color: var(--color-inverse);
    text-shadow: 2px 2px 5px #000;
}

.FACULTIES-single .faculties-items a {
    text-shadow: 2px 2px 5px var(--color-inverse);
    color: #673ab7;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
}

.INSTITUTES-single .INSTITUTES-line {
    width: 100%;
    height: 5px;
    background-color: #194682;
}

.INSTITUTES-single h3 {
    color: #194682;
    text-align: center;
    text-transform: uppercase;
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 22px;
}

.INSTITUTES-single .INSTITUTES-items {
    background: rgb(230, 240, 250);
    padding: 8px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: right;
    border-radius: 0px 5px 5px 0px;
    display: flex;
    align-items: center;
    justify-content: end;
}

.INSTITUTES-items i {
    font-size: 20px;
    margin-left: 8px;
    line-height: 1;
    background: #194682;
    padding: 5px;
    border-radius: 50%;
    border: 2px solid #71acfa;
    color: var(--color-inverse);
}

.INSTITUTES-single .INSTITUTES-items:hover {
    background-color: #194682;
    transition: background-color 1s ease-out;
}

.INSTITUTES-single .INSTITUTES-items:hover a {
    color: var(--color-inverse);
    text-shadow: 2px 2px 5px #000;
}

.INSTITUTES-single .INSTITUTES-items a {
    text-shadow: 2px 2px 5px var(--color-inverse);
    color: #194682;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
}

/* SEMINAR and WORKSHOP Section - Home Page
------------------------------*/
#seminar {
    padding-top: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-image: url('https://i.ibb.co/cLHWqZX/EDUBIN0532-1.png');
    background-repeat: no-repeat;
    background-size: cover;
}
/* Shapes Css*/
#seminar .trending-shape-1 {
    position: absolute;
    top: 30%;
    left: -120px;
    width: 240px;
    height: 240px;
    border: 30px solid var(--color-primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}
#seminar .trending-shape-2 {
    position: absolute;
    left: 140px;
    top: 28%;
    z-index: -1;
    animation: round-01 5s linear infinite;
}
#seminar .trending-shape-3 {
    position: absolute;
    left: 140px;
    bottom: 23%;
    z-index: -1;
}
#seminar .trending-shape-4 {
    position: absolute;
    right: 170px;
    top: 40%;
    z-index: -1;
    animation: rotate-style 10s linear infinite;
}
#seminar .trending-shape-5 {
    position: absolute;
    right: -40px;
    bottom: 22%;
    z-index: -1;
    animation: round-01 5s linear infinite;
    opacity: 0.3;
}

/* Animation css */
@keyframes round-01 {
    0% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(15deg);
    }
}
@keyframes rotate-style {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.seminar-container {
    padding: 20px;
}

.seminar-title .divider {
    background: var(--text-title-color);
    height: 5px;
    border-radius: 5px 5px 0px 0px;
}

.seminar-title h2 {
    color: var(--color-inverse);
    text-align: center;
    text-transform: uppercase;
    font-size: 22px;
    margin-bottom: 12px;
    padding: 5px 0px;
    background: var(--text-title-color);
    border-radius: 0px 0px 5px 5px;
}

.seminar-card-body h5 {
    font-weight: 600;
    font-size: 18px;
}

.seminar-card-body p {
    font-size: 14px;
}

.seminar-card-body a {
    font-weight: 600;
}

.seminar-image {
    position: relative;
}

.seminar-image img {
    height: 180px;
    object-fit: cover;
}

.seminar-date {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-color: var(--color-primary);
    color: var(--color-inverse);
}
.seminar-date span {
    display: block;
    color: var(--color-inverse);
}
.seminar-date .day {
    font-weight: 700;
    font-size: 20;
}
.seminar-date .month,
.year {
    font-size: 13px;
}
.seminar-date h4 {
    background-color: var(--color-primary);
    color: var(--color-inverse);
    font-size: 16px;
    font-weight: 600;
    padding: 7px 12px;
    margin-bottom: 0;
}

.seminar-btn a {
    color: var(--color-inverse);
    font-family: "Poppins", sans-serif;
    border: 2px solid var(--text-title-color);
    border-radius: 6px;
    padding: 4px 11px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    background-color: var(--text-title-color);
}

.seminar-btn a:hover {
    background-color: var(--text-title-color);
    color: var(--color-inverse);
}

.Seminar-card {
    transition: 0.3s;
}

@media (min-width: 1200px) {
    .Seminar-card:hover {
        transform: scale(1.1);
    }
}

/* Events and Notices Section - Home Page
------------------------------*/
.event-and-notices {
    background-color: #eee;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.event-and-notices .shape-1 {
    width: 700px;
    height: 700px;
    background: #edf9f5;
    border-radius: 50%;
    position: absolute;
    top: -25%;
    left: -18%;
    z-index: -1;
}

.event-card {
    height: 450px;
    transition: 0.5s;
}

.event-card:hover {
    transform: translateY(-7px);
}

.event-card img {
    height: 220px;
    object-fit: cover;
}

.event-info {
    padding: 20px 23px;
    /* display: flex; */
}

.event-info .event-date {
    text-align: center;
    min-width: 80px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: -3px;
    background: var(--text-title-color);
    height: 65px;
    border-radius: 4px;
    padding: 3px;
}
.event-and-notices .event-loc {
    color: #58595b;
    font-size: 16px;
    font-weight: 500;
}
.event-and-notices .event-loc i {
    font-size: 17px;
    color: var(--color-primary);
}
.event-and-notices .event-date-end {
    padding: 6px 15px;
    border: 1px solid rgba(217, 217, 217, 0.89);
    border-radius: 99999px;
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 10px;
}
.event-and-notices .event-date-end span {
    font-size: 14px;
    font-weight: 500;
}
.event-and-notices .event-date-end span i {
    color: var(--color-primary);
    font-weight: normal;
}
.event-and-notices .event-date-end .event-start {
    position: relative;
}
.event-and-notices .event-date-end .event-start::before {
    content: "";
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    height: 21px;
    width: 1px;
    background-color: #d9d9d9;
}
.event-info .event-date strong {
    display: block;
    font-weight: 800;
    line-height: 1;
    font-size: 29px;
    color: var(--color-inverse);
}

.event-info .event-date span {
    color: var(--color-inverse);
    font-size: 13px;
}

.event-info .event-text h4 {
    font-weight: 600;
    margin-bottom: 5px;
    text-align: left;
    line-height: 1.5;
    margin-top: -3px;
    font-size: 17px;
    min-height: 72px;
}

.event-info .event-text h4 a {
    color: var(--text-title-color);
}

.event-info .event-text h4 a:hover {
    color: var(--color-primary);
}

.event-more-btn a {
    color: var(--color-inverse);
    font-family: "Poppins", sans-serif;
    /* border: 2px solid var(--text-title-color); */
    border-radius: 6px;
    padding: 3px 11px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    background-color: var(--text-title-color);
}

.event-more-btn a:hover {
    background-color: var(--text-title-color);
    color: var(--color-inverse);
}
.Home-notice {
    /* background: #fafcff; */
    background-image: url("https://i.ibb.co/zZwL2CR/blog-image-bg.png");
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.notices-card {
    padding: 30px 25px;
    border: 1px solid #e7e7e7;
    height: 510px;
    /* border-top: 1px solid #e7e7e7; */
    overflow-x: scroll;
    position: relative;
    z-index: 1;
    border-radius: 6px;
    background-image: url("https://i.ibb.co/VHKXD68/why-choose.jpg");
    background-repeat: no-repeat;
}

.notices-card .notice-item {
    /* border-bottom: 1px solid #e7e7e7;
    margin-bottom: 25px;
    padding-bottom: 25px; */
    display: flex;
    align-items: center;
    border: 1px solid #eeeeee;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
}
#notice .notices-card .notice-date {
    margin-right: 25px;
    text-align: center;
}
#notice .notices-card .notice-date .date {
    background: var(--text-title-color);
    color: var(--color-inverse);
    width: 150px;
}
#notice .notices-card .notice-date .date h4 {
    font-size: 20px;
    padding-top: 6px;
    padding-bottom: 6px;
    margin-bottom: 0;
}
#notice .notices-card .notice-date .Years {
    background: #002f50;
    color: var(--color-inverse);
}
#notice .notices-card .notice-date .Years h6 {
    font-size: 16px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 0;
}

.notices-card .notice-item h5 {
    text-align: justify;
    font-family: "Poppins", sans-serif;
    margin-bottom: 10px;
    color: var(--text-title-color);
    line-height: 1.2;
    font-weight: 600;
}

.notices-card .notice-item h5 a {
    color: var(--text-title-color);
    font-size: 16px;
    transition: all 0.3s;
}

.notices-card .notice-item h5 a:hover {
    color: var(--color-primary);
}

.notices-card .notice-item p {
    color: #666666;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 10px;
}

.all-event-btn {
    margin-top: 35px;
}

.all-event-btn a {
    font-family: "Poppins", sans-serif;
    background-color: var(--color-primary);
    color: var(--color-inverse);
    padding: 10px 40px 10px;
    font-size: 14px;
    line-height: 25px;
    font-weight: 700;
    border-radius: 3px;
    transition: all 250ms;
}

.all-event-btn a:hover {
    box-shadow: rgba(75, 44, 187, 0.35) 0 -25px 18px -14px inset,
    rgba(54, 44, 187, 0.25) 0 1px 2px, rgba(49, 44, 187, 0.25) 0 2px 4px,
    rgba(54, 44, 187, 0.25) 0 4px 8px, rgba(49, 44, 187, 0.25) 0 8px 16px,
    rgba(54, 44, 187, 0.25) 0 16px 32px;
    transform: scale(1.05) rotate(-1deg);
    color: var(--color-inverse);
    background-color: #407ae1;
}
#notice .notice-button-hm {
    padding: 14px 20px;
    background-color: #e2eeff;
    border-radius: 9999px;
    display: inline-block;
}
.notice-nav-btn {
    color: var(--color-inverse);
    text-transform: capitalize;
    font-weight: 500;
    border-radius: 9999px !important;
    font-size: 15px;
    background: #607d8b;
}

.notice-nav-btn:hover {
    color: var(--nav-items-hover);
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background: var(--color-primary);
}

/*--------------------------------------------------------------
# activities
--------------------------------------------------------------*/
#activities {
    /* background-color: #eee; */
    background-image: url("https://i.ibb.co/qDf8tMC/bg-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.activities .activities-carousel,
.activities .activities-slider {
    overflow: hidden;
}

.activities-image {
    overflow: hidden;
    border-radius: 5px 5px 0px 0px;
}

.activities-card:hover .activities-image img {
    transform: scale(1.15);
}

.activities-card img {
    width: 100%;
    height: 230px;
    border-radius: 5px 5px 0px 0px;
    transition: all 0.6s;
    object-fit: cover;
}

.activities-card {
    background: var(--color-inverse);
    box-shadow: 0px 0px 10px #00000014;
    border: none;
    border-radius: 5px;
    transition: all 0.4s ease;
}

.activities-info {
    padding: 30px;
}

.activities-date {
    text-align: left;
}

.activities-info .activities-date h6 {
    font-weight: 500;
    font-size: 16px;
    color: var(--text-title-color);
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    display: inline;
}

.activities-info .activities-date h6 i {
    color: var(--color-primary);
    padding-right: 8px;
    font-weight: normal;
    font-size: 19px;
}

.activities-info h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.4;
    margin-top: 10px;
    font-size: 18px;
}

.activities-info h4 a {
    color: var(--text-title-color);
}

.activities-info .activities-btn {
    border-top: 1px solid #e7e7e7;
    margin-top: 20px;
    padding-top: 25px;
}

.activities-info .activities-btn a {
    color: var(--color-inverse);
    font-family: "Poppins", sans-serif;
    border: 2px solid var(--text-title-color);
    border-radius: 6px;
    padding: 4px 11px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    background-color: var(--text-title-color);
}

.activities-info .activities-btn a:hover {
    background-color: var(--text-title-color);
    color: var(--color-inverse);
}

.activities .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.activities .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--color-primary);
    opacity: 1;
    border: 1px solid var(--color-primary);
    transition: all 0.4s ease;
}

.activities .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
    width: 22px;
    border-radius: 30px;
}

.all-activities-btn {
    text-align: center;
    padding-top: 10px;
}

.all-activities-btn a {
    font-family: "Poppins", sans-serif;
    background-color: var(--color-primary);
    color: var(--color-inverse);
    padding: 10px 40px 10px;
    font-size: 14px;
    line-height: 25px;
    font-weight: 700;
    transition: all 250ms;
    border-radius: 3px;
}

.all-activities-btn a:hover {
    box-shadow: rgba(75, 44, 187, 0.35) 0 -25px 18px -14px inset,
    rgba(54, 44, 187, 0.25) 0 1px 2px, rgba(49, 44, 187, 0.25) 0 2px 4px,
    rgba(54, 44, 187, 0.25) 0 4px 8px, rgba(49, 44, 187, 0.25) 0 8px 16px,
    rgba(54, 44, 187, 0.25) 0 16px 32px;
    transform: scale(1.05) rotate(-1deg);
    color: var(--color-inverse);
    background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Research Activities
--------------------------------------------------------------*/
.research {
    background: #f1f7fd;
}
.research .research-carousel,
.research .research-slider {
    overflow: hidden;
}
.research-card {
    box-shadow: 0 0 20px #eee;
    border: 0;
    background: var(--color-inverse);
    border-radius: 5px;
}
.research-image {
    position: relative;
    overflow: hidden;
}
.research-image img {
    border-radius: 5px 5px 0 0;
    height: 240px;
    object-fit: cover;
    transition: all 0.6s;
}
.research-card:hover .research-image img {
    transform: scale(1.15);
}

.research-image .dates {
    background: var(--color-primary);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 7px 20px;
    display: inline-block;
    color: var(--color-inverse);
    border-radius: 15px 15px 0 0;
    right: 0;
    margin: 0 auto;
    max-width: 220px;
    text-align: center;
    font-weight: 500;
}
.research-info {
    padding: 30px 30px 35px 30px;
    text-align: center;
    border-radius: 0 0 5px 5px;
}
.research-info h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.4;
    font-size: 18px;
}
.research-info h4 a {
    color: var(--text-title-color);
}

.research-info .research-btn a {
    color: var(--color-inverse);
    font-family: "Poppins", sans-serif;
    border: 2px solid var(--text-title-color);
    border-radius: 30px;
    padding: 4px 11px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    background-color: var(--text-title-color);
}

.research-info .research-btn a:hover {
    background-color: var(--text-title-color);
    color: var(--color-inverse);
}

.research .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.research .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--color-primary);
    opacity: 1;
    border: 1px solid var(--color-primary);
    transition: all 0.4s ease;
}

.research .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
    width: 22px;
    border-radius: 30px;
}

.all-research-btn {
    text-align: center;
    padding-top: 10px;
}

.all-research-btn a {
    font-family: "Poppins", sans-serif;
    background-color: var(--color-primary);
    color: var(--color-inverse);
    padding: 10px 40px 10px;
    font-size: 14px;
    line-height: 25px;
    font-weight: 700;
    transition: all 250ms;
    border-radius: 3px;
}

.all-research-btn a:hover {
    box-shadow: rgba(75, 44, 187, 0.35) 0 -25px 18px -14px inset,
    rgba(54, 44, 187, 0.25) 0 1px 2px, rgba(49, 44, 187, 0.25) 0 2px 4px,
    rgba(54, 44, 187, 0.25) 0 4px 8px, rgba(49, 44, 187, 0.25) 0 8px 16px,
    rgba(54, 44, 187, 0.25) 0 16px 32px;
    transform: scale(1.05) rotate(-1deg);
    color: var(--color-inverse);
    background-color: var(--color-primary);
}

/*! ********   overview page -   ********** */
/*--------------------------------------------------------------
# Vision and Mission
--------------------------------------------------------------*/
.section-header {
    text-align: center;
    padding: 30px 0;
    position: relative;
    padding-bottom: unset !important;
}
.section-header h2 {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text-title-color);
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
}
.section-header h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.section-header span {
    position: absolute;
    top: 46px;
    color: rgba(14, 29, 52, 0.06);
    left: 0;
    right: 0;
    z-index: 1;
    font-weight: 700;
    font-size: 50px;
    text-transform: uppercase;
    line-height: 0;
}
.section-header p {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 640px) {
    .section-header h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .section-header span {
        font-size: 38px;
    }
}

.Mission .Mission-top-title {
    margin-bottom: 25px;
}
.Mission .Mission-top-title h2 {
    color: var(--text-title-color);
    font-weight: normal;
    line-height: 1.2;
    font-size: 24px;
    margin-bottom: 15px;
}
.Mission .Mission-top-title p {
    text-align: justify;
    color: #333333;
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
}
.Mission .mission-part {
    margin-bottom: 25px;
}
.Mission .mission-part h3 {
    color: var(--text-title-color);
    font-weight: 500;
    line-height: 1.2;
    font-size: 24px;
    margin-bottom: 5px;
}

.Mission .mission-part p {
    text-align: justify;
    margin-bottom: 10px;
    color: var(--text-title-color);
    line-height: 26px;
    font-weight: 400;
    /*border-left: 2px solid var(--text-title-color);*/
    border-radius: 5px;
    /*padding-left: 10px;*/
    font-size: 15px;
}
td {
    text-align: justify;
}
/*--------------------------------------------------------------
# Goals and Institutional member
--------------------------------------------------------------*/
#Goals {
    background: #f1f7fd;
}
#Goals .Goals-single-items {
    padding: 15px;
    background: var(--color-inverse);
    border-radius: 4px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
#Goals .Goals-single-items i {
    font-size: 24px;
    color: var(--color-primary);
}
#Goals .Goals-single-items p {
    margin-bottom: 0;
    color: #343a40;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    text-align: justify;
}
#Goals .Goals-single-items p:hover {
    color: var(--color-primary);
}
/*--------------------------------------------------------------
# Member and Institutional member
--------------------------------------------------------------*/
#Institutional-meb .Institutional-items {
    padding-bottom: 25px;
}
#Institutional-meb .Institutional-single-items {
    padding: 15px;
    border-radius: 4px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(0, 0, 0, 0.125);
}
#Institutional-meb .Institutional-single-items i {
    font-size: 24px;
    color: var(--color-primary);
}
#Institutional-meb .Institutional-single-items p {
    margin-bottom: 0;
    color: #343a40;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}
#Institutional-meb .Institutional-single-items p:hover {
    color: var(--color-primary);
}

/*! ********   Resources page -   ********** */
/*--------------------------------------------------------------
# common-part of design
--------------------------------------------------------------*/
.resources-page-common-part-content ul {
    list-style: none;
    padding: 0;
}
.resources-page-common-part-content p {
    margin-bottom: 15px;
    text-align: justify;
}
.resources-page-common-part-content ul li {
    padding-left: 28px;
    position: relative;
    text-align: justify;
}
.resources-page-common-part-content ul li + li {
    margin-top: 10px;
}
.resources-page-common-part-content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: var(--color-primary);
    line-height: 1;
}

/*--------------------------------------------------------------
# Library
--------------------------------------------------------------*/
#Library .library-content ul {
    list-style: none;
    padding: 0;
}
.Library .library-content p {
    margin-bottom: 15px;
}
.Library .library-content ul li {
    padding-left: 28px;
    position: relative;
    text-align: justify;
    color: #666666;
}
.Library .library-content ul li + li {
    margin-top: 10px;
}
.Library .library-content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: var(--color-primary);
    line-height: 1;
}

.gallery {
    margin-top: 30px;
}
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.gallery .gallery-item img {
    transition: 0.3s;
    height: 100%;
}
.gallery .gallery-links {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: all ease-in-out 0.3s;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3;
}
.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
    line-height: 1.2;
    margin: 30px 8px 0 8px;
}
.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
    color: var(--color-inverse);
}
.gallery .gallery-links .details-link {
    font-size: 30px;
    line-height: 0;
}
.gallery .gallery-item:hover .gallery-links {
    opacity: 1;
}
.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
    margin-top: 0;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}
.glightbox-clean .gslide-description {
    background: #222523;
}

.glightbox-clean .gslide-title {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}
/*--------------------------------------------------------------
# Laboratory Facilities
--------------------------------------------------------------*/
#laboratory-fac {
    background: #f1f7fd;
}
.laboratory-fac .laboratory-fac-content ul {
    list-style: none;
    padding: 0;
}
.laboratory-fac .laboratory-fac-content ul li {
    padding-left: 28px;
    position: relative;
    text-align: justify;
}
.laboratory-fac .laboratory-fac-content ul li + li {
    margin-top: 10px;
}
.laboratory-fac .laboratory-fac-content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: var(--color-primary);
    line-height: 1;
}

/*--------------------------------------------------------------
# Student Service Offices
--------------------------------------------------------------*/
#student-service {
    background: #f1f7fd;
}
/*--------------------------------------------------------------
# On-Campus Security
--------------------------------------------------------------*/
#campus-security {
    background: #f1f7fd;
}
/*--------------------------------------------------------------
# Recreation
--------------------------------------------------------------*/
#Recreation {
    background: #f1f7fd;
}

/*! ********   JKKNIU at a glance page page -   ********** */
/*--------------------------------------------------------------
#  at a glance
--------------------------------------------------------------*/
#glance {
    background: #f1f7fd;
}
.glance .accordion-list ul {
    padding: 0;
    list-style: none;
}
.glance .accordion-list li + li {
    margin-top: 15px;
}
.glance .accordion-list li {
    padding: 20px;
    background: var(--color-inverse);
    border-radius: 4px;
}
.glance .accordion-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
    cursor: pointer;
}
.glance .accordion-list span {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
}
.glance .accordion-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}
.glance .accordion-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}
.glance .accordion-list .icon-show {
    display: none;
}

.glance .accordion-list a.collapsed {
    color: #343a40;
}

.glance .accordion-list a.collapsed:hover {
    color: var(--color-primary);
}

.glance .accordion-list a.collapsed .icon-show {
    display: inline-block;
}

.glance .accordion-list a.collapsed .icon-close {
    display: none;
}

/*! ********   APA page page -   ********** */
/*--------------------------------------------------------------
#  APA page all css
--------------------------------------------------------------*/
#apaBody {
    background: url(../img/bg_main.gif) repeat-y scroll center top
        rgba(0, 0, 0, 0);
    font-size: 15px;
}
.apa-area {
    overflow: hidden;
    padding: 5px 0 10px;
}
.apa-card {
    border: 1px solid #dddddd;
    background: var(--color-inverse);
    border-radius: 0.25rem;
}
.top-header {
    background-color: var(--color-primary);
    text-align: center;
}
.top-header ul {
    list-style: none;
    color: var(--color-inverse);
}
.top-header ul li {
    display: inline-block;
    color: var(--color-inverse);
    font-size: 14px;
    text-decoration: none;
    line-height: 14px;
}
.top-header ul li a {
    color: var(--color-inverse);
    padding: 15px 10px 15px 10px;
    display: inline-block;
    font-size: 14px;
    text-decoration: none;
    line-height: 14px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    transition: 0.3s;
}
.top-header ul li a:hover {
    color: var(--text-title-color);
}
.top-header ul li a::after {
    position: absolute;
    right: 0;
    top: 15px;
    content: "|";
    width: 1px;
    height: 6px;
}
.top-header ul li:last-child a::after {
    content: "";
}
.middle-header-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 10px;
    padding-bottom: 30px;
}
.middle-header-logo img {
    width: 70px;
}
.middle-header-logo h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-title-color);
}
.middle-header-logo h2:last-child {
    margin-bottom: 0;
}
.main-header {
    background: var(--text-title-color);
    padding: 15px 15px;
}
.main-header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.main-header ul li {
    display: inline-block;
    color: var(--color-inverse);
    font-size: 14px;
    text-decoration: none;
    line-height: 14px;
}
.main-header ul li a {
    color: var(--color-inverse);
    padding: 10px 0px 10px 25px;
    text-transform: uppercase;
    transition: 0.3s;
    position: relative;
}
.main-header ul li a:hover {
    color: var(--color-primary);
}
#apa-section {
    padding-top: 20px;
}
.apa-section-title {
    margin-bottom: 20px;
    text-align: center;
}
.apa-section-title h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
}
.apa-items {
    transition: 0.4s all;
    border: 1px solid #dddddd;
    background-color: #f5f5f5;
}
.apa-items a {
    color: var(--color-primary);
}
.apa-items a h4 {
    font-size: 18px;
    font-weight: 600;
    padding: 12px;
}
.apa-items .apa-card-content img {
    width: 150px;
}
.apa-card-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.apa-card-body ul li {
    padding-left: 28px;
    position: relative;
    text-align: justify;
}
.apa-card-body ul li + li {
    margin-top: 7px;
}
.apa-card-body ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: var(--color-primary);
    line-height: 1;
    font-weight: bolder;
}
.apa-card-body ul li a {
    color: var(--text-title-color);
    font-weight: 500;
    transition: 0.3s;
}
.apa-card-body ul li a:hover {
    color: var(--color-primary);
}
.apa-card-content {
    padding-bottom: 15px;
    padding-left: 10px;
}
#apa-footer {
    background: var(--text-title-color);
    padding: 15px 0px;
    text-align: center;
}
#apa-footer .apa-footer-link h5 {
    margin-bottom: 0;
    color: var(--color-inverse);
    line-height: 26px;
    font-weight: 400;
    font-size: 15px;
}

/*! ********   Departments -   ********** */
/*--------------------------------------------------------------
#  Departments css
--------------------------------------------------------------*/
#departments .departments-card {
    box-shadow: 0 0 20px #eee;
    border: 0;
    background: var(--color-inverse);
    /* background: #f1f7fd; */
    border-radius: 5px;
    border-bottom: 2px solid var(--color-primary);
}
#departments .departments-image {
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}
#departments .departments-image img {
    border-radius: 5px 5px 0 0;
    height: 240px;
    object-fit: cover;
    transition: all 0.6s;
}
#departments .departments-card:hover .departments-image img {
    transform: scale(1.15);
    border-radius: 5px 5px 0 0;
}
#departments .departments-info {
    padding: 30px 30px 35px 30px;
    text-align: center;
    border-radius: 0 0 5px 5px;
}
#departments .departments-info h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.4;
    font-size: 19px;
}
#departments .departments-info h4 a {
    color: var(--text-title-color);
    transition: all 0.35s ease-in-out;
}
#departments .departments-info h4 a:hover {
    color: var(--color-primary);
}
#departments .departments-info .departments-btn a {
    color: var(--color-primary);
    font-family: "Poppins", sans-serif;
    border: 2px solid var(--color-primary);
    border-radius: 30px;
    padding: 4px 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
}
#departments .departments-info .departments-btn a i {
    margin-left: 4px;
    font-weight: 500;
}

#departments .departments-info .departments-btn a:hover {
    background-color: var(--color-primary);
    color: var(--color-inverse);
}

/*! ********   JKKNIU ORGANOGRAM -   ********** */
/*--------------------------------------------------------------
#  JKKNIU ORGANOGRAM css
--------------------------------------------------------------*/
#organogram .organogram-info {
    border-top: 3px solid var(--color-primary);
    border-bottom: 3px solid var(--color-primary);
    padding: 30px;
    background: var(--color-inverse);
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}
#organogram .organogram-info h4 {
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    font-size: 22px;
    margin-bottom: 15px;
}
/*! ********   CAMPUS MAP -   ********** */
/*--------------------------------------------------------------
#  CAMPUS MAP css
--------------------------------------------------------------*/
#campus-map .campus-info p {
    text-align: justify;
    color: var(--text-title-color);
    line-height: 26px;
    font-weight: 400;
}
#campus-map .campus-info h4 {
    margin-bottom: 20px;
}
/*! ********   Monogram -   ********** */
/*--------------------------------------------------------------
#  Monogram css
--------------------------------------------------------------*/
#Monogram .Monogram-info {
    border-top: 3px solid var(--color-primary);
    border-bottom: 3px solid var(--color-primary);
    padding: 30px;
    background: var(--color-inverse);
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}
#Monogram .Monogram-info {
    margin: 0 auto;
    text-align: center;
}
#Monogram .Monogram-info img {
    text-align: center;
}
/*! ********   Monogram -   ********** */

/*--------------------------------------------------------------
#  News css
--------------------------------------------------------------*/
#latest-news .latest-news-container {
    border-top: 3px solid var(--color-primary);
    border-bottom: 3px solid var(--color-primary);
    padding: 30px;
    background: var(--color-inverse);
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}
#latest-news .latest-news-container h4 {
    color: var(--text-title-color);
    font-size: 19px;
    font-weight: 600;
    line-height: 26px;
}
#latest-news .latest-news-container .lestNews-img {
    margin: 0 auto;
    text-align: center;
}
#latest-news .latest-news-container .lestNews-img img {
    cursor: pointer;
    border: 4px solid #dbdbdb;
    border-radius: 5px;
    transition: 0.3s;
}
#latest-news .latest-news-container .lestNews-img img:hover {
    border: 4px solid var(--color-primary);
}
#latest-news .latest-news-container .lest-news-info {
    margin-top: 25px;
}
#latest-news .latest-news-container .lest-news-info p {
    text-align: justify;
    color: #666666;
    font-size: 15px;
}
#latest-news .latest-news-container .lest-news-info p:last-child {
    margin-bottom: 0;
}
#latest-news .share-link {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}
#latest-news .share-link .shareLink-info {
    padding: 7px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}
#latest-news .share-link .shareLink-info h4 {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    color: #a5a6aa;
}
#latest-news .share-link .share-socal a {
    color: var(--color-inverse);
    width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border-radius: 4px;
    margin-right: 8px;
}
#latest-news .share-link .share-socal .facebook {
    background: #1559c2;
}

#latest-news .share-link .share-socal .linkedin {
    background: rgba(12, 45, 98, 0.83);
}

#latest-news .share-link .share-socal .twitter {
    background: #1ea9e9;
}
#latest-news .share-link .share-socal .whatsapp {
    background: #43ce13;
}
#latest-news .share-link .share-socal .pinterest {
    background: #ed1d25;
}
#latest-news .share-link .share-socal .Messenger {
    /* background: #006AFF; */
    background-image: linear-gradient(
        to bottom left,
        #ff6968,
        #a334fa,
        #0695ff
    );
}
#latest-news .share-link .share-socal a i {
    font-size: 22px;
}

/*! ********   All Notice -   ********** */
/*--------------------------------------------------------------
#  All notice css
--------------------------------------------------------------*/
#allNotice .allNotice-card {
    padding: 30px 35px;
    border: 1px solid #e7e7e7;
    border-top: none;
    /* border-top: 3px solid var(--color-primary);
    border-bottom: 3px solid var(--color-primary); */
    background: var(--color-inverse);
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
    border-radius: 6px;
}

#allNotice .allNotice-card .allNotice-item {
    /* border-bottom: 1px solid #e7e7e7; */
    /* border: 1px solid #eeeeee;
    margin-bottom: 25px;
    padding-bottom: 25px;
    padding: 10px;
    border-radius: 5px; */
    display: flex;
    align-items: center;
    border: 1px solid #eeeeee;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
}
#allNotice .allNotice-card .notice-date {
    margin-right: 25px;
    text-align: center;
}
#allNotice .allNotice-card .notice-date .date {
    background: var(--text-title-color);
    color: var(--color-inverse);
    width: 150px;
}
#allNotice .allNotice-card .notice-date .date h4 {
    font-size: 20px;
    padding-top: 6px;
    padding-bottom: 6px;
    margin-bottom: 0;
}
#allNotice .allNotice-card .notice-date .Years {
    background: #002f50;
    color: var(--color-inverse);
}
#allNotice .allNotice-card .notice-date .Years h6 {
    font-size: 16px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 0;
}

#allNotice .allNotice-card .allNotice-item h5 {
    text-align: justify;
    font-family: "Poppins", sans-serif;
    margin-bottom: 10px;
    color: var(--text-title-color);
    line-height: 1.2;
    font-weight: 600;
}

#allNotice .allNotice-card .allNotice-item h5 a {
    color: var(--text-title-color);
    font-size: 15px;
    transition: all 0.3s;
}

#allNotice .allNotice-card .allNotice-item h5 a:hover {
    color: var(--color-primary);
}

#allNotice .allNotice-card .allNotice-item p {
    color: #666666;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 10px;
}
#allNotice .allNotice-nav-btn {
    color: var(--text-title-color);
    text-transform: uppercase;
    font-weight: 500;
}

#allNotice .allNotice-nav-btn:hover {
    color: var(--color-primary);
}

#allNotice .nav-pills .nav-link.active,
#allNotice .nav-pills .show > .nav-link {
    background: var(--text-title-color);
    color: var(--color-inverse);
}
/*! ********   Gallery -   ********** */
/*--------------------------------------------------------------
#  Gallery css
--------------------------------------------------------------*/
.campus-gallery .gallery-content {
    position: relative;
    overflow: hidden;
}
.campus-gallery .gallery-content img {
    transition: 0.3s;
}
.campus-gallery .gallery-content .gallery-info {
    opacity: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    transition: all ease-in-out 0.3s;
    padding: 15px;
    inset: 0;
    z-index: 3;
}
.campus-gallery .gallery-content .gallery-info p {
    position: absolute;
    bottom: 10px;
    text-align: center;
    display: inline-block;
    left: 0;
    right: 0;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}
.campus-gallery .gallery-content .gallery-info .preview-link {
    position: absolute;
    left: calc(50% - 40px);
    font-size: 26px;
    top: calc(50% - 14px);
    color: var(--color-inverse);
    transition: 0.3s;
    line-height: 1.2;
}
.campus-gallery .gallery-content .gallery-info .preview-link:hover {
    color: var(--color-primary);
}

.campus-gallery .gallery-content:hover .gallery-info {
    opacity: 1;
}

.campus-gallery .gallery-content:hover img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
#  Recent and Upcoming Events
--------------------------------------------------------------*/
#latestEvent .latestEvent-news {
    background: var(--color-inverse);
    display: flex;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0px 0px 90px 0px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-top: 20px;
}
#latestEvent .latestEvent-news .latestEvent-image {
    flex-shrink: 0;
}
#latestEvent .latestEvent-news .latestEvent-image img {
    border-radius: 100%;
    max-width: 130px;
    height: 130px;
    object-fit: cover;
}
#latestEvent .latestEvent-news .latestEvent-content {
    flex-grow: 1;
    padding-left: 30px;
}

#latestEvent .latestEvent-news .latestEvent-content span {
    font-weight: 500;
    font-size: 16px;
    color: var(--color-primary);
}
#latestEvent .latestEvent-news .latestEvent-content span i {
    font-size: 18px;
    padding-right: 3px;
}
#latestEvent .latestEvent-news .latestEvent-content h4 a {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    margin-top: 5px;
    color: var(--text-title-color);
}

#latestEvent .latestEvent-news .latestEvent-content p {
    margin-top: 5px;
    font-size: 15px;
    color: #6f6b80;
    margin-bottom: 0;
}
#latestEvent .latestEvent-news .latestEvent-content .event-location {
    font-weight: 500;
    color: var(--color-primary);
    padding-top: 3px;
}
#latestEvent .latestEvent-news .latestEvent-content p i {
    color: var(--color-primary);
}
#latestEvent .latestEvent-items .content .read-more-btn a {
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    font-size: 14px;
    padding: 7px 15px;
    border: 2px solid var(--text-title-color);
    color: var(--text-title-color);
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 30px;
}
#latestEvent .latestEvent-news .latestEvent-content .event-more-btn {
    color: var(--text-title-color);
    font-size: 13px;
    font-weight: 600;
    border: 2px solid var(--text-title-color);
    border-radius: 30px;
    padding: 2px 17px;
    text-transform: uppercase;
    transition: all 0.3s;
}
#latestEvent .latestEvent-news .latestEvent-content .event-more-btn:hover {
    background-color: var(--text-title-color);
    color: var(--color-inverse);
}
#latestEvent .latestEvent-news .latestEvent-content .event-more {
    margin-top: 10px;
}

/*! ********   Academic Calendar -   ********** */
/*--------------------------------------------------------------
#  Academic Calendar css
--------------------------------------------------------------*/
#academicCalendar .academicCalendar-tittle {
    margin-bottom: 40px;
    text-align: center;
}
#academicCalendar .academicCalendar-tittle h4 {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-title-color);
}
#academicCalendar .academicCalendar-tittle .academicCalendar-select {
    background-color: rgb(22 65 179 / 9%);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
}
#academicCalendar .academicCalendar-concent {
    border-top: 3px solid var(--color-primary);
    border-bottom: 3px solid var(--color-primary);
    padding: 30px;
    background: var(--color-inverse);
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

#academicCalendar .academicCalendar-list-table tr th {
    padding: 12px 8px;
    text-align: left;
    font-weight: 600;
}
#academicCalendar .academicCalendar-list-table th {
    font-size: 13px;
    vertical-align: middle !important;
    line-height: 1.3 !important;
    text-transform: uppercase;
    text-align: center;
}

#academicCalendar .academicCalendar-list-table td {
    padding: 12px 8px;
    font-size: 14px;
    vertical-align: middle !important;
    line-height: 1.3 !important;
}
#academicCalendar .academicCalendar-list-table tr td:nth-child(1) {
    text-align: left;
}
#academicCalendar .academicCalendar-list-table tr td:nth-child(2) {
    text-align: center;
}

#academicCalendar .academicCalendar-list-table tr td:nth-child(3) {
    text-align: center;
}
#academicCalendar .academicCalendar-list-table tr td:nth-child(6) {
    text-align: center;
}
#academicCalendar .academicCalendar-list-table tr td:nth-child(7) {
    text-align: center;
}

#academicCalendar .selectDepartment-form .selectDepartment-group {
    margin-bottom: 20px;
}
#academicCalendar .selectDepartment-form select {
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
    padding: 10px !important;
}
#academicCalendar .selectDepartment-form select:focus {
    border-color: var(--color-primary);
}
#academicCalendar .selectDepartment-form select {
    height: 44px;
}
#academicCalendar .academic-department-name {
    text-align: center !important;
    font-weight: 500;
    font-size: 20px;
    color: var(--text-title-color);
    font-family: var(--font-primary);
    text-transform: uppercase;
    padding-bottom: 13px;
}
#academicCalendar .Academic-get-button {
    background: var(--color-primary);
}
/*! ********   Login Pages -   ********** */
/*--------------------------------------------------------------
#  Login Pages css
--------------------------------------------------------------*/
#homeLogin {
    background-image: url("../img/slide/slide-4.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    padding: 100px 0px;
    width: 100%;
    z-index: 1;
}
#homeLogin::before {
    content: "";
    height: 100%;
    width: 100%;
    background-color: rgba(4, 4, 14, 0.4);
    left: 0;
    top: 0;
    position: absolute;
    z-index: -1;
}
#homeLogin .login-logo {
    width: 80px;
    margin: 0 auto;
    margin-bottom: 10px;
}
#homeLogin .form-left {
    padding: 100px 65px 70px 80px;
    width: 100%;
    box-shadow: 3px 0 79px 0 rgba(0, 0, 0, 0.08);
}
#homeLogin .form-left .form-left-tittle {
    text-align: center;
    margin-bottom: 20px;
}
#homeLogin .form-left .form-left-tittle h4 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0px;
}
#homeLogin .form-left .login-btn {
    cursor: pointer;
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    box-shadow: none;
    text-transform: uppercase;
    outline: none;
    border: 0;
    color: var(--color-inverse);
    border-radius: 3px;
    padding: 10px 36px;
    width: 100%;
    transition: all 0.3s ease-in-out;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}
#homeLogin .form-right {
    background: #4caf50;
}
#homeLogin .form-left input {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

#homeLogin .form-left input:focus {
    border-color: #009961;
}

/*! ********   Contact us -   ********** */
/*--------------------------------------------------------------
#  Contact us css
--------------------------------------------------------------*/
#admissionContact .admissionContact-item {
    width: 100%;
    border-top: 3px solid var(--color-primary);
    border-bottom: 3px solid var(--color-primary);
    padding: 30px;
    background: var(--color-inverse);
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
#admissionContact .admission-info h3 {
    margin-bottom: 25px;
    color: var(--text-title-color);
    font-weight: 600;
    font-size: 24px;
}
#admissionContact .admission-info .Contact-address h4 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #37517e;
}
#admissionContact .admission-info .Contact-address p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #6182ba;
}
#admissionContact .admissionMap {
    margin-top: 25px;
}
#admissionContact .admissionMap-info h4 {
    color: var(--text-title-color);
    font-weight: 600;
    font-size: 23px;
    margin-bottom: 15px;
}
/*! ********   Contact us -   ********** */
/*--------------------------------------------------------------
#  Tuition Fee css
--------------------------------------------------------------*/
#tuitionFee .tuitionFee-info {
    width: 100%;
    border-top: 3px solid var(--color-primary);
    border-bottom: 3px solid var(--color-primary);
    padding: 30px;
    background: var(--color-inverse);
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
#tuitionFee .tuitionFee-items {
    margin-top: 20px;
}
#tuitionFee .tuitionFee-info h4 {
    text-transform: uppercase;
    text-align: center;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-title-color);
}
#tuitionFee .tuitionFee-info h3 {
    text-transform: uppercase;
    text-align: center;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-title-color);
}
#tuitionFee .tuitionFee-info h5 {
    font-size: 17px;
    font-weight: 500;
    text-align: center;
}

.responsive-list-table th {
    padding: 12px 8px;
    text-align: left;
    font-weight: 600;
}
.responsive-list-table th {
    font-size: 13px;
    vertical-align: middle !important;
    line-height: 1.3 !important;
    text-transform: uppercase;
}

.responsive-list-table td {
    padding: 12px 8px;
    font-size: 14px;
    vertical-align: middle !important;
    line-height: 1.3 !important;
}
.responsive-list-table tr td:nth-child(1) {
    text-align: left;
}
.responsive-list-table tr td:nth-child(2) {
    text-align: left;
}

.responsive-list-table tr td:nth-child(3) {
    text-align: center;
}
.responsive-list-table tr td:nth-child(6) {
    text-align: center;
}
.responsive-list-table tr td:nth-child(7) {
    text-align: center;
}

.ln-2 {
    display: -webkit-box !important;
    line-height: 1.5 !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ln-3 {
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*! ********   Teacher Profile Dashboard -   ********** */
/*--------------------------------------------------------------
#  Teacher profile Dashboard css
--------------------------------------------------------------*/
#profileDashboard .profileDashboard-left {
    background: #b8d3f8;
    padding: 30px;
    border-radius: 10px;
}
#profileDashboard .profileDashboard-right {
    padding: 30px;
    border-radius: 10px;
    background-color: #e2eeff;
}
#profileDashboard .profileDashboard-bg {
    border-radius: 10px;
    background: var(--color-inverse);
    padding: 20px;
}

#profileDashboard .profile-image {
    text-align: center;
}
#profileDashboard .profile-image img {
    margin: 0 auto;
    height: 7.5rem;
    width: 7.5rem;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #e9ebec;
    background-color: #f3f3f9;
    padding: 0.25rem;
}
#profileDashboard .profile-image h4 {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-title-color);
    font-size: 17px;
    margin-top: 13px;
    margin-bottom: 3px;
}
#profileDashboard .profile-image h5 {
    margin-bottom: 20px;
    color: #333333;
    line-height: 26px;
    text-transform: none;
    font-weight: 400;
    font-size: 15px;
}

.profileDashboard .Dashboard-email-form .form-group {
    padding-bottom: 8px;
}
.profileDashboard .Dashboard-email-form .form-group .form-label {
    margin-bottom: 0.5rem;
}
.profileDashboard .Dashboard-email-form input,
.profileDashboard .Dashboard-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}
.profileDashboard .Dashboard-email-form input:focus,
.profileDashboard .Dashboard-email-form textarea:focus {
    border-color: var(--color-primary);
}
.profileDashboard .Dashboard-email-form input {
    height: 44px;
}

.profileDashboard .Dashboard-email-form textarea {
    padding: 10px 12px;
}
#profileDashboard .Dashboard-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}
#profileDashboard .Dashboard-title h4 {
    margin-bottom: 0px;
    font-size: 19px;
    font-weight: 600;
}
#profileDashboard .nav-link {
    border: 0;
    display: flex;
    align-items: center;
    justify-content: start;
    color: var(--text-title-color);
    transition: 0s;
    cursor: pointer;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
}
#profileDashboard .nav-link i {
    font-size: 18px;
    color: var(--color-primary);
    margin-right: 10px;
}
#profileDashboard .nav-link.active {
    transition: 0.3s;
    color: var(--color-primary);
    background-color: var(--color-inverse);
    border-radius: 10px;
    box-shadow: 0px 0px 25px rgba(180, 205, 237, 0.7);
}

#profileDashboard .Dashboard-items .Dash-panel-default {
    border-radius: 10px;
    background: var(--color-inverse);
}
#profileDashboard .Dashboard-items .Dash-panel-body {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 20px 30px;
    border-radius: 10px;
}
#profileDashboard .Dashboard-items .Dashboard-block-gradient {
    background: linear-gradient(135deg, #7596fc 0%, #b479ff 100%);
}
#profileDashboard .Dashboard-items .Dashboard-block-gradient-2 {
    background: linear-gradient(135deg, #1aa8ed 0%, #07f4ac 100%);
}
#profileDashboard .Dashboard-items .Dashboard-block-gradient-3 {
    background: linear-gradient(135deg, #fccf6e 0%, #fe6662 100%);
}
#profileDashboard .Dashboard-items .Dashboard-block-gradient-4 {
    background: linear-gradient(135deg, #46c6fb 0%, #2e429f 100%);
}
#profileDashboard .Dashboard-items .Dash-icons-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-inverse);
    margin-bottom: 10px;
}
#profileDashboard .Dashboard-items .Dash-icons-box i {
    font-size: 52px;
    line-height: 0px;
}
#profileDashboard .Dashboard-items .Dash-icons-box h4 {
    font-size: 45px;
    margin-bottom: 0px;
    text-align: right;
    line-height: 45px;
    font-weight: 300;
}
#profileDashboard .Dashboard-items .Dash-home-title h5 {
    font-weight: 400;
    color: var(--color-inverse);
    font-size: 18px;
    margin-bottom: 0;
}
#profileDashboard .Dashboard-basic-info .Dashboard-personal-info {
    position: relative;
    margin-bottom: 15px;
}
#profileDashboard .Dashboard-basic-info .Dashboard-personal-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #17171d;
    word-break: break-word;
    margin-bottom: 3px;
}
#profileDashboard .Dashboard-basic-info .Dashboard-personal-info span {
    font-size: 14px;
    color: #666666;
}

/*--------------------------------------------------------------
#  Notable Alumni
--------------------------------------------------------------*/
#notableAlumni .notAlumni-card {
    border: none;
}
#notableAlumni .notAlumni-items {
    text-align: center;
    background: var(--color-inverse);
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    padding: 15px;
    padding-bottom: 0px;
}
#notableAlumni .notAlumni-items img {
    border-radius: 100px;
    object-fit: cover;
    overflow: hidden;
    width: 180px;
    height: 180px;
    border: 5px solid #ececec;
}
#notableAlumni .notAlumni-info {
    padding: 20px;
    position: relative;
    padding-bottom: 35px;
}
#notableAlumni .notAlumni-info::before {
    content: "";
    position: absolute;
    background-color: var(--color-primary);
    width: 90%;
    margin: 0 auto;
    height: 3px;
    border-radius: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
}
#notableAlumni .notAlumni-items h4 {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--color-primary);
    text-transform: uppercase;
}
#notableAlumni .notAlumni-items span a {
    color: var(--text-title-color);
    font-weight: 500;
    font-size: 18px;
}
#notableAlumni .notAlumni-btn {
    margin-top: 10px;
}
#notableAlumni .notAlumni-btn a {
    color: var(--text-title-color);
    font-family: "Poppins", sans-serif;
    border: 2px solid var(--text-title-color);
    border-radius: 30px;
    padding: 4px 14px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}
#notableAlumni .notAlumni-btn a:hover {
    background-color: var(--text-title-color);
    color: var(--color-inverse);
}

/*--------------------------------------------------------------
#  Alumni Details css
--------------------------------------------------------------*/
#alumniDetails .alumniImage {
    border-top: 3px solid var(--color-primary);
    border-bottom: 3px solid var(--color-primary);
    padding: 15px 15px;
    background: var(--color-inverse);
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}
#alumniDetails .alumni-Bio {
    border-top: 3px solid var(--color-primary);
    border-bottom: 3px solid var(--color-primary);
    padding: 20px;
    background: var(--color-inverse);
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}
#alumniDetails .alumniImage-items .alumniImage {
    text-align: center;
}
#alumniDetails .alumniImage-items .alumniImage img {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border: 5px solid #ececec;
    border-radius: 100px;
    object-fit: cover;
    margin: 0 auto;
}
#alumniDetails .alumniImage-items .alumniImage h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-title-color);
    margin-bottom: 12px;
    margin-top: 16px;
}
#alumniDetails .alumniImage-items .alumniImage h6 {
    font-size: 14px;
    font-weight: 500;
}

#alumniDetails .alumni-Bio .alumni-shot-Biography h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-title-color);
    margin-bottom: 13px;
}
#alumniDetails .alumni-Bio p {
    text-align: justify;
    font-size: 16px;
    color: #333333;
    line-height: 26px;
}
#alumniDetails .alumni-Bio p:last-child {
    margin-bottom: 0px;
}

/*! ********   All Pages Common Search Options -   ********** */
/*--------------------------------------------------------------
#  All Pages Common Search Options css
--------------------------------------------------------------*/
.common-search-box {
    margin-bottom: 10px;
}
.common-search-box #search-form {
    height: 40px;
    background: #f6f7f9;
    display: flex;
    align-items: center;
    border-radius: 5px;
}
.common-search-box #search-form input {
    flex: 1;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text-title-color);
    font-size: 16px;
    padding: 0 23px;
}
.common-search-box #search-form input::placeholder {
    color: var(--text-title-color);
    font-size: 15px;
}
.common-search-box #search-form .search-button {
    padding: 0 20px;
    height: 100%;
    background: var(--color-primary);
    color: var(--color-inverse);
    font-size: 18px;
    border: 0;
    outline: 0;
    cursor: pointer;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.common-search-box #search-form .search-button:hover {
    background: var(--button-hover-color);
    color: var(--color-inverse);
}

/*! ********   Journal books -   ********** */
/*--------------------------------------------------------------
#  Journal books
--------------------------------------------------------------*/
#journalsBooks .journalsBooks-items {
    padding: 25px;
    background: var(--color-inverse);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px,
        rgb(209, 213, 219) 0px 0px 0px 1px inset;
    border-radius: 5px;
}
#journalsBooks .journalsBooks-items .journalsBooks-content h4 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    margin-top: 6px;
    color: var(--text-title-color);
}
#journalsBooks .journalsBooks-items .journalsBooks-content h4 a {
    color: var(--text-title-color);
}
#journalsBooks .journalsBooks-items .journalsBooks-content h4 a:hover {
    color: var(--color-primary);
}
#journalsBooks .journalsBooks-items .journalsBooks-date {
    display: flex;
    align-items: center;
    gap: 8px;
}
#journalsBooks .journalsBooks-items .journalsBooks-date p {
    margin-bottom: 0px;
    font-size: 15px;
    font-weight: normal;
}
#journalsBooks .journalsBooks-items .journalsBooks-part {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: gray;
}
#journalsBooks .journalsBooks-items .journalsBooks-part span {
    font-size: 14px;
    font-weight: normal;
}
#journalsBooks .journalsBooks-border {
    padding-bottom: 15px;
    border-bottom: 1px dotted gray;
}
#journalsBooks .journalsBooks-items .journalsBooks-view {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
}
#journalsBooks .journalsBooks-items .journalsBooks-view a {
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
}
#journalsBooks .journalsBooks-icons {
    width: 30px;
    height: 30px;
    /* background: #00a22136; */
    background: rgb(22 65 179 / 15%);
    color: var(--color-primary);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#journalsBooks .journalsBooks-icons i {
    font-size: 17px;
}
/*! ********   Journal books Details -   ********** */
/*--------------------------------------------------------------
#  Journal books  Details
--------------------------------------------------------------*/
#journalsBooksDetails .journalsBooksDetails-tittle {
    margin-bottom: 25px;
}
#journalsBooksDetails .journalsBooksDetails-tittle h4 {
    font-size: 20px;
    color: var(--text-title-color);
    line-height: 26px;
    font-weight: 500;
}
#journalsBooksDetails .journalsBooksDetails-tittle p {
    color: #666666;
    font-size: 15px;
    font-weight: normal;
}
#journalsBooksDetails .journalsBooksDetails-Header {
    margin-top: 15px;
}
#journalsBooksDetails .journalsBooksDetails-Header-image img {
    border: 2px solid #eeeeee;
    padding: 5px;
}
#journalsBooksDetails .journalsBooksDetails-Header-text {
    margin-top: 13px;
}
#journalsBooksDetails .journalsBooksDetails-Header-text .author {
    margin-bottom: 20px;
}
#journalsBooksDetails .journalsBooksDetails-Header-text .author h4 {
    font-size: 19px;
    color: var(--text-title-color);
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 6px;
}
#journalsBooksDetails .journalsBooksDetails-Header-text .author p {
    font-size: 14px;
    margin-bottom: 6px;
    color: #666666;
}

#journalsBooksDetails .articleTable {
    margin-top: 35px;
}

#journalsBooksDetails .articleTable-title {
    border-bottom: 2px solid var(--color-primary);
    margin-bottom: 20px;
}
#journalsBooksDetails .articleTable-title h3 {
    font-size: 21px;
    font-weight: 600;
    color: var(--text-title-color);
    text-transform: uppercase;
}

#journalsBooksDetails .articleTable-table tr th {
    padding: 12px 8px;
    text-align: center;
    font-weight: 600;
}
#journalsBooksDetails .articleTable-table th {
    font-size: 13px;
    vertical-align: middle !important;
    line-height: 1.3 !important;
    text-transform: uppercase;
}

#journalsBooksDetails .articleTable-table td {
    padding: 12px 8px;
    font-size: 14px;
    vertical-align: middle !important;
    line-height: 1.3 !important;
}
#journalsBooksDetails .articleTable-table tr td:nth-child(1) {
    text-align: center;
}
#journalsBooksDetails .articleTable-table tr td:nth-child(2) {
    text-align: left;
}
#journalsBooksDetails .articleTable-table tr td:nth-child(3) {
    text-align: center;
}
#journalsBooksDetails .articleTable-table .download {
    background: rgba(16, 0, 162, 0.15);
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 500;
}
/*! ********   Site Index -   ********** */

/*! ********   Site Index -   ********** */
/*--------------------------------------------------------------
#  Site Index
--------------------------------------------------------------*/
#AlphabetLetter .AlphabetLetter-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
#AlphabetLetter .AlphabetLetter-items .Letter {
    width: 40px;
    height: 40px;
    border: 1px solid#000;
    background: #eee;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    cursor: pointer;
}
#AlphabetLetter .AlphabetLetter-items .Letter:hover {
    background: var(--text-title-color);
}
#AlphabetLetter .AlphabetLetter-items .Letter:hover h4 a {
    color: var(--color-inverse);
}
#AlphabetLetter .AlphabetLetter-items .Letter h4 {
    line-height: 40px;
    font-size: 20px;
    margin-bottom: 0px;
}
#AlphabetLetter .AlphabetLetter-items .Letter h4 a {
    color: var(--text-title-color);
}
#AlphabetLetter .AlphabetLetter-link {
    margin-top: 20px;
}
#AlphabetLetter .AlphabetLetter-link h4 {
    color: var(--text-title-color);
    font-weight: 600;
    border-bottom: 3px solid var(--text-title-color);
    padding-bottom: 6px;
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.4;
    font-size: 22px;
}
#AlphabetLetter .AlphabetLetter-link ul {
    list-style: none;
    padding: 0;
}
#AlphabetLetter .AlphabetLetter-link ul li {
    color: var(--text-title-color);
    padding-bottom: 5px;
}
#AlphabetLetter .AlphabetLetter-link ul li a {
    color: var(--text-title-color);
    transition: all 0.4s;
    font-size: 17px;
}
#AlphabetLetter .AlphabetLetter-link ul li a:hover {
    color: var(--color-primary);
}
#AlphabetLetter .AlphabetLetter-show {
    margin-top: 50px;
}

/*! ********   Site Maps -   ********** */
/*--------------------------------------------------------------
#  Site maps
--------------------------------------------------------------*/
#sitemaps .sitemaps-info {
    width: 100%;
    border-top: 3px solid var(--color-primary);
    border-bottom: 3px solid var(--color-primary);
    padding: 30px;
    background: var(--color-inverse);
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
#sitemaps .sitemaps-info h3 {
    text-transform: uppercase;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}
#sitemaps .sitemaps-info h5 {
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 40px;
}
#sitemaps .sitemaps-info .sitemap-title {
    padding-bottom: 10px;
}
#sitemaps .sitemaps-info .sitemap-title h4 {
    font-size: 22px;
    font-weight: 600;
}
#sitemaps .sitemaps-info .sitemap-title h4 a {
    color: var(--text-title-color);
}
#sitemaps .sitemaps-info .sitemap-title h4 a:hover {
    color: var(--color-primary);
}
#sitemaps .sitemaps-info .sitemap-title ul li {
    list-style: none;
    margin-top: 3px;
}
#sitemaps .sitemaps-info .sitemap-title ul li a {
    color: var(--text-title-color);
}
#sitemaps .sitemaps-info .sitemap-title ul li a:hover {
    color: var(--color-primary);
}
#sitemaps .sitemaps-info .sitemap-title ul li a i {
    color: var(--color-primary);
}
#sitemaps .sitemaps-info .sitemap-second {
    font-weight: 600;
    font-size: 17px;
}

/*! ********   Application Form -   ********** */
/*--------------------------------------------------------------
#  Application Form css
--------------------------------------------------------------*/
.application-from .application-container {
    border-radius: 8px;
    border: 1px solid #dadce0;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 44px 40px;
}
.application-from .application-header {
    border-bottom: 1px solid #dadce0;
    padding-bottom: 18px;
    margin-bottom: 19px;
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.application-from .context-image {
    height: 112px;
    object-fit: cover;
}
.application-un-name {
    text-align: left;
    font-size: 26px;
    color: var(--text-title-color);
    font-weight: 600;
}
.application-from .application-title {
    font-weight: 500;
    line-height: 2rem;
    font-size: 1.5rem;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #045282;
}
.application-from .application-subtitle {
    color: #5f6368;
    margin: 1em 0;
    line-height: 1.25rem;
    font-size: 0.875rem;
    letter-spacing: 0.0142857143em;
    font-weight: 400;
}
.application-from .php-email-form input,
.application-from .php-email-form textarea,
.application-from .php-email-form select {
    border-radius: 0;
    box-shadow: none;
    font-size: 16px;
    transition: 0.3s;
}
.application-from .php-email-form input,
.application-from .php-email-form select {
    height: 44px;
}
.application-from .php-email-form input[type="checkbox"] {
    height: 0px !important;
    padding: 8px !important;
    width: 1em !important;
    height: 1em !important;
    border-radius: 0.25em !important;
    margin-right: 7px !important;
}
.application-from .php-email-form input:focus,
.application-from .php-email-form textarea:focus,
.onlineAdmission .php-email-form select:focus {
    border-color: var(--color-primary);
}
.application-from .php-email-form input::placeholder,
.application-from .php-email-form textarea::placeholder,
.onlineAdmission .php-email-form select::placeholder {
    color: #b9bec6;
}
.application-from .php-email-form input {
    padding: 10px 15px;
}
.application-from .php-email-form textarea {
    padding: 12px 15px;
}
.application-from .php-email-form label {
    padding-bottom: 5px;
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
}
.application-from .php-email-form .font-color {
    color: rgb(255, 0, 0);
    font-weight: normal;
}
.input-file-container {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 25px 20px;
    border: 2px dashed grey;
}
.application-from .application-warp h5 {
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 20px 0;
    text-transform: uppercase;
    color: #045282;
}
.application-from .php-email-form input[type="radio"] {
    border-radius: 50%;
    height: 18px;
    width: 18px;
    padding: 0;
}
.form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary) !important;
}
.application-from .application-warning h6 {
    margin: 20px 0;
    text-transform: capitalize;
    font-weight: 500;
    color: #e84545;
    font-size: 16px;
}
.application-from .application-warning h6 i {
    font-size: 20px;
    font-weight: 400;
}
.application-next {
    border: 2px solid transparent;
    border-radius: 6px;
    font-size: 0.875rem;
    letter-spacing: 0.0107142857em;
    font-weight: 500;
    background: #1a73e8;
    color: var(--color-inverse);
    padding: 5px 24px 5px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.application-back {
    color: #5f6368;
    border: none;
    margin-left: -8px;
    background: transparent;
    font-size: 0.875rem;
    letter-spacing: 0.0107142857em;
    font-weight: 500;
}
