@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Oswald:wght@200;400;500;600;700&display=swap');

* {
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 14px;
}


/* width */

::-webkit-scrollbar {
    width: 6px;
}


/* Track */

::-webkit-scrollbar-track {
    background: #000;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background-color: #ffcd25;
    border-radius: 40px;
}


/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

:root {
    --color1: #3c3e96;
    --color2: #ffcd25;
    --transition: 0.4s ease;
}

.developed span {
    color: var(--color2);
    font-weight: 500;
}

a {
    text-decoration: none;
    color: #000 !important;
}

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

.section-padding {
    padding-top: 100px;
}

.bottom-section-padding {
    padding-bottom: 100px;
}

.animate__delay--5 {
    animation-delay: 0.5s;
}

.container {
    max-width: 100%;
    padding: 0 60px;
    margin: 0 auto;
}

button {
    box-shadow: none !important;
    border: none !important;
    background-color: transparent !important;
}

button:focus {
    box-shadow: none !important;
}

.common-heading {
    text-align: center;
    margin-bottom: 54px;
}

.common-heading h2 {
    color: var(--color1) !important;
    font-weight: 700;
    font-size: 35px;
    position: relative;
    text-transform: capitalize;
    display: inline-block;
}

.common-heading h2::before,
.common-heading h2::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--color1);
    border-radius: 50px;
}

.common-heading h2::before {
    left: -30px;
}

.common-heading h2::after {
    right: -30px;
}

.button-box ul {
    background-color: black;
    margin: auto;
    width: max-content;
}

.button-box li {
    border-bottom: 1px solid rgb(145, 145, 145);
    padding: 10px 30px;
}

.button-box li a {
    transition: all ease 0.7s;
    color: #fff !important;
}

.common-heading span {
    display: block;
    font-weight: 300;
    font-size: 22px;
    line-height: 35px;
    max-width: 70%;
    margin: 0 auto;
}

.common-heading span b {
    font-weight: 600;
}

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

.sub-title h4 {
    color: var(--color1);
    font-weight: 600;
    font-size: 22px;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 26px;
}

.sub-title h4::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 36px;
    border-radius: 5px;
    background-color: var(--color1);
}

.sub-title a {
    height: 32px;
    width: 120px;
    border: 2px solid #3c3e96;
    border-radius: 50px;
    color: var(--color1) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    margin-top: 3px;
}

.yellow-btn {
    background-color: var(--color2);
    color: #000 !important;
    font-weight: 600;
    padding: 10px 45px;
    font-size: 16px;
    border-radius: 50px;
    display: inline-block;
}

.blue-btn {
    background-color: var(--color1);
    color: #fff !important;
    font-weight: 600;
    padding: 10px 45px;
    font-size: 16px;
    border-radius: 50px;
    display: inline-block;
}

.read-more-btn {
    display: inline-block;
    background-color: var(--color1);
    padding: 5px 24px;
    color: #fff !important;
    border-radius: 50px;
}

.read-more-text {
    display: inline-block;
    color: var(--color1) !important;
    font-weight: 700;
}

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


/* =========== MAIN HEADER STARTS ============== */

.main-header {
    position: fixed;
    top: 0;
    z-index: 999;
    padding-left: 50px;
    transition: var(--transition);
    width: 100%;
}

.main-header.stick_header {
    width: 100%;
    background-color: #000;
}

.header-logo {
    display: flex !important;
    align-items: center;
    text-transform: uppercase;
    margin-top: 30px;
    transition: var(--transition);
}

.main-header.stick_header .header-logo {
    margin-top: 7px;
    margin-bottom: 7px;
}

.header-logo img {
    max-height: 75px;
    transition: var(--transition);
}

.main-header.stick_header .header-logo img {
    max-height: 50px;
}

.header-logo .logo-text {
    margin-left: 10px;
    color: #fff !important;
    transition: var(--transition);
}

.header-logo .logo-text .main {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 28px;
    font-family: 'Oswald' !important;
    transition: var(--transition);
}

.main-header.stick_header .header-logo .logo-text .main {
    font-size: 17px;
    line-height: 22px;
}

.header-logo .logo-text .sub {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 24px;
    font-family: 'Oswald' !important;
    transition: var(--transition);
}

.main-header.stick_header .header-logo .logo-text .sub {
    font-size: 13px;
}

.header-logo hr {
    opacity: 1;
    margin: 4px 0;
    transition: var(--transition);
}

.main-header.stick_header .header-logo hr {
    margin: 1px 0;
}

.main-navbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    transition: var(--transition);
    z-index: 999;
}

.main-navbar a {
    display: block;
}

.main-navbar ul.desktop-nav {
    position: fixed;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    background-color: #000;
    z-index: 999;
}

.main-navbar ul.desktop-nav a {
    display: block !important;
    font-size: 16px;
    padding: 20px 25px;
    position: relative;
    color: #fff !important;
    background-color: #000;
    font-weight: 600;
    transition: var(--transition);
}

/*.main-navbar ul.desktop-nav li.active a:not(.see-more),*/
/*.main-navbar ul.desktop-nav li:hover a:not(.see-more) {*/
/*    background-color: var(--color2) !important;*/
/*    color: #000 !important;*/
/*}*/

.main-navbar ul.desktop-nav li.dropdown a {
    position: relative;
}

.main-navbar ul.desktop-nav li.dropdown a::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 6px;
    height: 12px;
    width: 12px;
    background-image: url(../images/web/dropWhite.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: var(--transition);
}

.main-navbar ul.desktop-nav li.dropdown:hover a::before {
    transform: translateY(-50%) rotateZ(180deg);
    background-image: url(../images/web/dropBlack.svg);
}

.main-navbar .see-more,
.main-navbar ul.desktop-nav .see-more {
    background-color: transparent !important;
    display: inline-block !important;
    padding: 0 !important;
    color: var(--color2) !important;
}

.main-navbar .see-more:before,
.main-navbar .see-more:after {
    display: none;
}

.main-navbar .submenu-sm {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    max-width: 220px;
    background-color: #000;
    transform: scaleY(0);
    opacity: 0;
    transition: var(--transition);
    transform-origin: top;
}

.main-navbar ul.desktop-nav li.dropdown:hover .submenu-sm {
    transform: scaleY(1);
    opacity: 1;
}

.main-navbar ul.desktop-nav li:hover .submenu-sm li a {
    background-color: #000 !important;
    color: #fff !important;
}

