@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/* Custom css start */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f1f1f1;
    scroll-behavior: smooth;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #e4236a;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.container-fluid {
    padding-right: var(--bs-gutter-x, 2.75rem);
    padding-left: var(--bs-gutter-x, 2.75rem);
}
@media screen and (max-width:768px){
    .container-fluid {
        padding-right: var(--bs-gutter-x, .75rem);
        padding-left: var(--bs-gutter-x, .75rem);
    }
    .section-heading{
        font-size: 25px !important;
    }
}


.section-heading-2 {
    text-align: center;
    padding: 10px 0;
    font-size: 35px;
    font-weight: bold;
}

.section-heading {
    text-align: center;
    padding: 10px 0;
    font-size: 35px;
    font-weight: bold;
    position: relative;
    background-color: #e4236a;
    color: #fff;
    margin: 50px 0;
    transform: skewX(-20deg);
    text-transform: capitalize;

}
.main-btn {
    display: inline-block;
    border-radius: 50px;
    transition: all .4s ease-in-out;
    padding: 10px 27px;
    background-color: transparent;
    border: 2px solid #05548e;
    color: #05548e;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
}

.main-btn:hover {
    background-color: #123b77;
    color: #fff;
}

section {
    padding: 50px 0;
}




/* Header css */



.navbar {
    z-index: 99999;
    padding: 0rem;
}
.dropdown .dropdown-menu {
    border-radius: 0;
}


.header {
    background-color: #fff;
}




@media (min-width: 768px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0px;
        border-radius: 0;
        background-color: #e4236a;
        border: none;
        padding: 20px 0;
    }

    .dropdown:hover .dropdown-menu .dropdown-item {
        color: #fff;
        background-color: #e4236a;
        width: auto;
    }

    .dropdown:hover .dropdown-menu .dropdown-item:hover {
        text-decoration: underline;
    }

    .kd-on {
        border-width: 1px;
    }
}
li a {
    color: #000;
    text-decoration: none;
    /*padding: 9px 15px;*/
    padding: 9px 5px;
    font-size: 18px;
    font-weight: 500;
    
}

.drop-menu {
    background-color: #fff;
    width: 250px;
    top: 85px;
    line-height: 45px;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--primary-shadow);
    transition: all .3s ease;
}

.course-dropmenu {
    width: 350px;
}

.drop-menu li:hover .submenu {
    opacity: 1;
    visibility: visible;
}

.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    font-size: 16px;
    border-bottom:1px solid #bfbdb6;
}

li:hover .drop-menu {
    z-index: 9999;
    top: 100px;
    opacity: 1;
    visibility: visible;
    transition: all .3s ease;
}

header .submenu {
    background-color: #fff;
    width:100%;
    left: 100%;
    top: 0;
    line-height: 45px;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--primary-shadow);
    transition: all .3s ease;
}
.dropdown-menu {
    width: auto;
}

.dropdown-menu li a {
    color: #fff;
    padding-top: 10px !important;
    text-decoration: none;
}

.dropdown-menu li a i {
    margin-right: 15px;
}

.dropdown-toggle::after {
    vertical-align: 0.1em;
}


.header {
    display: flex;
    align-items: center;
}

.header .logo img{
    width: 400px;
}




.header-menu li {
    list-style: none;
    margin-right: 20px;
}

.header-menu li a {
    text-decoration: none;
    color: #e4236a;
    font-weight: 400;
    position: relative;
}
.header-menu li a::after{
    position: absolute;
    content: '';
    top: 2px;
    left: -10px;
    color: #ddd;
    height: 20px;
    width: 1px;
    background-color: #ddd;
}
.header-menu li a::after:nth-child(1){
    width: 0px !important;
}

.navbar {
    padding: 10px 0;
    background-color: #e4236a;
}

.navbar .navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.navbar .navbar-toggler {
    background-color: #fff;
    padding-top: 10px;
}

.navbar .navbar-nav li {
    margin: 0 15px;
}

.navbar .nav-link {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    transition: all 0 3s ease-in-out;
    padding: 0;
}

.navbar .nav-link.active {
    font-weight: 600;
}

/* header css  end*/



.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    display: block; /* Hide by default */
}

