.down .table-head {
    background-color: #14263A;
    color: #fff;
}

.down td {
    text-align: center;
    padding: 10px;
}

.pdf_th {
    text-align: center;

}

.down th {
    padding: 10px;
}





.course {
    text-align: left !important;
}

.acc-head {
    background-color: #14263A;
    color: white;
    margin: 0;
    padding: 10px 20px;
}

.table-text {
    padding: 4px 0 4px 10px;
}

.acc-heading {
    font-weight: 700;
    color: #e0e0e0;
    font-size: 20px;
    margin: 0;
    padding: 0;
}

.table-heading {
    padding: 6px 4px;
}

.table-head {
    background-color: #000000;
    color: #fff;
}





.fac-card {
    width: 100%;

    box-shadow: 0 0 10px 1px grey;
    border-radius: 20px;
    background-color: #112835;
    color: #fff;
}

.fac-img {
    width: 100%;
    border-radius: 20px;
}

.fac-name {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.fac-desg {
    font-size: 16px;
    font-weight: 400;
    color: #e6e6e6;
    padding-bottom: 8px;
    margin: 0;
}




.facility_row {
    overflow: hidden;
    border: 1px solid #b51104;
    border-radius: 25px 2px 2px 2px;
    box-shadow: rgba(67, 63, 60, 0.3) 0px 1px 2px 0px, rgba(209, 90, 43, 0.15) 0px 1px 3px 1px;
}

.center_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* participation */
:root {
    --brand-green: #b51104;
    --brand-yellow: #ffcc00;
}


.event_gallery .sidebar-header-green {
    background-color: #b51104;
    color: white;
}

.event_gallery .main-feature-card {
    position: relative;
    border-top: 5px solid var(--brand-green);
    border-bottom: 5px solid var(--brand-yellow);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.event_gallery .main-feature-card:hover {

    box-shadow: 15px 15px 0px var(--brand-yellow),
        -5px -5px 20px rgba(45, 90, 39, 0.2);
    transform: translateY(-8px);
}


.event_gallery .event-row {
    position: relative;
    background: #fff;
    padding: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    z-index: 1;

    outline: 2px solid transparent;
    transition: all 0.3s ease;
}


.event_gallery .event-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border: 2px solid transparent;
    z-index: -1;
}


.event_gallery .zigzag-line {
    width: 0;
    height: 6px;
    background: repeating-linear-gradient(45deg, var(--brand-yellow), var(--brand-yellow) 5px, transparent 5px, transparent 10px);
    transition: width 0.8s ease-in-out;
}

.event_gallery .main-feature-card:hover .zigzag-line {
    width: 80px;

}


:root {
    --brand-green: #b51104;
    --brand-yellow: #ffcc00;
}


.event_gallery .sidebar-container {
    padding: 10px;
    background: #f9f9f9;
    max-height: 500px;
    overflow-y: auto;
    background-color: #ffcc00;
}


.event_gallery .event-item-horizontal {
    background: #ffffff;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;


    border-bottom: 2px solid #eee;


    transition: all 0.3s ease-in-out;
    position: relative;
}


.event_gallery .event-img-wrapper img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid #ddd;
}


.event_gallery .event-content {
    padding-left: 15px;
}