.main-navbar .submenu-sm li a {
    padding: 12px 18px;
    font-size: 15px;
    transition: var(--transition);
}

.main-navbar .submenu-sm li:not(:last-child) a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.main-navbar ul.desktop-nav li:hover .submenu-sm li:hover a {
    color: var(--color2) !important;
    padding-left: 24px;
}

.main-navbar .submenu-sm li a::before {
    display: none;
}

.main-navbar .megamenu {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(0);
    height: 100%;
    width: 100%;
    background-color: #000;
    padding: 100px 60px;
    z-index: 500;
    z-index: -1;
    color: #fff;
    opacity: 0;
    min-height: 560px;
    max-height: 560px;
    transition: opacity 0.5s ease;
}

.main-navbar ul.desktop-nav li.dropdown:hover .megamenu {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.main-navbar ul.desktop-nav .megamenu img {
    min-height: 100px;
    max-height: 100px;
}

.main-navbar .about-title {
    font-size: 24px;
    font-family: 'Oswald';
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    margin: 14px 0 8px 0;
}

.main-navbar .about-description {
    font-weight: 300;
    font-size: 15px;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-width: 90%;
}

.main-navbar ul.desktop-nav li:hover .megamenu li a {
    background-color: #000 !important;
    color: #fff !important;
}

.main-navbar ul.desktop-nav .megamenu ul.links {
    display: grid;
    grid-template-columns: auto auto auto;
    column-gap: 0;
}

.main-navbar .megamenu li a {
    padding: 6px 0;
    font-size: 15px;
    transition: var(--transition);
}

.main-navbar .megamenu ul.links {
    margin-top: 20px;
}

.main-navbar ul.desktop-nav .megamenu ul.links svg {
    max-height: 12px;
    width: 12px;
    transform: rotateZ(-90deg);
    margin-right: 6px;
}

.main-navbar ul.desktop-nav li:hover .megamenu li:hover a {
    color: var(--color2) !important;
}

.main-navbar ul.desktop-nav li .megamenu li a::before {
    display: none;
}

#menu-bar {
    margin-right: 50px;
}

#menu-bar span {
    display: block;
    margin-left: auto;
    height: 3px;
    width: 32px;
    background-color: #fff;
    border-radius: 10px;
    transition: 0.6s ease;
}

#menu-bar span:nth-child(2) {
    margin: 6px 0;
}

#menu-bar span:first-child {
    width: 20px;
}

#menu-bar span:last-child {
    width: 24px;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 500px;
    height: 100%;
    background-color: #000000;
    z-index: 1000 !important;
    padding: 44px;
    transform: scale(0);
    transform-origin: top right;
    overflow-y: auto;
    opacity: 0;
    transition: var(--transition);
}

.mobile-nav.openMenu {
    opacity: 1;
    transform: scale(1);
}

.mobile-nav li a {
    color: #fff !important;
    display: block;
    font-weight: 500;
    text-transform: uppercase;
    padding: 14px 20px;
    letter-spacing: 3px;
    font-size: 14px;
}

.mobile-nav li:not(:last-child) a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav li.active a {
    color: var(--color2) !important;
    font-weight: 500;
}

.mobile-nav li.dropdown a::after {
    content: '';
    position: absolute;
    top: 18px;
    right: 12px;
    height: 12px;
    width: 12px;
    background-image: url(../images/web/dropWhite.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: var(--transition);
}

.mobile-nav .submenu-sm {
    position: relative;
    transform: scaleY(0);
    opacity: 0;
    min-height: 0;
    max-height: 0;
    max-width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav li.open-subenu .submenu-sm {
    transform: scaleY(1);
    opacity: 1;
    min-height: 10px;
    max-height: 1000px;
    padding: 6px 0;
}

.mobile-nav li.dropdown.open-subenu a::after {
    transform: rotateZ(180deg);
}

.mobile-nav .submenu-sm ul li a::after {
    display: none;
}

.mobile-nav .submenu-sm ul li a {
    border: none !important;
    font-size: 13px;
    padding: 10px 24px;
}

.mobile-nav .megamenu {
    transform: scale(0);
    opacity: 0;
    position: relative;
    width: 100%;
    min-height: 0;
    max-height: 0;
    padding: 0;
    left: 0;
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.mobile-nav li.open-subenu .megamenu {
    transform: scale(1);
    opacity: 1;
    min-height: 10px;
    max-height: 1600px;
    padding: 14px 20px;
}

.mobile-nav .megamenu a::after {
    display: none;
}

.mobile-nav .about-megamenu img {
    min-height: 72px;
    max-height: 72px;
}

.mobile-nav .megamenu .about-title {
    font-size: 18px;
}

.mobile-nav .megamenu .about-description {
    max-width: 100%;
    font-size: 13px;
    line-height: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.mobile-nav .see-more {
    text-transform: capitalize !important;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 3px;
}

.main-navbar .megamenu ul.links {
    margin-top: 16px;
}

.main-navbar .megamenu ul.links {
    display: block;
}

.main-navbar .megamenu ul.links a {
    border: none;
    font-size: 13px;
    letter-spacing: 0;
    padding-left: 24px;
    position: relative;
}

.main-navbar .megamenu ul.links svg {
    position: absolute;
    left: 0;
    top: 13px;
    max-height: 10px;
    width: 10px;
    margin-top: -2px;
    margin-left: 6px;
    margin-right: 0;
    transform: rotateZ(-90deg);
}

.mobile-nav .close-menu {
    position: absolute;
    left: 0;
    top: 0;
    height: 30px;
    width: 30px;
    padding: 0;
    z-index: 1;
    background-color: var(--color2) !important;
}

.mobile-nav .close-menu span {
    display: block;
    height: 2px;
    width: 20px;
    background-color: #fff;
    margin-left: 4px;
}

.mobile-nav .close-menu span:first-child {
    transform: rotate(45deg);
    margin-bottom: -2px;
}

.mobile-nav .close-menu span:last-child {
    transform: rotate(-45deg);
    margin-top: -2px;
}


/* Main Header Ends */


/* =========== ADMISSION ENQUIRY SECTION STARTS ============== */

.admission-enquiry-section {
    position: fixed;
    right: -340px;
    f top: 14%;
    background-color: #fff;
    max-width: 340px;
    transition: var(--transition);
    z-index: 800;
}

.admission-enquiry-section.show-admission-enquiry {
    right: 0;
}

.admission-enquiry-btn {
    background-color: var(--color1) !important;
    color: #fff;
    position: absolute;
    left: -111px;
    top: 68px;
    width: 180px;
    height: 42px;
    font-weight: 600;
    font-size: 16px;
    transform: rotateZ(-90deg);
}

.admission-enquiry-section form {
    padding: 30px 20px;
}

.admission-enquiry-section .check-text {
    color: #a4a4a4;
    font-weight: 300;
}

.input-block {
    margin-bottom: 16px;
}

.input-block input {
    border: 1px solid #d3d3d3;
    box-shadow: none !important;
    border-radius: 4px;
}

.input-block input:focus {
    border-color: var(--color2);
}

.input-block input::placeholder {
    color: #d3d3d3;
    font-weight: 400;
    font-size: 14px;
}

.font-18 {
    font-size: 20px;
}

form input[type='submit'],
form button[type='submit'] {
    display: block;
    background-color: var(--color1) !important;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
}

form input[type='submit']:focus,
form button[type='submit']:focus,
form input[type='submit']:hover,
form button[type='submit']:hover {
    box-shadow: none !important;
    color: #fff !important;
}

.call-bottom-section {
    position: fixed;
    bottom: 40px;
    z-index: 10;
}

.call-bottom-section a {
    display: block;
    background-color: var(--color1);
    color: #fff !important;
    height: 36px;
    width: 36px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px 0;
    transition: var(--transition);
}

.call-bottom-section a:hover {
    background-color: var(--color2);
    color: #000 !important;
}

.call-bottom-section a .fa-whatsapp {
    font-size: 16px;
}

.call-bottom-section a .fa-phone-alt {
    font-size: 14px;
}


/* Admission Enqiory Section ends */


/* =========== CAROUSEL SECTION STARTS ============== */

#main-carousel {
    position: relative;
}

#main-carousel .carousel-item {
    position: relative;
}

#main-carousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#main-carousel .carousel-item img {
    width: 100%;
    height: 100vh;
    min-height: 626px;
    max-height: 626px;
    object-fit: cover;
    position: relative;
    left: 0;
    top: 0;
    transition: var(--transition);
}

#main-carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    opacity: 1 !important;
    transition: var(--transition);
}

