@font-face {
    font-family: "CircularStd-Book";
    src: url(../assets/fonts/CircularStd-Book.woff2);
}

@font-face {
    font-family: "CircularStd-Bold";
    src: url(../assets/fonts/CircularStd-Bold.woff2);
}

@font-face {
    font-family: "WorkSans-Regular";
    src: url(../assets/fonts/WorkSans-Regular.woff2);
}

@font-face {
    font-family: "WorkSans-Light";
    src: url(../assets/fonts/WorkSans-Light.woff2);
}

@font-face {
    font-family: "playfair-display-latin-700";
    src: url(../assets/fonts/playfair-display-latin-700.woff2);
}

@font-face {
    font-family: "playfair-display-latin-regular";
    src: url(../assets/fonts/playfair-display-latin-regular.woff2);
}

/* website fonts  */

@font-face {
    font-family: "Heebo";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../assets/fonts/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSysd0mg7UiCXC5VkK8.woff) format("woff");
    unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}

@font-face {
    font-family: "Archivo Narrow";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../assets/fonts/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvy1a6rHmqNiEr6Aab7JU.woff) format("woff");
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}

/* website fonts  end*/

/* website colors */

:root {
    --primary-color: #bb2226;
    --black: #000000;
    --cyan-bluish-gray: #abb8c3;
    --dark-blue: #29315a;
    --white: #ffffff;
    --pale-pink: #f78da7;
    --red: #bd372e;
    --orange: #ff6900;
    --yellow: #f6ba2f;
    --green: #356754;
    --green2: #2d6d5c;
    --luminous-vivid-amber: #fcb900;
    --light-green-cyan: #7bdcb5;
    --green-cyan: #00d084;
    --pale-cyan-blue: #8ed1fc;
    --cyan-blue: #0693e3;
    --purple: #9b51e0;
    --text-color-dark: #111;
    --bg-grident: linear-gradient(150deg, #e9e9e9 0%, #e9e9e9 50%, #e9e9e9 50%, #e9e9e9 100%);
    --light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
    --vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100%);
    --red-grident: linear-gradient(135deg,
            rgb(159, 31, 31) 0,
            rgb(198, 65, 65) 59%,
            rgb(200, 64, 52) 59%,
            rgb(159, 31, 31) 100%);
    --light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
    --cool-to-warm-spectrum: linear-gradient(135deg,
            rgb(74, 234, 220) 0%,
            rgb(151, 120, 209) 20%,
            rgb(207, 42, 186) 40%,
            rgb(238, 44, 130) 60%,
            rgb(251, 105, 98) 80%,
            rgb(254, 248, 76) 100%);
    --blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
    --gradient--blush-bordeaux: linear-gradient(135deg,
            rgb(254, 205, 165) 0%,
            rgb(254, 45, 45) 50%,
            rgb(107, 0, 62) 100%);
    --luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
    --pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
    --electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
    --midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
    --sticky-header-color: #29315a;
    --blue-trnsperent: #1b549cd6;
    --mobile-menu-bg: linear-gradient(135deg,
            rgb(27, 59, 115) 0,
            rgb(17, 37, 85) 59%,
            rgb(15, 23, 57) 59%,
            rgb(21, 24, 68) 100%);
    --top-box: #f6ba2f;
    --secondary-font: "CircularStd-Book";
    --bold-font: "CircularStd-Bold";
    --primary-font: "WorkSans-Regular";
    --text-Light-font: "WorkSans-Light";
    --playfair-bold: "playfair-display-latin-700";
    --playfair-regular: "playfair-display-latin-regular";
    --archivo-font: "Archivo Narrow";
    --heebo-font: "Heebo";
    --blue: #1b549c;
}

/* website colors end */
html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-grident);
    font-family: var(--primary-font) !important;
}

/* PRELOADER CSS */

.page-loader {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: #e9e9e9;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* SPINNER ANIMATION */
.loader {
    animation: rotate 1s infinite;
    height: 50px;
    width: 50px;
}

.loader:before,
.loader:after {
    border-radius: 50%;
    content: "";
    display: block;
    height: 20px;
    width: 20px;
}

.loader:before {
    animation: ball1 1s infinite;
    background-color: #cb2025;
    box-shadow: 30px 0 0 #f8b334;
    margin-bottom: 10px;
}

.loader:after {
    animation: ball2 1s infinite;
    background-color: #00a096;
    box-shadow: 30px 0 0 #97bf0d;
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg) scale(0.8);
        -moz-transform: rotate(0deg) scale(0.8);
    }

    50% {
        -webkit-transform: rotate(360deg) scale(1.2);
        -moz-transform: rotate(360deg) scale(1.2);
    }

    100% {
        -webkit-transform: rotate(720deg) scale(0.8);
        -moz-transform: rotate(720deg) scale(0.8);
    }
}

@keyframes ball1 {
    0% {
        box-shadow: 30px 0 0 #f8b334;
    }

    50% {
        box-shadow: 0 0 0 #f8b334;
        margin-bottom: 0;
        -webkit-transform: translate(15px, 15px);
        -moz-transform: translate(15px, 15px);
    }

    100% {
        box-shadow: 30px 0 0 #f8b334;
        margin-bottom: 10px;
    }
}

@keyframes ball2 {
    0% {
        box-shadow: 30px 0 0 #97bf0d;
    }

    50% {
        box-shadow: 0 0 0 #97bf0d;
        margin-top: -20px;
        -webkit-transform: translate(15px, 15px);
        -moz-transform: translate(15px, 15px);
    }

    100% {
        box-shadow: 30px 0 0 #97bf0d;
        margin-top: 0;
    }
}

/* library page start end  */

.owl-item {
    background: content-box !important;
    background-color: transparent !important;
}

/* custom banner */

.banner-bg img {
    height: 855px;
    min-height: 855px;
    width: 100% !important;
    max-height: 855px;
    object-fit: cover;
    object-position: center;
}

.banner-heading {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translate(0, -50%);
    padding: 10px;
    height: 420px;
    width: 100%;
    height: auto;
    z-index: 4;
}

.heading-2 {
    margin: 30px 0 0px;
}

.highlight-1-detail {


    max-height: 100px !important;
    overflow: hidden;
}

.banner-title {
    font-size: 60px;
    padding: 0px 10px;
    color: #fff;
    font-weight: bolder;
    text-shadow: 0.1em 0.1em 0 hsl(200 50% 30%);
    display: inline;
    text-transform: uppercase;
    background-color: goldenrod;
}

.banner-title-2 {
    margin: 10px 0px;
    font-size: 25px;
    color: #fff;
    font-weight: bolder;
    display: inline;
    padding: 0px 10px;
    text-transform: uppercase;
    background-color: #0f1739;
}

.banner-detail {
    font-size: 35px;
    line-height: 40px;
    color: #fff;
    text-align: start;
    text-transform: capitalize;


    max-height: 100px;
    padding: 0px !important;
    margin: 20px 0px;
}

.banner-detail-2 {
    font-size: 18px;
    line-height: 40px;
    color: #fff;
    text-align: start;
    text-transform: capitalize;
    height: 60px;
    min-height: 50px;
    max-height: 60px;
    padding: 0px !important;
    margin: 20px 0px;
}

.banner-button button {
    height: 50px;
    min-height: 50px;
    max-width: 200px;
    min-width: 100px;
    width: 170px;
    background-color: #fff;
    color: #07294d;

    text-transform: uppercase;
    font-size: 20px;
    font-weight: bolder;
    border: none;
    border-radius: 6px;
}

.banner-button button:hover {
    background-color: #07294d;
    color: #fff;
}

.banner-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* landing page */
a {
    text-decoration: none !important;
    color: #333 !important;
}

.landing-page .campus .col-md-6 {
    height: 100%;
}

.thumbnail {
    height: 100%;
    width: 100%;
    position: relative;
}

.thumbnail::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    background: rgba(0, 0, 0, 0.6);
    background: -moz-linear-gradient(bottom, #000 0, transparent 50%);
    background: -webkit-linear-gradient(bottom, #000 0, transparent 50%);
    background: -o-linear-gradient(bottom, #000 0, transparent 50%);
    background: -ms-linear-gradient(bottom, #000 0, transparent 50%);
    background: linear-gradient(to top, #000 0, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

#department .mobile-department {
    height: 415px;
    overflow: hidden;
}

.thumbnail .wrap-link {
    display: block;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
}

.wrap-link>img {
    transition: transform 5s, filter 3s ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrap-link:hover>img {
    cursor: pointer;
    transform: scale(1.3);
}

.cust-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px 0;
}

.landing-page .cust-content {
    z-index: 4;
}

.landing-page .h2-title,
.landing-page .h3-title {
    text-align: center;
}

.simple-title {
    font-size: 30px;
    line-height: 42px;
    font-family: "CircularStd-light";
    padding-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.simple-title span {
    color: var(--primary-color);
}

.h2-title {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 7px;
    text-transform: uppercase;
    color: #fff;
    font-family: var(--bold-font);
}

.h3-title {
    font-size: 19px;
    line-height: 27px;
    margin-bottom: 7px;
    text-transform: uppercase;
    color: #fff;
    font-family: var(--secondary-font);
}

.landing-page .bg-view {
    background-color: var(--primary-color);
}

.landing-page .bg-view p {
    font-weight: 700;
    text-align: center;
    font-size: 40px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff, #fff, #fff);
    letter-spacing: 5px;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #ffffff96;
    background-repeat: no-repeat;
    background-size: 80%;
    animation: shine 5s linear infinite;
    position: relative;
    margin-bottom: 0;
}

@keyframes shine {
    0% {
        background-position-x: -500%;
    }

    100% {
        background-position-x: 500%;
    }
}

.snowflake {
    color: #fff;
    font-size: 1em;
    font-family: var(--playfair-regular);
    text-shadow: 0 0 1px #000;
}

@-webkit-keyframes snowflakes-fall {
    0% {
        top: -10%;
    }

    100% {
        top: 100%;
    }
}

@-webkit-keyframes snowflakes-shake {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    50% {
        -webkit-transform: translateX(80px);
        transform: translateX(80px);
    }

    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@keyframes snowflakes-fall {
    0% {
        top: -10%;
    }

    100% {
        top: 100%;
    }
}

@keyframes snowflakes-shake {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(80px);
    }

    100% {
        transform: translateX(0px);
    }
}

.snowflake {
    position: fixed;
    top: -10%;
    z-index: 9999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    -webkit-animation-name: snowflakes-fall, snowflakes-shake;
    -webkit-animation-duration: 10s, 3s;
    -webkit-animation-timing-function: linear, ease-in-out;
    -webkit-animation-iteration-count: infinite, infinite;
    -webkit-animation-play-state: running, running;
    animation-name: snowflakes-fall, snowflakes-shake;
    animation-duration: 10s, 3s;
    animation-timing-function: linear, ease-in-out;
    animation-iteration-count: infinite, infinite;
    animation-play-state: running, running;
}

.snowflake:nth-of-type(0) {
    left: 1%;
    -webkit-animation-delay: 0s, 0s;
    animation-delay: 0s, 0s;
}

.snowflake:nth-of-type(1) {
    left: 10%;
    -webkit-animation-delay: 1s, 1s;
    animation-delay: 1s, 1s;
}

.snowflake:nth-of-type(2) {
    left: 20%;
    -webkit-animation-delay: 6s, 0.5s;
    animation-delay: 6s, 0.5s;
}

.snowflake:nth-of-type(3) {
    left: 30%;
    -webkit-animation-delay: 4s, 2s;
    animation-delay: 4s, 2s;
}

.snowflake:nth-of-type(4) {
    left: 40%;
    -webkit-animation-delay: 2s, 2s;
    animation-delay: 2s, 2s;
}

.snowflake:nth-of-type(5) {
    left: 50%;
    -webkit-animation-delay: 8s, 3s;
    animation-delay: 8s, 3s;
}

.snowflake:nth-of-type(6) {
    left: 60%;
    -webkit-animation-delay: 6s, 2s;
    animation-delay: 6s, 2s;
}

.snowflake:nth-of-type(7) {
    left: 70%;
    -webkit-animation-delay: 2.5s, 1s;
    animation-delay: 2.5s, 1s;
}

.snowflake:nth-of-type(8) {
    left: 80%;
    -webkit-animation-delay: 1s, 0s;
    animation-delay: 1s, 0s;
}

.snowflake:nth-of-type(9) {
    left: 90%;
    -webkit-animation-delay: 3s, 1.5s;
    animation-delay: 3s, 1.5s;
}

.bg-View-ct {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
}

.overlay {
    background-color: #0693e3;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
}

.landing-page .institute-list .wrap-link>img {
    filter: grayscale(0);
}

/* //new */

.sc-title {
    font-size: 22px;
    letter-spacing: 0;
    line-height: 22px;
    padding: 0;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 40px;
    font-family: var(--archivo-font);
    position: relative;
    width: 100%;
}

.sc-title:before {
    position: absolute;
    bottom: -1px;
    background: #eee;
    content: "";
    width: 100%;
    height: 1px;
}

.sc-title .title {
    display: inline-block;
    padding: 0 28px;
    position: relative;
    margin-left: 8px;
    min-width: 142px;
    text-align: center;
    height: 28px;
    line-height: 28px;
    z-index: 1;
}

.sc-title .title:before {
    content: "";
    width: 100%;
    height: 100%;
    border-left: 8px solid;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    z-index: -1;
    border-color: var(--red) !important;
    background: var(--primary-color) !important;
}

.sc-title .title .line {
    position: absolute;
    content: "";
    height: 5px;
    left: 0;
    right: 0;
    display: block;
    bottom: -3px;
    background-color: #333;
}

.home-page .sc-title .title .line {
    display: none;
}

.sc-title2 {
    font-size: 22px;
    letter-spacing: 0;
    line-height: 22px;
    padding: 0;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 40px;
    font-family: var(--archivo-font);
    position: relative;
    width: 100%;
}

.sc-title2 .title {
    display: inline-block;
    padding: 0 28px;
    position: relative;
    margin-left: 8px;
    min-width: 142px;
    height: 28px;
    line-height: 28px;
    z-index: 1;
}

.sc-title2 .title:before {
    content: "";
    width: 100%;
    height: 100%;
    border-left: 8px solid;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    z-index: -1;
    border-color: var(--red) !important;
    background: var(--primary-color) !important;
}

/* .sc-title2 .title .line {
    position: absolute;
    content: "";
    height: 5px;
    left: 0;
    right: 0;
    display: block;
    bottom: -3px;
    background-color: #333;
} */

.home-page .sc-title2 .title .line {
    display: none;
}

.excerpt {
    font-size: 14px;
    line-height: 20px;
    font-family: var(--primary-font);
}

h4.entry-title {
    font-size: 17px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--secondary-font);
}

h4.entry-title:hover {
    color: var(--primary-color);
}

/* landing page end*/

/* home page start  */
.home-page #department .cust-content {
    padding: 15px !important;
    position: absolute;
    top: 0;
    width: 50%;
    height: fit-content;
    /* z-index: 4; */
    background: #00000073;
    left: 0;


}

#button-custom {
    margin: 40px 0px;
}

#button-events {
    margin-top: 16px;
}

.space {
    padding: 50px 0;
}

.horizontal-p {
    padding: 0px 85px;
}

.excerpt-span {
    color: var(--green2);
    font-weight: 600;
}

.home-page .sc-title .title:before {
    background-color: var(--primary-color) !important;
    border: var(--red);
}

.icon-style {
    background-color: var(--primary-color);
    padding: 6px 8px;
    border-radius: 20px;
}

.icon-style i {
    color: #fff;
}

/* .shadow-box {
    -webkit-box-shadow: 5px 0px 8px 0px rgba(196,196,196,1);
    -moz-box-shadow: 5px 0px 8px 0px rgba(196,196,196,1);
    box-shadow: 5px 0px 8px 0px rgba(196,196,196,1);
} */

.news-slider-home {
    min-height: 500px;
    max-height: 500px;
}

.campus-slider-img {
    min-height: 500px;
    max-height: 500px;

}

.campus-slider-img img {
    min-height: 500px;
    max-height: 500px;
    width: 100%;
    object-fit: cover;
    object-position: 20% 20%;

}




.campus-chairman-img {
    min-height: 500px;
    max-height: 500px;
}

.campus-chairman-img img {
    min-height: 500px;
    max-height: 500px;
    width: 100%;
    object-fit: cover;
}

.campus__item {
    min-height: 300px;
    max-height: 500px;
    overflow-y: auto !important;
    background-color: #f1f1f1;
    padding: 20px 20px;
}

.campus__item::-webkit-scrollbar {
    width: 5px;
}

.campus__item::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgb(207, 206, 206);
    border-radius: 10px;

    background: #ccc !important;
    max-height: 50px !important;
}