.dropdown-submenu:hover .dropdown-menu {
    display: none; /* Show on hover */
}

.dropdown-menu li {
    position: relative; /* Required for dropdowns */
}

.dropdown-item:hover {
    background-color: #e4236a; /* Change background on hover */
    color: #fff; /* Change text color on hover */
}



.main_wrapper {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 90vh;
    position: relative;
}

.main_wrapper .banner_content {
    padding-top: 150px;
    color: #fff;
}

.main_wrapper .banner_content h1 {
    font-size: 100px;
    text-transform: uppercase;
    line-height: 120px;
}

@media screen and (max-width:768px) {
    .main_wrapper .banner_content {
        padding-top: 50px;
    }

    .main_wrapper .banner_content h1 {
        font-size: 40px;
    }

    .main_wrapper .banner_content p {
        max-width: 100% !important;
    }

    .section-6 .card {
        height: auto !important;
    }
}

.main_wrapper .banner_content h6 {
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
}

.main_wrapper .banner_content p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 60%;
}

.main_wrapper .social_icons {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
}


.main_wrapper .social_icons .social_icon {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main_wrapper .social_icons .social_icon a {
    font-size: 16px;
    background-color: #fff;
    padding: 10px 20px;
    margin-bottom: 0px;
    transform: skew(-21deg);
    text-align: center;
    transition: 0.3s all ease-in-out;
}

.main_wrapper .social_icons .social_icon a>span {
    display: inline-block;
    transform: skew(21deg);
}

.main_wrapper .social_icons .social_icon a:hover {
    background-color: #e4236a;
    color: #fff;
}


/* flash news css start */
.flash-news {
    background-color: #e4236a;
}

.flash-news .head {
    width: 150px;
    background-color: red;
}

.flash-news .head span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    color: #fff;
    font-weight: 500;
}

.flash-news marquee {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flash-news marquee a {
    color: #fff;
    text-decoration: none;
    position: relative;
    margin: 20px;
}

.flash-news marquee a::after {
    position: absolute;
    content: '|';
    top: 0;
    right: -20px;
}
/* flash news css end */


/* section2 css start */
.section2 {
    padding: 20px;
}

.section2 .card {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.326);
    border: none;
    border-radius: 10px;
    transition: 0.5s all ease-out;
}

.section2 .card:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.326);
    transform: scale(1.01);
}

.section2 .card a {
    font-size: 25px;
    text-decoration: none;
    padding: 20px;
}

/* section2 css end */


/* section3 css start */
.section-3 .latest_news_box {
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.326);
    padding: 20px;
    height: 300px;
    overflow-y: scroll;
}

.section-3 .news .card {
    padding: 20px;
    height: 400px;
    overflow-y: scroll;
}

.section-3 .news li button {
    font-size: 18px;
    padding-bottom: 0;
    text-transform: capitalize;
}

.section-3 .tab-content {
    padding-top: 0px;
}

.section-3 .tab-content h3 {
    font-size: 18px;
}

.section-3 .nav-pills button{
    background-color: #05548e;
    color: #fff;
    padding: 0px 20px;
    height: 50px;
    margin-right: 10px;
}
.section-3 .nav-pills button.active{
    background-color: #e4236a;
}

.section-3 .swiper-slide img {
    border-radius: 10px;
}


/* section3 css end */



/* section4 css start */

.section-4 .about-sec h3 {
    font-size: 25px;
    text-transform: uppercase;
}

.section-4 .about-sec h3 small {
    font-size: 14px;
}

.section-4 .about-sec p {
    line-height: 1.6;
    font-size: 16px;
}

.section-4 .about-sec span {
    color: #e4236a !important;
    animation: blink 1s linear infinite;
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}


.section-4 .hightlights {
    position: relative;
    padding: 0px 20px;
}

.section-4 .hightlights::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    background-color: rgba(138, 138, 138, 0.354);
    top: 0;
    left: 0px;
}

.section-4 .hightlights::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    background-color: rgba(138, 138, 138, 0.354);
    top: 0;
    right: 0px;
}

.section-4 .hightlights h3 {
    font-size: 20px;
}

.section-4 ul {
    padding-left: 0px;
    list-style: none;

}