#main-carousel button.carousel-control-prev {
    left: 0;
}

#main-carousel button.carousel-control-prev span {
    width: 80px;
    height: 80px;
    background-image: url(../images/web/left-circle-arrow.svg);
    background-size: 54px;
    opacity: 1 !important;
    transition: var(--transition);
}

#main-carousel button.carousel-control-next {
    right: 0;
}

#main-carousel button.carousel-control-next span {
    width: 80px;
    height: 80px;
    background-image: url(../images/web/right-circle-arrow.svg);
    background-size: 54px;
    opacity: 1 !important;
    transition: var(--transition);
}

.carousel-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 200px;
    max-width: 380px;
    z-index: 100;
    color: #fff;
}

.carousel-text h2 {
    font-weight: 800;
    font-size: 40px;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 20px;
}

.carousel-text h2::before {
    content: '';
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    transform-origin: left;
    height: 6px;
    width: 80px;
    background-color: var(--color2);
    border-radius: 10px;
    animation: slider-line 0.8s 0.6s linear forwards;
}

@keyframes slider-line {
    100% {
        transform: translateY(-50%) scaleX(1);
    }
}

.carousel-text p {
    font-weight: 400;
    font-size: 22px;
    font-weight: 300;
}


/* Carousel Section Ends */


/* =========== AANOUNCEMENT SECTION STARTS ============== */

.announcement-section {
    /*background-color: var(--color2);*/
    height: 100% !important;
    /*min-height:170px !important;*/
    /*max-height:170px !important;*/
}

.announcement-block-inner {
    display: flex;
    align-items: center;
    padding: 14px 0;
}

.announcement-block-inner h4 {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 700;
    width: 220px;
}

.announcement-block-inner a {
    font-weight: 600;
    margin: 0 30px;
}


/* Announcement Section ends */


/* =========== WELCOME SECTION STARTS ============== */

.welcome-section {
    background: #edf3f6;
    padding: 80px 0;
}

.welcome-top-heading {
    color: rgba(0, 0, 0, 0.92);
    font-weight: 400;
    font-size: 22px;
    line-height: 34px;
    text-align: center;
    max-width: 58%;
    margin: 0 auto;
    margin-bottom: 50px;
}

.welcome-text {
    font-family: 'Oswald';
    font-weight: 700;
    font-size: 54px;
    line-height: 80px;
    color: #3c3e96;
    position: relative;
    margin-bottom: 0;
}

.welcome-text::after,
.counter-block.one::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100px;
    width: 1px;
    background-color: #d8d8d8;
}

.counter-block {
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    text-align: start;
    padding: 0 50px;
    position: relative;
}

.counter-block h3,
.counter-block h3 .counter {
    font-family: 'Oswald';
    font-style: 900 !important;
    font-weight: 500;
    font-size: 54px;
    line-height: 64px;
    color: #000000;
}

.counter-block h3 {
    margin-bottom: 0;
}

.courses-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 34px;
    margin-top: 80px;
}

.courses-row .course-block {
    position: relative;
}

.courses-row .course-block .img-block {
    min-height: 200px;
    max-height: 200px;
}

.courses-row .course-block .img-block img {
    min-height: inherit;
    max-height: inherit;
    width: 100%;
    object-fit: cover;
}

.courses-row .course-block h4 {
    position: relative;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: #fff;
    box-shadow: 0px 8px 20px -4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    width: 90%;
    padding: 10px 0;
}


/* Welcome Section Ends */


/* =========== CAMPUS SECTION STARTS ============== */

.campus-section .common-heading {
    margin-bottom: 24px;
}

.campus-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 30px;
    row-gap: 30px;
}

.campus-block,
.event-block {
    box-shadow: 0px 12px 30px -10px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    display: block !important;
    border-radius: 14px;
}

.event-block {
    margin-top: 30px;
}

.campus-block::after,
.event-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 62.68%, rgba(0, 0, 0, 0.92) 100%);
}

.campus-block .img-block,
.event-block .img-block {
    min-height: 300px;
    max-height: 300px;
    overflow: hidden;
}