/* Handle */
.campus__item::-webkit-scrollbar-thumb {
    background: #999 !important;
    border-radius: 10px;
    transition: all 0.5s;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.news-slider__item-img {

    min-height: 250px;
    max-height: 250px;
}

.news-slider__item-img img {

    min-height: 250px !important;
    max-height: 250px !important;
    object-fit: cover;
    width: 100%;
}

.news-slider__item {
    background-color: #f1f1f1;
    padding: 20px 20px;
    min-height: 165px;
}

.news-slider__item .news-title {
    font-size: 15px;
    line-height: 18px;
    color: #333;
    max-width: 359px;
    margin-bottom: 0;
    font-weight: 600;
    margin-top: 10px;
}

.news-slider__item .news-title span {
    color: var(--green2);
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
}

.btn-custom {
    display: flex;
    align-items: center;
    padding: 10px;
    width: 150px;
    height: 45px;
    background-color: var(--primary-color);
    color: #fff !important;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.6s;
}

.btn-custom:hover {
    background-color: var(--blue);

}

.btn-custom p {
    margin-bottom: 0 !important;
    margin-left: 10px;
}

.home-page .owl-carousel button.owl-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #cad4d9;
    margin: 2px;
}

.home-page button.owl-dot.active {
    background: #1b2325 !important;
}

.home-page .owl-dots {
    text-align: center;
}

.home-page .owl-carousel .owl-item img {
    height: 100%;
    object-fit: cover;
    object-position: center;

}

.bg-enevts {
    background-image: url(../assets/images/event-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 94%;
    position: relative;
}

.bg-enevts::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    background: #4e3085b5;
}

.bg-about {
    background-image: url(../assets/images/event-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;

    position: relative;
}

.bg-about::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    background: #2d6d5cdb;
}

.event-slider__item {
    padding: 20px 20px;
    color: #fff !important;
    /* z-index: 4; */
    min-height: 500px;
    max-height: 500px;
    position: relative;

}

.event-slider__item div.excerpt {

    min-height: 300px !important;
    max-height: 300px !important;

    text-overflow: ellipsis !important;
    overflow: hidden;

}

.event-slider__item .btn-custom {
    background-color: #fff;
    color: #000 !important;
}

.event-slider__item i {
    font-size: 20px;
    color: var(--yellow) !important;
}

.event-slider__item h5 {
    color: #fff !important;
}

.event-slider__item .news-title {
    margin-left: 10px;
    margin-top: -4px;
}

.event-slider__item .news-title span {
    color: var(--yellow);
    font-size: 23px;
}

.row-style {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.event-slider__item UL {
    display: flex;
    padding-inline-start: 0;
}

.event-slider__item li {
    list-style: none;
    letter-spacing: 5px;
    font-size: 17px;
    color: #fff;
    animation: ani 1.2s linear infinite;
    font-weight: 700;
}

.event-slider__item ul li:nth-child(1) {
    animation-delay: 0.2s;
}

.event-slider__item ul li:nth-child(2) {
    animation-delay: 0.6s;
}

.event-slider__item ul li:nth-child(3) {
    animation-delay: 0.8s;
}

.event-slider__item ul li:nth-child(4) {
    animation-delay: 1s;
}

.event-slider__item ul li:nth-child(5) {
    animation-delay: 1.4s;
}

.event-slider__item ul li:nth-child(6) {
    animation-delay: 1.8s;
}

.event-slider__item ul li:nth-child(7) {
    animation-delay: 1.12s;
}

@keyframes ani {
    0% {
        color: var(--yellow);
        text-shadow: none;
    }

    90% {
        color: var(--yellow);
        text-shadow: none;
    }

    100% {
        color: #fff900;
        text-shadow: 0 0 7px #fff900, 0 0 70px #fff123;
    }
}

.logo-event {
    width: 100px !important;
}

.event-title-block {
    display: flex;
    align-items: flex-start;
    margin: 35px 0;
}

.event-title-block i {
    font-size: 16px;
}

/* fixed header */
.header {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 15% !important;
    -webkit-transition: all ease-out 0.5s;
    -moz-transition: all ease-out 0.5s;
    -o-transition: all ease-out 0.5s;
    transition: all ease-out 0.5s;
}

.header::before {
    content: "";
    position: absolute;
    height: 100px;
    top: 0;
    left: 0;
    right: 0;
    background: rgb(31, 31, 33);
    background: linear-gradient(0deg, rgba(31, 31, 33, 0) 0%, rgba(45, 45, 45, 1) 100%);
    z-index: 2;
}

.StickyHeader {
    background-color: #cd3034e0;
}

.StickyHeader::before {
    background: #fff0 !important;
}

.rownav {
    height: auto;
    background: #fff0;
    display: flex;
    animation: gradient 15s ease infinite;
    position: absolute;
    top: 0;
    z-index: 2;
    width: 100%;
    border-bottom: 2px solid #dddddd24;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.collogo {
    display: flex;
    align-items: center;
    align-content: center;
    height: 14vh;
    border-right: 1px solid #dddddd24;
}

.coltopnav {
    height: auto;
    /* background-color: brown; */
    border-bottom: 1px solid #dddddd24;
    display: flex;
    align-items: center;
}

.colul {
    border-right: 1px solid #dddddd24;
    height: 7vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.colul ul {
    padding-left: 0em;
    display: flex;
    margin-bottom: 0em;
    justify-content: space-between;
}

.colul ul li {
    list-style: none;
    display: inline;
}

.top-menu {
    border-right: 1px solid #dddddd24;
}

.top-menu ul li a {
    text-decoration: none !important;
    color: #fff !important;
    margin: 0px 4px;
    font-size: 13px;
    font-family: var(--secondary-font);
    letter-spacing: 1px;
}

.top-menu ul li a:hover {
    border-bottom: 1px solid #dddddd24;
    color: #ddd;
}

.colconnect {
    height: 7vh;
    display: inline-flex;
    align-items: center;
    justify-content: space-evenly;
    border-right: 1px solid #dddddd24;
}

.colconnect p {
    margin-bottom: 0em;
    font-size: 14px;
    margin: 4px;
    color: #ddd;
}

.colconnect span i {
    padding: 0px 7px;
    color: #ddd;
}

.colconnect span i.fab.fa-whatsapp {
    color: #25D366 !important;

}

.colsocial {
    height: 7vh;
    display: inline-flex;
    align-items: center;
    justify-content: space-evenly;
}

.colsocial p {
    margin-bottom: 0em;
    font-size: 13px;
    margin-left: 0em;
    color: #ddd;
}

.colsocial span i {
    padding: 0px 4px;
    color: #ddd;
}

.colsearch {
    height: 7vh;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #dddddd24;
}

.colsearch i {
    color: #ddd;
}

.coldarkmode {
    height: 7vh;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* border-right: 1px solid #111; */
}

.coldarkmode i {
    color: #ddd;
}

/* .colbottomnav {
    display: flex;
    align-items: center;
    background-color: #fff0;
} */

.colnavbottomcontent ul {
    display: flex;
    align-items: center;
    height: 7vh;
    margin-bottom: 0em;
    justify-content: space-around;
    padding-inline-start: 0;
}

.colnavbottomcontent .dropdownli {
    list-style: none;
    padding: 0px 6.4px;
    display: inline;
    font-size: 13px;
    font-family: "Heebo";
    color: #ddd;
}

.colaboutus p a {
    color: #ddd;
    /* padding: 12px 16px; */
    text-decoration: none;
    display: inline-block;
}

.colaboutus p {
    margin-bottom: 0em;
    text-decoration: none;
}

.colaboutus a:hover {
    border-bottom: 2px solid #f1f1f1;
}

.colaboutus {
    width: 40vw;
    display: flex;
    height: 30vh;
    /* justify-content: center; */
    /* align-items: center; */
    flex-direction: column;
    /* background-color: rgb(126, 126, 214); */
    padding: 10px 0px;
    background-repeat: no-repeat;
    background-size: cover;
}

.colaboutimg {
    height: 15vh;
}

.colhelpline {
    display: flex;
    align-items: center;
    height: 7vh;
    overflow: hidden;
    color: #ddd;
    background-color: var(--white);
    justify-content: space-evenly;
}

.colhelpline i,
.colhelpline p {
    color: #000;
}

/* phone media */

.rowphone {
    background-color: blue;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .navbar {
    width: 100%;
    background: rgb(152, 27, 27);
    padding-top: 0;
    padding-bottom: 0;
    padding: 0 !important;
}

.header .navbar-light .navbar-brand {
    color: #2196f3;
    /* border-right: 1px solid #797979; */
}

.header .navbar-light .navbar-nav .nav-link {
    color: #fff !important;
}

.header .navbar-light .navbar-brand:focus,
.header .navbar-light .navbar-brand:hover {
    color: #1ebdc2;
}

.header .navbar-light .navbar-nav .nav-link:focus,
.header .navbar-light .navbar-nav .nav-link:hover {
    color: #fff;
}

.header .navbar-light .navbar-nav .nav-link {
    transition: .3s;
    padding: 10px 15px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-family: var(--secondary-font);
}

.scroll-dropdown {

    overflow-y: auto;
    max-height: 400px !important;

}

.scroll-dropdown::-webkit-scrollbar {
    width: 3px;
}

.scroll-dropdown::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgb(207, 206, 206);
    border-radius: 10px;

    background: #fff !important;
    max-height: 100px !important;
}

/* Handle */
.scroll-dropdown::-webkit-scrollbar-thumb {
    background: #ccc !important;
    border-radius: 10px;
    transition: all 0.5s;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}


.header .navbar-light .navbar-nav .nav-link:focus,
.header .navbar-light .navbar-nav .nav-link:hover {
    background: #1b549c;
    transition: 0.3s;
}

.header .dropdown-item {
    color: #3c3c3c;
    font-size: 14px;
    position: relative;
    padding: 6px 20px !important;
    white-space: normal;
}

.header .dropdown-item:focus,
.header .dropdown-item:hover {
    text-decoration: none;
    background-color: #fff0 !important;
}

.header .dropdown-item::before {
    content: "";
    width: 80%;
    height: 2px;
    background-color: var(--yellow);
    transform: scaleX(0);
    bottom: -2px;
    left: 0;
    transition: transform 0.5s ease;
    position: absolute;
    margin-left: 20px !important;
}

.header .dropdown-item:hover:before {
    transform: scaleX(1);
}

.header .sm-menu {
    border-radius: 0px;
    border: 0px;
    /* top: 97%; */
    box-shadow: rgba(173, 173, 173, 0.2) 1px 3px 4px 0px;
}

/* .header .dropdown-item.active,
.header .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #2196f3;
} */

.header .navbar-toggler {
    outline: none !important;
    border: none !important;
}

.header .navbar-toggler-icon {
    background-color: #fff;
}

.header .navbar-tog {
    color: #1ebdc2;
}

.header .megamenu-li {
    position: static;
}

.header .megamenu {
    /* position: absolute; */
    width: 100%;
    left: 0;
    right: 0;
    padding: 15px;
}

.header .megamenu h6 {
    margin-left: 0;
    margin-top: 0px;
    font-weight: bold !important;
}

.header .megamenu i {
    width: 20px;
}

/* .slider */

.slider .owl-nav {
    font-size: 50px;
    color: antiquewhite;
}

.slider button.owl-prev {
    position: absolute;
    top: 40%;
    left: 10px;
}

.slider button.owl-next {
    position: absolute;
    top: 40%;
    right: 10px;
}

#department .thumbnail::before {
    background: #fff0;
}

#Recruiter .owl-nav {
    display: none;
}



/* research section */

.research {
    background-color: #1b549c;
}

#research-slider {
    padding-top: 50px;
}

.research-slider-institute-img {
    height: 100%;
}

.research-slider-institute-img img {
    width: 100%;
    height: auto;
    object-position: center;
    object-fit: cover;
}

.research .excerpt {
    color: #fff;
    width: 70%;
}

.research-entry,
.research-entry .entry-media {
    position: relative;
    overflow: hidden;
}