.section-4 ul li {
    margin: 10px 0;

}

.section-4 ul li a {
    text-decoration: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.section-4 .accordion button {
    background-color: #e4236a;
    border: none;
    color: #fff;
}

.section-4 .accordion button:focus {
    outline: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../images/minus-sign.png);
}

.accordion-button::after {
    background-image: url(../images/plus.png);
}


/* section-4 css end */



/* section-5 css start */

.section-5 .btn-links {
    display: flex;
    flex-wrap: wrap;

}

.section-5 .btn-links p {
    background-color: #e4236a;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 10px;
}

.section-5 .btn-links p a {
    text-decoration: none;
    color: #fff;
}


.section-6 .card {
    padding: 20px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.132);
    border-radius: 10px;
    height: 350px;
    border: none;
}

.section-6 .btec-department h5 {
    font-size: 22px;
    margin-bottom: 30px;
}

.section-6 .btec-department ul {
    list-style: none;
    padding-left: 0;
}

.section-6 .btec-department ul li {
    margin-bottom: 20px;
    font-size: 18px;
}

.section-6 .btec-department ul li i {
    margin-right: 20px;
}

.section-6 .boxes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
}

.section-6 .boxes .box {
    width: 200px;
    height: auto;
    padding: 10px;
    border: 1px solid #e4236a;
}

.departments .department {
    /* border: 1px solid #e4236a; */
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.132);
    cursor: pointer;
    transition: all 0 3s ease-in-out;
    height: 560px;
    background-color: #fff;
}

/* .departments .department:hover .department-img{
    transform: scale(1.05);
    overflow: hidden;
} */
.departments .department .department-img {
    margin-bottom: 20px;
    /*border-bottom:0.5px solid #aaaaaa;*/
}

.departments .department .department-img img {
    border-radius: 10px;
}
.departments .department .department-details{
    height:170px;
}
.departments .department .department-name h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.departments .department a {
    color: #e4236a;
    text-decoration: none;
    display: flex;
    justify-content: end;
    margin: 10px 0;
}



.activities .swiper .card {
    padding: 20px;
    height: 600px;
    border-radius: 10px;
    border: none;
    
}

.activities .activity-img {
    margin-bottom: 10px;
}

.activities .activity-img img {
    width: 150px;
}

.activities .activity-name {
    margin-bottom: 10px;
}

.activities .activity-name h3 {
    font-size: 20px;
}

.activities .activity-details p {
    font-size: 15px;
}


.collaborations .collabration-img {
    margin-bottom: 20px;
    height:40%;
}

.collaborations .collabration-name h6 {
    font-size: 20px;
    margin-bottom: 10px;
}

.collaborations .collabration-details {
    height: 100px;
}

.collaborations a {
    color: #e4236a;
    text-decoration: none;
    margin: 10px 0;
}
.collaborations .card {
    border: none;
}


.professional-body img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-top: 20px;
    margin-bottom: 30px;
    background-color: #FFF;
    padding: 10px;
    border-radius: 50px;
}

.professional-body .prof-img {
    /* width: 250px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center; */
    margin-bottom: 20px;
}

.professional-body .prof-body-name h6 {
    font-size: 20px;
}





footer {
    background-color: #e4236a;
    padding: 50px 0px;
}

footer hr {
    overflow: visible; /* For IE */
    /* height: 30px; */
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.468);
    border-width: 1px 0 0 0;
    border-radius: 20px;
    width: 70%;
    margin: 10px 0;
    
}
footer hr::after{
    display: block;
    content: "";
    height: 5px;
    width: 5px;
    margin-top: -3px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.468);
    background-color: rgba(255, 255, 255, 0.468);
    border-width: 2px;
    border-radius: 20px;
}
footer hr::before{
    display: block;
    content: "";
    height: 5px;
    width: 5px;
    margin-top: -3px;
    float: right;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.468);
    background-color: rgba(255, 255, 255, 0.468);
    border-width: 2px;
    border-radius: 20px;
}


footer h6 {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-top:0px ;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin: 5px 0;
}

footer ul li a {
    display: flex;
    align-items: flex-start;
    font-size: 15px;
}