.campus-block .img-block img,
.event-block .img-block img {
    min-height: inherit;
    max-height: inherit;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.campus-block .campus-link,
.event-block .event-link {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    z-index: 10;
    color: #fff !important;
    display: flex !important;
    justify-content: space-between;
    font-weight: 600;
    font-size: 18px;
}

.campus-block .campus-link svg,
.event-block .event-link svg {
    max-width: 26px;
}


/* Campus Section Ends */


/* =========== APPLY SECTION STARTS ============== */

.apply-section {
    margin-top: 100px;
    height: 310px;
    position: relative;
    overflow: hidden;
}

.apply-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -56%;
    height: 1000px;
    transform: translateY(-50%) rotate(-60deg);
    width: 1500px;
    background: rgba(0, 0, 0, 0.68);
}

.apply-section img {
    width: 100%;
    height: inherit;
    object-fit: cover;
}

.apply-section .text-block {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    width: 40%;
}

.apply-section .text-block h1 {
    font-weight: 600;
    font-size: 38px;
    line-height: 50px;
    margin-bottom: 30px;
}


/* Apply Section Ends */


/* =========== JOURNEY & MANAGEMENT SECTION STARTS ============== */

.college-tour {
    position: relative;
}

.college-tour img {
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.college-tour .tour_btn {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100px;
    width: 100px;
}

.college-tour .tour_btn img {
    height: 80px;
    width: 80px;
}

.video_url {
    display: none;
}

.modal-content {
    border-radius: 0;
    border: none;
}

#tour_modal .modal-content {
    background-color: transparent;
}

.modal .close {
    position: absolute;
    right: -10px;
    top: -10px;
    background: var(--color2);
    padding: 5px 10px;
    border-radius: 150px;
    opacity: 1;
    text-shadow: none;
    color: #000 !important;
}

.modal-body h5 {
    text-align: center;
    color: var(--color1);
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
}

#apply_now_modal .common-form input,
#apply_now_modal .common-form select {
    box-shadow: none !important;
    border: 1px solid #e2e2e2;
}

#apply_now_modal .modal-body {
    padding: 30px 20px;
}

.management-section,
.achievement-section {
    padding-top: 100px;
}

.management-carousel .management-block {
    border: 2px solid #f0f0f0;
    padding: 8px 20px 8px 8px;
    display: flex;
    align-items: center;
}

.management-carousel .management-block .img-block {
    max-height: 204px;
    min-height: 204px;
    max-width: 204px;
    min-width: 204px;
    box-shadow: 0px 6px 26px -4px rgba(0, 0, 0, 0.15);
}

.management-block .quote-block {
    margin-left: 20px;
}

.management-carousel .management-block p {
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
}

.achievement-carousel .achievement-block .img-block {
    max-height: 220px;
    min-height: 220px;
    width: 100%;
}

.achievement-carousel .achievement-block .img-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 62.68%, rgba(0, 0, 0, 0.92) 100%);
}

.management-carousel .management-block .img-block img {
    min-height: inherit;
    max-height: inherit;
    width: 100%;
    object-fit: cover;
    object-position: top center;
}

.achievement-carousel .achievement-block .img-block img {
    min-height: inherit;
    /*max-height: inherit;*/
    width: 100%;
    object-fit: cover;
}

.management-block .position {
    font-weight: 700;
    font-size: 16px;
    color: var(--color1);
    padding: 10px 0 0px 0;
}

.management-block .name {
    font-weight: 600;
    font-size: 15px;
}

.achievement-block .achievement-title {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    margin-top: 6px;
    color: #fff;
    z-index: 100;
}

.management-carousel .owl-nav,
.achievement-carousel .owl-nav,
.small-happening-carousel .owl-nav {
    display: none !important;
}

.management-carousel .owl-dots,
.achievement-carousel .owl-dots,
.small-happening-carousel .owl-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.management-carousel .owl-dots button,
.achievement-carousel .owl-dots button,
.small-happening-carousel .owl-dots button {
    height: 12px !important;
    width: 12px !important;
    border-radius: 40px !important;
    background-color: var(--color1) !important;
    margin: 0 5px;
}

.management-carousel .owl-dots button.active,
.achievement-carousel .owl-dots button.active,
.small-happening-carousel .owl-dots button.active {
    height: 18px !important;
    width: 18px !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25) !important;
}


/* Journey & Management Section Ends */


/* =========== HAPPENINGS SECTION STARTS ============== */

.happening-section {
    padding-bottom: 100px;
}

.big-happening-block,
.small-happening-block {
    border-radius: 14px;
    box-shadow: 0px 12px 30px -10px rgba(0, 0, 0, 0.15);
    position: relative;
    margin-top: 30px;
    overflow: hidden;
    display: block !important;
}

.big-happening-block::after,
.small-happening-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 62.68%, rgba(0, 0, 0, 0.92) 100%);
}

.big-happening-block .img-block {
    min-height: 380px;
    max-height: 380px;
    overflow: hidden;
    border-radius: 14px;
}

.small-happening-block .img-block {
    min-height: 300px;
    max-height: 300px;
    overflow: hidden;
    border-radius: 14px;
}

.big-happening-block .img-block img,
.small-happening-block .img-block img {
    min-height: inherit;
    max-height: inherit;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.big-happening-block .happening-link,
.small-happening-block .happening-link {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    z-index: 10;
    color: #fff !important;
    display: flex !important;
    justify-content: space-between;
    font-weight: 600;
    font-size: 18px;
}

.big-happening-block .happening-link {
    display: block !important;
}

.big-happening-block .happening-link p {
    font-size: 14px;
    font-weight: 300;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 50%;
    margin-bottom: 8px;
}

.big-happening-block .happening-link span {
    display: block;
    position: relative;
    padding-bottom: 4px;
    margin-bottom: 10px;
}

.big-happening-block .happening-link span::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 26px;
    height: 2px;
    background-color: #fff;
    border-radius: 10px;
}

.big-happening-block .happening-link svg,
.small-happening-block .happening-link svg {
    max-width: 26px;
}

.date-box {
    background-color: var(--color1);
    color: #fff;
    position: absolute;
    top: 0;
    left: 20px;
    height: 74px;
    width: 70px;
    padding: 0 0 0 6px;
}

.date-box .date-box-inner {
    border: 1px dashed #fff;
    border-top: 0;
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    text-align: center;
    padding: 14px 0 6px 0;
    font-size: 13px;
}

.date-box .date-box-inner .date {
    font-weight: 700;
    font-size: 17px;
}


/* Happenings Section Ends */


/* =========== FOOTER SECTION STARTS ============== */

footer {
    background-color: #000;
    color: #fff;
    padding-top: 40px;
}

footer a {
    color: #fff !important;
}

.footer-top {
    position: relative;
    margin-bottom: 60px;
    font-weight: 600;
}

.footer-top::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 1px;
    background-color: #fff;
    display:none;
}

