* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* background-image: linear-gradient(to right top, #0c539c, #0074b5, #0092bc, #00aeb5, #00c8a4); */
/* new colors bule - #0C539C
          orange    - #EF8A18   
*/
/* background: linear-gradient(93.13deg, #FF9110 0%, #FF5C00 99.68%); */
/* html,
body {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
} */

/* color - #FFF6EB */

/* heading color - color: #333333; */
/* paragraph color - color: #656565 */

/* ---- New color update - #16A0AD */

@font-face {
    font-family: Gotham;
    src: url("/static/assets/fonts/GothamMedium.ttf");
    font-display: swap;
}

@font-face {
    font-family: Gotham-Light;
    src: url("/static/assets/fonts/GothamBook.ttf");
    font-display: swap;

}

@font-face {
    font-family: Gotham-bold;
    src: url("/static/assets/fonts/Gotham-Black.otf");
    font-display: swap;

}


h1,
h2 {
    font-family: Gotham-bold;
    /* 1 */
    font-style: normal;
    /* 1 */
    font-weight: 500;
    /* 1 */
    line-height: 30px;
    /* 1 */
    color: #333333;

}

h4,
h5,
h6 {
    font-family: Gotham;
    /* 1 */
    font-style: normal;
    /* 1 */
    font-weight: 400;
    /* 1 */
    line-height: 30px;
    /* 1 */
    color: inherit;
}

/* --------- this are other -------------  */

label,
button,
input,
optgroup,
select,
textarea,
a,
p {
    font-family: Gotham !important;
    font-weight: 500 !important;
    line-height: 28px;
    color: #4c4c4c;
    margin: 0;
    padding: 0;

}

/* ------------ Hero section ------------  */
.Home-banner {
    background-image: url("/static/assets/img/banner/about\ us\ banner.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Home-banner img {
    width: 100%;
    height: 100%;
}

.Home-banner h1 {
    font-size: 34px;
    text-transform: uppercase;
}

/* ----------- navigation ------------  */
.nav-flur {
    background: #fff;
    height: 178px;
}

.nav-header {
    position: absolute;
    width: 100%;
    min-height: 66px;
    padding: 25px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-header .logo {
    color: white;
    font-size: 1.75rem;
    font-weight: 600;
    text-decoration: none;
}

.logo img {
    max-width: 395px;
}

.nav-header ul {
    position: relative;
    z-index: 9999;
}

.nav-header ul li {
    list-style: none;
    position: relative;
    float: left;
}

.nav-header ul li a {
    color: #333333;
    font-size: 17px;
    font-family: Gotham;
    text-decoration: none;
    padding-left: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-header ul li a i {
    margin-left: 5px;
}

.nav-header ul li ul li a {
    padding: 12px 12px;
}

/* .nav-header ul li a:hover {
    background: #2b93e3;
} */

.nav-header ul li ul {
    position: absolute;
    left: 0;
    width: 220px;
    /* background: #16A0AD; */
    background: #f6f7fb;
    display: none;
    transition: all 0.5s ease;
    top: 30px;
    border-radius: 10px;
}

.nav-header ul li ul li a {
    font-size: 14px;
    color: #333333;
}

.nav-header ul li:hover>ul {
    display: block;
    /* transition-delay: 0.4s; */
}

.nav-header ul li ul li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.nav-header ul li ul li ul {
    top: 0;
    left: 218px;
}

@media (max-width:900px) {
    .nav-header {
        padding: 10px 20px;
    }

    .nav-header nav {
        position: absolute;
        width: 100%;
        top: 66px;
        left: 0;
        background: #3d6383;
        display: none;
        z-index: 999;
    }

    .nav-header ul li a {
        color: #fff;
        padding: 10px 15px;

    }

    .nav-header.active nav {
        display: initial;
    }

    header nav ul li {
        width: 100%;
    }

    .nav-header nav ul li ul {
        position: relative;
        width: 100%;
        left: 0;
        top: 0px;
    }

    .nav-header nav ul li ul li ul {
        top: 0;
        left: 0;
    }

    .nav-header nav ul li:hover ul li {
        background: #f6f7fb;

    }

    .nav-header nav ul li:hover ul li a {
        color: #333333;
    }

    .menuToggle {
        position: relative;
        width: 35px;
        height: 35px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menuToggle::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        background: #000;
        transform: translateY(-12px);
        box-shadow: 0 12px #000;
    }

    .menuToggle::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        background: #000;
        transform: translateY(12px);
    }

    .nav-header.active .menuToggle::before {
        transform: rotate(45deg);
        box-shadow: 0 0 #000;
    }

    .nav-header.active .menuToggle::after {
        transform: rotate(315deg);
    }
}


.top_subnav {
    padding: 15px 100px 15px 100px;
    background: #16A0AD;
}

.top_navC a {
    background: #e67e22;
    padding: 8px 28px;
}

.top_subnav ul li a {
    margin-left: 25px;
    border-left: 3px solid #e67e22;
    padding-left: 25px;
}


/* ----- about us ----  */

.aboutHome {
    margin: 100px;
}

.homeLogos img {
    max-width: 140px;
    height: fit-content;
}

.MNC-logo {
    margin: 0 20px 0 10px;
}

.desktopLogo {
    display: block;
    display: flex;
}

.mobileLogo {
    display: none;
}

/* ------  */

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

.homeAboutContent {
    width: 67%;
}

.homeAboutContent h2 {
    font-size: 38px;
    color: #16A0AD;
}

.homeAboutContent h4 {
    font-size: 23px;
    margin: 15px 0 15px 0;
    color: #16A0AD;
}

.homeAboutContent p {
    font-size: 16px;
    line-height: 28px;
    color: #4c4c4c;
    text-align: justify;
}

.about-btn {
    padding: 5px 30px;
    transition: color .4s, background-color .4s;
    border: 1px solid transparent;
    border-image: linear-gradient(93.13deg, #FF9110 0%, #FF5C00 99.68%);
    border-image-slice: 1;
}

.about-btn:hover {
    color: #fff;
    background: linear-gradient(93.13deg, #FF9110 0%, #FF5C00 99.68%);
}

.homeAboutCardMain {
    width: 28%;
    box-shadow: 0 9px 68px 0 rgba(62, 57, 107, .2);
}

.homeAboutCard {
    background: #16A0AD;
    color: white;
    padding: 10px 10px;
    border-radius: 4px;
}

.latestNewsContent {
    padding: 20px;
}

.latestNewsContent ul li {
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.latestNewsList p {
    font-size: 15px;
    text-transform: lowercase;
}

.princple_desk {
    background: #f6f7fb;
    padding: 80px 100px;
}

.principleImage {
    width: 46%;
}

.image-principle {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-principle::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 140px;
    height: 4px;
    background: linear-gradient(93.13deg, #FF9110 0%, #FF5C00 99.68%);
}

.image-principle::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 4px;
    height: 140px;
    background: linear-gradient(93.13deg, #FF9110 0%, #FF5C00 99.68%);
}

.image-principle img {
    width: 97%;
    height: 96%;
    object-fit: cover;
}

.princple_desk>div h2 {
    font-size: 26px;
}

.princple_desk>div h4 {
    font-size: 18px;
    margin-top: 4px;
}

.princple_desk>div p {
    font-size: 16px;
    line-height: 28px;
}

.above-line {
    width: 145px;
    border-bottom: 3px solid transparent;
    background-clip: padding-box;
    border-image: linear-gradient(93.13deg, #FF9110 0%, #FF5C00 99.68%);
    border-image-slice: 1;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

/* .princple_desk>div p{
    font-weight: 600;
} */

.parentHospitalBtn {
    width: 155px;
    padding: 2px 30px;
    margin-top: 1rem;
}

/* ---- important facts ----  */


.facts {
    margin: 100px;
}

.fact-head h2 {
    font-size: 28px;
    /* font-size: 30px; */
    color: #16A0AD;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.self-in h2 {
    font-size: 38px;
    cursor: pointer;
}

.self-in h2:hover {
    color: #e67e22;
}

.self-in p {
    font-size: 38px;
    margin-right: 50px;
    margin-top: 25px;
    font-weight: 400;
    color: #173956;
    line-height: 3.5rem;
}

/*
.facts_box {
    background-color: #173956;
    padding: 3rem 4rem;
    width: 19%;
}

.facts_box h2 {
    font-size: 45px;
    color: white;
}

.facts_box h4 {
    font-size: 18px;
    margin-top: 10px;
}

.box1 {
    background-color: #8c004b;
}

.box2 {
    background-color: #07b0d0;
}

.box3 {
    background-color: #4fbb6e;
}

.box4 {
    background-color: #FF8080;
} */


/* --------- events ---------  */

.events {
    padding: 60px 100px 80px 100px;
    background: #f6f7fb;
    transition: all 1s;
}

.marquee-container {
    overflow: hidden;
    height: 400px;
}

.marquee-content {
    animation: marquee-up 10s linear infinite;
}

@keyframes marquee-up {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(-100%);
    }
}

.eventList {
    position: relative;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 1s;
}

.eventList::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(93.13deg, #FF9110 0%, #FF5C00 99.68%);
    transition: width 1s;
}

.eventList:hover::before {
    width: 100%;
    border-radius: 10px;
}

.evntDate {
    width: 11%;
    background: #F8ECF8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 15px;
    transition: all 1s;

}

.evntDate h4 {
    font-size: 22px;
    line-height: 25px;
    text-align: center;
}

.evntDate h4 span {
    font-size: 17px;
}

.eventContent {
    width: 75%;
    padding: 15px 0;
}

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

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

.eventLink {
    width: 8%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.eventLink a:hover {
    background: linear-gradient(93.13deg, #FF9110 0%, #FF5C00 99.68%);
    /* Adjust gradient colors */
    -webkit-background-clip: text;
    color: transparent;
}

.eventList:hover .evntDate {
    background: linear-gradient(93.13deg, #FF9110 0%, #FF5C00 99.68%);
    transition: all 1s;
    color: white;
}

/*
.event-head h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.event-div {
    width: 71%;
}

.event-div>div h2,
.event-head2 h2 {
    font-size: 28px;
    color: #16A0AD;
    padding-top: 25px;
}

.news-div {
    width: 29%;
    background: #fff;
}

.event-box {
    width: 94%;
    margin-top: 40px;
}

.event-data {
    background: #fff;
    width: 31%;
}

.event-data img {
    width: 100%;
    height: 175px;
    object-fit: cover;
}

.event-content {
    padding: 25px;
}

.event-content2 {
    padding: 0 25px;
    display: flex;
}

.event-content h4 {
    display: flex;
    align-items: center;
}

.event-content2>div p {
    font-size: 16px;
    line-height: 26px;
}

.event-content2>div h6 {
    font-size: 15px;
    color: #4c4c4c;
}

.event-content i {
    font-size: 9px;
    color: #e67e22;
    margin-right: 6px;
}

.event-content h4 {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 60px;
}

.event-content p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 60px;
    font-size: 15px;
}

.event-content h6 {
    font-size: 15px;
    color: #4c4c4c;
}

.event-head2 {
    padding: 0px 25px 15px 25px;
}

.news-content {
    padding: 0 25px;
}

.evnt-date {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.evnt-date h4 {
    font-size: 30px;
    color: #e67e22;
}

.evnt-date h5 {
    font-size: 15px;
    color: #4c4c4c;
}

.news-line {
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 25px;
    margin-bottom: 25px;
} */

/* ----- facilities -----  */

.facilities {
    margin: 100px 80px 100px 0px;
}

.facility-box {
    width: 24%;
    box-shadow: 0 0 10px #ccc;
    padding: 20px;
    cursor: pointer;
    transition: all 0.5s;
}

.facility-box h2 {
    font-size: 21px;
    margin: 12px 0;
}

.facility-box p {
    font-size: 16px;
}

.facility-box img {
    max-width: 65px;
    filter: invert(53%) sepia(74%) saturate(534%) hue-rotate(346deg) brightness(93%) contrast(94%);
    transition: all 0.5s;

}

.facility-box:hover img {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
    transition: all 0.5s;

}

.facility-box:hover {
    background: linear-gradient(93.13deg, #FF9110 0%, #FF5C00 99.68%);
    color: white;
    transition: all 0.5s;
}

.facility-box:hover h2,
.facility-box:hover p {
    color: white;
    transition: all 0.5s;

}

/* ------------ Footer ----------  */

.footer-sec {
    padding: 80px 0 0 0;
}

.newsletter {
    background: linear-gradient(93.13deg, #173956 0%, #00A6C1 99.68%);
    border-radius: 40px;
    padding: 40px 60px;
    position: top;
    position: absolute;
    top: -79px;
    left: 99px;
    width: 87%;
}

.newsletter-head h2 {
    font-size: 24px;
    line-height: 32px;
    color: #fff;
}

.newsletter-text input {
    /* width: 57%; */
    height: 50px;
    padding-left: 15px;
    border-radius: 0;
}

.newsletter-text button {
    background-color: #e67e22;
    padding: 5px 40px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

.fieldInput {
    display: block;
    width: 501px;
    height: 50px;
    position: relative;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.09);
    border-radius: 35px;
    overflow: hidden;
}

.form-input {
    width: 501px;
    background: #fff !important;
    background: none;
    border: none;
    padding: 12px 20px;
    font-size: 15px;
    /* color: #6A7C92; */
}

.fieldInput .form-input:focus {
    outline: none;
}

.form-submit {
    font-size: 12px;
    background-color: #e67e22;
    color: #fff;
    position: absolute;
    right: 6px;
    top: 3px;
    /* width: 120px; */
    height: 45px;
    border-radius: 35px;
    border: none;
    background: none;
    box-shadow: 5px -2px 81px 1px rgba(0, 0, 0, 0.09);
    cursor: pointer;
}

.footer {
    /* background-color: #f6f7fb; */
    padding: 115px 100px 20px 100px;
    background-image: url("/static/assets/img/banner/Nursing\ Banner.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    /* height: 280px; */
}

.footer-rows {
    width: 23%;
}

.footer-rows h2 {
    border-bottom: 2px solid #e67e22;
    margin-bottom: 7px;
    padding-bottom: 7px;
    font-size: 17px;
    /* background-image: linear-gradient(315deg, #f39f86 0%, #f9d976 74%); */
}

.footer-icon i {
    margin-right: 12px;
    font-size: 21px;
}

.footer-anchor li a {
    font-family: Gotham;
    font-size: 16px;
    line-height: 32px;
    color: #4c4c4c;
}

.footer-icon p {
    font-size: 16px;
    line-height: 30px;
    color: #333333;
}

.borderLine {
    border-bottom: 2px solid #e67e22;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.visitorCounter {
    display: flex;
    border-radius: 15px;
    justify-content: space-between;
    margin-top: 25px;
    padding: 2px 15px 4px 15px;
    background: linear-gradient(93.13deg, #173956 0%, #00A6C1 99.68%);
    /* border-width: 2px;
    border-style: solid;
    border-image: linear-gradient(93.13deg, #173956 0%, #00A6C1 99.68%);
    border-image-slice: 1 */
}

.visitorCounter span {
    font-size: 16px;
    color: white;
}

.visitorCounter img {
    margin-top: 5px;
}

/* ----------------  */

.quick_link_img {
    background-image: url("../assets/img/banner/Quick\ link\ \(1\).jpg");
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 700px;
    background-size: cover;
    position: relative;
}

.link-overlay {
    padding: 100px;
    height: 700px;
}

.link-img {
    width: 37%;
}

.links h2 {
    font-size: 20px;
    color: #333333;
}

.facilities-card {
    width: 24.5%;
}

.facility-body {
    background-color: rgb(0, 0, 0, 0.7);
    padding: 25px;
    color: white;
}

.faci-overlay {
    height: 216px;
    padding: 0;
}

.facilities-date {
    border: 2px solid #e67e22;
    width: 60px;
    padding: 10px;
    margin: 10px;
}

/* -------------- about us page ----  */

.history-w {
    width: 19%;
}

.founderImg img {
    width: 100%;
    height: 100%;
    padding: 0 0 20px 20px;
    object-fit: cover;
}

.founderImg::before {
    left: 0;
}

.founderImg::after {
    left: 0;
}

.foundationContent p {
    color: #4c4c4c;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 15px;
    text-align: justify;
}

/* about inspiration */

.inspirationMain {
    background: #f6f7fb;
    padding: 60px 100px;
}


.about-inspiration h1 {
    font-size: 27px;
    margin: 0px 0 30px 0;
    color: #173956;
}

.about-inspiration h2 {
    font-size: 20px;
    margin: 15px 0;
}

.about-inspiration p {
    font-size: 16px;
    line-height: 28px;
    margin-right: 2.5rem;
    text-align: justify;
}

.members-sec {
    background: #f6f7fb;
    margin: 0 !important;
    padding: 60px 100px;
}

.memberDiv {
    max-width: 1150px;
    margin: auto;
}

.members {
    margin: 60px 0;
}

.memberImgDiv {
    width: 35%;
}

.memberImg img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.memberOne>div img {
    object-position: 2px 0;
}

.member-content {
    width: 60%;
}

.member-content h2 {
    font-size: 22px;
}

.member-content p {
    font-size: 16px;
    margin-top: 15px;
}

.memberdata-listing li {
    font-family: Gotham;
    font-size: 16px;
    line-height: 28px;
    color: #656565;
    margin-top: 10px;
}

/* about mission and vision */

.vision-mission {
    margin: 50px 90px;
}

.about-mission-vision {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.about-mission,
.about-vision {
    width: 47%;
    /* border: 1px solid black; */
    padding: 15px 20px;

}

.about-mission h3,
.about-vision h3 {
    margin: 10px 0;
    text-align: center;
    font-size: 25px;
    font-weight: 600;
}

.about-mission p,
.about-vision p {
    font-size: 18px;
    text-align: justify;
}

.vi-head {
    width: 46%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vi-head img {
    max-width: 175px;
    filter: invert(51%) sepia(70%) saturate(3908%) hue-rotate(154deg) brightness(96%) contrast(83%);
}

.vi-head h4 {
    font-size: 23px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px;
}

.vi-head p {
    font-size: 16px;
    line-height: 29px;
    text-align: justify;
}

.mi-head {
    border-left: 1px solid #d8d8d8;
}

/* -----------about navtab -----  */

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.tab-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 25px;
}

.tab-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.founder-sec>div {
    margin: 0 auto;
    display: none;
}

.founder-sec>div.activ {
    display: block;
}

div.content h2 {
    margin: 10px 0 40px 20%;
}



@media screen and (max-width: 600px) {
    div.content h2 {
        margin: 10px 0 40px 5%;
    }

}


.founder-info {
    display: flex;
    width: 100%;
}

.founder-image {
    width: 50%;
}

.founder-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: 0px 0px;
}

.vikheCEO {
    height: 720px !important;
}

.founder-para {
    width: 65%;
}

.clearfix li a {
    font-size: 20px;
    font-weight: 500;
    padding: 10px 49px;
    border-radius: 10px;
    font-family: Gotham;
    /* color: #333333; */
}

/* .clearfix li a:hover {
    color: #e67e22;
} */

.founder-container-main {
    margin: 100px 0;
}

.founder-sec {
    border: 2px solid #f5f5f5;
    margin: 0 100px;
}

.clearfix {
    background: #f6f7fb;
    margin: 0 100px;
}

.clearfix h1 {
    color: #16A0AD;
    font-size: 32px;
    text-align: center;
    padding: 28px 0;
    font-weight: 600;
}

.activ {
    background: linear-gradient(93.13deg, #FF9110 0%, #FF5C00 99.68%);
    color: #fff;
}

.founder-para {
    background: #f6f7fb;
    color: #fff;
    width: 70%;
    padding: 40px;
}

.founder-para h4 {
    font-size: 21px;
    margin: 20px 0;
    color: #333333;
}

.founder-para p {
    font-size: 16px;
    line-height: 30px;
    text-align: justify;
}

.box-wrap {
    box-shadow: 0 0.300rem 0.50rem rgba(0, 0, 0, .095);
    padding: 40px;
}

.table-wrap {
    max-width: 1400px;
    overflow-x: auto;
}

.Affiliating-table,
td,
th {
    font-family: Gotham;
    text-align: left;
    font-size: 16px;
    text-transform: capitalize;
}

.Affiliating-table thead tr {
    background-color: #16A0AD;
    color: #fff;
}

.Affiliating-table {
    border-collapse: collapse;
    width: 100%;
    overflow: hidden;
}

.Affiliating-table tbody tr .Affiliating-table tbody tr td {
    border: 1px solid #ddd;
}

.Affiliating-table th {
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
}

.Affiliating-table td {
    padding: 15px;
    white-space: nowrap;
}

.Affiliating-table tbody tr:nth-child(odd) {
    background: rgb(241 241 241 / 26%);
    color: #000;
    font-weight: 500;
}

/* about college page -------------  */

.Parent-hospital {
    margin: 80px 100px;
}

.Parent-hospital>div h2 {
    font-size: 23px;
}

.Parent-hospital>div p {
    font-size: 16px;
    text-align: justify;
}

/* ----------- Deapartments logo ---------  */

.dept-sec {
    margin: 100px;
}

.dept-logo {
    width: 30%;
}

.dept-logo img {
    max-width: 320px;
}

.dept-info {
    width: 70%;
}

.dept-info h2 {
    font-size: 23px;
    margin-bottom: 15px;
    color: #16A0AD;
}

.dept-info p {
    font-size: 16px;
    line-height: 27px;
    text-align: justify;
}

.objec-box {
    background: #f6f7fb;
    padding: 25px;
    color: black;
    border-radius: 15px;
}

.objec-box h2 {
    font-size: 21px;
    margin-bottom: 6px;
    color: #16A0AD;
}

.objec-box p {
    font-size: 16px;
    line-height: 28px;
}

.objec-box {
    width: 32.5%;
}

.courStaff {
    width: 24%;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .095);
    padding: 15px;
    margin-bottom: 40px;
    margin-left: 12px;
}

.courStaff2 {
    margin: 0 0 40px 0;
}

.courStaff img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
}

.courStaff-card h2 {
    font-size: 17px;
    margin: 12px 0;
    color: #e67e22;
}

.courStaff-card h5 {
    font-size: 15px;
    color: #333333;
}

.Gallery {
    background: #f6f7fb;
    padding: 60px 100px;
}

.Gallery h2 {
    color: #16A0AD;
}

.award-miniHead h4 {
    color: #333333;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.student-pic {
    width: 24%;
    height: 225px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.student-pic img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}


/* gallery model  */

#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {
    opacity: 0.7;
}

.galleryImgCart {
    position: absolute;
    bottom: 0;
    background: #fff;
    color: #333333;
    width: 100%;
    text-align: center;
    padding: 4px 0;
}


.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #f6f7fb;
}

.modal-content {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 800px;
}

.modal-content {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #16A0AD;
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

/* --- medical college Department page ---  */


.medical-clg {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    padding: 40px 80px;
    width: 75%;
}

.anchor-clg {
    border-bottom: 1px solid #656565;
    padding-bottom: 10px;
    margin-top: 15px;
}

.anchor-clg h4 {
    font-size: 17px;
}

.anchor-clg a {
    color: #333333;
    font-size: 17px;
}

.anchor-clg a:hover {
    color: #e67e22;
}

.coll-overlay {
    height: 760px;
}

.teachingTable {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 45px;
}

.teaschingStaffTable {
    width: 100%;
    border-collapse: collapse;
}

.teaschingStaffTable td,
.teaschingStaffTable th {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}

.teaschingStaffTable th {
    background-color: #16A0AD;
    color: #ffffff;
}

.teaschingStaffTable tbody {
    background: #fff;
}

.teaschingStaffTable tbody tr:hover {
    background-color: #ececff;
    cursor: pointer;
}



/*responsive*/

@media (max-width: 500px) {
    .teaschingStaffTable thead {
        display: none;
    }

    .teaschingStaffTable,
    .teaschingStaffTable tbody,
    .teaschingStaffTable tr,
    .teaschingStaffTable td {
        display: block;
        width: 100%;
    }



    .teaschingStaffTable td {
        text-align: left;
        position: relative;
    }

    .StaffTable td {
        padding-left: 50%;
    }

    .teaschingStaffTable td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 15px;
        font-size: 15px;
        font-weight: bold;
        text-align: left;
    }

    .teachingTable {
        margin: 0;
    }

    .teaschingStaffTable td,
    .teaschingStaffTable th {
        border: none;
    }

    .teaschingStaffTable tr {
        border-bottom: 1px solid #ddd;
    }

    .teaschingStaffTable tbody tr:nth-child(even) {
        background-color: #ebf3f9;
    }

}

.facultyBtn {
    padding: 8px 30px;
}

.Projects-sec {
    margin: 0;
    padding: 80px 100px;
    background: #f6f7fb;
}

.project-tab {
    margin-bottom: 30px;
}

.pro-tab1,
.pro-tab2 {
    border-right: 1px solid #c8ccdd;
}

.project-box {
    border-radius: 10px !important;
    border: 1px solid #768e90;
    /* height: 285px; */
}

.project-box img {
    width: 100%;
    height: 260px !important;
}

.projeect-head {
    color: #fff;
    padding: 20px;
    background: linear-gradient(93.13deg, #173956 0%, #00A6C1 99.68%);
    border-radius: 10px;
}

.projeect-head h5 {
    font-size: 16px;
    line-height: 26px;

    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-content {
    padding: 1.4rem;
}

.project-content h5 {
    font-size: 15px;
    color: #333333;
}

.project-tab-head>div h5 {
    font-size: 17px;
    cursor: pointer;
    margin-right: 25px;
}

.pro-tabActive {
    background: linear-gradient(93.13deg, #FF9110 0%, #FF5C00 99.68%);
    color: white;
    padding: 3px 20px;
    border-radius: 25px;
}

/* -------Courses ------  */

.course-1 {
    margin: 100px;
}

.course-1>div h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #173956;
}

.course-1>div p {
    font-size: 16px;
    line-height: 28px;
}

.accordian {
    max-width: 800px;
    margin-top: 45px;
}

.accordian .contentBx {
    position: relative;
    margin-bottom: 20px;
}

.accordian .contentBx .label {
    position: relative;
    padding: 10px;
    background: #f4f6f8;
    color: #333333;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
}

.accordian .contentBx .label::before {
    content: '+';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 1.5em;
}

.accordian .contentBx.active .label::before {
    content: '-';
}

.accordian .contentBx .content {
    position: relative;
    background: #fff;
    height: 0;
    overflow: hidden;
    transition: height 0.6s ease-in-out;
}

.accordian .contentBx.active .content {
    height: 401px;
    padding: 10px;
}

.accordian .contentBx .content h4 {
    font-size: 15px;
    display: flex;
    align-items: center;
    color: #4c4c4c;
}

.accordian .contentBx .content h4 span {
    color: #333333;
    font-size: 17px;
}

.accordian .contentBx .content h4 i {
    font-size: 8px;
    margin-right: 14px;
}

.content-list li {
    font-family: Gotham;
    font-size: 15px;
    color: #333333;
    line-height: 27px;
}

/* ----------- research and publication page -------  */

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet {
    -webkit-border-radius: 20px !important;
    border-radius: 20px !important;

    -webkit-transition: opacity .5s, background-color .5s, width .5s !important;
    -o-transition: opacity .5s, background-color .5s, width .5s !important;
    transition: opacity .5s, background-color .5s, width .5s !important;
    -webkit-transition-delay: .5s, .5s, 0s !important;
    -o-transition-delay: .5s, .5s, 0s !important;
    transition-delay: .5s, .5s, 0s !important;


    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 11px)) !important;
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 11px)) !important;
    background: #ECB7B7 !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: #e67e22 !important;
    -webkit-transition-delay: 0s !important;
    -o-transition-delay: 0s !important;
    transition-delay: 0s !important;
    width: 45px !important;
    height: 10px !important;
}

.research-pic {
    width: 53%;
}

.research-content {
    width: 43%;
    overflow-y: scroll;
    height: 465px;
    scrollbar-width: 20px;
}

.research-content::-webkit-scrollbar {
    width: 6px;
    border-radius: 3px;
}

.research-content::-webkit-scrollbar-thumb {
    background: linear-gradient(93.13deg, #FF9110 0%, #FF5C00 99.68%);
    border-radius: 3px;
}

.research-content::-webkit-scrollbar-track {
    background-color: #f6f7fb;
}

.research-data p {
    font-family: Gotham-Light;
    font-weight: 500;
}

.Publication-table {
    margin: 80px 100px;
}

/* remove this css  */


/* 

.table-bordered {
    border: 1px solid #ddd;
}

.Publication_table tbody tr td {
    border: 1px solid #ddd;
    padding: 10px;
    font-family: Gotham;
    font-size: 16px;
}

.BookPublication-table {
    background-color: #16A0AD !important;
    color: white;
}

.BookPublication-table td {
    font-family: Gotham;
    font-size: 15px;
}

.BookPublication-table-content td {
    font-family: Gotham;
    color: #4c4c4c;
    font-size: 14px;
}

.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}  */

/* ------  */

.project-overlay {
    background-color: rgb(255 220 169 / 48%);
}

.project-anchor {
    color: black;
}

.projects {
    margin: 0;
    background: #173956;
    padding: 50px 100px;
    color: white;
    margin-bottom: 80px;
}

.projects h2 {
    color: white;
}

.project-btn {
    width: 37%;
    border-right: 2px solid transparent;
    background-clip: padding-box;
    border-image: linear-gradient(93.13deg, #FF9110 0%, #FF5C00 99.68%);
    border-image-slice: 1;
    margin-right: 80px;
}

.project_data {
    overflow-y: scroll;
    height: 298px;
    scrollbar-width: 20px;
}

.project_data::-webkit-scrollbar {
    width: 6px;
    border-radius: 3px;
}


.project_data::-webkit-scrollbar-thumb {
    background: linear-gradient(93.13deg, #FF9110 0%, #FF5C00 99.68%);
    border-radius: 3px;
}


.project-anchor a {
    background: #e67e22;
    color: white;
    padding: 8px 25px;
}

.details {
    padding: 15px;
}

.details p {
    font-size: 15px;
}

.details h6 {
    font-size: 15px;
    line-height: 28px;
    margin-top: 10px;
}

.policies {
    background-image: url("/assets/img/banner/principal\ desk.jpg");
}

.listTwo {
    display: none;
    transition: all 0.8s;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

/* ------------ commitee and policy page ------  */

.publication-content {
    margin-bottom: 25px;
}

.publication-content h2 {
    font-size: 21px;
    line-height: 28px;
    margin-bottom: 12px;
}

.publication-content ul li,
.publication-content p,
.publication-content h4 {
    font-family: Gotham;
    font-size: 16px;
    line-height: 30px;
    color: #4c4c4c;
    text-align: justify;
}

.publication-sec {
    background: #f6f7fb;
    margin: 0;
    padding: 80px 100px;
}


.showHide {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0;
}

.showHide button {
    font-size: 17px;
    font-family: Gotham;
    background: #e67e22;
    color: #fff;
    margin-top: 10px;
    padding: 4px 20px;
}

.showHide button:hover {
    background: linear-gradient(93.13deg, #FF9110 0%, #FF5C00 99.68%);
}

.researchContent {
    width: 32%;
    box-shadow: 0 0.350rem 0.500rem rgba(0, 0, 0, .095);
    padding: 25px;

    border-width: 1px;
    border-image: linear-gradient(93.13deg, #173956 0%, #00A6C1 99.68%);
    border-image-slice: 1;
}

.researchContent h4 {
    margin-top: 12px;
}

.studCouncil {
    margin-top: 25px;
}

.memberbtn button {
    background: transparent;
    color: #e67e22;
}

.memberbtn button:hover {
    background: transparent;
    color: #173956;
}

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

/* ------- STUDENT CELL navtabs ------  */

.tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.tabs h3 {
    background-color: #16A0AD;
    text-align: center;
    padding: 15px 0;
    cursor: pointer;
    font-weight: 600;
    color: white;
    font-size: 18px;
}

.tab-content {
    background-color: #f6f7fb;
    padding: 50px 40px;
}

.tab-content h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333333;
    font-weight: 600;
}

.tab-content ul li {
    font-family: Gotham;
    font-size: 16px;
    line-height: 32px;
}

.tab-content p {
    padding: 5px 10px;
}

.BookPublication-table {
    background: #16A0AD;
}

.committeeName {
    color: white;
}

.tab-content div {
    display: none;
}

.tab-content .active {
    display: block;
}

.tabs .active {
    background: #e67e22;
    color: white;
}

.capacityScheme {
    width: 48%;
}

.scheme-head {
    margin-bottom: 15px;
}

.scheme-head a {
    font-size: 17px;
}

.scheme-head a:hover {
    color: #e67e22;
}

/* ---- student corner page -----  */

.studentWelfareTable th {
    background: #16A0AD;
    color: white;
}

/* ---------- usefull links -----  */

.paper-set {
    background: #f6f7fb;
    text-align: start;
    padding: 30px;
    height: 345px;
}

.paperSet-btn {
    width: 6%;
}

.paper-set h2 {
    font-size: 17px;
    margin-bottom: 12px;
}

.paper-set a {
    font-size: 16px;
    line-height: 30px;
}

.myPaper {
    width: 100%;
}

.next-button,
.prev-button {
    background: linear-gradient(93.13deg, #FF9110 0%, #FF5C00 99.68%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.Dri-p h2 {
    font-size: 18px;
    padding-bottom: 25px;
}

.Dri-p a {
    padding: 8px 30px;
}

/* ------------ Contact us page -----------  */

.contactUs {
    width: 100%;
    height: 550px;
    display: flex;
    z-index: 1000;
    background: #fff;
}

.contactUs .contact-info {
    position: absolute;
    top: 40px;
    right: 0;
    width: 400px;
    height: calc(100% - 80px);
    background: #16A0AD;
    color: white;
    z-index: 1;
    padding: 40px;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.15);
}

.contactUs .contact-Form {
    position: absolute;
    padding: 70px 50px;

    /* padding-left: 300px;
    margin-left: 150px; */

    margin-right: 190px;
    padding-right: 300px;

    width: calc(100% - 150px);
    height: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.contact-info h2 {
    color: white;
    font-size: 19px;
    margin-bottom: 15px;
}

.contact-text2 {
    width: 48%;
}

.contact-text p {
    margin-bottom: 15px;
}

.contact-text i {
    margin-right: 25px;
    color: white;
}

.contact-text p {
    color: white !important;
    font-size: 16px;
}

.link-social i {
    margin-right: 15px;
    margin-top: 15px;
}

.contact-text2 input,
.contact-area textarea {
    border-bottom: 1px solid #ccc;
    font-size: 16px;
    width: 100%;
    padding-bottom: 10px;
    color: #333333 !important;
}

.contact-text2 input::placeholder,
.contact-area textarea::placeholder {
    color: #4c4c4c;
}


.contact-text2 input:focus,
.contact-area textarea {
    outline: none;
    box-shadow: none;
}

.map-contact {
    margin-bottom: 80px;
}

/* ----------- IQAC Page --------  */

.faqs-content {
    width: 47%;
}

.faqs-content>div h2 {
    font-size: 17px;
}

.faqs {
    max-width: 700px;
    margin-top: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f4f6f8;
    cursor: pointer;
}

.questions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.questions h4 {
    font-size: 16px;
    color: #333333;
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1.4s ease;
}

.answer p {
    font-family: Gotham;
    font-weight: 600;
    margin-top: 10px;
    font-size: 14px;
    line-height: 25px;
}

.answer ul li {
    font-family: Gotham;
    font-size: 15px;
    line-height: 28px;
    color: #4c4c4c;
}

.faqs.active .answer {
    max-height: 360px;
}

.faqs.active i {
    transform: rotate(180deg);
}

.fa-chevron-down {
    transition: transform .5s ease-in;
}

.meetingpdf a:hover {
    color: #e67e22;
}

/* -------- Event Details --------  */

.single-card {
    width: 75%;
}

.single-card img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

/* --- MUHS MANDATE page ---  */

.muhsInfo {
    border-right: 1px solid #d8d8d8;
    margin-right: 60px;
    padding-right: 60px;
}

.muhsInfo h2 {
    font-size: 17px;
    margin-bottom: 10px;
}

.muhsInfo a:hover {
    color: #e67e22;
}

/* -------- Student Gravience form page --------------  */

.gravience-form {
    width: 65%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    padding: 50px;

}

.gravience-text {
    margin-bottom: 30px;
    border-bottom: 1px solid #c9c2c2;
    padding-bottom: 10px;
}

.gravience-text input::placeholder,
.gravience-text select::placeholder,
.gravience-text textarea::placeholder {
    color: #4c4c4c;
    font-size: 15px;
}

.gravience-text input,
.gravience-text select,
.gravience-text textarea {
    padding-left: 5px;
    width: 100%;
}

.gravience-text input:focus,
.gravience-text select:focus,
.gravience-text textarea:focus {
    outline: none;
    border-bottom: 1px solid #173956;
}


/* --- naac-weblinks ----  */

.naac-table {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    padding: 15px;
}

.naac-table>tbody>tr>td {
    border: 1px solid #ddd;
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
}

.naac-table-head td {
    background-color: #16A0AD;
}

.naac-table-head td p {
    color: white;
    font-weight: 500;
}


/* -------- facilty-page --------  */

.facilityContainer {
    margin: 0 50px;
}

.facility-content p {
    font-size: 16px;
    line-height: 29px;
}

.facilityName h2 {
    font-size: 21px;
    margin-bottom: 2rem;
}

.facility-service h2 {
    font-size: 21px;
    color: #333333;
    margin-top: 25px;
    margin-bottom: 15px;
}

.facility-service h6 {
    font-family: Gotham;
    font-size: 16px;
    color: #4c4c4c;
    margin-bottom: 3px;
}


.facilitySlider {
    margin-top: 40px;
}

.facilitySlider .swiper-facility-next,
.facilitySlider .swiper-facility-prev {
    background: #16A0AD !important;
    color: white !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

:root {
    --swiper-navigation-size: 25px !important;
}


/* ----- pegination css ----  */

main {
    position: relative;
    min-height: calc(100vh - 4rem);
}

.hidden {
    display: none;
}

.pagination-container {
    width: calc(100% - 2rem);
    display: flex;
    align-items: center;
    /* position: absolute; */
    bottom: 0;
    padding-bottom: 1rem;
    justify-content: center;
}

.pagination-number,
.pagination-button {
    font-size: 16px;
    background-color: transparent;
    border: none;
    margin: 0.25rem 0.25rem;
    cursor: pointer;
    height: 2.2rem;
    width: 180px;
    border-radius: .2rem;
}

.pagination-number:hover,
.pagination-button:not(.disabled):hover {
    background: linear-gradient(93.13deg, #FF9110 0%, #FF5C00 99.68%);
    color: white;
}

.pagination-number.active {
    color: #fff;
    background: linear-gradient(93.13deg, #FF9110 0%, #FF5C00 99.68%);
}

/* -------- anti-ragging page -----  */

.anti-rag {
    margin: 80px 0;
}

.main-banner {
    display: block;
}

.mobile-view {
    display: none;
}


/* ---- Placememt page -----  */

.committie-main {
    margin: 20px 80px;
}



.placemMembers {
    width: 24%;
}

.placemMembers img {
    width: 100%;
    height: 306px;
}

.placemMembers h5 {
    text-align: center;
    font-size: 16px;
    margin-top: 6px;
}

.placemMembers span{
    color: #656565;
}
.placemObjList {
    width: 48%;
}

.placemObjList li {
    margin-bottom: 10px;
    line-height: 25px !important;
}