footer ul li a i {
    font-size: 12px !important;
    margin-right: 5px;
    margin-top: 5px;
}

footer a {
    font-size: 14px;
    margin-right: 20px;
    color: #adbac2;
    text-decoration: none;
    /* position: relative; */
}

footer a:hover {
    color: #fff;
    text-decoration: none;
}

/* footer a::after{
    position: absolute;
    content: "/";
    top: 0;
    right: -10px;
} */


.activities .swiper,
.collaborations .swiper,
.professional-body .swiper {
    padding-bottom: 70px;
}

.mobile-header-menu {
    display: none !important;
}

@media screen and (max-width:768px) {
    .header .header-menu {
        display: none !important;
    }

    .navbar .nav-item a {
        margin: 10px 0;
        margin-left: -12px;
        font-size: 16px;
    }

    .section-4 .hightlights::after,
    .section-4 .hightlights::before {
        display: none;
    }

    .section-4 {
        overflow: hidden !important;
    }

    .dropdown .dropdown-menu {
        margin-left: -12px;
        width: 350px;
        overflow: hidden;
    }

    .dropdown .dropdown-menu .dropdown-item {
        color: #e4236a;
    }

    .mobile-header-menu {
        display: block !important;
        list-style: none;
        padding-left: 0;
    }

    .mobile-header-menu li {
        margin-top: 10px;
    }

    .mobile-header-menu li a {
        text-decoration: none;
        color: #fff;
    }

    .main_wrapper .social_icons {
        transform: translateY(-50%);
        right: 20%;
    }
}



.breadcrumb a{
    color: #e4236a;
    text-decoration: none;
}

.department-single .sidebar{
    width: 300px;   
    background-color: #e4236a;
    height: auto;
    padding: 0;
    list-style: none;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.132);
}
.sidebar a{
    text-decoration: none;
}
.sidebar li .about_menu_item{
    position: relative;
}
.sidebar li .about_menu_item::before{
    position: absolute;
    content: '>';
    top: 10px;
    left: 3px;
    color: #fff;
}

.sidebar li a h4{
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.2s ease;
    margin: 0;
    color: #fff;
}
.sidebar hr{
    color: #fff;
    width: 100%;
    margin: 0 auto;
}
.sidebar li a h4.active,
.sidebar li a h4:hover{
    background-color: #e4236a;
    color: #fff;
}
.sidebar li a h4.active.about_menu_item::before,
.sidebar li a h4:hover.about_menu_item::before{
    color: #fff !important;
}


.department-single .show_section {
    display: block;
}
.department-single  .hide_section{
    display: none;
}   


.department-single .submenu{
    list-style: none;
    padding-left: 25px;
    margin-top: 0;
    padding-top: 0;
}
.department-single .submenu li h4{
    font-size: 14px !important;
}
.department-single .department-bulletin .accordion-item{
    border: none;
    margin-bottom: 15px;
}
.department-single .department-bulletin .accordion-button::after{
    display: none;
}
.department-single .department-bulletin .accordion-button{
    background:#e4236a;
    color: #fff;
    padding: 0px;
    font-size: 14px;
}
.department-single .department-bulletin .accordion-button:focus{
    outline: none;
    box-shadow: none;
}
.department-single .department-bulletin .accordion-body{
    background-color: #e4236a;
    padding: 5px;
}
.department-single .department-bulletin .accordion-body a{
    color: #fff;
    margin-right: 10px;
    font-size: 14px;
}

.department-single .submenu .month{
    display: flex;
    flex-wrap: wrap;
}
.department-single .submenu h6{
    padding: 0px 10px;
    margin: 10px 0;
    color: #fff;
}
.department-single .main-wrapper .nav-tabs .nav-item button{
    font-size: 14px;
    color: #e4236a;
    font-weight: 500;
}
@media screen and (max-width:600px){
    .department-single .main-wrapper .nav-tabs .nav-item button{
        font-size: 14px;
        padding: 10px;
    }
}
.department-single .main-wrapper .card {
    background-color: #efefef;
    padding: 10px;
}
.department-single .nav-tabs .nav-link{
    text-transform: uppercase !important;
    padding: 20px;
    border-radius: 0;
    border: none;
}
.department-single .tab-content{
    background-color: #fff !important;
    padding: 20px;
}
.department-single .tab-content p{
    font-size: 16px;
}
.department-single .tab-content h3{
    font-size: 18px;
    margin-bottom: 15px;
}
.department-single .tab-content ul{
    padding-left: 20px;
    list-style: disc;
}
.department-single .tab-content ul li{
    margin: 10px 0;
}