.footer-info{
   flex-wrap: wrap;
    gap: 20px;
}

.footer-top img {
    height: 42px;
    width: auto;
    margin-right: 18px;
}

.footer-middle h5 {
    color: var(--color2) !important;
    font-weight: 700;
    font-size: 18px;
}

.footer-middle ul li a {
    font-weight: 600;
    line-height: 36px;
    transition: var(--transition);
}

.footer-middle ul li:hover a {
    padding-left: 4px;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.footer-social li a i {
    height: 34px;
    width: 34px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social li a i.fa-twitter {
    background-color: #1DA1F2 !important;
}

.footer-social li a i.fa-facebook-f {
    background-color: #4867AA !important;
}

.footer-social li a i.fa-instagram {
    background: linear-gradient(#4D5AC4, #C134A8, #F4583D, #F3D451) !important;
}

.fa-linkedin-in {
    background-color: #0072b1;
    color: white;
}

.footer-social li a i.fa-youtube {
    background-color: #FF0000 !important;
}

.footer-social li a i.fa-whatsapp {
    background-color: #59F878 !important;
}

.footer-bottom hr {
    margin: 30px 0;
}

.footer-bottom {
    padding-bottom: 30px;
    font-weight: 300;
}


/* Footer Section Ends */


/* =========== COMMON PAGE STYLING STARTS ============== */

.section-breadcrumb-section {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/web/breadcrumb-bg.jpg);
    margin-bottom: 50px;
    position: relative;
}

.section-breadcrumb-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.section-breadcrumb-section h2 {
    font-family: 'Oswald', 'Sans Serif';
    font-size: 42px;
    margin-top: 80px;
    color: #fff;
    position: relative;
    text-align: center;
}

.common-form .input-rows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
}

.common-form input,
.common-form textarea,
.common-form select {
    width: 100%;
    background-color: #fff;
    border-radius: 0;
    border: none;
    padding: 12px 14px;
    margin-bottom: 10px;
    color: var(--color1);
    font-weight: 600;
    box-shadow: 0 8px 30px -6px rgba(0, 0, 0, 0.15) !important;
}

.common-form input:focus,
.common-form textarea:focus,
.common-form select:focus {
    border: none;
    box-shadow: none;
    outline: none;
    border-bottom: 1px solid #3c3e96;
}

.common-form input::placeholder,
.common-form textarea::placeholder,
.common-form select::placeholder {
    color: var(--color1);
    font-weight: 600;
}

.common-form input[type='submit'] {
    display: inline-block;
    border-radius: 0;
    width: 120px;
    border: none !important;
    margin-top: 10px;
    box-shadow: none;
}

.page-section-padding-top {
    padding-top: 80px;
}

.page-section-padding-bottom {
    padding-bottom: 80px;
}

.big-text {
    font-size: 16px;
    line-height: 30px;
}


/* Common Page Stylings Ends */


/* =========== ABOUT PAGE STARTS ============== */

.main-about-section,
.about-middle-content,
.vision-block,
.mission-block {
    font-size: 16px;
    line-height: 30px;
    position: relative;
}

.about-middle-content {
    text-align: center;
}

.about-middle-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/web/about-page-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
    opacity: .2;
    z-index: -1;
}

.about-middle-content p {
    position: relative;
}

.about-img-block {
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 10px 40px -4px rgba(0, 0, 0, 0.15);
}

.vision-img {
    position: relative;
}

.vision-img img {
    width: 100%;
    min-height: 300px;
    max-height: 300px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.4);
}

.vision-block ul li {
    padding-left: 16px;
    position: relative;
    text-align: justify;
}

.vision-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    height: 5px;
    width: 5px;
    border-radius: 10px;
    background-color: #000;
}

.vision-block hr {
    background-color: #ededed;
    opacity: 1;
}

.message-block {
    display: flex;
    align-items: center;
    font-size: 15px;
    max-width: 90%;
    margin: 0 auto;
    border: 1px solid #ededed;
    padding: 40px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    margin-bottom: 80px;
}

.message-img {
    min-height: 200px;
    max-height: 200px;
    min-width: 200px;
    max-width: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 40px;
}

.message-img img {
    min-height: inherit;
    max-height: inherit;
    min-width: inherit;
    max-width: inherit;
    object-fit: cover;
    object-position: top center;
}

.message-content img {
    height: 40px;
    width: auto !important;
    margin: 0;
    margin-bottom: 12px;
    transform: rotateX(180deg);
}

.message-content {
    color: #555;
    font-weight: 400;
}

.message-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color1);
    margin-top: 15px;
}

.message-position {
    color: #555;
}

.about-table {
    padding: 60px 0;
}

.about-table table {
    margin: 0 auto;
}

.about-table table td {
    font-size: 16px;
    border: 1px solid #f8f8f8;
    padding: 12px 20px;
}

.about-table table tr:nth-child(odd) {
    background-color: #edf3f6;
}

.about-table table td:first-child {
    font-weight: 600;
}

.download-table td {
    background-color: transparent !important;
    border: 1px solid #edf3f6 !important;
}


/* About Page ends */


/* =========== CONTACT PAGE STARTS ============== */

.contact-flex {
    display: flex;
    align-items: center;
    font-size: 16px;
    padding-bottom: 28px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e2e2e2;
}

.contact-mail {
    border-bottom: none !important;
}

.contact-head {
    font-weight: 600;
    color: var(--color1);
    font-size: 14px;
    font-weight: 700;
}

.contact-flex i {
    min-height: 40px;
    min-width: 40px;
    background-color: #3c3e96;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 16px;
}

.contact-form {
    padding-right: 60px;
}

.contact-form input,
.contact-form textarea {
    box-shadow: none !important;
    border-bottom: 1px solid var(--color1);
}

.contact-page-section iframe {
    margin-top: 50px !important;
}


/* Contact Page ends */


/* =========== ADMISSION FORM PAGE STARTS ============== */

.admission-form {
    margin-bottom: 100px;
}

.admission-form h4 {
    margin-bottom: 40px;
}

.admission-form h5 {
    border-bottom: solid 1px #dddd;
    margin: 28px 0 18px 0;
    padding-bottom: 10px;
}

.admission-form .input-block {
    margin-bottom: 14px;
}