.research-entry .entry-media:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    background: rgba(0, 0, 0, 0.6);
    background: -moz-linear-gradient(bottom, #000 5%, transparent 70%);
    background: -webkit-linear-gradient(bottom, #000 5%, transparent 70%);
    background: -o-linear-gradient(bottom, #000 5%, transparent 70%);
    background: -ms-linear-gradient(bottom, #000 5%, transparent 70%);
    background: linear-gradient(to top, #000 5%, transparent 70%);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 1;
}

.research-entry .wrap-link {
    display: block;
    position: relative;
    min-height: 450px !important;
    max-height: 450px !important;
}

.research-entry .wrap-link img {
    min-height: 450px !important;
    max-height: 450px !important;
}

.research-entry .wrap-link:before {
    z-index: 1;
    content: "";
    position: absolute;
    top: 54px;
    left: 0;
    right: 0;
    background-color: transparent;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#101010));
    background-image: -webkit-linear-gradient(top, transparent, #101010);
    background-image: -moz-linear-gradient(top, transparent, #101010);
    background-image: -ms-linear-gradient(top, transparent, #101010);
    background-image: -o-linear-gradient(top, transparent, #101010);
    background-image: linear-gradient(top, transparent, #101010);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='transparent', endColorStr='#101010');
    bottom: 0;
}

.research-entry .wrap-link>img {
    transition: none;
}

.research-entry .wrap-link:hover>img {
    transform: scale(1);
}

.research-entry .entry-content {
    padding: 0 25px;
    z-index: 4;
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
}

.research-entry .entry-meta {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.1px;
}

#research-news .excerpt {
    font-size: 15px;
    font-weight: 100;
}

.res-date {
    color: #333;
    font-size: 12px;
    display: inline-block;
    vertical-align: middle;
    font-family: "Roboto";
    font-weight: bold;
    cursor: pointer;
}

.res-date:hover {
    color: var(--primary-color);
}

.res-content {
    font-size: 14px;
    line-height: 20px;
    color: #333;
    max-width: 500px;
    font-weight: 100;
}

.research-content {
    /* background: linear-gradient(135deg, rgba(156, 0, 70, 1) 0%, rgba(208, 18, 21, 1) 100%); */
    padding: 40px;
    background: var(--red-grident);
}

.research-entry .meta-category {
    font-style: normal !important;
}

.research-entry .entry-meta .meta-category a {
    color: var(--cyan-bluish-gray) !important;
}

.research-entry .entry-content .entry-title {
    color: #fff !important;
    line-height: 34px;
    letter-spacing: 0;
    font-size: 28px;
    font-family: Archivo Narrow;
}

#research-slider .owl-nav {
    display: block !important;
    color: #fff;
    font-size: 30px;
}

#research-slider button.owl-prev,
#research-slider button.owl-next {
    position: absolute;
    top: 50%;
    margin-top: -21px;
    width: 30px;
    height: 30px;
    background: #fff0;
    border: 1px solid #fff;
    color: #fff;
    padding: 0;
    line-height: 28px;
    font-size: 19px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    display: inline-block;
    transition: all 0.5s;
}

#research-slider button.owl-prev {
    left: -65px;
}

.thim-sc-block3.layout-3 .owl-theme .owl-nav [class*="owl-"],
.thim-sc-block30 .item {
    -webkit-transition: all 0.5s;
    -khtml-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    text-align: center;
}

button.owl-next {
    right: -65px;
}

.research .btn-custom {
    background-color: #fff0;
    border: 1px solid #fff;
    color: #fff;
}

/* campus life section */

.campus-lyf {
    margin-top: -260px;
}

.campus-lyf .bg-about {
    height: 100% !important;
}

.b-shadow {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(156, 156, 156, 1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(156, 156, 156, 1);
    box-shadow: 0px 0px 5px 0px rgba(156, 156, 156, 1);
}

.campus-lyf .excerpt {
    margin-top: 20px;
    color: #333;
}

.campus-lyf .news-slider__item {
    height: 100%;
}

.campus-lyf .news-slider__item .fa-star {
    color: var(--primary-color);
    font-size: 22px;
}

/* section achievements start */

.achievements-container-fluid {
    margin-left: 0px;
    margin-right: 0px;
    padding: 0px;
}

.achievements-container {
    background-image: linear-gradient(rgb(159 31 31) 100%, rgb(237, 134, 25) 100%),
        url("../assets/images/achievements.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    background-blend-mode: multiply;
    margin-left: 0% !important;
}

.content {
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px;
}

#achievements-heading::before {
    width: 0% !important;
}

.achievements .content h3 {
    font-size: 42px;
    line-height: 40px;
    margin-bottom: 0rem;
    color: white;
    font-weight: bolder;
    max-width: 50px;
}

.achievements .content span {
    color: white;
    font-size: 18px;
    font-weight: bolder;
    margin-bottom: 3px;
}

.achievements .content .excerpt {
    color: white;
}

.achievements-container .content2 h1 {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 0rem;
    color: white;
    max-height: fit-content;
    font-weight: 800;
    margin: 0;
    font-family: "Archivo Narrow", sans-serif;
    text-transform: capitalize;
}

.achievements-slider {
    margin-right: 0px !important;
    margin-top: -179px;
}

/* section achievements end */

/* footer css start */

footer {
    background-color: #333;

    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-size: cover;
}

.ft-links h4 {
    color: #fff;
    font-family: "CircularStd-Bold";
    font-size: 14px;
    margin-bottom: 15px;
    display: inline-block;
}

.ft-links ul,
.social-links ul {
    padding-inline-start: 0;
    list-style-type: none;
}

.ft-links ul li {
    display: block;
    margin-bottom: 15px;
    line-height: 12px;
}

.ft-links ul li a,
.copyright a {
    font-size: 12px;
    color: var(--white) !important;
    display: inline-block !important;
    position: relative;
    font-family: "WorkSans-Regular";
    line-height: 16px;
    margin: 2px 0;

    cursor: pointer;
}

.ft-links ul li a:before,
.copyright ul li a::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #e7e7e7;
    position: absolute;
    transform: scaleX(0);
    bottom: -5px;
    right: 0;
    transition: transform 0.5s ease;
}

.ft-links ul li a:hover:before,
.copyright ul li a:hover::before {
    transform: scaleX(1);
}

.ft-links ul li a span.contact-detail {
    color: var(--yellow) !important;
}

.social-links {
    border-top: solid 1px #353535;
    padding: 10px 0;
}

.social-links ul li i {
    color: #777;
    text-align: center;
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 18px;
    background: transparent;
    border-radius: 50%;
    border: 1px solid rgba(204, 204, 204, 0.4);
    margin-right: 10px;
}

.social-links ul li a i.fa-facebook:hover {
    color: #ddd !important;
    background-color: #3b5998;
}

.social-links ul li a i.fa-linkedin:hover {
    color: #ddd !important;
    background-color: #0e76a8;
}

.social-links ul li a i.fa-instagram:hover {
    color: #ddd !important;
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
}

.social-links ul li a i.fa-pinterest:hover {
    color: #ddd !important;
    background-color: #e60023;
}

.social-links ul li a i.fa-twitter:hover {
    color: #1da1f2;
    background-color: #ddd;
}

.social-links ul li a i.fa-youtube:hover {
    color: #ddd !important;
    background-color: #ff0000;
}

.social-links a {
    color: #ddd !important;
}

/* footer css end */

/* single-institute */

.page-banner {
    background: url(../assets/images/institution/ctshahpur.webp) no-repeat center;
    background-size: cover !important;
    padding: 150px 0px 80px 0px;
    position: relative;
    /* z-index: 2; */
    /* height: 530px; */
}

/*.page-banner::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    top: 0;*/
/*    background: #000000b8;*/
/*    ;*/
/*    left: 0;*/
/*    right: 0;*/
/*    border: 0;*/
    /* z-index: -1; */
/*}*/

.page-banner h2 {
    font-size: 42px;
    line-height: 42px;
    color: var(--white);
    font-family: "CircularStd-Bold";
}

.page-banner .banner-ranked-border {
    border: 1px solid var(--yellow);
    padding: 20px 10px;
    width: 100%;
    margin-top: 50px;
}

.page-banner .banner-ranked-border p {
    color: var(--white);
    margin-bottom: 0 !important;
    text-align: center;
    line-height: 1;
    font-size: 20px;
}

.banner-ranked-border p.bottom-text {
    margin-top: -15px;
}

.page-banner .banner-ranked-border .banner-text-right {
    line-height: 1.4;
    font-family: "playfair-display-latin-Light";
    font-size: 30px;
    text-align: left;
}

.banner-ranked-border .top-text {
    font-size: 40px !important;
    padding: 10px 0px;
}

.page-banner .ranked-number {
    background: #cfa51d;
    background: linear-gradient(to bottom, #cfa51d 47%, #cf0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 150px;
    font-family: "CircularStd-Bold";
    line-height: 1;
    text-align: center;
    margin-bottom: 0;
    margin-top: -18px;
}

.breadcrumb {
    display: inline-block;
    /* box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.35); */
    overflow: hidden;
    border-radius: 5px;
    counter-reset: flag;
    background-color: #fff0 !important;
    padding: 10px 0 !important;
}

.breadcrumb a {
    text-decoration: none;
    outline: none;
    display: block;
    float: left;
    font-size: 12px;
    line-height: 36px;
    color: #fff !important;
    padding: 0 10px 0 60px;
    /*background: #666;*/
    /*background: linear-gradient(#666, #333);*/
    position: relative;
}

.breadcrumb a:first-child {
    padding-left: 46px;
    border-radius: 5px 0 0 5px;
}

.breadcrumb a:first-child:before {
    left: 14px;
}

.breadcrumb a:last-child {
    border-radius: 0 5px 5px 0;
    padding-right: 20px;
}

/*hover/active styles*/
.breadcrumb a.active,
.breadcrumb a:hover {
    background: #333;
    background: linear-gradient(#fff, #FFF);
}

.breadcrumb a.active:after,
.breadcrumb a:hover:after {
    background: var(--primary-color);
}

/*adding the arrows for the breadcrumbs using rotated pseudo elements*/
.breadcrumb a:after {
    content: "";
    position: absolute;
    top: 0;
    right: -18px;
    /*half of square's length*/
    width: 36px;
    height: 36px;
    transform: scale(0.707) rotate(45deg);
    z-index: 1;
    background: #666;
    background: linear-gradient(135deg, #666, #333);
    box-shadow: 2px -2px 0 2px rgba(0, 0, 0, 0.4), 3px -3px 0 2px rgba(255, 255, 255, 0.1);
    border-radius: 0 5px 0 50px;
}

/*we dont need an arrow after the last link*/
.breadcrumb a:last-child:after {
    content: none;
}

/*we will use the :before element to show numbers*/
.breadcrumb a:before {
    content: counter(flag);
    counter-increment: flag;
    /*some styles now*/
    border-radius: 100%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin: 8px 0;
    position: absolute;
    top: 0;
    left: 30px;
    background: #444;
    background: linear-gradient(#444, #222);
    font-weight: bold;
    text-align: center;
}

.flat a,
.flat a:after {
    background: white;
    color: black;
    transition: all 0.5s;
}

.flat a:before {
    background: white;
    box-shadow: 0 0 0 1px #ccc;
    color: black;
}

.flat a:hover,
.flat a.active,
.flat a:hover:after,
.flat a.active:after {
    background: var(--primary-color);
    color: beige !important;
    color: black;
}

/* institute-menu */
.institute-menu {
    position: fixed;
    top: 15% !important;
    left: 0;
    right: 0;
    margin: auto 0 !important;
    width: 100% !important;

    z-index: 4;
}

.institute-menu .navbar {
    background-color: var(--primary-color);
}

.institute-menu nav {
    height: 50px !important;
    width: 100% !important;

    align-items: center !important;

    background-color: #f8a602 !important;
    z-index: 5;
}

.institute-menu nav::-webkit-scrollbar {
    display: none !important;
}


/* .institute-menu nav.institute-sticky{
    background-color: #0e76a8;
    z-index: 5;
} */
.institute-menu .navbar-nav {
    margin: auto;
}

.institute-menu .nav-link {
    margin: 5px 15px;
    color: #fff !important;

    padding: 10px;
}

.institute-menu .nav-link:hover {
    color: yellow;
}

.box {
    width: 100%;
    height: 30px;
    background-color: var(--primary-color);
    position: relative;
}

.box-1 {
    width: 50%;
    background-color: #fff;
    height: 100%;
    border-radius: 0px 40px 0px 0px;
    border-top: 5px solid yellow;
    border-right: 5px solid yellow;
}

.box-2 {
    position: absolute;
    background-color: #fff;
    height: 100%;
    width: 50%;
    right: 0;
    top: 0;
    border-radius: 40px 0px 0px 0px;
    border-top: 5px solid yellow;
    border-left: 5px solid yellow;
}

/* section institute single page */

.row.placement-row.d-flex.justify-content-center.align-items-center {
    margin: 30px 0px;
    height: 65vh;
}

.placement-image img {
    width: 500px;
    height: 400px;
    object-fit: cover;
    object-position: 50% 50%;
    z-index: 2;
    position: relative;
    margin-left: 80px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.placement-quote {
    height: 70vh;

    background: rgba(255, 255, 255, 0.664);
}

.placement-content {
    padding: 0px 0px 40px 0px;
}

.placement-content h2 {
    padding: 40px 10px 0px 85px;
    font-size: 3rem;
    max-width: 742px;
    min-width: 600px;
    max-height: 205px;
    min-height: 150px;
    font-family: "CircularStd-Bold";
}

.placement-sub-content {
    margin-top: 70px;
    margin-left: 90px;
}

.placement-sub-content h4 {
    max-width: 330px;
    max-height: 47px;
    min-height: 47px;
    min-width: 300px;
}

.placement-sub-content h5 {
    max-width: 330px;
    max-height: 37px;
    min-height: 47px;
    min-width: 300px;
}

/* testimonial */

blockquote {
    padding: 0;
    margin: 0;
}

section.t-bq-section {
    padding: 30px;
    margin-bottom: 60px;
}

.t-bq-wrapper.t-bq-wrapper-boxed {
    max-width: 576px;
    margin: 0 auto;
}

.t-bq-wrapper.t-bq-wrapper-fullwidth {
    max-width: 100%;
}

/* ========== 06. Jasper ========== */

.t-bq-quote-jasper {
    position: relative;
    box-shadow: 2px 2px 25px #cecece;
    border-radius: 10px;
}

.t-bq-quote-jasper .t-bq-quote-jasper-pattern {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 80px;
    align-items: center;
    justify-content: flex-start;
    background: url("../assets/images/testimonial-bg-red.jpg") repeat;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px 10px 0 0;
}

.t-bq-quote-jasper .t-bq-quote-jasper-pattern .t-bq-quote-jasper-qmark {
    flex-basis: 100px;
    font-family: "WorkSans-Regular";

    font-size: 60pt;
    color: #999999;
    text-align: center;
    height: 80px;
    line-height: 90pt;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.t-bq-quote-jasper .t-bq-quote-jasper-userpic {
    position: absolute;
    top: 45px;
    left: calc(50% - 35px);
    width: 70px;
    height: 70px;
    background: url("../assets/images/testimonial.jpg") center center no-repeat;
    background-size: cover;
    border-radius: 50%;
}

.t-bq-quote-jasper .t-bq-quote-jasper-base {
    flex-basis: calc(100% - 80px);
    background: #ffffff;
    padding: 60px 30px 50px 100px;
    font-size: 11pt;
    line-height: 1.62em;
    border-radius: 0 0 10px 10px;
}

.t-bq-quote-jasper .t-bq-quote-jasper-meta {
    margin-top: 30px;
    padding-top: 10px;
    border-top: 2px dotted #777777;
    text-align: center;
    font-family: "WorkSans-Regular";
    font-weight: 400;
}

.t-bq-quote-jasper-text {
    font-weight: 600;
}

.t-bq-quote-jasper .t-bq-quote-jasper-meta .t-bq-quote-jasper-author,
.t-bq-quote-jasper .t-bq-quote-jasper-meta .t-bq-quote-jasper-source {
    /* color: #777777; */
    font-family: "WorkSans-Regular";
}

.t-bq-quote-jasper .t-bq-quote-jasper-meta .t-bq-quote-jasper-author {
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 10pt;

    font-weight: bold;
}

.t-bq-quote-jasper .t-bq-quote-jasper-meta .t-bq-quote-jasper-author cite {
    font-style: normal;
}

.t-bq-quote-jasper .t-bq-quote-jasper-meta .t-bq-quote-jasper-source {
    font-size: 9pt;
}

@media screen and (max-width: 768px) {
    .t-bq-quote-jasper .t-bq-quote-jasper-base {
        padding-left: 30px;
    }
}

/* ========== 07. Horace ========== */

.t-bq-quote-horace {
    position: relative;
    min-height: 250px;
    border-radius: 10px;
    box-shadow: 2px 2px 25px #cecece;
}

.t-bq-quote-horace .t-bq-quote-horace-base {
    background: url("../assets/images/testimonial-blue-bg.jpg") repeat;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 4;
    color: #ffffff;
    font-weight: bold;
    padding: 60px;
    border-radius: 10px;
}

.t-bq-quote-horace .t-bq-quote-horace-meta {
    display: flex;
    flex-direction: row;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px dotted #ffffff;
}

.t-bq-quote-horace .t-bq-quote-horace-meta .t-bq-quote-horace-author {
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 10pt;
    font-weight: bold;
    font-family: "WorkSans-Regular";
}

blockquote.t-bq-quote-horace-text {
    font-family: "WorkSans-Regular";
    font-weight: 500;
}

.t-bq-quote-horace .t-bq-quote-horace-meta .t-bq-quote-horace-author cite {
    font-style: normal;
}

.t-bq-quote-horace .t-bq-quote-horace-meta .t-bq-quote-horace-source {
    font-size: 10pt;
}

.t-bq-quote-horace .t-bq-quote-horace-qmark {
    position: absolute;
    top: 140px;
    right: 5px;
    font-size: 280pt;
    color: #ffffff;
    opacity: 0.17;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.t-bq-quote-horace .t-bq-quote-horace-userpic {
    width: 70px;
    height: 70px;
    background: url("../assets/images/testimonial2.jpg") center center no-repeat;
    background-size: cover;
    border-radius: 50%;
    margin-right: 20px;
}

@media screen and (max-width: 768px) {
    .t-bq-quote-horace .t-bq-quote-horace-base {
        padding-left: 40px;
        padding-right: 40px;
    }

    .t-bq-quote-horace .t-bq-quote-horace-meta {
        flex-direction: column;
        text-align: center;
    }

    .t-bq-quote-horace .t-bq-quote-horace-meta .t-bq-quote-horace-userpic {
        margin: 0 auto;
        margin-bottom: 10px;
    }
}

/* testimonial end */

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

/* .active,
.dot:hover {
    background-color: #717171;
} */

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

/* alumni */

.alumni-row {
    height: 30vh;
    display: flex;
    justify-content: center;
}

.col-md-3.alumni-col {
    /* background-color: #fff; */
    background: transparent;
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    max-width: 100% !important;
    padding: 0px !important;
}

.alumni-col-img {
    max-width: 305px;

    /* background-image:url("../assets/images/testimonial-blue-bg.jpg"); */
    /* background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
}

.alumni-col-img img {
    /* position: relative; */

    top: 64px;
    z-index: 2;
    /* border-radius: 50%; */
    object-fit: cover;
    object-position: center;
    left: 12px;
    /* max-width: 260px !important; */
    max-height: 170px !important;
    min-height: 170px !important;
    max-width: 250px !important;
    min-width: 250px !important;
    position: relative;
}

.alumni-content {
    padding: 76px 10px 10px 10px;

    background-image: url("../assets/images/testimonial-blue-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 354px;
    max-width: 309px;
}

.alumni-content p {
    text-align: center;
    color: white;
    /* font-weight: 600; */
    max-width: 253px;
    min-width: 253px;

    max-height: 165px;
    min-height: 130px;
}

span.std-name {
    margin-top: 10px;
}

.alumni-content span.std-name,
span.std-ach {
    font-family: "WorkSans-Regular";
    /* font-weight: 400; */
    color: white;
    text-align: right;
    display: block;
    padding: 5px;
}

/* faculty */
.item a {
    text-decoration: none;
}

.item .image {
    min-height: 200px;
    max-width: 370px;
    width: 370px;
    height: 200px;
    position: relative;
    height: 200px;
    max-width: 376px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.item .image img {
    transition: all 0.2s;
    border-radius: 50%;
    height: 150px !important;
    width: 150px !important;
    max-height: 150px !important;
    object-position: 50% 50% !important;
    object-fit: fill !important;
}

.item .image:hover img {
    transform: scale(1.1);
    border-radius: 5px;
}

.item {
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset; */
    max-width: 370px;
    width: 370px;
    text-align: start;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    max-height: 350px;
    height: 350px;
    min-height: 350px;
    padding-bottom: 30px;

    display: block;
    margin: auto;
}

.item .css-arrow {
    margin-left: 10px;
    display: inline-block;
    width: 55px;
    height: 2px;
    background-color: #f15e42;
    position: relative;
    transition: all 0.25s linear 0s;
    vertical-align: middle;
}

.item .css-arrow::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    background-color: #f15e42;
    top: -3px;
    right: -3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all 0.25s linear 0;
}

.item .css-arrow::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    background-color: #f15e42;
    top: 3px;
    right: -3px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all 0.25s linear 0;
}

.item .read-more {
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    color: #27304b;
    position: relative;
    margin-top: 10px;
}

.item .read-more:hover {
    color: #f15e42;
}

.item:hover .css-arrow {
    width: 20px;
}

.item h4.entry-title {
    color: #000;
    margin-top: 10px;
    margin-bottom: 0px;
    text-align: start;
}

.item p.excerpt {
    margin-bottom: 4px !important;
}

.faculty-content {
    padding-left: 14px;
    padding-top: 10px;
    width: 370px;
    max-width: 370px;
    height: 150px;
    max-height: 150px;
    line-height: 10px;
}

/* / top-box-on-slider / */
.top-box {
    /* background-color: var(--top-box); */
    position: absolute;
    z-index: 1;
    bottom: 0;
    width: 950px;
    bottom: 0;
    left: 0;
    padding-left: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.top-box div {
    padding: 0;
}

.top-box div.inner-box {
    background-color: var(--top-box);
}

.top-box div:nth-child(3) {
    background: var(--mobile-menu-bg) !important;
}

.top-box div:nth-child(3) .slider-box h2,
.top-box div:nth-child(3) .slider-box p {
    color: #fff;
}

.slider-box {
    padding: 20px 20px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.slider-box h2 {
    font-weight: 900;
    font-family: "CircularStd-Bold";
    color: #111;
    font-size: 48px;
    margin-bottom: -5px;
    display: flex;
    justify-content: left;
    align-items: baseline;
}

.slider-box .excerpt {
    font-size: 16px;
    font-weight: 700;
    font-family: "CircularStd-Bold";
    text-transform: uppercase;
    margin-bottom: 10px;
}

.slider-box p {
    font-size: 15px;
    margin-bottom: 0;
    text-transform: capitalize;
}

/* page banner for all pages  */

.page-banner-other {
    background: url(../assets/images/banner.png) no-repeat center;
    background-size: 100%;
    padding: 200px 0 100px 0;
    position: relative;
    z-index: 2;
    background-color: #0000007d;
    background-blend-mode: multiply;
}

.page-banner-other h2 {
    font-size: 42px;
    line-height: 42px;
    color: var(--white);
    font-family: "CircularStd-Bold";
}

/* layouts style */

/* highlight carosuel column 3 */

#highlights-slider3 {
    margin-top: 20px !important;
}

.highlight-slide {
    background: #fff;
    margin: 10px 15px 10px;
    border-radius: 15px;
    padding-top: 1px;
    box-shadow: 0px 0px 15px 0px #bbcbd8;
}

.highlight-slide .highlight-img {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    margin: 0px 0px 15px 0px;
    height:100%;
    max-height: 420px !important;
}

.highlight-slide .highlight-img img {
    width: 100%;
    height: auto !important;
    /*transform: scale(1, 1);*/
    /*transition: transform 0.2s linear;*/
}

/*.highlight-slide:hover .highlight-img img {*/
/*    transform: scale(1.1, 1.1);*/
/*}*/

.highlight-slide .over-layer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background: linear-gradient(-45deg, rgba(6, 190, 244, 0.75) 0%, rgba(45, 112, 253, 0.6) 100%);
    /*transition: all 0.5s linear;*/
}

/*.highlight-slide:hover .over-layer {*/
/*    opacity: 1;*/
/*    text-decoration: none;*/
/*}*/

.highlight-slide .over-layer i {
    position: relative;
    top: 45%;
    text-align: center;
    display: block;
    color: #fff;
    font-size: 25px;
}

.highlight-slide .highlight-content {
    background: #fff;
    padding: 7px 20px 40px;
    border-radius: 15px;
}

.highlight-slide .highlight-title a {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    display: inline-block;
    text-transform: uppercase;
    /*transition: all 0.3s ease 0s;*/
    font-family: var(--secondary-font);
}

.highlight-slide .highlight-title a:hover {
    text-decoration: none;
    color: var(--blue);
}

.highlight-slide .highlight-library-service-infoription {
    line-height: 24px;
    color: #808080;
    margin-bottom: 25px;
}

.highlight-slide .highlight-name {
    color: #a9a9a9;
    font-size: 14px;
}

.highlight-slide .highlight-name i {
    font-size: 20px;
    margin-right: 8px;
    color: #cfdace;
}

.highlight-slide .read-more {
    padding: 7px 20px;
    float: right;
    font-size: 12px;
    background: var(--primary-color);
    color: #ffffff !important;
    box-shadow: 0px 10px 20px -10px var(--primary-color);
    border-radius: 25px;
    text-transform: uppercase;
}

.highlight-slide .read-more:hover {
    background: var(--blue);
    text-decoration: none;
    color: #fff !important;
}

#highlights-slider3 .owl-nav {
    color: #333;
    font-size: 30px;
}

#highlights-slider3 .owl-nav button.owl-prev {
    background: #fff;
    position: absolute;
    top: 42%;
    left: 2px;
    padding: 0 18px 0 15px;
    border-radius: 50px;
    box-shadow: 3px 14px 25px -10px #92b4d0;
    /*transition: background 0.5s ease 0s;*/
    width: 45px;
}

#highlights-slider3 .owl-nav button.owl-next {
    background: #fff;
    position: absolute;
    top: 42%;
    right: 2px;
    padding: 0 15px 0 18px;
    border-radius: 50px;
    box-shadow: -3px 14px 25px -10px #92b4d0;
    /*transition: background 0.5s ease 0s;*/
    width: 45px;
}

@media only screen and (max-width: 1280px) {
    .highlight-slide .highlight-content {
        padding: 0px 15px 25px 15px;
    }
}

/* 
about section 1 */

.about1 {
    padding: 15px;
    background-color: #111322;
    color: #fff;
    overflow-x: hidden;
    background-image: url("https://images.tribuneindia.com/cms/gall_content/2018/11/2018_11$largeimg10_Saturday_2018_015614122.jpg");
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-size: cover;
}

:root {
    --swiper-pagination-bullet-inactive-color: #fff;
}

.swiper-pagination-bullet-active {
    background-color: #fff !important;
    box-shadow: 0 0 15px #ffffff90;
    width: 15px !important;
    border-radius: 5px !important;
}

.slider-comments {
    margin: 0 15px;
    padding: 0px 20px;
    max-height: 200px;
    overflow-y: scroll !important;
    position: relative;
}

.slider-comments::-webkit-scrollbar {
    width: 7px;
}

.slider-comments::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgb(207, 206, 206);
    border-radius: 10px;

    background: #999 !important;
    max-height: 100px !important;
}

/* Handle */
.slider-comments::-webkit-scrollbar-thumb {
    background: #9f1f1f !important;
    border-radius: 10px;
    transition: all 0.5s;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}


.comment-container {
    width: 100%;
    height: 150px;
    background: red;
    margin: 35px 0;
}

.comment-slider-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 20px;
}

.swiper2 {
    position: relative;
    width: 100%;
    height: 200px;
    margin: 50px 0;
    border-radius: 5px;
}

.c-slider-img-container {
    width: 50%;
}

.slider-com-artic {
    position: absolute;
    top: -20%;
    left: 3%;
    background: #111322;
    font-size: 24px;
    width: 150px;
    text-align: center;
    margin: 10px 0;
    padding: 10px;
    color: #ffffff;
    border-radius: 5px;
}

.comm-header {
    position: absolute;
    top: -15%;
    right: 5%;
    background: #353853;
    text-align: center;
    width: 100px;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

.comment-section-container {
    width: 100%;
    margin: auto;


}


.comment-section {


    overflow-x: hidden;
}

.slider-com-link {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-right: 20px;
}

.slider-com-link a {
    padding: 10px 25px;
    background: #4d5172;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    margin: 10px;
    color: #ffffff;
    border-radius: 5px;
}

.coverflow {
    position: relative;
    background: #353853;
    border-radius: 5px;
    box-shadow: 15px 15px 0 #222335;
}

.comment-slider-img {
    width: 120px;
    height: 120px;
    background: linear-gradient(to top, #1b1d2e, #282b44);
}

.comment-slider-img img {
    height: 120px;
    width: 120px;
    object-fit: cover;
}

.comment-slider-com {
    color: #fff;
}

.services-offer {
    position: relative;
    margin: 0 auto;
    padding: 20px 20px;
    min-height: 300px;
    max-height: 500px;
    overflow-y: auto !important;
    width: 80%;
    background: #d3d3d3;
    box-shadow: 0 2px 7px rgb(0 0 0 / 40%);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.services-offer::-webkit-scrollbar {
    width: 7px;
}

.services-offer::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgb(207, 206, 206);
    border-radius: 10px;

    background: #999 !important;
    max-height: 100px !important;
}

/* Handle */
.services-offer::-webkit-scrollbar-thumb {
    background: #9f1f1f !important;
    border-radius: 10px;
    transition: all 0.5s;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}







.services-offer .simple-title {
    color: #9f1f1f;
    text-align: center;
    padding-bottom: 0px;
    margin-bottom: 6px;
}

.services-offer .simple-title span {
    color: #3865a1;
    text-align: center;
}

.services-offer p {
    color: #555;
    text-align: center;
}

.services-offer:hover {
    background: #fff;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0 9px 9px -7px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 9px 9px -7px rgba(0, 0, 0, 0.2);
    box-shadow: 0 9px 9px -7px rgb(0 0 0 / 20%);
}

.services-offer h5 {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 30px;
}

/* all .institute-list */

.institute-list .cust-content {
    padding: 20px 30px !important;
    z-index: 4;
}

.cust-content .h3-title {
    text-transform: capitalize;
}

.cust-content .h3-title span {
    color: var(--yellow);
    font-size: 40px;
}

.institute-list .wrap-link>img {
    filter: grayscale(1);
}

.bg-blue {
    background-color: var(--blue);
}

.sidebar .btn-custom {
    width: 100% !important;
}

.sidebar .btn-custom:hover {
    background-color: var(--primary-color) !important;
}

.sidebar .fa-volume-control-phone {
    font-size: 32px;
    padding-right: 10px;
}

.sidebar .contact-banner {
    position: absolute;
    bottom: 0;
    padding: 10px;
}

.sidebar .quick-link {
    padding-inline-start: 0;
    list-style-type: none;
}

.quick-link li {
    font-family: "WorkSans-Regular";
    font-size: 14px;
    list-style: none;
}

.quick-link li a {
    color: #fff !important;
    padding: 15px;
    display: block;
    background: var(--dark-blue);
    border-bottom: 1px solid var(--blue);
    position: relative;
    padding-left: 45px;
    z-index: 1;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.quick-link li a::before {
    content: "";
    height: 2px;
    width: 5px;
    background: #ddd;
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.quick-link li a:hover::after {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #343a7b;
    z-index: -1;
    transition: width 0.4s;
}

.quick-link li a:hover::after {
    width: 100%;
}

/* placement highlights slide 1 */
.highest-pl {
    background-color: var(--dark-blue);
}

.MainView-pl {
    position: relative;
}

.buttons {
    z-index: 1;
    right: 50%;
    top: 261px;
    width: 80px;
    height: 40px;
    position: absolute;
    border-radius: 50px;
    transform: translateX(50%);
    background-color: var(--blue);
}

.slide {
    align-items: center;
    width: 100%;
    margin: auto;
    color: #fff;
    border: 1px white dashed;
    padding: 15px;
    border-radius: 0 30px 30px 30px;
}

.pl-highest-content blockquote {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 36px;
    text-align: end;
}

.pl-highest-content span {
    display: block;
    color: #fff;
    font-weight: 500;
    font-size: 21px;
    text-align: end;
}

.slider-img {
    width: 100%;
    padding: 30px;
    display: flex;
    margin-bottom: 40px;
    align-items: center;
    justify-content: center;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://alcs-slider.netlify.app/images/pattern-bg.svg);
}

.slider-img img {
    width: 240px !important;
    display: block;
    border-radius: 10px;
    box-shadow: 0px 16px 40px 0px rgba(135, 105, 210, 0.4);
}

/* placement-section for institute*/

.placement-section {
    background: var(--primary-color);
    /* -webkit-transform: skewY(2deg);
    -moz-transform: skewY(2deg);
    -ms-transform: skewY(2deg);
    -o-transform: skewY(2deg);
    transform: skewY(2deg); */
    overflow: hidden;
}

.pl-banner-content .shape {
    position: absolute;
    bottom: 0;
    right: 100%;
    top: 0;
    display: inline-block !important;
    width: 0;
    height: 0;
    border-right: 116px solid var(--primary-color);
    border-bottom: 532px solid transparent;
}

.pl-banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    height: 100%;
    padding: 70px;
}

.pl-banner-content h2 {
    color: var(--yellow);
    line-height: 32px;
    padding-bottom: 0;
}

.pl-text {
    font-size: 40px;
    line-height: 47px;
}

/* courses page */

.courses-section {
    background-color: var(--dark-blue);
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
}

.courses-section .row {
    width: 80%;
    margin: auto;
    text-align: center;
}

.courses-section .pl-banner-content .shape {
    left: 100%;
    border-right: 134px solid var(--primary-color);
    border-bottom: 320px solid transparent;
}

.courses-CT {
    padding: 50px 50px;
}

.search-box {
    width: 350px;
    position: relative;
    display: flex;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.search-input {
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    padding: 15px 45px 15px 15px;
    background-color: #eaeaeb;
    color: #6c6c6c;
    border-radius: 6px;
    border: none;
    transition: all 0.4s;
}

.search-input:focus {
    border: none;
    outline: none;
    box-shadow: 0 1px 12px #b8c6db;
    -moz-box-shadow: 0 1px 12px #b8c6db;
    -webkit-box-shadow: 0 1px 12px #b8c6db;
}

.search-btn {
    background-color: transparent;
    font-size: 18px;
    padding: 6px 9px;
    margin-left: -45px;
    border: none;
    color: #6c6c6c;
    transition: all 0.4s;
    z-index: 10;
}

.search-btn:hover {
    transform: scale(1.2);
    cursor: pointer;
    color: black;
}

.search-btn:focus {
    outline: none;
    color: black;
}

#courses .dept-title {
    font-size: 20px;
    line-height: 20px;
    margin: 10px 10px 46px 10px;
    background-image: linear-gradient(135deg,
            rgb(41, 50, 91) 0,
            rgb(39, 46, 84) 59%,
            rgb(31, 40, 73) 59%,
            rgb(21, 24, 68) 100%);
}

.filter-pr {
    height: 15%;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    padding: 15px 45px 15px 15px;
    background-color: #eaeaeb;
    color: #6c6c6c;
    border-radius: 6px;
    border: none;
    transition: all 0.4s;
    margin-bottom: 10px;
}

.aboutProgram {
    margin-top: 30px;
    margin-bottom: 30px;
}

.aboutProgram.main h1,
.aboutProgram h2 {
    font-weight: 500;
    font-size: 26px;
    line-height: 26px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.aboutProgram.main h1.af-title,
.aboutProgram h2.af-title {
    font-size: 24px;
    line-height: 24px;
}

.highlightRnkings h2.highlightRnkings--title {
    color: var(--primary-color);
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

.highlightRnkings h5 {
    font-size: 16px;
    line-height: 16px;
}

/* programs of institutes */

#research-news .excerpt {
    font-size: 15px;
    font-weight: 100;
}

.topInner-numbers .cuNumbers-section__in.course-info {
    height: auto;
    padding: 20px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    background: #03a9f4;
}

.topInner-numbers .cuNumbers-section__in {
    padding: 30px;
    height: 260px;
    background: var(--bgcolor-white);
    border-radius: 6px;
    border: 1px solid var(--text-color-gray);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.course-info--details span {
    font-size: 16px;
    line-height: 18px;
    font-family: var(--secondary-font);
    display: block;
}

.course-info--details {
    color: white;
}

.course-info--details img {
    margin-bottom: 25px;
}

.course-info--details p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 8px;
}

.dept-title {
    font-size: 20px;
    line-height: 20px;
    margin: 32px 0 25px;
}

.topInner-numbers.sticky-top {
    position: sticky;
    top: 120px;
    z-index: 2;
}

.topInner-numbers .cuNumbers-section__in.dept-info {
    height: auto;
    padding: 15px 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
    border-radius: 6px;
    border: 1px solid #d3d3d3;
    position: relative;
    z-index: 2;
    background: #fff;
}

.cuNumbers-section--link:hover.cuNumbers-section__in.dept-info {
    background: #fff !important;
    border-color: var(--red) !important;
}

.prg-icon {
    font-size: 30px !important;
    padding-right: 20px;
}

.dept-box h5 {
    font-size: 14px;
    line-height: 18px;
    color: var(--text-color-dark);
    text-transform: uppercase;
    margin: 0;
}

.highlightRnkings {
    padding: 30px;
    background: #fff;
}

.listStyle-2 li {
    list-style-type: none;
    margin-bottom: 8px;
    padding-left: 15px;
}

.listStyle-2 li a {
    position: relative;
    font-size: 14px;
    padding-left: 9px;
    display: block;
    color: var(--text-color-dark);
    transition: all 0.4s ease-in-out;
}

.listStyle-2 li a:hover {
    margin-left: 10px;
    transition: all 0.2s ease-in-out;
    color: #f8a602 !important;
}

.listStyle-2 li a::after {
    content: "";
    height: 9px;
    width: 10px;
    background: url(https://ctgroup.wedevelopatmagna.online/frontend/assets/images/list-arrow-right.png);
    left: -15px;
    top: 7px;
    position: absolute;
}

.highlightRnkings h4 {
    font-size: 20px;
    line-height: 20px;
    padding-bottom: 10px;
    position: relative;
    z-index: 1;
}

.highlightRnkings h4::after {
    content: "";
    width: 93%;
    height: 15%;
    position: absolute;
    background: linear-gradient(to right, rgba(255, 0, 0, 1), rgba(255, 0, 0, 0));
    left: 49%;
    bottom: -5px;
    /* z-index: -1; */
    transform: skew(247deg) translateX(-50%);
    /* background: rgba(238,111,87,0.5); */
}

.listStyle-2 li a strong {
    color: var(--red);
}

.program-list ul {
    padding: 20px 0px 0px 0;
    margin-bottom: 0;
}

/* tie ups start */
.tie-ups-images-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: repeat(4, 1fr);
    width: 800px;
    padding: 40px 0px;
    grid-gap: 10px;
}

.tie-ups-images {
    cursor: pointer;
    position: relative;
    padding-bottom: 50%;
    height: 150px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.tie-ups-images img {
    height: 120px;
    width: 100%;

    object-position: center;
    left: 0;
    position: absolute;
    top: 0;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.tie-ups-images img:hover {
    filter: grayscale(0%);
}

/* tie-ups end  */

/* gallery-view-1 start */
.gallery {
    padding: 2rem 1rem;
    margin: 0 auto;
    max-width: 68rem;
    width: 100%;
}

.gallery-main .gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px;
    /* grid-template-columns: repeat(3, auto); */
    justify-content: center;
    align-items: center;
}

.gallery-main .gallery-card {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
    color: #333333;
    border-radius: 2px;
}

.gallery-main .gallery-card-image {
    background: #ffffff;
    display: block;
    padding-top: 70%;
    position: relative;
    width: 100%;
    transition: background-color 0.3s ease;
}

.gallery-main .gallery-card-image:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.gallery-main .gallery-card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-card-image img:hover {
    transform: scale(0.9);
    cursor: pointer;
}

@media only screen and (max-width: 600px) {
    */ .gallery-main .gallery {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 1rem;
    }
}

/* gallery-view-1 *end/


    /* gallery-view-2  start*/

.gallery-view-2-menu {
    text-align: center;
}

.gallery-view-2-menu ul li {
    display: inline-block;
    margin: 0;
    list-style: none;
    padding: 10px 15px;
    cursor: pointer;
    -webkit-transition: all 05s ease;
    -moz-transition: all 05s ease;
    -ms-transition: all 05s ease;
    -o-transition: all 05s ease;
    transition: all 0.5s ease;
}

.gallery-view-2-item .item {
    max-width: 370px;
    width: 370px;
    text-align: start;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    max-height: 250px;
    height: 250px;
    min-height: 200px;
    padding-bottom: 30px;
    display: block;
    margin: auto;
}

/* gallery-view-2 end */

/* program :start */
.program-single-page-left-view {
    z-index: -2;
}

nav.nav.nav-tabs.nav-justified.program-tabs-nav {
    border-bottom: 3px solid #bd372e !important;
}

a.nav-item.nav-link.program-tabs {
    padding: 10px 5px !important;
    font-size: 15px !important;
}

.program-tabs-nav .program-tabs,
.program-tabs-nav>.program-tabs {
    flex-basis: none !important;
}

a.nav-item.nav-link.program-tabs.active {
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px !important;
    border-bottom: none !important;
    color: #bd372e !important;
    font-weight: 800 !important;
    border-left: 3px solid #bd372e !important;
    border-right: 3px solid #bd372e !important;
    border-top: 3px solid #bd372e !important;
}

a.nav-item.nav-link.program-tabs.active:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px !important;
    border-bottom: none !important;
    color: #bd372e !important;
    font-weight: 800 !important;

    border-left: 3px solid #bd372e !important;
    border-right: 3px solid #bd372e !important;
    border-top: 3px solid #bd372e !important;
}

a.nav-item.nav-link.program-tabs:hover {
    border-bottom: none !important;
    background-color: #fffbfb !important;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    border-left: 1px solid #b64e46cc !important;
    border-right: 1px solid #b64e46cc !important;
    border-top: 1px solid #b64e46cc !important;
    color: #b64e46cc !important;
}

a.nav-item.nav-link.program-tabs:hover nav.nav.nav-tabs.nav-justified.program-tabs-nav {
    border-bottom: none !important;
}

/* highlights-view-1 */

.h1-box-1 h2,
.h1-box-1-1 h2 {
    text-align: center;
    font-weight: 400;
}

.h1-box-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
    text-align: center;
    padding: 20px 10px 10px 10px;
    background: linear-gradient(135deg,
            rgb(41, 50, 91) 0,
            rgb(39, 46, 84) 59%,
            rgb(31, 40, 73) 59%,
            rgb(21, 24, 68) 100%);
    color: #fff;
}

.h1-box-1-1 {
    padding: 20px 10px 10px 10px;
    background: linear-gradient(135deg,
            rgb(224, 208, 59) 0,
            rgb(245, 229, 85) 59%,
            rgb(236, 217, 40) 59%,
            rgb(177, 160, 5) 100%);
    color: #333;
    border-radius: 10px;
}

.h2-box {
    text-align: center;
}

.h2-box-1 {
    background: #403471;
    width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100px;
    margin: auto;

    border-radius: 50px;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    display: flex;
    transition: 1s all ease-in;
}

.h2-box-col {
    padding: 20px;
    border-radius: 10px;
}

.h2-box-col:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.h2-box-col:hover {
    background-color: #fff;
}

.h2-box-col:hover .h2-box-1 {
    background-color: #f8a602;
}

.h2-box h2 {
    display: inline;
    border-bottom: 1px solid #403471;
    font-weight: bold;
    padding-bottom: 10px;
}

.h2-box p.h2-p {
    margin-top: 20px;
}

/* 
/* infrastructure */




.infrastructure-img {
    height: 300px;
    min-height: 300px;
    max-height: 300px;
    position: relative;
}

.infrastructure-img::before {
    content: "";
    position: absolute;
    width: 50%;
    background-color: #f6ba2f91;
    height: 100%;
    left: 0;
}

.infrastructure-img img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    min-height: 300px;
    max-height: 300px;
}




/* infrastructure end */

/* contact us */
.contact-row {
    height: 90vh;
    width: 100%;
    background-image: url("../assets/images/contactus-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: calc(100% - 0px) calc(100% - -184px);
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);

    margin-top: 0px !important;
    margin: 0px !important;
    margin-left: 0px !important;
    background-blend-mode: multiply;
}

.contact-us-ph {
    padding: 10px;
    padding-inline-start: 60px;
    background: #ffffff85;

    display: inline-block;
    border-radius: 10px;
}

.contact-us-ph h4 {
    font-size: 30px !important;


}

.contact-us-ph h3 {
    font-size: 35px;


}

.contact-us-ph p {
    font-size: 20px !important;


}

div.contact-form {
    padding: 30px 30px;
    border-radius: 10px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    margin-top: -203px;
    z-index: 3;
    background-color: #fff;
    height: auto;
}

.contact-form form button {
    color: #fff;
    margin-top: 10px;
    width: 100%;
    height: 46px;
    line-height: 46px;
    border: none;
    text-transform: uppercase;
    margin-right: 15px;
    border-radius: 4px;
}

.contact-form form button.register {
    color: #fff;
    background: #c33f3f;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
}

.contact-form form button.register:hover {
    background: #29315a;
}

.contact-form form button.already-register {
    background: rgb(184, 180, 180);
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    color: #111;
}

.contact-form form button.already-register:hover {
    background: #29315a;
    color: #fff;
}

.col-md-4.contact-links {
    padding-left: 60px;
    padding-top: 20px;
}

.col-md-4.contact-links ul {
    padding-left: 0px;
}

.col-md-4.contact-links ul li {
    margin: 0;
    margin-bottom: 1em;
    padding-left: 1.5em;
    position: relative;
    list-style: none;
}

.col-md-4.contact-links ul li:after {
    content: "";
    height: 0.4em;
    width: 0.4em;
    background: #d2153a;
    display: block;
    position: absolute;
    transform: rotate(45deg);
    top: 10px;
    left: 0;
}

.col-md-4.contact-links ul li a {
    text-decoration: none;
    color: #111;
    font-weight: 400;
}

.col-md-4.contact-links ul li a:hover {
    color: #c33f3f !important;
    font-weight: 700;
}

.office {
    margin-top: 30px;
    padding: 10px;
    width: 100%;
}

.office h3 {
    font-size: 18px;
    line-height: 1.2;
    color: #29315a;
}

h4.important-links {
    background: #29315a;
    display: inline-block;
    color: #fff;
    margin: 16px 0px;
    padding: 10px;
}

li.li-margin {
    margin-left: 20px;
}

.office ul {
    padding-left: 0px;
}

.office ul li {
    list-style: none;
}

.col-md-8 h2.h2-office {
    text-align: start;
    margin-left: 0px;
    margin-bottom: 0px;
    color: #29315a;
}

.col-md-12.display-state {
    height: auto;
}

/* contact-us end  */

/* courses single page  */

.btn-secondary:not(:disabled):not(.disabled):active {
    background-color: #fff !important;

    border-color: none !important;
}

.selected-field {
    font-size: 12px;
}

.type {
    font-size: 14px;
    font-weight: 400;
}

.type span i.fa.fa-check {
    display: block;
    color: #e60023;
}

.course-page {
    background-color: #fff;
    padding: 10px;
}

.course-page h5 {
    color: #6f6f6f;
    padding: 10px 0px;
}

.course-page h5:hover {
    color: #bd372e;
}

.course-page.row div.nav {
    display: block !important;
    background-color: #fff !important;
}

.course-page.row div.nav a.active {
    background-color: #fff !important;
}

.select-type-div {
    margin: 0px 10px !important;
    font-size: 14px !important;
    color: #6f6f6f !important;
}

div.discipline ul {
    padding-inline-start: 0px;
}

div.discipline ul li {
    list-style: none;
    font-size: 14px;
    text-align: start;
}

div.discipline ul li a {
    color: #6f6f6f;
}

div.discipline ul li a i {
    color: #bd372e;
    font-size: 12px;
}

.search-course-form.form-inline {
    justify-content: center !important;
}

.search-course-form.form-inline .form-control {
    width: 60vw !important;

    margin-right: 0rem !important;
}

button.search-course-button.btn.btn-outline-success.my-2.my-sm-3 {

    background-color: #bd372e;
    color: #fff !important;

}

.program-Specializations h6 {
    color: #111;
    font-weight: 600;
}

.minor-offered h6 {
    color: #6f6f6f;
}

ul.program-type strong {
    display: inline;
    font-size: 14px;
    padding: 0px 5px;
}

li.program-name {
    font-size: 15px;
    color: #6f6f6f;
    list-style: none;
}

li.program-name:hover {
    color: #bd372e;
}

li.program-duration {
    font-size: 12px;
    color: #6f6f6f;
    list-style: none;
}

/* courses single page end  */



/* event_landing_page */

.events-landing-bg {
    background: url(../assets/images/events/events-landing.jpg);
    height: 80vh;
    background-repeat: no-repeat;
    z-index: 0;
    position: relative;
    background-size: cover;
    background-position: center;

    min-height: 80vh;
}

.overlay-events-landing {
    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    /* opacity: 0; */
    transition: 0.3s ease;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 100%);
}

.event-landing-banner:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(132 128 128 / 88%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

/* individual subevents bg */

/* cultural */
.events-landing-cultural-bg {
    background: url(../assets/images/events/all-events-bg.jpg), #615e5e91;

    background-blend-mode: multiply;
    background-repeat: no-repeat;
    z-index: 0;
    position: relative;
    filter: grayscale(50%);
    position: relative;
    background-size: cover;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-position: center;
    max-height: 100px;
    border-radius: 10px;
    margin: 20px 0px;
    min-height: 100px;
}

.overlay-subevents-landing {
    position: absolute;
    width: 100%;
    height: 100%;


    left: 0;
    right: 0;
}

.events-landing-cultural-bg:hover .overlay-subevents-landing {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.subevents-w-hover {
    position: absolute;
    align-items: center !important;
    width: 100%;
    height: 100%;
    display: flex !important;
    padding: 10px;
    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;

    left: 0;
    right: 0;
}

.events-landing-cultural-bg:hover .subevents-w-hover {
    display: none !important;
}

/* cultural  end*/

/* tech  */

.events-landing-tech-bg {
    background: url(../assets/images/events/tech/tech-bg.jpg), #ffb900;
    height: 300px;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    z-index: 0;
    filter: grayscale(30%);
    position: relative;
    background-size: cover;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-position: center;
    max-height: 300px;
    border-radius: 10px;
    margin: 20px 0px;
    min-height: 300px;
}

.events-landing-tech-bg:hover .overlay-subevents-landing {
    display: block;
}

.events-landing-tech-bg:hover .subevents-w-hover {
    display: none;
}

/* tech end */

/* celebrity  */
.events-landing-celebrity-bg {
    background: url(../assets/images/events/celebrity/celebrity-bg.jpg), #023e93e3;
    height: 300px;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    z-index: 0;
    filter: grayscale(30%);
    position: relative;
    background-size: cover;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-position: center;
    max-height: 300px;
    border-radius: 10px;
    min-height: 300px;
    margin: 20px 0px;
}

.events-landing-celebrity-bg:hover .overlay-subevents-landing {
    display: block;
}

.events-landing-celebrity-bg:hover .subevents-w-hover {
    display: none;
}

/* celebrity  end */
/* individual subevents bg end*/

/* sub-events */
.overlay-subevents-landing {
    position: absolute;
    top: 0;
    display: none;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    border-radius: 10px;
    width: 100%;
    /* opacity: 0; */
    transition: all.3s ease-in-out;
}

.subevent-landing-banner:before {
    content: "";
    width: 100%;
    border-radius: 10px;
    height: 100%;
    background: rgb(132 128 128 / 88%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

/* .subevents-w-hover {
    padding: 38px 0px;
} */

/* events-link red button  */
.button-red-events-link button {
    height: 40px;
    border: none;
    border-radius: 4px;
    background: #cd3034;
    width: 150px;
}

.button-red-events-link a {
    color: #fff !important;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
}

.button-red-events-link button:hover {
    background: #023e93e3;
}

/* events-link red button end */

/* events-link yellow button end */
.button-yellow-events-link button {
    height: 40px;
    border: none;
    border-radius: 4px;
    background: #ffb900;
    width: 150px;
}

.button-yellow-events-link a {
    color: #fff !important;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
}

.button-yellow-events-link button:hover {
    background: #023e93e3;
}

/* events-link yellow button end */

/* events-link blue button  */
.button-blue-events-link button {
    height: 40px;
    border: none;
    border-radius: 4px;
    background: #023e93e3;
    width: 150px;
}

.button-blue-events-link a {
    color: #fff !important;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
}

.button-blue-events-link button:hover {
    background: #ffb900;
}

/* events-link blue button end */

/* sub-events end */

/* event_landing_page  end*/

/*cultural-event-bg */

.cultural-events-bg {
    background: url(../assets/images/events/cultural/cultural12.jpg);
    height: 100vh;
    background-repeat: no-repeat;
    z-index: 0;
    position: relative;
    background-size: cover;
    background-position: center;

    min-height: 100vh;
}

.s-cultural-events-bg {
    background: url(../assets/images/events/cultural/cultural12.jpg);
    height: 70vh;
    background-repeat: no-repeat;
    z-index: 0;
    position: relative;
    background-size: cover;
    background-position: center;
}

/*cultural-event-bg end */

/*celebrity-event-bg */

.celebrity-events-bg {
    background: url(../assets/images/events/celebrity/celebrity-bg.jpg);
    height: 100vh;
    background-repeat: no-repeat;
    z-index: 0;
    position: relative;
    background-size: cover;
    background-position: center;

    min-height: 100vh;
}

.s-celebrity-events-bg {
    background: url(../assets/images/events/celebrity/celebrity-bg.jpg);
    height: 70vh;
    background-repeat: no-repeat;
    z-index: 0;
    position: relative;
    background-size: cover;
    background-position: center;
}

/*celebrity-event-bg end */

/*tech-event-bg */

.tech-events-bg {
    background: url(../assets/images/events/tech/tech-bg.jpg);
    height: 100vh;
    background-repeat: no-repeat;
    z-index: 0;
    position: relative;
    background-size: cover;
    background-position: center;

    min-height: 100vh;
}

.s-tech-events-bg {
    background: url(../assets/images/events/tech/tech-bg.jpg);
    height: 70vh;
    background-repeat: no-repeat;
    z-index: 0;
    position: relative;
    background-size: cover;
    background-position: center;
}

/*tech-event-bg end */

/* events-page-css */
.overlay-events {
    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    /* opacity: 0; */
    transition: 0.3s ease;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 100%);
}

.event-htag-div {
    text-align: center;
}

.event-htag-div h2 {
    font-size: 60px;
    color: #111;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold !important;
    font-family: --;
}

.event-htag-div h2 span {
    color: #ffb900;
}

.event-htag-div {
    text-align: center;
}

.event-htag-div h3 {
    display: inline-block;
    padding: 0px 10px 10px;
    font-size: 30px;
    color: #111;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold !important;
    border-left: 1px solid #ffb900;
    border-right: 1px solid #ffb900;
    border-bottom: 1px solid #ffb900;
}

.event-htag-div h3 span {
    color: #ffb900;
}

.event-htag-div h6 {
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold !important;
}

.event-htag-div h6 span {
    color: #ffb900;
}

.event-h6-div {
    text-align: center;
}

.event-h6-div h6 {
    font-size: 30px;
    color: #111;
    font-weight: bold;
    text-align: center;
    letter-spacing: 2px;
    margin-top: 0.5em;
    border-left: 4px solid #ffb900;
    border-right: 4px solid #ffb900;
    border-bottom: 4px solid #ffb900;
    padding: 0.5em 3em;
    display: inline-block;
}

.event-p-div {
    text-align: center;
}

.event-p-div p {
    font-size: 20px;
    color: #111;
    text-align: center;
    letter-spacing: 2px;
    margin-top: 0.5em;
    padding: 0.5em 3em;
}

.event-banner:before {
    content: "";
    width: 50%;
    height: 100%;
    background: rgb(132 128 128 / 88%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.event-banner:after {
    content: "";
    width: 50%;
    height: 100%;
    background: #012658e3;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

div.event-display {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #fff;
    border-radius: 5px;
    height: 350px;
    max-height: 350px;
    margin: 20px 0px;
}

.event-state {
    left: -19px;
    bottom: 265px;
    position: absolute;
    top: 2;
    background-color: transparent;
    padding: 12px;
    display: block;
    overflow: hidden;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.ev-state-wrap {
    width: 120px;
    margin: auto;
    z-index: 1;
}

.ev-status {
    color: whitesmoke;
    text-align: center;
    font-size: 14px;
    z-index: 5;
    background: transparent;
    width: 100px;
    max-width: 100px;
    height: 40px;
    max-height: 40px;
    overflow: hidden;
    padding: auto;
    display: none;
    pointer-events: none;
    position: absolute;
    bottom: 45px;
    text-transform: uppercase;
    left: 19px;
}

.ev-state-sticker {
    width: 120px;
    height: 120px;

    background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/13034/sticker.png) top center no-repeat;
    display: none;
    background-size: cover;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-position: center;

    animation-play-state: paused;
}

.event-display:hover div.ev-status {
    display: block;
}

.event-display:hover div.ev-state-sticker {
    text-align: center;
    display: block;
    animation: spin 10s linear infinite;
    animation-play-state: running;
}

@keyframes spin {
    100% {
        transform: rotate(1turn);
    }
}

div.event-img {
    overflow: hidden;
    max-height: 250px;
    min-height: 150px;
    width: 100%;
}

div.event-img img {
    object-fit: contain !important;

    height: 100%;
    width: 100%;
    ;
    transition: 1.2s all ease-in-out;
}

div.event-display:hover div.event-img img {
    filter: var(--bg-grident);
    transform: scale(1.1);
}

div.event-detail {
    padding: 7px 14px;
}

div.event-title h6 {
    max-height: 20px;

    height: 20px;
    font-size: 15px;
    overflow: hidden;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 2px !important;
}

div.event-detail p {
    max-height: 40px;
    font-size: 12px;
    height: 40px;
    margin-bottom: 0px !important;
    color: gray;
    text-transform: capitalize;
    overflow: hidden;
}

/* single-event-page */

div.s-event-display {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #fff;
    border-radius: 5px;
    height: auto;

    margin: 20px 0px;
}

div.s-event-img {

    height: 100% !important;
}

div.s-event-img img {
    object-fit: cover;

    height: 100% !important;

    width: 100%;

}

div.event-detail {
    padding: 7px 14px;
}

div.s-event-title h6 {

    min-height: 20px;

    font-size: 25px;
    overflow: hidden;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 2px !important;
}

div.s-event-detail p {

    font-size: 15px;
    min-height: 30px;

    margin-bottom: 0px !important;
    color: gray;
    text-transform: capitalize;
    overflow: hidden;
}

div.s-event-depth-info p.excerpt {

    min-height: 300px;
}

.upcomingt-event-img {
    height: 200px;
    min-height: 200px;
    max-height: 200px;
}

.upcoming-event-img img {
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    object-fit: cover;
    width: 100%;
    object-position: top;
}

.upcoming-event-title {
    padding-top: 10px;
    font-weight: 700;
    margin-bottom: 4px !important;
}

.upcoming-e-content {
    font-size: 14px;
    line-height: 20px;
    color: #333;
    max-width: 500px;
    font-weight: 100;
    margin-bottom: 7px !important;
}

/* single-event-page  end*/

/* events-page-css end */

/* news- landing page  */

.latest-news {
    height: 450px;
    min-height: 450px;
    max-height: 450px;
    position: relative !important;
}

.latest-news img {
    height: 450px !important;
    min-height: 450px;
    max-height: 450px;
    object-fit: cover;
    width: 100%;

    object-position: center;
}

.news-detail {
    padding: 10px;
    position: absolute;
    width: 100%;
    /* position: absolute; */
    left: 0;
    right: 0;
    bottom: 0;

    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}

.news-title a h3 {
    height: 40px;
    max-height: 40px;
    min-height: 30px;
    color: #fff;
    text-shadow: 1px 1px 0 rgb(0 0 0 / 33%);
    font-weight: 800;
    overflow: hidden;
    transition: all 0.6s;
}

.news-title a h3:hover {
    color: #e60023;
}

.news-info p {
    text-shadow: 1px 1px 0 rgb(0 0 0 / 33%);
    font-size: 20px;
    height: 60px;
    max-height: 60px;
    min-height: 30px;
    overflow: hidden;
    color: #fff;
    font-weight: 600;
}

.latest-news-1 {
    height: 225px;
    min-height: 225px;
    max-height: 225px;
    position: relative;
}

.latest-news-1 img {
    height: 225px;
    min-height: 225px;
    max-height: 225px;
    object-fit: cover;
    width: 100%;

    object-position: center;
}

.news-detail-1 {
    width: 100%;
    position: absolute;
    padding: 10px;
    bottom: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
    left: 0;
    right: 0;
}

.news-detail-1 h4 {
    height: 20px;
    max-height: 20px;
    min-height: 10px;
    color: #fff;
    font-size: 20px;
    text-shadow: 1px 1px 0 rgb(0 0 0 / 33%);
    font-weight: 800;
    overflow: hidden;
    min-width: 250px;
    max-width: 250px;
    transition: all 0.5s;
}

.news-detail-1 h4:hover {
    color: #e60023;
}

.news-info-1 p {
    text-shadow: 1px 1px 0 rgb(0 0 0 / 33%);
    font-size: 15px;
    height: 20px;
    max-height: 20px;
    min-height: 10px;
    color: #fff;
    font-weight: 400;
    overflow: hidden;
}

.news-display {
    height: 300px;
    max-height: 300px;
    min-height: 300px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
    margin: 20px 0px;
}

.news-img img {
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.news-date {
    display: flex;
    position: absolute;
    bottom: 120px;
    left: 15px;
    background-color: #fff;
    padding: 0px 8px;
    font-weight: 600;
    color: #e60023;
}

.news-card-detail {
    height: 100px;
    min-height: 100px;
    max-height: 100px;
    overflow: hidden;
    padding: 10px;
}

.news-card-heading h6 {
    margin-bottom: 0 !important;
    height: 40px;
    min-height: 30px;
    max-height: 40px;
    font-size: 16px;
    overflow: hidden;
    font-weight: 700;
    color: #07294d;
    transition: all 0.5s;
}

.news-card-heading h6:hover {
    color: #e60023;
}

.news-card-info p {
    margin-bottom: 0 !important;
    height: 40px;
    min-height: 30px;
    max-height: 40px;
    font-size: 13px;
    overflow: hidden;
}

.latest-news-img {
    height: 200px;
    min-height: 200px;
    max-height: 200px;
}

.latest-news-img img {
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    object-fit: cover;
    width: 100%;
    object-position: center;
}

.latest-news-title {
    padding-top: 10px;
    font-weight: 700;
    margin-bottom: 4px !important;
    color: #e60023;
}

.latest-news-date {
    color: #e60023;
    font-size: 12px;
    display: inline-block;
    vertical-align: middle;
    font-family: "Roboto";
    font-weight: bold;
    cursor: pointer;
}

.latest-n-content {
    font-size: 14px;
    line-height: 20px;
    color: #333;
    max-width: 500px;
    font-weight: 100;
    margin-bottom: 7px !important;
}

.pagination {
    display: inline-block;
    margin: 20px 0px;
}

.pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color 0.3s;
    /* border: 1px solid #ddd; */
    border-radius: 4px;

    margin: 0 4px;
}

.pagination a:hover {
    background-color: #1b5491;
    color: #fff !important;
}

.pagination a.active {
    background-color: #07294d;
    color: #fff !important;
    border-radius: 4px;
    /* border: 1px solid #4CAF50; */
}

/* news- landing page  end */

/* single news page */

.s-news-img {
    position: relative;
}

.s-news-img img {

    max-height: 450px;
    object-fit: cover;
    width: 100%;

    object-position: center;
}

.s-news-detail {
    margin: 20px 0px;
    min-height: 300px;
    padding: 20px 0px;

}

.s-news-title {
    min-height: 30px;


}

.s-news-date {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff;
    padding: 0px 8px;
    font-weight: 600;
    color: #e60023;

}

.s-news-info {
    margin: 15px 0px;
    min-height: 20px;


}

.s-news-depth-info {
    min-height: 200px;


}

/* courses- view */

.active-applynow {
    display: none;
}

a.course-filter.nav-link {
    display: block !important;

}

a.course-filter.nav-link i {
    display: inline;
    padding-top: 5px;
    padding-right: 12px;
}

li.course-item:hover {
    background-color: var(--yellow) !important;

    transition: all 0.7s;

}

li.course-item.htp {
    padding: 0px 30px !important;
}

li.course-item:hover a.course-filter {
    color: #fff !important;


}


.courses-padding {
    padding: 0px 20px;
}



li.courses-margin {
    margin: 0px 10px;
}

li.courses-border {
    border: 1px solid #ccc;
}

.course-item.fee {
    padding: 0px 30px !important;
}

li.course-filter {
    padding: 20px 10px !important;
}




.stickyscrollnavbar {
    position: fixed;
    top: 14%;
    left: 0%;
    width: 100%;
    justify-content: center;
    right: 0;

    z-index: 80;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px,
        rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
    background-color: #fff;
}

.aboutProgram p {
    color: #999;
    font-family: var(--primary-font);
}

.programe-eligibility h5 {
    font-weight: 600;
}

.programe-eligibility p {
    padding: 5px 0px;
    text-transform: capitalize;
    color: #999;
}

.programe-eligibility p span {
    color: #101010;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--primary-font);
}

.related-icon {
    color: var(--blue-trnsperent);
}

.related-ul {
    padding-inline-start: 0 !important;
}

li.related-list {
    list-style: none;
}

a.related-programs h6 {
    text-align: start;
    color: var(--blue-trnsperent);
    font-weight: 600;
    text-transform: capitalize;
}

a.related-programs p {
    text-transform: capitalize;
    font-family: var(--primary-font);
}

a.related-programs:hover.related-programs h6 {
    color: #f09433 !important;
}

/* program-curriculam */

.nav-tabs.Curriculum-tabs-nav {
    border-bottom: none !important;
}

.Curriculum-tabs-nav a {
    text-transform: capitalize;
}

.Curriculum-link {
    height: 200px;
    padding: 20px 0px;
    text-align: center;

    min-height: 200px;
    max-height: 200px;
    border-radius: 7px;
    width: 100%;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.Curriculum-icon {
    height: 120px;
    border-radius: 50%;
    width: 120px;
    margin: auto;
    margin-bottom: 10px;
    padding: 25px;
    background-color: #fffacd !important;
}

.Curriculum-icon i.fa {
    display: block !important;
    text-align: center !important;
    font-size: 50px;
    background-color: transparent;

    margin: 5px 0px;

    color: var(--yellow);
}

.Curriculum-link.active .curriculam-icon {
    color: #fff !important;
    background-color: #ffc107 !important;
}

.Curriculum-link {
    border: none !important;
    font-size: 15px;
    font-weight: 600;
    background-color: transparent !important;
    color: var(--yellow) !important;
}

.Curriculum-col.active {
    background-color: var(--yellow) !important;
}

.Curriculum-link.active {
    color: #fff !important;
    background-color: var(--yellow) !important;
}

.Curriculum-link.active i {
    color: var(--yellow) !important;
}

.Curriculum-content {
    margin-top: 20px !important;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.Curriculum-content h5 {
    border-left: 3px solid var(--yellow) !important;
    padding: 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--yellow);
}

.Curriculum-content h6 {
    border-left: 3px solid var(--yellow) !important;
    padding: 10px;
    font-size: 17px;
    font-weight: 600;
    color: var(--yellow);
}

.Curriculum-content p {
    border-left: 3px solid var(--yellow) !important;
    padding: 10px;
    color: #999 !important;
    font-size: 15px;
}

/* curriculam end */

/* program-highlight start */
.program-highlights {
    min-height: 50px !important;
    text-align: center;
    display: flex;
    padding: 20px;
    align-items: center;
    flex-direction: column;
    transition: all 0.9s;

    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.program-highlights:hover {
    background-color: var(--yellow);
}

.program-highlights:hover.program-highlights p {
    color: #fff !important;
}

.program-highlights h4 {
    font-size: 20px;
    color: var(--blue-trnsperent);
    font-weight: 800;
}

.program-highlights p {
    font-size: 15px;
    color: #999;
    font-weight: 600;
}

/* program-highlight end */

/* fee-program */
.fee-detail {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.fee-info {
    padding: 10px;
}

.fee-info h5 {
    font-size: 15px;
    color: var(--yellow);
}

.fee-info p {
    font-size: 15px;
    color: #999;
}

.fee-charges {
    border-left: 1px solid #ccc;
    padding: 50px 20px;
}

/* fee program end */

/* scholarship start */

.program-scholarship {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 10px;
}

.program-scholarship h5 {
    color: var(--yellow);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0 !important;
}

.program-scholarship p {
    color: #999;
    font-weight: 600;
    font-size: 15px;
}

/* scholarship start end */

/* how to apply */
.nav-tabs .nav-item .how_to_apply:hover {
    border: none !important;
}

.nav-link.active.how_to_apply i.fa.fa-check {
    color: #fff !important;
}

.nav-link.active.how_to_apply {
    border: none !important;
}

.nav-link.how_to_apply .how_apply_icon:hover {
    background-color: var(--yellow);
}

.nav-link.how_to_apply .how_apply_icon:hover i.fa.fa-check {
    color: #fff !important;
}

.nav-link.active.how_to_apply .how_apply_icon {
    background-color: var(--yellow);
}

/* 
li.how_to_apply_before {
    width: 20% !important;
}

.how_to_apply_before::before {
    content: "";
    width: 78%;
    border: 1px solid #ccc;
    position: absolute;
    top: 35px;
    z-index: 0;
    left: 140px;
} */

.how_to_apply {
    text-align: center;
}

.steps {
    margin: 10px 0px 0px 0px;
}

.steps p {
    color: #999;
    font-size: 13px;
    margin-bottom: 0px !important;
    text-transform: capitalize;
    font-weight: 500;
}

.how_apply_icon {
    height: 50px;
    width: 50px;
    margin: auto;
    border-radius: 50%;
    border: 1px solid #ccc;
    text-align: center;
}

.how_apply_icon i.fa.fa-check {
    font-size: 15px;
    color: #999;
    object-fit: cover;
    padding: 18px 0px;
}

.h-apply-content {
    background-color: #fff !important;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
    border-top: none !important;
}

.h-apply-detail h6 {
    color: var(--yellow);
    font-weight: 600;
}

.h-apply-detail p {
    font-size: 14px;
    padding: 5px 0px;
    color: #7b7b7b;
    font-weight: 500;
    margin-bottom: 0 !important;
}

.pagenation-button {
    display: flex;
    padding: 10px 0px;
    justify-content: end;
}

.pagenation-button button {
    border: none !important;
    width: 80px;
    height: 40px;
    border-radius: 7px;
    background-color: var(--yellow);
    color: #fff !important;
}

.pagenation-button-next {
    display: flex;
    margin-left: auto;
}

.pagenation-button-back {
    display: flex;
    margin-right: auto;
}

/* how to apply end */

/* important dates */

.program-important-dates {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 10px;
}

.program-important-dates h5 {
    color: var(--yellow);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0 !important;
}

.program-important-dates p {
    color: #999;
    font-weight: 600;
    font-size: 15px;
}

/* important-dates end */

/* courses page end */

/* library page start  */

.library-bg {
    text-align: center;
    position: relative;
    background-image: url("../assets/images/library/library-bg.jpg");
    background-repeat: no-repeat;
    background-position: calc(100% - 0px) calc(100% - -280px);

    background-size: cover;
    z-index: 0;
    height: 425px;
}

.library-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: #0000008a;

}

.library-content {
    text-align: center !important;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.library-content h3 {
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    border-bottom: 3px solid var(--yellow);
    display: inline;
    margin-bottom: 10px;
}

.library-content p {
    color: #a9a9a9;
    font-size: 25px;
    padding-top: 5px;
}

.library-content button {
    border: none !important;
    display: block;
    text-align: center;
    width: 160px;
    height: 40px;
    border-radius: 8px;
    font-size: 27px;
    color: #fff;

    background-color: #07294d;
}

.library-content button:hover {
    background-color: var(--yellow);
}

.library-overlay {
    position: absolute;
    padding: 12em 0em 9em;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    width: 100%;
    /* opacity: 0; */
    transition: 0.3s ease;
}

.library-nav {
    transition: all 0.7s;
}

ul.library-pading {
    padding: 2% 0;
}

.library-item {
    border: none !important;

    transition: all 0.6s;
}

.box-shadow {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.library-item:hover {
    background-color: var(--yellow) !important;
    color: #fff !important;
}

.library-item:hover .library-link {
    transition: all 0.6s;
    color: #fff !important;
}

.library-item:hover .library-link i {
    color: #fff !important;
}

.library-link.active {
    border: none !important;
    background-color: var(--yellow) !important;
    color: #fff !important;
    padding: 5px 10px;
}

.library-link.active i {
    color: #fff !important;
}

.library-link {
    padding: 5px 10px;
    color: #7e7e7e !important;
    border: none !important;
    text-transform: capitalize;
}

.library-link i {
    color: var(--yellow) !important;
}

.library-link:hover {
    border: none !important;
}

.library-margin {
    margin: 0px 20px;
}

.library-item-padding {
    padding: 10px 30px !important;
}

.library-tabs-section {
    padding: 30px 0px;
}

.stickylibrarynavbar {
    position: fixed;
    top: 15%;
    left: 0;
    right: 0;
    padding: 0;
    z-index: 80;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px,
        rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
    background-color: #fff;
}

.library-main {
    padding: 10px 0px;
}

.library-main h4 {
    font-size: 25px;
    color: #07294d;
    text-transform: uppercase;
    font-weight: 700;
}

.library-tabs {
    padding: 10px 0px !important;
    background-color: #fff;
    /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px; */
}

.library-tabs h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--yellow);
}

.library-tabs p {
    font-size: 15px;
    font-weight: 500;
    color: #999;
}

.library-tabs p.heading-detail {
    display: inline;
    font-size: 15px;
    font-weight: 500;
    color: #999;
}

.heading-library-sub-detail {
    padding: 10px 0px;
}

.heading-library-sub-detail h6 {
    display: inline !important;
    font-size: 17px;
    font-weight: 600;
    color: #07294d;
    margin: 10px 0px;
}

.heading-library-sub-detail h6 i.fa {
    padding: 0px 10px;
}

.heading-library-sub-detail p {
    font-size: 15px;
    font-weight: 500;
    color: #999;
    padding: 0px 10px;
    margin: 10px 0px;
}

.heading-library-sub-detail ul {
    padding: 10px 20px !important;
}

.heading-library-sub-detail ul li {
    font-size: 15px;
    font-weight: 500;
    color: #999;
}

.heading-library-sub-detail ul li.li-head {
    list-style: none !important;
    color: var(--yellow);
}

section.library-images {
    padding: 30px 0px;
}

/* section.library-images::before{
    content: "";
    position: absolute;
    height: 20%;
    width: 100%;
    background-color: var(--yellow);
    left: 0;
    top: 960px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;  

} */

div.library-img {
    height: 300px;
    max-height: 300px;
    min-height: 300px;
    border-radius: 7px;
}

div.library-img img {
    height: 300px;
    width: 100% !important;
    max-height: 300px;
    min-height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 7px;
}

.library-button-view {
    text-align: center;
}

.library-button-view button {
    background-color: #07294d;
    height: 50px;
    width: 150px;
    border: none !important;
    border-radius: 7px;

    color: #fff;
}

.library-button-view button:hover {
    background-color: var(--yellow);
}

/* services section */

.services-grid {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 25px;
}

.services-content {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    padding-top: 10px;
}

.services-title {
    padding: 10px;
}

.services-title h3 {
    font-size: 17px;
    font-weight: 600;
    color: #07294d;
    text-transform: capitalize;
}

.services-title h3 i {
    padding-right: 10px;
}

.library-service-info {
    padding: 10px;
}

.library-service-info p {
    font-size: 13px;
    font-weight: 500;
    color: #999;
    padding-bottom: 0;
}

/* services section end */
/* librarysection */
.librarysection {
    text-align: center !important;
    border: none !important;
}

.lb-section-item .nav-link.lb-section-link.active {
    background-color: #07294d !important;
    color: #fff !important;
    transition: all 0.5s;
}

.lb-section-item .nav-link.lb-section-link.active .lb-section-icon i.fas {
    color: #fff !important;
}

.nav-link.lb-section-link {
    padding: 0.5rem 2rem !important;
    background: transparent !important;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    transition: all 0.5s;
}

.nav-link.lb-section-link:hover {
    background-color: #07294d !important;
    color: #fff !important;
}

.nav-link.lb-section-link:hover.nav-link.lb-section-link .lb-section-icon i.fas {
    color: #fff !important;
}

.nav-link.lb-section-link:hover {
    border: none !important;
}

.nav-link.lb-section-link.active {
    border: none !important;
}

.lb-section-icon {
    color: #07294d !important;
}

.lbsection-content {
    padding: 20px 10px;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

/* libary-resourses start */
.lb-resources-link {
    text-transform: capitalize !important;
    color: #111 !important;
    transition: all 0.5s;
    font-weight: 600;
    padding: 20px 0px;
    padding-left: 10px;
}

.lb-resources-link:hover {
    background-color: #07294d !important;
    color: #fff !important;
}

.lb-resources-link.active {
    background-color: #e60023 !important;
    color: #fff !important;
    transition: all 0.5s;
}

.resources {
    min-height: 200px !important;
    max-height: 250px !important;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;

    margin: 10px 0px;
    border-radius: 8px;
}

.resources-img img {
    height: 100px;
    min-height: 100px;
    max-height: 100px;
    object-fit: fill;
    width: 100%;
}

.resources-content {
    padding: 20px 10px 10px 10px;
}

.resources-content p {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: capitalize;
}

.resources-open-link {
    text-align: center;
    padding: 10px 20px;

    text-decoration: none;

    margin: 10px 0px;
}

.resources-open-link a {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em,
        rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
    background-color: #07294d;
    text-decoration: none;
    color: #fff !important;
    padding: 15px 20px;
    font-weight: 600;
    transition: all 0.5s;
}

.resources-open-link a:hover {
    background-color: var(--yellow);
}

/* libary-resourses end*/

/* librarysection  end*/

/* single-department */
.institute-menu ul.single-department a.nav-link {
    margin: 0 6px !important;
    text-transform: capitalize !important;
    text-align: center;
    font-size: 15px;
}

ul.single-department {
    display: flex;
    justify-content: center;
    align-items: center;
}

.department-menu {
    background: url("../assets/images/department-bg.jpg") no-repeat top;
    background-size: cover;

    padding: 150px 0px 80px 0px;
    background-blend-mode: multiply;
}

.events-bg {
    background: url("../assets/images/events/cultural/cultural-events.jpg") no-repeat top;
    background-size: cover;

    padding: 150px 0px 80px 0px;
    background-blend-mode: multiply;

}

/* .department-menu::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background:#ffc7b3;
    left: 0;
    right: 0;
    border: 0;
} */
.department-about {
    background: #fff;
    background-repeat: no-repeat;

    position: relative;
}

.p-black {
    color: #111;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--primary-font);
}

.hod_desk {
    padding: 4em 0 4em;
}

.hod-img {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 300px;
}

.hod-img img {
    height:     100%;
    width: 100% !important;

    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    object-fit: contain;
  
}

.h3-black {
    font-family: "CircularStd-light";
    color: #444;
    font-size: 18px;
    font-weight: 600;

    text-transform: capitalize;
}

.h3-white {
    font-family: "CircularStd-light";
    color: #fff;
    font-size: 20px;
    font-weight: 600;

    text-transform: capitalize;
}

.h3-navy {
    font-family: "CircularStd-light";
    color: #07294d;
    font-size: 20px;
    font-weight: 600;

    text-transform: capitalize;
}

.h6-black {
    font-family: "CircularStd-light";
    color: #444;
    font-size: 16px;
    font-weight: 600;

    text-transform: capitalize;
}

.h6-white {
    font-family: "CircularStd-light";
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

.h6-grey {
    font-family: "CircularStd-light";
    color: #999;
    font-size: 16px;
    font-weight: 600;

    text-transform: capitalize;
}

.h6-navy {
    font-family: "CircularStd-light";
    color: #07294d;
    font-size: 16px;
    font-weight: 600;

    text-transform: capitalize;
}

.p-grey {
    color: #999;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--primary-font);
    margin-bottom: 5px !important;
    text-transform: capitalize;
}

.p-white {
    text-transform: capitalize;
    margin-bottom: 5px !important;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--primary-font);
}

/* faculty-section start */
.faculty-profile {
    border-radius: 5px;
    background-color: #fff;
    margin: 0px 10px;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 11%);
    padding: 20px;
    min-height: 340px;
    max-height: 340px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.faculty-img {
    border-radius: 50%;
    height: 100px;
    width: 100px;
    overflow: hidden;
    margin: 0 auto;
    object-position: top;
    box-shadow: 0 5px 10px 0 rgb(41 133 197 / 10%);
    object-fit: cover;
}

.faculty-id {
    padding: 20px 10px;

    text-align: center;
}

.faculty-vmore {
    padding: 10px 0px;
    text-align: center;
}

.faculty-vmore button {
    background-color: #07294d;
    color: #fff;
    padding: 10px 20px;
    border-radius: 7px;
    border: 1px solid #07294d;

    width: auto;
}

.faculty-vmore button:hover {
    background-color: #fff;
    color: #07294d;
}

/* faculty-section start  end*/

.department-ul-black h6 {
    font-size: 20px;
    font-weight: 600;
}

.department-ul-black ul {
    padding-inline-start: 15px !important;
}

.department-ul-black ul li {
    color: #111;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
    font-family: var(--primary-font);
}

.department-ul-grey h6 {
    font-size: 20px;
    font-weight: 600;
}

.department-ul-grey ul {
    padding-inline-start: 15px !important;
}

.department-ul-grey ul li {
    color: #999;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--primary-font);
}

.syllabus-card {
    text-decoration: none;
    display: flex !important;
    align-items: center !important;
    height: 100px !important;
    min-height: 100px !important;
    border-radius: 8px;
    max-height: 100px !important;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important;
    padding: 24px 10px;
    text-align: start;
    color: #07294d;
    transition: 0.6s all;
    margin: 10px 0px;
}

a.syllabus-card:hover {
    color: #fff !important;
    background-color: #07294d;
}

.syllabus-i {
    font-size: 17px;
    font-weight: 600;
}

.syllabus-i i.fa {
    object-fit: cover;
    object-position: center;
    padding: 0px 5px;
    color: var(--yellow);
    font-size: 20px;
}

/* academic  */

.activity-detail {
    padding: 10px 15px;
    transition: all 0.5s;
}

.activity-display {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #fff;
    border-radius: 5px;
    height: 350px;
    max-height: 400px;
    overflow: hidden;
    max-height: 350px;
    margin: 20px 0px;
    transition: all 0.5s;
}

.activity-display:hover {
    background-color: #07294d;
}

.activity-display:hover h3.h3-black {
    color: #fff !important;
}

.activity-display:hover.activity-date {
    background-color: #07294d !important;
    color: #fff !important;
}

div.activity-img {
    overflow: hidden;
}

div.activity-img img {
    object-fit: cover;
    object-position: top;
    height: 250px;
    width: 100%;
    max-height: 250px;
    transition: 1.2s all ease-in-out;
}

.activity-date {
    display: flex;
    position: absolute;
    bottom: 120px;
    left: 15px;
    background-color: #fff;
    padding: 0px 8px;
    font-weight: 600;
    color: #e60023;
    transition: all 0.5s;
}

/* activity end */

/* learningprocess */
.l-img-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.learning-img {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 100%;
    border-left: 2px solid #07294d;
    border-top: 2px solid #07294d;
    border-bottom: 2px solid #07294d;
}

.learning-img img {
    width: 100%;
    min-height: 300px;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
}

.l-img-col2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.learning-img2 {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 100%;
    border-right: 2px solid #07294d;
    border-top: 2px solid #07294d;
    border-bottom: 2px solid #07294d;
}

.learning-img2 img {
    width: 100%;
    min-height: 300px;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
}

.l-info-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.learning-detail {
    padding: 30px;
    border-right: 2px solid #07294d;
    border-bottom: 2px solid #07294d;
    border-top: 2px solid #07294d;
    display: flex;

    flex-direction: column;
}

.l-info-col2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.learning-btn {
    margin-top: 15px;
}

.learning-btn button {
    border: 0 !important;
    border-radius: 7px;
    background-color: #07294d;
    color: #fff;
    width: 30%;
    padding: 10px;
    transition: all 0.5s;
}

.learning-btn button:hover {
    background-color: #e60023;
}

/* learningprocess  end*/

/* laboratories */
.laboratories {
    background: url("../assets/images/department/laboratories/labs-bg.jpg"), #07294d;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-position: center;
    height: auto;
    position: relative;
}

.laboratories::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #07294de0;
}

.lab-text {
    padding: 0px 15px;

    flex-direction: column;
    background-color: #ffffff14;

    min-height: 300px !important;
    max-height: 300px !important;
    overflow-y: auto !important;

    border: var(--yellow);
}

.lab-text::-webkit-scrollbar {
    width: 6px;
}

.lab-text::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgb(207, 206, 206);
    border-radius: 10px;
    background: #07294d !important;

    max-height: 100px !important;
}

/* Handle */
.lab-text::-webkit-scrollbar-thumb {
    background: #fff !important;
    border-radius: 10px;
    transition: all 0.5s;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

button#button-lab {
    border: 0 !important;
    color: #fff;
    background-color: #07294d;
    transition: all 0.5s;
    width: 30%;
    border-radius: 7px;
    padding: 5px 5px;
    font-weight: 600;
    text-transform: capitalize;
}

button#button-lab:hover {
    background-color: #e60023;
}

.lab-icon {
    background-color: #fff;
    padding: 15px;
    position: sticky;
    z-index: 3;
}

.lab-icon i.fa {
    font-size: 20px;
    color: #111;
    padding: 10px 0px;
}

.lab-img img {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover;
    max-height: 300px !important;
    min-height: 300px !important;
}

/* laboratories end */

/* student-forum */
.student-profile-col {
    background-color: #07294d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.student-item {
    margin: 0px 16px;
}

.student-img {
    height: 150px !important;
    width: 150px !important;
    margin: 5px 0px 30px 0px;
    border-radius: 50%;
    overflow: hidden;
}

.student-img img {
    height: 150px;
    min-height: 150px;
    max-height: 150px;
    border-radius: 50%;
    width: 100% !important;

    object-fit: cover;
    object-position: 20% 1%;
    width: 100%;
}

.student-detail {
    padding: 10px 0px;
}

.student-info {
    padding: 20px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

/* student-forum end */

.es-img {
    height: 500px !important;
    width: 100%;
}

.es-img img {
    height: 300px !important;
    min-height: 300px;
    max-height: 300px;
    object-fit: cover;
    object-position: center;
    width: 100% !important;
}

.eslink-img img {
    width: 100% !important;
    height: 80px !important;
    min-height: 80px;
    max-height: 80px;
    object-fit: cover;
    object-position: center;
}

/* single-department-end *


/* infrastructure */

.infa-img {
    height: 100px;
    min-height: 100px;
    max-height: 100px;
}

.infa-img img {
    height: 100px;
    min-height: 100px;
    max-height: 100px;
    object-fit: cover;
    width: 100%;
}

.main-infa-img {
    height: 600px;
    min-height: 600px;
    max-height: 600px;
}

.main-infa-img img {
    height: 600px;
    min-height: 600px;
    max-height: 600px;
    width: 100% !important;
}

.infrastructure-banner {
    background: url("../assets/images/infrastructure/infrastructure-banner.JPG") no-repeat center;
    background-size: 100%;
    padding: 200px 0 100px 0;
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.548);
    background-blend-mode: multiply;

}

/* infrastructure  end*/

.library-m-bg {
    background: url(../assets/images/library/library-bg.jpg) no-repeat;
    background-size: 100%;
    padding: 200px 0 100px 0;
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.548);
    background-position: calc(100% - 0px) calc(100% - -350px);
    background-blend-mode: multiply;



}




.infra-m-bg {
    background: url(../assets/images/infrastructure/infrastructure-m-bg.jpg) no-repeat;
    background-size: cover;
    padding: 300px 0 100px 0;
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.548);
    background-position: calc(100% - 0px) calc(100% - -200px);
    background-blend-mode: multiply;

}

/* campus-life */

.campus-life-banner {
    background: url(../assets/images/campus-life-bg.jpg) no-repeat;
    background-size: 100%;
    padding: 200px 0 100px 0;
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.548);
    background-position: calc(100% - 0px) calc(100% - -350px);
    background-blend-mode: multiply;

}



.campus-life-banner h2 {
    font-size: 42px;
    line-height: 42px;
    color: var(--white);
    font-family: "CircularStd-Bold";
}


.campus-life-img {
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
}


.campus-life-img img {
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
    object-fit: cover;
    width: 100%;
    object-position: center;
}

.campus-life-detail-col {
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.campus-life-detail {
    padding: 20px;

}

.campus-btn {
    width: 20%;
    padding: 10px 0px;
    background-color: var(--blue);
    color: #fff;
    border-radius: 8px;
    transition: all 0.5s;
    border: none !important;

}

.campus-btn:hover {

    background-color: var(--yellow);
    color: #fff;

}

/* campus-life */
/* research */


.research-banner {
    background: url(../assets/images/research/research-bg.jpg) no-repeat center;
    background-size: 100%;
    padding: 200px 0 100px 0;
    position: relative;
    z-index: 2;
    background-position: calc(100% - 0px) calc(100% - -295px);
    background-color: rgba(0, 0, 0, 0.548);
    background-blend-mode: multiply;

}

.research-t-banner {
    background: url(../assets/images/research/research-bg.jpg) no-repeat center;
    background-size: 100%;
    padding: 200px 0 100px 0;
    position: relative;
    z-index: 2;
    background-position: calc(100% - 0px) calc(100% - -295px);
    background-color: rgba(0, 0, 0, 0.548);
    background-blend-mode: multiply;

}

.research-card {

    min-height: 300px;

    margin: 10px 0px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #fff;

}

.research-detail {

    min-height: 300px;

    padding: 20px;

    position: relative;
}

.research-detail::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    width: 30%;
    background: var(--red);
}

.research-detail::after {
    content: "";
    position: absolute;

    bottom: 0;
    right: 0;
    height: 10px;
    width: 30%;
    background: var(--blue);
}

.research-img {

    height: 100%;



}

.research-img img {

    object-fit: cover;
    height: 100%;

    width: 100% !important;


}

.respdf {
    padding: 10px;
    transition: all 0.7s;
    color: #fff;
    background-color: var(--red);
    border: none !important;
}

.respdf:hover {
    background-color: var(--blue);

}

/* research  end*/



/* contact-section  */

.contact-s {
    position: relative;
    z-index: 3;

}

.contact-s::before {
    content: "";
    position: absolute;
    z-index: 0;
    background: #fff;
    width: 50%;
    left: 0;

    height: 100%;
}

.contact-s::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    background: var(--blue);
    width: 50%;
    height: 100%;
}

.contact-section-detail {
    background: #fff;
    padding: 20px 10px 20px 100px;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;

    z-index: 3;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.contact-section-contact {
    background: var(--blue);

    position: absolute;
    z-index: 4;
    left: 20%;

    padding: 20px;
    width: 100%;

}


/* contact-section end  */



/* all infra */


.allinfra-img img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.all-infrastructure .owl-nav {
    text-align: center !important;
    padding: 20px 0px;

}

.all-infrastructure .owl-nav button.owl-prev {
    height: 40px !important;
    width: 40px !important;
    border-radius: 50% !important;
    background-color: #ccc;
    margin: 10px;
}

.all-infrastructure .owl-nav button.owl-next {
    height: 40px !important;
    width: 40px !important;
    border-radius: 50% !important;
    background-color: #ccc;
    margin: 10px;
}

.all-infrastructure .owl-nav button.owl-prev span {
    font-size: 25px !important;


}

.all-infrastructure .owl-nav button.owl-next span {
    font-size: 25px !important;


}

/* all infra  end*/



/* newsletter  */
.newsletter-banner {
    background: url(../assets/images/newsletter.jpg) no-repeat center;
    background-size: 100%;
    padding: 200px 0 100px 0;
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.548);
    background-blend-mode: multiply;

}


.newsletter {


    margin: 20px 0px;
    max-height: 350px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

}





.newsletter-header {
    background-color: var(--blue);
    padding: 10px 20px 5px;
    position: sticky !important;
    z-index: 4;
    max-height: 100px !important;
    overflow: hidden;
    text-overflow: ellipsis;

}

.newsletter-header::before {
    content: "";
    position: absolute;
    background: var(--primary-color);
    height: 10%;
    width: 50%;
    top: 0;
    right: 0;
}

.newsletter-header::after {
    content: "";
    position: absolute;
    background: var(--primary-color);
    height: 10%;
    width: 50%;
    bottom: 0;
    left: 0;
}

.newsletter-date {
    display: flex;
    align-self: flex-start;
    justify-content: space-around;
    align-items: center;
}

.newsletter-detail {
    padding-left: 14%;
    max-height: 200px !important;
    overflow-y: auto;
}

.newsletter-detail::-webkit-scrollbar {
    width: 4px;
}

.newsletter-detail::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgb(207, 206, 206);
    border-radius: 10px;
    background: #fff !important;

    max-height: 100px !important;
}

/* Handle */
.newsletter-detail::-webkit-scrollbar-thumb {
    background: #999 !important;
    border-radius: 10px;
    transition: all 0.5s;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.newsletter-img {
    height: 200px;
}

.newsletter-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* newsletter end  */

/* departments */

.department-s {
    height: 200px;
    min-height: 200px;
    position: relative;
    overflow: hidden !important;
    margin: 0px;
    border-radius: 8px !important;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;

}

.departments-img img {
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    width: 100%;
    transition: all 0.7s;



    object-fit: cover;


}

.departments-img {
    position: relative;
    overflow: hidden;
}

.departments-img::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #000000ab;

}


.department-s:hover .departments-img img {
    transform: scale(1.1);

}



/* departments end */




/* side nav index -page  */

.index-side-nav-img {
    height: 270px;
    min-height: 270px;
    max-height: 270px;
    position: relative;
    display: flex !important;
    justify-content: center !important;
    flex-direction: column;
}

.index-side-nav-img img {
    height: 270px;

    object-fit: cover;
    object-position: center;
}

.index-side-nav-img::before {
    content: "";
    display: inline-block;
    padding: 20px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    position: absolute;
    width: 100%;
    height: 30%;
    bottom: 0;
    background: #bb2226cf;
}

/* side nav index -page   end*/

/* all .placements  */




.all-placements-card {

    min-height: 200px;
    max-height: 400px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

}



.all-placements-card::before {

    content: "";
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 2px;
    background: #185da0;

}


.all-placement-user-name {
    background: #fff;

    position: relative;
    min-height: 80px;
    max-height: 80px;
}

.all-placement-user-name .user-name-absolute {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    left: 25;
    width: 60%;
    height: 100%;
    padding: 10px;
    background: transparent;
}

.all-placements-detail {
    background: #185da0;
    min-height: 50px;

    max-height: 250px;
    position: relative;
}

.all-placements-info {
    min-height: 50px;
    color: #fff !important;
    max-height: 250px;
    padding: 10px;
    overflow-y: auto;

}


.all-placements-info::-webkit-scrollbar {
    width: 5px;
}

.all-placements-info::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgb(207, 206, 206);
    border-radius: 10px;

    background: #ccc !important;
    max-height: 50px !important;
}

/* Handle */
.all-placements-info::-webkit-scrollbar-thumb {
    background: #999 !important;
    border-radius: 10px;
    transition: all 0.5s;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}



.all-placements-detail::before {
    right: 15%;
    top: 0;
    content: '';
    position: absolute;
    top: calc(50% - 16px);
    /* left: -16px; */
    border-color: transparent #185da0;
    border-style: solid;
    border-width: 16px 40px 16px 0px;
    height: 0px;
    width: 0px;
    z-index: 5;
    top: -14px;
}


.all-placements-user-img {
    height: 70px;
    width: 70px;
    position: absolute;
    top: 0;
    border-radius: 50%;
    right: 2%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ccc;
    background: #fff;
}

.all-placements-user-img img {
    height: 45px !important;

    object-fit: contain;



    width: 45px;



}






.all-faculty-card {

    min-height: 300px;
    max-height: 500px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: flex;
    flex-direction: column;

}



.all-faculty-card::before {

    content: "";
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 2px;
    background: #185da0;

}


.all-faculty-user-name {
    background: #fff;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100px;
    max-height: 300px;
}

.all-faculty-user-name p {
    margin-bottom: 10px !important;

}

.all-faculty-user-name p.small {
    margin-bottom: 10px !important;
    color: #999;
    font-size: 15px !important;

}



.all-faculty-detail {
    background: #185da0;
    min-height: 100px;

    max-height: 300px;
    position: relative;
}

.all-faculty-card a.btn.btn-info {
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;

    top: 0;
    position: absolute !important;
    right: 0 !important;
    color: #fff !important;
    /* bottom: 0 !important; */
    width: 30%;
    font-size: 12px;


}

.all-faculty-info {

    color: #fff !important;
    max-height: 100px !important;
    padding: 10px;
    overflow-y: auto;

}


.all-faculty-info::-webkit-scrollbar {
    width: 5px;
}

.all-faculty-info::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgb(207, 206, 206);
    border-radius: 10px;

    background: #ccc !important;
    max-height: 50px !important;
}

/* Handle */
.all-faculty-info::-webkit-scrollbar-thumb {
    background: #999 !important;
    border-radius: 10px;
    transition: all 0.5s;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}



.all-faculty-detail::before {
    right: 15%;
    top: 0;
    content: '';
    position: absolute;
    top: calc(50% - 16px);
    /* left: -16px; */
    border-color: transparent #185da0;
    border-style: solid;
    border-width: 16px 40px 16px 0px;
    height: 0px;
    width: 0px;
    z-index: 5;
    top: -14px;
}


.all-faculty-user-img {
    height: 100px;
    width: 100px;
    margin: 0 auto;

    border-radius: 50%;

    display: flex;
    background: #ebebeb;
}

.all-faculty-user-img img {
    height: 80px !important;
    min-height: 80px !important;
    max-height: 80px !important;
    object-fit: cover;
    margin: auto;
    border-radius: 50%;
    object-position: top;
    width: 80px;



}


/* all faculty  end */




/* single-faculty  */
.single-faculty-img {
    height: 100%;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.single-faculty-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;

}

.single-faculty-detail {
    padding: 20px !important;
}

.single-faculty-detail span {
    font-weight: 600;
    font-size: 15px;
    color: #000 !important;
    text-transform: uppercase !important;
}

.single-faculty-detail p {
    margin-bottom: 10px !important;
    font-size: 14px !important;
    color: #999;
}

/* single-faculty end  */

/* search-banner */

.search-banner {
    background: url(../assets/images/research/research-bg.jpg) no-repeat center;
    background-size: 100%;
    padding: 100px 0 35px 0;
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.548);
    background-blend-mode: multiply;

}

.search-suggestion-text a.heading h5 {
    color: #136bc9 !important;
    font-weight: 600 !important;
}

.search-suggestion-text a.link small {
    color: #999 !important;
    font-weight: 300 !important;
}

.search-suggestion-text {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.excerpt.description {
    color: #777;
}

.search-suggestion-text .link {
    color: #0c8721 !important;
}

/* search-banner */


/* faqs */
.faq-banner {

    background: url("../assets/images/faq-banner.jpg") no-repeat center;
    background-size: 100%;
    padding: 200px 0 100px 0;
    position: relative;
    background-position: center;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.548);
    background-blend-mode: multiply;


}

/* faqs end / */


/* home-tieups */

.home-tie-ups {
    max-height: 120px !important;
    min-height: 120px !important;
    width: 150px !important;
    background: #fff !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

}

.home-tie-ups img {
    height: 120px !important;
    width: 120px !important;
    object-fit: contain !important;


}

/* home-tieups end */


/* home-notices */





.notice-banner {

    background: url("../assets/images/notice-banner.jpg") no-repeat center;
    background-size: 100%;
    padding: 200px 0 100px 0;
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.548);
    background-blend-mode: multiply;

}

.notices-home {
    text-align: start !important;
    padding: 10px;
    background: var(--green-cyan);
}

.notices-home h5 {
    color: #fff !important;
    text-shadow: 1px 2px 7px rgba(0, 0, 0, 0.6) !important;
    position: relative;
}

.notices-home-slider {
    border-bottom: 1px solid #dadada;
}

.notices-home-heading p {
    font-size: 16px !important;
    font-family: var(--primary-font);
    color: #fff !important;
    text-shadow: 1px 2px 7px rgba(0, 0, 0, 0.6) !important;

}

.notices-home-info p.notices-home-date {
    font-size: 14px;
    font-family: var(--primary-font);
    color: var(--luminous-vivid-amber);
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.6) !important;
    font-weight: 500;

}

.notices-home-info2 {
    font-size: 12px;
    font-family: var(--primary-font);
    color: #fff !important;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.6) !important;
    font-weight: 500;

}

.notices-home-icon {
    display: flex;
    justify-content: center;
}

.notices-home-icon i {
    font-size: 20px !important;
    margin: 0px auto;
    padding-bottom: 5px;
    border-bottom: 2px solid #fff;
    color: var(--luminous-vivid-amber);
}

/* home-notices */

/* accridiation */
.accr-img {
    max-height: 250px;
    min-height: 250px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accr-img img {
    max-height: 200px;
    min-height: 200px;
    width: 200px;
    width: 100%;
    object-fit: contain;
}

/* accridiation end*/

/* alltestimonial */

.alltestimonial-banner {
    background: var(--cyan-blue) url(../assets/images/testimonial/testimonial-bg.jpg) no-repeat center;
    background-size: cover !important;
    padding: 150px 0px 80px 0px;
    position: relative;

    background-position: calc(100% - 0px) calc(100% - -440px);
    /* z-index: 2; */
    /* height: 530px; */
}

.alltestimonial-banner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: #000000b8;
    left: 0;
    right: 0;
    border: 0;
    /* z-index: -1; */
}

.alltestimonial-banner h2 {
    position: relative;
    font-size: 42px;
    line-height: 42px;
    color: var(--white);
    font-family: "CircularStd-Bold";
}

/* alltestimonial */





/* allplcaements */

.allplacements-banner {
    background: var(--cyan-blue) url(../assets/images/placements/placements-bg.jpg) no-repeat center;
    background-size: cover !important;
    padding: 150px 0px 80px 0px;
    background-position: calc(100% - 0px) calc(100% - -406px);
    position: relative;


}

.allplacements-banner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: #000000b8;
    left: 0;
    right: 0;
    border: 0;
    /* z-index: -1; */
}

.allplacements-banner h2 {
    position: relative;
    font-size: 42px;
    line-height: 42px;
    color: var(--white);
    font-family: "CircularStd-Bold";
}

/* allplcaements */



/* allplcaements */

.about-p-banner {
    background: url(../assets/images/about-m-bg.JPG)no-repeat center;
    background-size: cover !important;
    padding: 150px 0px 80px 0px;
    background-position: calc(100% - 0px) calc(100% - -470px);
    position: relative;


}

.about-p-banner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: #000000b8;
    left: 0;
    right: 0;
    border: 0;
    /* z-index: -1; */
}

.about-p-banner h2 {
    position: relative;
    font-size: 42px;
    line-height: 42px;
    color: var(--white);
    font-family: "CircularStd-Bold";
}

/* allplcaements */



.gallery-main .gallery-card-image iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}


.iqac-ul a {
    margin: 0px 5px 15px;
    padding: auto;
    text-align: center !important;
    border-bottom: 0 !important;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px !important;

}

.iqac-ul a.active {
    background: var(--blue) !important;
    color: #fff !important;

}

.iqacl-iul {
    padding-left: 20px !important;
}

.iqacl-iul li {
    list-style: circle !important;

}

.iqacl-iul li a {
    color: #000 !important;
    transition: all 0.7s !important;
    font-size: 15px !important;


}

.iqacl-iul li a:hover {
    color: var(--blue) !important;
    margin-left: 10px;
    font-weight: 700;

}

/* campus-life  */


.clbth{
    color: #000;
    font-size: 16px;
    font-weight: 500;
}
.clbtp{
    color: #999;
    font-size: 12px;
}
.clbbtn{
    color: #000;
    background: var(--blue);
    display: inline;
    
} 
.clbbtn:hover{
    color: var(--blue);
    background: var(--white);
} 
/* campus-life   end*/