.department-single  .programs-sec h3{
    font-size: 22px;
    margin-bottom: 20px;
    text-transform: capitalize;
    
}
p{
    font-size: 16px;
    line-height: 2;
}
.department-single  .programs-sec .card{
    border: none;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.132);
    padding: 20px;
    background-color: #fff;
    
}
.department-single  .programs-sec .card h3{
    font-size: 18px;
    margin-bottom: 10px;
    border:3px solid #e4236a;
    width:100px;
    height:100px;
    border-radius:50%;
    padding:0px;
    display:flex;
    align-items:center;
    justify-content:center;
    align-self:center;
    text-align:center;
    font-weight:600;
}
.department-single  .programs-sec .card h3 p{
    font-weight:400;
}
.department-single .main-wrapper .lab-sec a{
    text-decoration: none;
}
.department-single .main-wrapper .lab-sec h3{
    font-size: 22px;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.department-single .main-wrapper .lab-sec .lab-box{
    background-color: #e4236a;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    text-align: center;
}
.department-single .main-wrapper .lab-sec .lab-box h3{
    font-size: 16px;
    color: #fff;
    text-transform: capitalize;
    line-height: 22px;
}


.department-banner{
    background-color: #e4236a4f;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.department-banner img{
    height:100%;
}
.department-banner h1{
    color: #fff;
}


.department-single .faculty-section .faculty-card{
    padding: 10px;
    display: flex;
    gap: 30px;
    background-color: #fff;
    cursor: pointer;
}
.department-single .faculty-section .faculty-card:hover{
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.104);
}
.department-single .faculty-section .faculty-card .faculty-img{
    width: 120px;
    height: 150px;
}
.department-single .faculty-section .faculty-card .faculty-img img{
    width: 100%;
    height: 100%;
}
.department-single .faculty-section .faculty-card .faculty-name{
    font-size: 20px;
    margin-bottom: 5px;
}
.department-single .faculty-section .faculty-card .faculty-designation{
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 300;
    margin-bottom: 20px;
}
.department-single .faculty-section .faculty-card .more-view-btn{
    display: block;
    background-color: #e4236a;
    color: #fff;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}


.department-single .image-desc-sec .box{
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.104);
}
.department-single .image-desc-sec .img-box{
    margin-bottom: 20px;
    text-align: center;
}
.department-single .image-desc-sec .description{
    text-align: center;
}

.department-single .commitee-sec h3.mb-3{
    font-size: 22px;
    margin-bottom: 10px;
}
.department-single .commitee-sec table{
    margin-bottom: 50px;
}


/* about page css */

.about_wrapper{
    padding: 50px 0;
    height: 100vh;
}
.about_wrapper .principal_message .principal_message_box{
    margin-bottom: 25px;
}
.about_wrapper .principal_message .principal_name{
    font-size: 25px;
    margin-bottom: 15px;
    font-weight: 500;
}

.about_wrapper .principal_img_box{
    background-color: #e6e6e6;
    text-align: center;
    padding:50px 25px;
    height: 100%;
}
.about_wrapper .principal_img_box img{
    max-width: 400px;
}




.faculty-details-page .nav{
    width: 250px;
}
.faculty-details-page .nav button{
    text-align: start;
}



.aboutcontent_section{
    padding-top: 100px;
}
.aboutcontent_section .profile_wrapper{
    padding-bottom: 100px;
}
.aboutcontent_section .profile_wrapper ul{
    list-style: disc;
    padding-left: 20px;
}
.aboutcontent_section .profile_wrapper li{
    margin-bottom: 15px;
}