.admission-form label {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

/*.admission-form label:not(.study-row label) {*/
/*    max-width: 150px;*/
/*    min-width: 150px;*/
/*}*/

.admission-form label span {
    color: #e00000;
}

.admission-form .input-block input,
.admission-form .input-block select {
    box-shadow: none !important;
    border: 1px solid #d5d5d5;
}

.admission-form .input-block input::placeholder,
.admission-form .input-block select::placeholder {
    font-weight: 400;
    color: #878787 !important;
    opacity: 1 !important;
}

.admission-form h6 {
    font-size: 15px;
}

.admission-form h6 span {
    font-size: 12px;
}

.admission-form .input-block input::placeholder,
.admission-form .input-block select::placeholder {
    color: #dddddd;
}

input:focus,
select:focus,
textarea:focus {
    box-shadow: none !important;
}

.submit-btn {
    background-color: var(--color1) !important;
    color: #fff !important;
    height: 40px;
    width: 120px;
    font-size: 16px;
    margin-top: 14px;
    margin-right: 10px;
    border-radius: 50px;
    font-weight: 500;
}

.reset-btn {
    background-color: #e00000 !important;
    color: #fff !important;
    height: 40px;
    width: 120px;
    font-size: 16px;
    margin-top: 14px;
    border-radius: 50px;
    font-weight: 500;
}


/* Admission Form ends */


/* =========== STAFF PAGE STARTS ============== */

.staff-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 40px;
}

.staff-block {
    display: flex;
    align-items: center;
    position: relative;
}

.staff-block::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    height: 80%;
    width: 100%;
    border: 1px solid #d3d3d3;
    z-index: -1;
}

.staff-img {
    min-height: 230px;
    min-width: 230px;
    max-height: 230px;
    max-width: 230px;
    padding-left: 30px;
}

.staff-img img {
    max-width: inherit;
    min-width: inherit;
    max-height: inherit;
    min-height: inherit;
    object-fit: cover;
    object-position: top center;
    border: 6px solid #fff;
    outline: 1px solid #d3d3d3;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
}

.staff-content {
    padding: 40px 20px 40px 56px;
}

.staff-content .name {
    font-size: 20px;
    font-weight: 700;
}

.staff-content .position {
    font-size: 15px;
    color: #555;
    font-style: italic;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 10px;
}

.staff-content .qualification {
    margin: 10px 0 4px 0;
}


/* Staff Page ends */


/* =========== SIGNLE EVENT PAGE STARTS ============== */

.event-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 30px;
}

.event-block {
    margin: 0 !important;
}

.gallery-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 30px;
    row-gap: 30px;
}

.gallery-row img {
    /*min-height: 260px;*/
    /*max-height: 260px;*/
    width: 100%;
    object-fit: cover;
}


/* Single Event Page ends */


/* =========== BLOG PAGE STARTS ============== */

.blog-block {
    margin-bottom: 50px;
}

.blog-block img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-bottom: 5px solid #3c3e96;
}

.blog-right-static {
    position: sticky;
    top: 88px;
    height: auto;
    border: 1px solid #dddddd;
    padding: 20px;
}

.blog-content {
    padding-top: 20px;
    padding-left: 90px;
    position: relative;
}

.blog-content .date-box {
    left: 0;
}

.blog-content p:not(.single-blog-block p) {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-block hr {
    opacity: 1 !important;
    display: block;
    width: calc(100% - 120px);
    background-color: #dddddd;
}

.blog-block h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

ul.common-ul li {
    position: relative;
    padding-left: 14px;
    padding-bottom: 10px;
}

ul.common-ul li a {
    color: #555 !important;
    transition: var(--transition);
}

ul.common-ul li a:hover {
    color: var(--color1) !important;
}

ul.common-ul li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    height: 5px;
    width: 5px;
    border-radius: 50px;
    background-color: var(--color1);
}

.blog-pagination {
    justify-content: center;
}

.blog-pagination .page-link {
    border: 1px solid #dddddd !important;
    font-weight: 500;
    font-size: 16px;
    margin: 0 10px;
    border-radius: 0 !important;
}

.blog-pagination .page-link i {
    font-size: 12px;
}

.blog-pagination .page-link:hover,
.blog-pagination .page-item.active .page-link {
    border: 1px solid #3c3e96 !important;
    background-color: transparent;
    color: var(--color1) !important;
}

.single-event-block .desc {
    display: flex;
    justify-content: space-between;
    color: #555;
    font-style: italic;
    margin-bottom: 10px;
}

.single-event-block .desc i {
    margin-right: 6px;
    font-size: 12px;
}

.single-event-block h4 {
    color: var(--color1);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-bottom: 10px;
}

.single-event-block p {
    line-height: 24px;
    font-size: 15px;
}


/* Blog Page ends */


/* =========== LOGIN PAGE STARTS ============== */

.login-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.15);
}

.login-form h4 {
    margin-bottom: 40px;
}

.login-form .input-block {
    margin-bottom: 30px;
}

.login-form label {
    font-weight: 600;
    font-size: 16px;
    max-width: 140px;
    min-width: 140px;
}

.login-form .input-block input {
    box-shadow: none !important;
    border: 1px solid #f0f0f0;
}

.login-form .input-block input::placeholder {
    font-weight: 400;
}

.login-form button {
    margin-left: auto;
    display: block;
    width: 100%;
}


/* Login Page Ends */


/* =========== COURSE PAGE STARTS ============== */

.common-table {
    border: none;
}

.common-table thead {
    background-color: #edf3f6;
    color: #fff;
    border: 1px solid #fff;
}

.common-table th,
.common-table td {
    border: 1px solid #edf3f6;
    padding: 12px 20px;
    font-size: 16px;
}

.common-table td:first-child {
    background-color: var(--color2);
    background-color: #edf3f6;
    border: 1px solid #fff;
    font-weight: 500;
}

.common-table td i {
    color: var(--color1);
}

.common-table .s-no {
    width: 80px !important;
}

.download-table thead {
    background-color: #edf3f6 !important;
    color: #000;
    border: none !important;
}

.download-table thead th {
    font-weight: 400;
    border-bottom-color: transparent !important;
}


/* Course Page Ends */


/* =========== DASHBOARD PAGE STARTS ============== */

.user-profile {
    text-align: center;
}