.ellipsis-1-lines {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



.event_gallery .event-item-horizontal:hover {

    border: 2px solid var(--brand-green);


    box-shadow: 6px 6px 0px var(--brand-yellow);


    transform: translateX(8px);


    background-color: #fff;
}


.event_gallery .event-item-horizontal:hover .event-title {
    color: var(--brand-green);
}

/* end participation */





/****************** card department ************************/
.academic-card {
    position: relative;
    overflow: hidden;
}

.academic-card img {
    transition: transform 0.5s ease;
    display: block;
}


.academic-card:hover img {
    transform: scale(1.1);
}


.academic-card:hover .academic-cover {
    background: rgba(0, 0, 0, 0.7);
    transition: 0.3s;
}

.two-line-ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.acc .academic-name {
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/****************** card department ************************/




/********************* admission form *********************************/

.admissionfr .form-card {
    background: white;
    border-top: 5px solid #b51104;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 1100px;
    margin: auto;
    padding: 35px;
    animation: slideIn 0.8s ease-out;

}


.admissionfr .section-title {
    background-color: #f1f3f5;
    color: #b51104;
    padding: 12px 18px;
    font-weight: bold;
    margin-bottom: 25px;
    border-left: 4px solid #b51104;
    transition: all 0.3s;
}


.admissionfr .form-control,
.form-select {
    border-radius: 4px;
    background-color: #fafafa;
    border: 1px solid #ced4da;
    transition: all 0.3s ease-in-out;
}


.admissionfr .form-control:focus,
.form-select:focus {
    background-color: #fff;
    border-color: #b51104;
    box-shadow: 0 0 0 0.25rem rgba(26, 35, 126, 0.15);
    transform: translateY(-2px);

}


.admissionfr .table-responsive {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}


.admissionfr .btn-submit {
    background: linear-gradient(45deg, #b51104, #dad72a);
    color: white;
    padding: 12px 60px;
    border-radius: 50px;

    border: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.admissionfr .btn-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.4);
    background: linear-gradient(45deg, #3949ab, #b51104);
    color: white;
}


@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.admissionfr .border-line {
    height: 4px;
    background: linear-gradient(to right, #d93025 75%, #b51104 25%);
    margin: 30px 0;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.admissionfr .border-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50px;
    background: rgba(255, 255, 255, 0.3);
    animation: shimmer 2s infinite linear;
}

@keyframes shimmer {
    0% {
        left: -50px;
    }

    100% {
        left: 100%;
    }
}

.admissionfr .admission_row .col-md-4 {
    margin-top: 12px;
}

.admissionfr .admission_row label {
    margin-bottom: 3px;
}

.admissionfr .table-custom {
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.admissionfr .table-custom thead th {
    background-color: #f8f9fa;
    color: #b51104;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #dee2e6;
}


@media (max-width: 768px) {
    .admissionfr .table-responsive-stack thead {
        display: none;

    }

    .admissionfr .table-responsive-stack tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        background: #fff;
        padding: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .admissionfr .table-responsive-stack td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: none !important;
        padding: 8px 5px;
        text-align: right;
    }


    .admissionfr .table-responsive-stack td::before {
        content: attr(data-label);
        font-weight: bold;
        text-align: left;
        font-size: 0.8rem;
        color: #555;
        flex: 1;
    }

    .admissionfr .table-responsive-stack td input {
        flex: 2;
        max-width: 70%;
    }

    .admissionfr .table-responsive-stack td:first-child {
        background-color: #f1f3f5;
        justify-content: center;
        font-size: 1rem;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .admissionfr .table-responsive-stack td:first-child::before {
        content: "";

    }
}

/******************* end admission form ************************************/








/* department */
.academic-link {
    text-decoration: none !important;
    display: block;
}

.academic-cards {
    background: #1a2b3c;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


.academic-cards:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.img-containers {
    overflow: hidden;
}

.academic-cards img {
    width: 100%;
    height: auto;
    display: block;
}


.academic-card-bodys {
    padding: 10px 10px;
    text-align: center;
}

.academic-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    margin: 0;
    font-family: sans-serif;
}

/* end department */


.t-active {
    animation: colorChange 2s infinite;
}

@keyframes colorChange {

    0%,
    100% {
        color: blue;
    }

    50% {
        color: green;
    }
}

/* course */
.course-card-wrapper {
    position: relative;
    padding: 4px;
    border-radius: 20px;
    overflow: hidden;
    background: #f8f9fa;
    display: inline-block;
    width: 100%;
}

.course-card {
    border-radius: 16px !important;
    overflow: hidden;
    border: 1px solid gainsboro !important;
    z-index: 2;
}

.btn-cl {
    background-color: #b51104;
    color: white;
}

.course_name {
    color: #b51104;
}


.course-card-wrapper::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(transparent, #b51104, #e9db13, transparent 30%);
    top: -25%;
    left: -25%;
    animation: rotateBorder 4s linear infinite;
    z-index: 1;
}

@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.course-card:hover {
    transform: scale(1.01);
    transition: transform 0.3s ease;
}

.text-orange {
    color: #b51104;
}



@media (max-width: 768px) {
    .course-card-wrapper {
        border-radius: 12px;
    }
}

/* end course */

/* Media Gallery */
.media_gallery-link {
    position: relative;
    display: block;

    padding: 12px;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    border: 1px solid #ffc107;
    animation: floatTop 3s infinite ease-in-out;
}


.media_gallery-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    border-top: 4px solid #ffc107;
    border-left: 4px solid #ffc107;
    transition: 0.4s;
}


.media_gallery-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25px;
    height: 25px;
    border-bottom: 4px solid #b51104;
    border-right: 4px solid #b51104;
    transition: 0.4s;
}


.media_gallery-link:hover {
    transform: scale(1.05);

}

.media_gallerys_pic img {
    transition: transform 0.3s ease-in-out;
}


.media_gallerys_pic:hover img {
    transform: scale(1.1);
}

.media_gallery-link img {
    display: block;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@keyframes floatTop {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* End Media Gallery */
/* ------------------------------add css ----------------------------------------------*/


.gallery-img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}


.bg-cust-dark {
    background-color: #efefef;
    padding: 30px 0;
}

.yellow-line {
    margin: 6px 0 10px;
    background-color: #C5A448;
    border-radius: 30px;
    width: 100px;
    height: 4px;
}

html {
    height: 100%;
    width: 100%;
}

body {
    height: 100%;
    width: 100%;
    background-color: #FEFAEF;
    overflow-x: hidden;
}

a:hover {
    text-decoration: none;
}

.all-top {
    width: 100%;
    height: 60px;
}

.topbar {
    width: 100%;
    background-color: #16433E;
    padding: 3px 0;
    margin: 0;
}

.topbar-text {
    font-family: 'Saira', sans-serif;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    padding: 0;
    margin: 0;
}

.navbar-light-bg {
    width: 100%;
    background-color: #FEFAEF;
}

.navbar-custom {
    width: 100%;
    background-color: #FEFAEF;
    padding: 10px 0;
}

.custom-navbar-logo {
    width: 300px;
}

.nav-text {
    font-family: 'Saira', sans-serif;
    color: black;
    font-weight: 500;
    font-size: 15px;
    padding: 4px 8px;
    border: none;
}

.nav-text-active {
    font-weight: 600;
    color: #16433E;
}

.nav-text:hover {
    color: #16433E;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
}

#nav-button {
    color: black;
}

.nav-adjust {
    width: 100%;
    background-color: transparent;
    height: 135px;
}

.footer-head {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 0;
    margin: 0;
    margin-top: 20px;
}

.footer-text {
    color: rgb(215, 214, 214);
    font-weight: 400;
    font-size: 14px;
    margin: 0;
    padding-bottom: 6px;
}

.page-name-body {
    width: 100%;
    animation: bganimation 5s infinite;
    transition: ease-in-out;
}

.page-name {
    font-family: 'Saira', sans-serif;
    color: white;
    font-size: 28px;
    font-weight: 700;
    padding: 10px 0;
    margin: 0;
}

.page-nav {
    font-family: 'Saira', sans-serif;
    margin: 0 0 15px;
    padding: 6px 0 10px;
    font-weight: 600;
    font-size: 16px;
}

.page-nav-text {
    color: #333;
}

.page-nav-active {
    color: #114a2a;
}

.side-bar {
    padding: 0;
    background-color: #fff;
    height: 100%;
}

.sidebar-item {
    color: black;
    font-size: 13px;
    font-weight: 600;
    background-color: transparent;
    padding: 6px 6px 6px 6%;
}

.sidebar-item-active {
    /* background: linear-gradient(to right,  #FED100 4%,#FED100 4%,#0b9247 4%,#0b9247 100%); */
    background-color: #a88628;
    color: white;
}

.sidebar-item:hover {
    background-color: #c2b07c;
    color: white;
}

.acc-img1 {
    margin-bottom: 0;
    width: 100%;
    margin-top: 20px;
}

.sidebar-text {
    color: #000;
    font-family: 'Saira', sans-serif;
    padding: 0;
    margin: 0;
}

.sidebar-item:hover .sidebar-text {
    color: #fff;
}

.sidebar-item-active .sidebar-text {
    color: #fff;
}

.pages-head-img {
    height: 300px;
}

.pages-head-img-large {
    height: 400px;
}

.float-button {
    position: fixed;
    right: 0;
    top: 150px;
    background-color: #FED100;
    padding: 30px 20px 30px 20px;
    z-index: 10;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}

.float-button-text {
    padding: 0;
    margin: 0;
    font-size: 20px;
    color: #000;
    font-weight: 600;
    writing-mode: tb-rl;
    transform: rotate(-180deg);
}

.dept-event-page-head {
    font-weight: 700;
    font-size: 20px;
    color: black;
    padding: 0;
    margin: 0;
}

.dept-event-page-text {
    font-size: 16px;
    font-weight: 400;
    padding: 0;
    margin: 10px 0 20px;
    color: #556776;
}

.footer-naac-grade-img {
    margin: 0;
    width: 100%
}

.page-end-blank {
    height: 50px;
    background-color: #FEFAEF;
}

@keyframes bganimation {
    0% {
        background-color: #16433E;
    }

    50% {
        background-color: #16432c
    }

    100% {
        background-color: #16433E;
    }
}

@media (min-width: 1200px) {
    .logo {
        display: none;
    }
}


@media only screen and (max-width: 767px) {
    .footer-naac-grade-img {
        margin: 0 20%;
        width: 60%
    }

    .nav-adjust {
        height: 120px;
    }

    .btn_responsive {
        font-size: 14px !important
    }
}

@media only screen and (max-width: 576px) {
    .btn_responsive {
        font-size: 12px !important
    }

    .float-button {
        padding: 10px 10px 10px 10px;
    }

    .custom-navbar-logo {
        width: 25%;
    }

    .custom-navbar-logo:hover {
        width: 25%;
    }

    .topbar {
        padding-bottom: 5px;
    }

    .topbar-text {
        font-size: 10px;
    }

    .navbar-custom {
        padding: 10px 0;
    }

    .nav-text {
        font-weight: 500;
        font-size: 14px;
    }

    .nav-adjust {
        height: 85px;
    }

    .side-bar {
        height: 100%;
    }

    .page-name {
        font-family: 'Saira', sans-serif;
        color: white;
        font-size: 18px;
        font-weight: 700;
        padding: 8px 0;
        margin: 0;
    }

    .page-nav {
        font-family: 'Saira', sans-serif;
        margin: 0 0 15px;
        padding: 6px 0 10px;
        font-weight: 600;
        font-size: 12px;
        /* white-space: nowrap; */
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .pages-head-img-large,
    .pages-head-img {
        height: 150px;
    }

    .dept-event-page-head {
        font-weight: 700;
        font-size: 12px;
        color: black;
        padding: 0;
        margin: 0;
    }

    .dept-event-page-text {
        font-size: 10px;
        font-weight: 400;
        padding: 0;
        margin: 10px 0 20px;
    }

    .footer-naac-grade-img {
        margin: 0;
        width: 100%
    }
}

#admission-capsule {
    z-index: 3;
    position: fixed;
    top: 30%;
    right: 0;
    padding: 15px 10px 15px 20px;
    background-color: #170496;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

#admission-capsule span {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    line-height: 100%;
}

#admission-capsule:hover {
    color: #fff;
    transform: scale(1.02, 1.02);
    box-shadow: 0 0 1px 1px grey;
}

@media only screen and (max-width: 576px) {
    #admission-capsule {
        padding: 12px 8px 12px 15px;
        font-size: 13px;
    }



    .h1,
    h1 {
        font-size: 2.5rem
    }

    .h2,
    h2 {
        font-size: 1.6rem
    }

    .h3,
    h3 {
        font-size: 1.20rem
    }

    .h4,
    h4 {
        font-size: 1.2rem
    }

    .h5,
    h5 {
        font-size: 1rem
    }

    .h6,
    h6 {
        font-size: 1rem
    }




}

.footer-div {
    background-color: #091b19;
    padding: 0px 0;
}

.resplayer-footer {
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 60%;
}

.resplayer-footer iframe {
    width: 100%;
    height: 100%;
    position: absolute;
}

.footer-contact-text {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    padding: 0;
    margin: 10px 0;
}

.footer-socials {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.footer-social-item {
    margin: 0 10px;
}

.yellow-line-footer {
    margin: 6px 0 10px;
    background-color: #efdc5c;
    border-radius: 30px;
    width: 15%;
    height: 4px;
}

@media only screen and (max-width: 576px) {
    .resplayer-footer {
        width: 100%;
    }

    .footer-social-item {
        margin: 0 4px;
    }

    .footer-socials {
        width: 100%;
        justify-content: space-between;
    }

    .footer-contact-text {
        font-size: 12px;
    }
}

.branding-bg {
    background-color: #05100f;
}

.branding-text {
    font-size: 15px;
    font-weight: 500;
    color: #d9d9d9;
    margin: 0;
    padding: 6px 0;
}

.brand-company {
    font-weight: 700;
    animation: fadeColor 5s ease-in-out infinite;
}

@keyframes fadeColor {
    0% {
        color: #ffffff;
    }

    50% {
        color: #f9fec7;
    }

    100% {
        color: #ffffff;
    }
}



.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee .cover {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

.marquee span:hover {
    color: rgb(11, 3, 124);
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    1% {
        transform: translateX(80%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    /* Clips the text at the edges */
    background: #222;
    color: red;
    white-space: nowrap;
    /* Prevents text from wrapping to next line */
    padding: 10px 0;
}

.marquee-content {
    display: inline-block;
    animation: scroll-left 15s linear infinite;
}

.item {
    display: inline-block;
    padding: 0 10px;
    /* Spacing between notices */
    font-family: sans-serif;
    font-weight: bold;
}

/* Pause when user hovers */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.bell {

    background-color: #1f935e;
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.social_icon {
    padding-left: 10px;
}

.social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #4267B2;
    color: #4267B2;
}

.head1 {
    color: #0d2724;
    font-weight: 700;
    font-size: 25px;
    margin: 0;
    padding: 0;
    font-family: 'Saira', sans-serif;
}

.text1 {
    margin: 10px 0 0 0;
    color: #505050;
    font-size: 16px;
    text-align: justify;
}

.text2 {
    margin: 5px 0 0 0;
    color: #505050;
    font-size: 16px;
    text-align: justify;
}

.yellow-line-2 {
    margin: 2px 0 10px;
    background-color: #C5A448;
    border-radius: 30px;
    width: 100px;
    height: 3px;
}

@media only screen and (max-width: 576px) {
    .branding-text{
        font-size:12px !important;
    }
    .head1 {
        font-weight: 700;
        font-size: 18px;
        margin: 0;
        padding: 0;
    }

    .text1 {
        margin: 5px 0 0 0;
        font-size: 14px;
        text-align: justify;
    }
}

.contact-input {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid black;
    margin-bottom: 15px;
}

.contact-msg {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid black;
    margin-bottom: 15px;
}

.contact-text {
    font-size: 16px;
    font-weight: 500;
    color: #101010;
    padding: 0;
    margin: 10px 0;
}

.academic-cover {
    width: 100%;
    position: absolute;
    bottom: 0;
    background: #122835;
    text-align: center;
    height: 50px;
    padding: 4px 1px;
}

.academic-name {
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.academic-card {
    position: relative;
    background-size: contain;
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
}

.cust-box {
    background-color: #102231;
    margin-bottom: 20px;
    color: white;
    padding: 5px;
    height: 95%;
}

.trustee-img {
    width: 100%;
}

.t-title {
    font-weight: 600;
    font-size: 18px;
    padding: 0;
    margin: 5px 0 5px;
}

.t-name {
    font-weight: 500;
    font-size: 16px;
    padding: 0;
    margin: 5px 0 10px;
}

.cust-box:hover {
    transform: scale(1.05, 1.05);
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(1.05, 1.05);
    -webkit-transition: all 0.3s ease-in-out;
}