.aboutcontent_section .mission_vision_wrapper{
    background: url(../images/about/1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
    background-attachment: fixed;
}
.aboutcontent_section .mission_vision_wrapper .box{
    background-color: #e6e6e6;
    width: 50%;
    height: 100%;
    padding: 50px;
}

.aboutcontent_section .objective_wrapper{
    background: url(../images/about/2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
    background-attachment: fixed;
}
.aboutcontent_section .objective_wrapper .box{
    background-color: #e6e6e6;
    width: 50%;
    height: 100%;
    padding: 50px;
    float: right;
}

.aboutcontent_section .group_system{
    background: url(../images/about/3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
    background-attachment: fixed;
}
.aboutcontent_section .group_system .box{
    background-color: #e6e6e6;
    width: 50%;
    height: 100%;
    padding: 50px;
}

.aboutcontent_section .tution_fee{
    background: url(../images/about/1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
    background-attachment: fixed;
}
.aboutcontent_section .tution_fee .box{
    background-color: #e6e6e6;
    width: 50%;
    height: 100%;
    padding: 50px;
    float: right;
}






.administration_wrapper{
    padding: 100px 0;
}
.administration_wrapper .nav{
    background-color: #05548e;
    color: #fff;
}
.administration_wrapper .nav .nav-link{
    background-color: #123b77;
    color: #fff;
    text-align: start;
    padding: 7px 20px;
}
.administration_wrapper .nav .nav-link.active{
    background-color: #05548e;
}

.administration_wrapper .tab-content .box{
    display: flex;
    gap: 50px;
    margin-bottom: 100px;
}
.administration_wrapper .tab-content .box img{
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 3px 0 rgba(138, 138, 138, 0.354);
}

.administration_wrapper .tab-content ul{
    padding-left: 20px;
    list-style: square;
}
.administration_wrapper .tab-content ul li{
    font-size: 18px;
    margin-bottom: 20px;
}







.facility_wrapper{
    padding-top: 0px;
    padding-bottom:100px;
}
.facility_wrapper .nav{
    background-color: #05548e;
    color: #fff;
    position: -webkit-sticky;
    position: sticky;
    top: 50px;
}
.facility_wrapper .nav .nav-link{
    background-color: #123b77;
    color: #fff;
    text-align: start;
    padding: 7px 20px;
}
.facility_wrapper .nav .nav-link.active{
    background-color: #05548e;
}
.facility_wrapper table{
    margin-top: 50px;
}
.facility_wrapper table a{
    color: #123b77;
}
.facility_wrapper table td{
    padding: 20px 10px;
}
.facility_wrapper .tab-content ul{
    padding-left: 20px;
    list-style: square;
}
.facility_wrapper .tab-content ul li{
    font-size: 18px;
    margin-bottom: 20px;
}
.facility_wrapper .section{
    padding:50px 0;
}
.facility_wrapper input{
    height:50px;
}
.facility_wrapper input:focus{
    outline:none;
    box-shadow:none;
}
.facility_wrapper li{
    margin-bottom:15px;
}
.facility_wrapper p{
    margin-bottom:0px;
}
.facility_wrapper .category{
    min-height:100vh !important;
}




.commitee_wrapper table th,
.commitee_wrapper table td{
    padding: 15px;
}
.commitee_wrapper table th{
    background-color: #05558e35;
}


.commitee_wrapper{
    padding: 100px 0;
}
.commitee_wrapper .nav{
    background-color: #05548e;
    color: #fff;
}
.commitee_wrapper .nav .nav-link{
    background-color: #123b77;
    color: #fff;
    text-align: start;
    padding: 7px 20px;
}
.commitee_wrapper .nav .nav-link.active{
    background-color: #05548e;
}

.commitee_wrapper table a{
    color: #123b77;
}
.commitee_wrapper table td{
    padding: 20px 10px;
}










.contact_wrapper{
    padding-top: 100px;
    padding-bottom: 0;
}
.contact_wrapper .card{
    padding: 30px;
    border: none;
}
.contact_wrapper .card .card {
     border: 1px solid #123b77; 
    padding: 30px;
}
.contact_wrapper .card h3{
    margin-top: 10px;
    margin-bottom: 50px;
    position: relative;
}
.contact_wrapper .card h3::after{
    position: absolute;
    content: '';
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 2px;
    background-color: #05548e;
}
.contact_wrapper .card input{
    margin-bottom: 20px;
    height: 50px;
}
.contact_wrapper .card textarea{
    margin-bottom: 20px;
}
.contact_wrapper .card input:focus,
.contact_wrapper .card textarea:focus{
    outline: none;
    box-shadow: none;
}


.contact_wrapper .card .main-btn{
    border-radius: 0 !important;
    height: 50px;
    background-color: #123b77;
    color: #fff;
    border: none;
    width: 200px;
}

.contact_wrapper .address_box{
    padding: 10px;
}
.contact_wrapper .address_box h6{
    font-size: 20px;
   
}

.contact_wrapper .address_box p{
    margin-bottom: 0;
    font-weight: 400;
}
.contact_wrapper .address_box .address{
    margin-bottom: 30px;
 
}
.contact_wrapper .address_box p strong{
    font-weight: 700;
}
.contact_wrapper iframe{
    margin-top: 50px;
}

/*.sticky-sidebar{*/
/*    border: 1px solid #ddd;*/
/*  width: 24%;*/
/*  background-color: white;*/
/*  float: left;*/
/*  border: 2px solid #c00;*/
/*  margin-right: 5px;*/
/*  min-height: 50px;*/
/*  position: fixed;*/
/*}*/
/*.data-content{*/
/*    max-height: 1000px;*/
/*  width: 69%;*/
/*  margin-right: 5px;*/
/*  overflow: scroll;*/
/*  float:right;*/
/*}*/
/*.facility-side{*/
/*    display:grid;*/
    
/*}*/



.Div1 {
  position: sticky;
  top:0px;
  background-color: #f7f7f7;
  padding:20px;
  color:#fff;
  margin-bottom:30px;
  /*z-index:99999;*/
}
.Div1 a{
   color:#000;
   margin-right:20px;
}

/*.Div2 {*/
/*  min-height: 1000px;*/
/*  width: 69%;*/
/*  margin-right: 5px;*/
/*  overflow: scroll;*/
/*  background-color: green;*/
/*  position: absolute;*/
/*  left: 28.5%;*/
/*}*/

/*.Div3 {*/
/*  border: 1px solid #ddd;*/
/*  width: 24%;*/
/*  background-color: white;*/
/*  border: 2px solid #c00;*/
/*  min-height: 50px;*/
/*  position: fixed;*/
/*  right: 0px;*/
/*}*/



.academics_wrapper{
    padding: 30px 0;
}
.academics_wrapper .boxes{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.academics_wrapper .accordion button{
    background-color: #05548e;
    color: #fff;
}
.academics_wrapper .accordion button:focus{
    outline: none;
    box-shadow: none;
}
.accordion-item:last-of-type .accordion-collapse{
    padding: 20px;
}
.academics_wrapper .nav-pills .nav-link{
    font-size: 14px;
    text-align: start;
    margin-bottom: 10px;
}
.academics_wrapper .nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    background-color: #e4236a;
}


.academics_wrapper h4{
    font-size: 18px;
    margin-bottom: 50px;
    text-align: center;
}
.academics_wrapper .ucity-logo{
    width: 200px;
    margin-bottom: 30px;
}








.placement_wrapper{
    padding: 100px 0;
}
.placement_wrapper .items{
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}
.placement_wrapper .items .icon{
    font-size: 40px;
    margin-bottom: 15px;
}
.placement_wrapper .vision-mission{
    border: 1px solid #ddd;
    padding: 20px;
}
.placement_wrapper .vision-mission .nav-item button{
    background-color: transparent;
    border-radius: 0;
    padding: 10px 30px;
    text-transform: capitalize;
    color: #000;
}
.placement_wrapper .vision-mission .nav-item.active{
    border-color:transparent !important ;
}

.placement_wrapper .vision-mission .tab-pane{
    padding: 20px;

}
.placement_wrapper .vision-mission .tab-pane ul{
    list-style:disc;
    padding-left: 0px;
}
.placement_wrapper .vision-mission .tab-pane ul li{
    margin-bottom: 10px;
}
.placement_wrapper .text-center{
    margin: 30px 0;
}
.placement_wrapper li{
    margin-bottom: 15px;
}


div#principal p {
    text-align: justify;
}