.user-profile .user-img {
    margin: 0 auto;
    height: 160px;
    width: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 10px 40px -12px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.user-profile .user-img img {
    height: inherit;
    width: 100%;
    object-fit: cover;
}

.user-profile .username {
    font-size: 16px;
    font-weight: 700;
    color: var(--color1);
}

.dashboard-right-block {
    padding: 20px 0;
    padding-left: 40px;
    border-left: 1px solid #f0f0f0;
}

.detail-block {
    display: flex;
    margin-bottom: 5px;
}

.detail-block b {
    font-weight: 600;
    margin-right: 10px;
}

.profile-table td {
    border: 1px solid #edf3f6 !important;
    background-color: #fff !important;
}

.profile-table td:first-child {
    font-weight: 600;
}


/* Dashboard Page Ends */


/* =========== OTHER PAGE STARTS ============== */

.management-table table {
    margin: 0 auto;
    box-shadow: 0 4px 40px -10px rgba(0, 0, 0, 0.15);
    font-size: 16px;
}

.management-table thead {
    background-color: var(--color2);
    border: none;
}

.management-table th {
    font-weight: 700;
}

.management-table th,
.management-table td {
    border: none !important;
    padding: 10px 20px;
}

.management-table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, .04);
}

.management-table td:nth-child(2) {
    color: var(--color1);
}

.management-table td:nth-child(1) {
    font-size: 14px;
}

.governing-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    row-gap: 20px;
    column-gap: 20px;
}

.governing-block {
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}

.governing-name {
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    margin-top: 14px;
    padding-top: 20px;
}

.governing-position {
    font-size: 15px;
    text-align: center;
    position: relative;
    padding-top: 6px;
    margin-top: 6px;
    padding-bottom: 14px;
}

.governing-position::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 60px;
    background-color: #d8d8d8;
}

.governing-img {
    max-height: 200px;
    min-height: 200px;
    min-width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.governing-block img {
    max-height: inherit;
    min-height: inherit;
    min-width: inherit;
    max-width: inherit;
    object-fit: cover;
    object-position: top center;
}

.warning {
    color: var(--color2);
}

.payment-table {
    border: 1px solid #ededed;
    max-width: 700px;
    margin-top: 30px;
}

.online-payment-container {
    margin: 0 auto;
    box-shadow: 0 4px 30px -4px rgba(0, 0, 0, 0.15);
    padding: 40px;
}

.infrastructure-block {
    background-color: #edf3f6;
    padding: 40px;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 80px;
}

.infrastructure-block h4 {
    color: var(--color1);
    font-weight: 600;
    border-bottom: 1px solid #fff;
    padding-bottom: 14px;
    margin-bottom: 20px;
}

.infrastructure-block p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.infrastructure-img {
    position: relative;
    margin-top: -80px;
    border: 10px solid #fff;
}

.infrastructure-section {
    padding-top: 140px;
}

.achievement-block {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 40px;
}

.achievement-block:not(:last-child) {
    padding-block: 40px;
    border-bottom: 1px solid #d8d8d8;
}

.achievement-img {
    box-shadow: 0 4px 30px -4px rgba(0, 0, 0, 0.15);

}

.achievement-block h4 {
    font-weight: 600;
    border-bottom: 1px solid #d8d8d8;
    padding-bottom: 10px;
    margin-bottom: 14px;
}

.achievement-content {
    padding: 20px;
}

.achievement-content p {
    margin: 0;
    text-align: justify;
}


/* Other Pages Ends */

.work-progress {
    position: fixed;
    right: 10px;
    bottom: 10px;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    color: #000;
    z-index: 10000;
}

.work-progress.hide {
    display: none;
}

.close-work-progress {
    position: absolute;
    right: 0;
    top: -25px;
    background-color: #3c3e96 !important;
    padding: 2px;
    font-size: 15px;
    padding: 2px 10px;
    border-radius: 4px;
    color: #fff !important;
}

.career-page-section .career_box {
    box-shadow: 0 2px 10px #dddddd;
    padding: 20px;
}

.career-page-section .career_box:not(:last-child) {
    margin-bottom: 40px;
}

.career-page-section .job_title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color1);
}

.career-page-section .loc {
    color: #8b8b8b;
    font-size: 15px;
}

.career-page-section .loc i {
    font-size: 13px;
    margin-right: 6px;
}

.career-page-section p {
    font-size: 15px;
    margin-top: 12px;
    margin-bottom: 0;
}

.career-page-section hr {
    background-color: #a4a4a4;
    opacity: 1;
    margin: 12px 0;
}

.section-breadcrumb-section {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/web/breadcrumb-bg.jpg);
    margin-bottom: 50px;
    position: relative;
    background-size: cover;
}

#default_modal {
    background-color: rgba(0, 0, 0, 0.5);
}

#default_modal .modal-content,
#default_modal .modal-body {
    background-color: transparent;
    padding: 0;
}

#default_modal img {
    width: 100%;
    height: auto;
}

/*prem edit*/
.myimg-box {
    max-height: 260px;


}

.myimg-box {
    max-height: 260px;
    overflow: hidden;


}

/*elumini css */

/*principle css*/
.principle-section {
    background: #edf3f6;
}

.readBtn {
    cursor: pointer;
    width: max-content;
    color: var(--color1);

}

.ele {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 4;

}

.readBtn {
    cursor: pointer;
    font-size: 14px;
}

.principle-section .name {
    color: var(--color1);

    width: max-content;
}

.principle-section .content .img-box {
    position: sticky;

    max-width: 235px;
    overflow: hidden;
    border-radius: 10px;

}

.principle-section .content .img-box img {
    max-width: 300px;
    border-radius: 10px;
    height: 230px;
    width: 100%;

}

.principle-section .content .img-box:before {
    position: absolute;
    content: "Professor Gaurav Kataria";
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    bottom: 0px;
    left: 0px;
    background: #3c3e96;
    color: white;
    width: 100%;


}

.principle-section .content .img-box.two:before {
    content: "Shree N.R. Kothari";
}

.principle-section .content .img-box.three:before {
    content: "Shree Sumer Singh Bothra";
}

.principle-section .content .img-box.four:before {
    content: "Shri J.K. Ranka";
}

.principle-section .content .img-box.five:before {
    content: "Ms. Anjali Bhatia";
}

.principle-section .content .img-box.six:before {
    content: "Mr. Justice M.N. Bhandari";
}

/*.principle-section .content .img-box:after*/
/*{*/
/*position: absolute;*/
/*    content: "";*/
/*    width: 294px;*/
/*    height: 100%;*/
/*    border: 4px solid #ffcd25;*/
/*    left: -23px;*/
/*    top: 29px;*/
/*    border-radius: 5px;*/
/*    z-index: -1;*/



/*}*/
.principle-section .common-heading {
    margin-bottom: 24px;
}

.principle-section .name {
    color: var(--color1);
}

@media(max-width:992px) {
    .principle-section .content .img-box:after {
        top: -19px;
        left: -19px;
    }

    .principle-section .common-heading {
        margin-bottom: 35px;
    }

    .principle-section .name {
        display: block;
        margin: auto;
    }
}


.vision-block ul {
    list-style: none !important;
}

.vision-block .box {
    height: 100%;
}

/*============admit card section========*/
#admit-card {
    padding: 10px 0px;
    background: var(--color2);
    font-size: 14px !important;
}


@-webkit-keyframes blinker {
    from {
        opacity: 1.0;

    }

    to {
        opacity: 0.0;

    }
}

.blink {
    color: var(--color1) !important;
    text-decoration: underline !important;
    font-size: 18px;
    text-decoration: blink;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 0.6s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
}

/* Summit Base */

.font-20 {
    font-size: 20px;
}


.font-26 {
    font-size: 26px;
}

/*  */
#collageProfile,
#theme {
    padding: 80px 0px;
}

.eventHeading,
.title {
    color: var(--color1);
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;

}

.eventHeading::before {
    content: "";
    position: absolute;
    display: inline-block;
    left: 0;
    width: 100px;
    height: 3px;
    background-color: var(--color2);
    bottom: -5px;

}

.eventHeading.center::before {
    left: 50%;
    transform: translateX(-50%);

}

p {
    margin-bottom: 20px;
    color: var(--black);

}

.title {
    margin-bottom: 10px;
}

/*  */
#summit {
    padding: 50px 0px;

    background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.50)),
        url('https://www.subodhlawcollege.com/public/front/images/apply/apply.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.small-container {
    max-width: 1150px;
    padding-inline: 10px;
}

#summit .mainBox {
    border-radius: 20px;

}


#summit h3 {
    background-color: var(--color1);
    margin-bottom: 35px;


}

#summit h5 {
    color: var(--color1);
    padding-block: 35px;
}

.timeDetails {
    margin-bottom: 10px;
    color: var(--black);
    padding-inline: 10px;
}

#theme .mainBox {
    border-radius: 12px;

}

#theme .mainBox .themeTitle {
    background-color: var(--color2);

}

#theme .content {
    padding: 20px;
}

.summit ul li {
    list-style: decimal;

}

.summit li:not(:last-child) {
    margin-bottom: 10px;
}

#last,
#committee,
#paymentDetails,
#contact {
    padding: 50px 0px;
}

.font-medium {
    font-weight: 500;
}

#committee .gridContainer {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 20px;
    margin-top: 65px;
    row-gap: 40px;

}

#committee .gridContainer .gridcolumns {
    padding-top: 30px;
}

#committee .gridcolumns span {
    font-weight: 600;
}

.textGray {
    color: rgb(94, 91, 91);
}

.highlight {
    position: absolute;
    padding: 8px 30px;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    background-color: var(--color1);
    font-size: 14px;
    font-weight: 400 !important;
}

#paymentDetails ul li span {
    color: var(--color1);
}

#paymentDetails ul li:nth-child(odd) {
    background-color: #e6e7e7;

}

/*  */
#contact .mainBox a span {
    font-weight: 500;

}

#contact .mainBox a:hover p {
    color: #3E4095;
}

#contact .mainBox .qrBox {
    height: 120px;
    width: 120px;

}

#contact .contact b {
    color: #3d3b3b;
}


/*  */
@media (max-width:992px) {
    #committee .gridContainer {
        grid-template-columns: 1fr 1fr 1fr;
    }

}

@media (max-width:768px) {
    #committee .gridContainer {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width:576px) {

    #summit .mainBox span,
    #theme .content ul li,
    p {
        font-size: 14px !important;

    }

    .font-20 {
        font-size: 18px;
    }

    #collageProfile,
    .theme {
        padding: 50px 0px;
    }

    #committee .gridContainer {
        grid-template-columns: 1fr;
    }

    #contact .contact,
    #contact .title,
    #contact .venue,
    #contact .mainBox a {
        text-align: center;
    }
}



/* Certifocation Css */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;700&family=Rye&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;700&family=Rye&family=Sail&display=swap');
.certificate *{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: 'Rye', serif;
}

:root {
    --color11: #4c1405;
    --color22: #432229;
    --color33: #cec8bc;
    --color44: #201f1f;
    --color55: #323232;
}

.color-11 {
    color: var(--color11);
}

.color-22 {
    color: var(--color22);
}

.color-33 {
    color: var(--color44);
}

.color-44 {
    color: var(--color55);
}

.bg-color11 {
    background-color: var(--color11);
}

.bg-color-22 {
    background-color: var(--color33);
}

.font-12 {
    font-size: 12px;
}

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

.font-16 {
    font-size: 16px;
}

.font-18 {
    font-size: 18px;
}

.font-20 {
    font-size: 20px;
}

.font-22 {
    font-size: 22px;
}

.font-24 {
    font-size: 24px;
}

.font-26 {
    font-size: 26px;
}

.font-28 {
    font-size: 28px;
}

.font-30 {
    font-size: 30px;
}

.font-40 {
    font-size: 40px;
}

.font-50 {
    font-size: 50px;
}

.font-60 {
    font-size: 60px;
}


.s-dots::after {
    content: " ";
    display: inline-block;
    height: 5px;
    width: 5px;
    background-color: var(--color22);
    transform: rotate(45deg);
}

.college_name {
    padding: 0px;
    margin: 0px;
    list-style: none;
    text-decoration: none;
    font-family: 'Rye', serif !important;
}

.logo1 img {
    width: 100px;
}

.Presentation-1 {
    padding: 14px 100px;
}

.certify {

    line-height: 120px;
    width: 70%;

}
.font-family-2{
    font-family: Sail;
  }

.principal p{
    border-top: 1px solid;
    min-width: 270px;
    font-weight: bold;
}

.convener {
    margin-left: 80px;
}

.qr-img-box {
    height: 140px;
    width: 140px;
}

.roboto {
    font-family: 'Roboto', sans-serif;
}


/*================================================*/

    #subodhjudgePariksha h4 {
      font-size: 18px;
    }
    #subodhjudgePariksha .subodhContent p {
      font-size: 15px;
      font-weight: 500;
    }

    #subodhjudgePariksha .col-6 {
      padding: 0px 5px;
    }
    #subodhjudgePariksha .row p {
      font-size: 14px;
      font-weight: 500;
    }
    #subodhjudgePariksha .row a {
    min-height: 100px;
    height: 100%;
    }



