/* =========================================================
   SCHOOL OF EDUCATION - FACULTY MEMBERS
   ========================================================= */

.soe-faculty-section {
    padding: 45px 0 65px;
    background: #f7f9fc;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.soe-faculty-heading {
    text-align: center;
    margin-bottom: 35px;
}

.soe-faculty-heading span {
    display: block;
    margin-bottom: 7px;
    color: #225C9E;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.soe-faculty-heading h2 {
    margin: 0;
    color: #222;
    font-size: 34px !important;
    line-height: 1.25;
    font-weight: 700;
}

.soe-faculty-heading p {
    margin: 8px 0 0;
    color: #777;
    font-size: 14px;
}


/* =========================================================
   FACULTY GRID
   FLEX = EQUAL HEIGHT CARDS
   ========================================================= */

.soe-faculty-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.soe-faculty-grid > [class*="col-"] {
    display: flex;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}


/* =========================================================
   FACULTY CARD
   ========================================================= */

.soe-faculty-card {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #e5e9ef;
    border-radius: 8px;

    overflow: hidden;

    transition: all 0.25s ease;
}

.soe-faculty-card:hover {
    transform: translateY(-3px);

    border-color: #d2dce8;

    box-shadow: 0 8px 22px rgba(34, 92, 158, 0.10);
}


/* =========================================================
   FACULTY PHOTO
   ========================================================= */

.soe-faculty-photo {
    width: 150px;
    height: 150px;

    flex-shrink: 0;

    margin: 20px auto 15px;

    overflow: hidden;

    border-radius: 6px;

    background: #eef3f8;
}

.soe-faculty-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center top;
}


/* =========================================================
   FACULTY INFORMATION
   ========================================================= */

.soe-faculty-info {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 0 20px 18px;

    text-align: center;
}


/* =========================================================
   FACULTY NAME
   ========================================================= */

.soe-faculty-info h3 {
    min-height: 46px;

    margin: 0 0 6px;

    color: #222;

    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
}


/* =========================================================
   DESIGNATION
   ========================================================= */

.soe-faculty-designation {
    min-height: 20px;

    color: #225C9E;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.4;
}


/* =========================================================
   MAJOR SUBJECT
   ========================================================= */

.soe-faculty-subject {
    min-height: 20px;

    margin-top: 3px;

    color: #777;

    font-size: 13px;
    line-height: 1.4;
}


/* =========================================================
   CONTACT INFORMATION
   ========================================================= */

.soe-faculty-contact {
    min-height: 52px;

    margin-top: 14px;
    padding-top: 11px;

    border-top: 1px solid #edf0f4;

    text-align: left;
}

.soe-contact-item {
    display: flex;
    align-items: flex-start;

    margin-bottom: 7px;

    color: #666;

    font-size: 12px;
    line-height: 1.2;
}

.soe-contact-item:last-child {
    margin-bottom: 0;
}

.soe-contact-item i {
    flex: 0 0 18px;

    width: 18px;

    margin-right: 6px;
    padding-top: 1px;

    color: #225C9E;

    font-size: 12px;

    text-align: center;
}

.soe-contact-item span {
    min-width: 0;
 font-size: 13px;
    word-break: break-word;
}


/* =========================================================
   VIEW PROFILE BUTTON
   ========================================================= */

.soe-faculty-profile {
    margin-top: auto;

    padding-top: 12px;

    border-top: 1px solid #edf0f4;

    text-align: center;
}

.soe-faculty-profile a {
    display: inline-block;

    padding: 7px 16px;

    background: #225C9E;

    border: 1px solid #225C9E;

    border-radius: 4px;

    color: #ffffff !important;

    font-size: 12px;
    font-weight: 600;

    line-height: 1.3;

    text-decoration: none !important;

    transition: all 0.25s ease;
}

.soe-faculty-profile a:hover {
    background: #174b83;

    border-color: #174b83;

    color: #ffffff !important;
}

.soe-faculty-profile i {
    margin-left: 5px;

    font-size: 11px;
}


/* =========================================================
   NO FACULTY MESSAGE
   ========================================================= */

.soe-no-faculty {
    padding: 35px;

    background: #ffffff;

    border: 1px solid #e5e9ef;

    border-radius: 8px;

    color: #777;

    text-align: center;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .soe-faculty-section {
        padding: 40px 0 55px;
    }

    .soe-faculty-heading h2 {
        font-size: 30px !important;
    }

    .soe-faculty-photo {
        width: 140px;
        height: 140px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .soe-faculty-section {
        padding: 35px 0 45px;
    }

    .soe-faculty-heading {
        margin-bottom: 25px;
    }

    .soe-faculty-heading h2 {
        font-size: 28px !important;
    }

    .soe-faculty-heading p {
        font-size: 13px;
    }

    .soe-faculty-grid {
        margin-left: -7px;
        margin-right: -7px;
    }

    .soe-faculty-grid > [class*="col-"] {
        padding-left: 7px;
        padding-right: 7px;
        margin-bottom: 14px;
    }

    .soe-faculty-photo {
        width: 135px;
        height: 135px;

        margin-top: 17px;
    }

    .soe-faculty-info {
        padding-left: 17px;
        padding-right: 17px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .soe-faculty-photo {
        width: 125px;
        height: 125px;
    }

    .soe-faculty-info h3 {
        font-size: 16px;
    }

    .soe-faculty-designation {
        font-size: 13px;
    }

}



/* =========================================================
   BOU SCHOOL OF EDUCATION
   FACULTY PROFILE PAGE
   FINAL VERSION
   ========================================================= */


/* =========================================================
   MAIN PAGE
   ========================================================= */

.soe-profile-page {

    padding: 40px 0 70px;

    background: #f7f9fc;

    scroll-behavior: smooth;
}


/* =========================================================
   PROFILE HEADER
   ========================================================= */

.soe-profile-header {

    display: flex;

    align-items: center;

    background: #ffffff;

    border: 1px solid #e3e8ee;

    border-radius: 8px;

    padding: 25px 30px;

    margin-bottom: 18px;

    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.04);
}


/* =========================================================
   PROFILE PHOTO
   ========================================================= */

.soe-profile-photo {

    width: 165px;

    height: 185px;

    flex: 0 0 165px;

    margin-right: 28px;

    overflow: hidden;

    background: #eef3f8;

    border: 1px solid #dfe6ed;

    border-radius: 7px;
}

.soe-profile-photo img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center top;
}


/* =========================================================
   PROFILE INFORMATION
   ========================================================= */

.soe-profile-info {

    flex: 1;

    min-width: 0;
}


/* =========================================================
   PROFILE LABEL
   ========================================================= */

.soe-profile-label {

    margin-bottom: 7px;

    color: #225C9E;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* =========================================================
   NAME
   ========================================================= */

.soe-profile-info h1 {

    margin: 0 0 7px;

    color: #222222;

    font-size: 22px !important;

    font-weight: 700;

    line-height: 1.3;
}


/* =========================================================
   DESIGNATION
   ========================================================= */

.soe-profile-designation {

    margin-bottom: 5px;

    color: #225C9E;

    font-size: 16px;

    font-weight: 600;

    line-height: 1.5;
}


/* =========================================================
   SUBJECT
   ========================================================= */

.soe-profile-subject {

    margin-bottom: 4px;

    color: #555555;

    font-size: 14px;

    line-height: 1.5;
}


/* =========================================================
   SCHOOL
   ========================================================= */

.soe-profile-school {

    color: #777777;

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================================
   QUICK NAVIGATION
   ========================================================= */

.soe-profile-navigation {

    display: flex;

    flex-wrap: wrap;

    align-items: stretch;

    background: #ffffff;

    border: 1px solid #e3e8ee;

    border-radius: 7px;

    margin-bottom: 18px;

    overflow: hidden;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);

    position: sticky;

    top: 0;

    z-index: 90;
}


/* =========================================================
   NAVIGATION LINKS
   ========================================================= */

.soe-profile-navigation a {

    flex: 1;

    min-width: 140px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 13px 12px;

    color: #555555 !important;

    background: #ffffff;

    border-right: 1px solid #edf0f4;

    border-bottom: 3px solid transparent;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.2s ease;
}

.soe-profile-navigation a:last-child {

    border-right: none;
}


/* =========================================================
   NAV ICON
   ========================================================= */

.soe-profile-navigation a i {

    margin-right: 6px;

    color: #225C9E;

    font-size: 12px;
}


/* =========================================================
   NAV HOVER
   ========================================================= */

.soe-profile-navigation a:hover {

    color: #225C9E !important;

    background: #f7f9fc;

    border-bottom-color: #225C9E;
}


/* =========================================================
   PROFILE CONTENT BOX
   ========================================================= */

.soe-profile-section-box {

    background: #ffffff;

    border: 1px solid #e3e8ee;

    border-radius: 8px;

    margin-bottom: 20px;

    padding: 28px 32px 32px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.035);

    scroll-margin-top: 80px;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.soe-profile-section-heading {

    display: flex;

    align-items: center;

    padding-bottom: 15px;

    margin-bottom: 20px;

    border-bottom: 1px solid #edf0f4;
}


/* =========================================================
   SECTION HEADING ICON
   ========================================================= */

.soe-profile-heading-icon {

    width: 42px;

    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-right: 12px;

    background: #eef4fa;

    border-radius: 6px;

    color: #225C9E;

    font-size: 16px;
}


/* =========================================================
   SECTION SMALL LABEL
   ========================================================= */

.soe-profile-section-heading span {

    display: block;

    margin-bottom: 3px;

    color: #225C9E;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1.4px;
}


/* =========================================================
   SECTION TITLE
   ========================================================= */

.soe-profile-section-heading h2 {

    margin: 0;

    color: #222222;

    font-size: 23px !important;

    font-weight: 700;

    line-height: 1.3;
}


/* =========================================================
   DATABASE CONTENT
   ========================================================= */

.soe-profile-content-text {

    color: #555555;

    font-size: 14px;

    line-height: 1.8;

    text-align: justify;
}


/* =========================================================
   DATABASE PARAGRAPHS
   ========================================================= */

.soe-database-content p {

    margin-top: 0;

    margin-bottom: 14px;
}


/* =========================================================
   DATABASE HEADINGS
   ========================================================= */

.soe-database-content h1,
.soe-database-content h2,
.soe-database-content h3,
.soe-database-content h4 {

    color: #333333;

    line-height: 1.4;

    margin-top: 20px;

    margin-bottom: 10px;
}


/* =========================================================
   DATABASE LIST
   ========================================================= */

.soe-database-content ul,
.soe-database-content ol {

    margin-top: 8px;

    margin-bottom: 15px;

    padding-left: 25px;
}

.soe-database-content li {

    margin-bottom: 7px;

    line-height: 1.7;
}


/* =========================================================
   EDUCATION CONTENT
   ========================================================= */

.soe-profile-content-text table {

    width: 100%;

    margin-bottom: 15px;

    border-collapse: collapse;
}

.soe-profile-content-text table th {

    padding: 10px;

    background: #225C9E;

    color: #ffffff;

    font-size: 13px;

    text-align: left;
}

.soe-profile-content-text table td {

    padding: 9px 10px;

    border: 1px solid #e2e7ec;

    color: #555555;

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================================
   PUBLICATIONS
   ========================================================= */

.soe-publications-content {

    text-align: left;
}


/* =========================================================
   EACH PUBLICATION
   ========================================================= */

.soe-publication-item {

    position: relative;

    padding: 0 0 13px 0;

    margin-bottom: 13px;

    border-bottom: 1px solid #edf0f4;

    color: #555555;

    font-size: 13px;

    line-height: 1.75;
}

.soe-publication-item:last-child {

    margin-bottom: 0;

    padding-bottom: 0;

    border-bottom: none;
}


/* =========================================================
   PUBLICATION PARAGRAPH
   ========================================================= */

.soe-publication-item p {

    margin: 0 0 8px;
}


/* =========================================================
   RESEARCH
   ========================================================= */

.soe-research-content {

    text-align: left;
}


/* =========================================================
   RESEARCH LIST
   ========================================================= */

.soe-research-content ul {

    padding-left: 25px;
}

.soe-research-content li {

    margin-bottom: 8px;

    line-height: 1.7;
}


/* =========================================================
   CV SECTION
   ========================================================= */

.soe-cv-section {

    margin-bottom: 0;
}


/* =========================================================
   CV DOWNLOAD BOX
   ========================================================= */

.soe-cv-download-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 20px;

    background: #f7f9fc;

    border: 1px solid #e2e8ef;

    border-radius: 7px;
}


/* =========================================================
   CV LEFT
   ========================================================= */

.soe-cv-left {

    display: flex;

    align-items: center;

    min-width: 0;
}


/* =========================================================
   CV FILE ICON
   ========================================================= */

.soe-cv-file-icon {

    width: 50px;

    height: 50px;

    flex: 0 0 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-right: 13px;

    background: #eef4fa;

    border-radius: 6px;

    color: #225C9E;

    font-size: 21px;
}


/* =========================================================
   CV TITLE
   ========================================================= */

.soe-cv-left h3 {

    margin: 0 0 4px;

    color: #333333;

    font-size: 16px;

    font-weight: 700;
}


/* =========================================================
   CV DESCRIPTION
   ========================================================= */

.soe-cv-left p {

    margin: 0;

    color: #777777;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================================
   DOWNLOAD BUTTON
   ========================================================= */

.soe-cv-button a {

    display: inline-block;

    padding: 9px 17px;

    background: #225C9E;

    border: 1px solid #225C9E;

    border-radius: 4px;

    color: #ffffff !important;

    font-size: 12px;

    font-weight: 600;

    line-height: 1.3;

    text-decoration: none !important;

    transition: all 0.2s ease;
}

.soe-cv-button a:hover {

    background: #174b83;

    border-color: #174b83;

    color: #ffffff !important;
}

.soe-cv-button i {

    margin-right: 5px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .soe-profile-header {

        padding: 22px;
    }


    .soe-profile-photo {

        width: 150px;

        height: 170px;

        flex-basis: 150px;

        margin-right: 22px;
    }


    .soe-profile-info h1 {

        font-size: 26px !important;
    }


    .soe-profile-navigation a {

        min-width: 120px;

        padding: 12px 8px;
    }


    .soe-profile-section-box {

        padding: 25px 25px 30px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .soe-profile-page {

        padding: 25px 0 45px;
    }


    /* Header */

    .soe-profile-header {

        display: block;

        padding: 25px 18px;

        text-align: center;
    }


    /* Photo */

    .soe-profile-photo {

        width: 145px;

        height: 160px;

        margin: 0 auto 18px;
    }


    /* Name */

    .soe-profile-info h1 {

        font-size: 23px !important;

        line-height: 1.35;
    }


    .soe-profile-designation {

        font-size: 14px;
    }


    .soe-profile-subject {

        font-size: 13px;
    }


    /* Navigation */

    .soe-profile-navigation {

        position: relative;

        top: auto;

        display: grid;

        grid-template-columns: repeat(2, 1fr);
    }


    .soe-profile-navigation a {

        min-width: 0;

        padding: 11px 5px;

        border-right: 1px solid #edf0f4;

        border-bottom: 1px solid #edf0f4;

        font-size: 11px;
    }


    .soe-profile-navigation a:nth-child(2n) {

        border-right: none;
    }


    .soe-profile-navigation a:last-child {

        grid-column: span 2;

        border-right: none;
    }


    /* Content */

    .soe-profile-section-box {

        padding: 22px 17px 25px;

        margin-bottom: 15px;

        scroll-margin-top: 15px;
    }


    /* Heading */

    .soe-profile-section-heading {

        margin-bottom: 17px;

        padding-bottom: 12px;
    }


    .soe-profile-heading-icon {

        width: 38px;

        height: 38px;

        flex-basis: 38px;

        font-size: 14px;
    }


    .soe-profile-section-heading h2 {

        font-size: 20px !important;
    }


    /* Text */

    .soe-profile-content-text {

        font-size: 13px;

        line-height: 1.75;

        text-align: left;
    }


    /* Tables */

    .soe-profile-content-text table {

        display: block;

        width: 100%;

        overflow-x: auto;

        white-space: nowrap;
    }


    /* CV */

    .soe-cv-download-box {

        display: block;

        text-align: center;

        padding: 20px 15px;
    }


    .soe-cv-left {

        display: block;

        margin-bottom: 15px;
    }


    .soe-cv-file-icon {

        margin: 0 auto 12px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .soe-profile-photo {

        width: 135px;

        height: 150px;
    }


    .soe-profile-info h1 {

        font-size: 21px !important;
    }


    .soe-profile-navigation a {

        font-size: 10.5px;
    }


    .soe-profile-navigation a i {

        display: block;

        margin: 0 0 3px;
    }


    .soe-profile-section-heading h2 {

        font-size: 19px !important;
    }


    .soe-profile-content-text {

        font-size: 12.5px;
    }


    .soe-cv-button a {

        width: 100%;

        text-align: center;
    }

}


/* =========================================================
   OPEN SCHOOL FACULTY DIRECTORY
   Unique Open School Design
   ========================================================= */


/* ---------------------------------------------------------
   MAIN SECTION
   --------------------------------------------------------- */

.open-faculty-section {
    padding: 45px 0 65px;
    background: #f5f7fa;
}


/* ---------------------------------------------------------
   SECTION HEADER
   --------------------------------------------------------- */

.open-faculty-header {
    text-align: center;
    margin-bottom: 35px;
}

.open-faculty-kicker {
    display: inline-block;

    margin-bottom: 8px;

    color: #225C9E;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.open-faculty-header h2 {
    margin: 0;

    color: #1f2933;

    font-size: 29px !important;
    font-weight: 700;

    line-height: 1.3;
}

.open-faculty-header-line {
    width: 45px;
    height: 3px;

    margin: 12px auto 10px;

    background: #225C9E;
}

.open-faculty-header p {
    margin: 0;

    color: #7b8794;

    font-size: 13px;
}


/* ---------------------------------------------------------
   FACULTY GRID
   --------------------------------------------------------- */

.open-faculty-list {
    display: flex;
    flex-wrap: wrap;
}

.open-faculty-list > div {
    display: flex;
    margin-bottom: 25px;
}


/* ---------------------------------------------------------
   FACULTY ITEM
   --------------------------------------------------------- */

.open-faculty-item {
    position: relative;

    width: 100%;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #e1e6eb;

    border-radius: 6px;

    overflow: hidden;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.035);

    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.open-faculty-item:hover {
    transform: translateY(-3px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}


/* ---------------------------------------------------------
   TOP ACCENT
   --------------------------------------------------------- */

.open-faculty-accent {
    width: 100%;
    height: 4px;

    background: #225C9E;
}


/* ---------------------------------------------------------
   FACULTY PHOTO
   --------------------------------------------------------- */

.open-faculty-photo {
    width: 130px;
    height: 150px;

    margin: 22px auto 16px;

    overflow: hidden;

    background: #edf2f7;

    border: 1px solid #dce3ea;

    border-radius: 4px;
}

.open-faculty-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center top;
}


/* ---------------------------------------------------------
   DETAILS
   --------------------------------------------------------- */

.open-faculty-details {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 0 20px 20px;

    text-align: center;
}

.open-faculty-details h3 {
    margin: 0 0 6px;

    color: #263238;

    font-size: 17px !important;
    font-weight: 700;

    line-height: 1.4;
}


/* ---------------------------------------------------------
   DESIGNATION
   --------------------------------------------------------- */

.open-faculty-designation {
    margin-bottom: 3px;

    color: #225C9E;

    font-size: 13px;
    font-weight: 600;

    line-height: 1.5;
}


/* ---------------------------------------------------------
   SUBJECT
   --------------------------------------------------------- */

.open-faculty-subject {
    min-height: 20px;

    margin-bottom: 14px;

    color: #7a858f;

    font-size: 12px;

    line-height: 1.5;
}


/* ---------------------------------------------------------
   CONTACT AREA
   --------------------------------------------------------- */

.open-faculty-contact {
    min-height: 78px;

    padding: 11px 0 8px;

    border-top: 1px solid #edf0f3;

    text-align: left;
}


/* ---------------------------------------------------------
   CONTACT ROW
   --------------------------------------------------------- */

.open-contact-row {
    display: flex;
    align-items: flex-start;

    margin-bottom: 7px;

    font-size: 12px;

    line-height: 1.45;
}

.open-contact-row:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   CONTACT ICON
   --------------------------------------------------------- */

.open-contact-icon {
    width: 24px;
    flex: 0 0 24px;

    margin-right: 4px;

    color: #225C9E;

    font-size: 12px;

    text-align: center;
}


/* ---------------------------------------------------------
   CONTACT TEXT
   --------------------------------------------------------- */

.open-contact-text {
    flex: 1;
    min-width: 0;

    color: #626d76;

    word-break: break-word;
}

.open-contact-text a {
    color: #626d76 !important;

    text-decoration: none !important;
}

.open-contact-text a:hover {
    color: #225C9E !important;
}


/* ---------------------------------------------------------
   PROFILE LINK
   --------------------------------------------------------- */

.open-faculty-profile {
    margin-top: auto;

    padding-top: 13px;

    text-align: center;
}

.open-faculty-profile a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 8px 14px;

    background: transparent;

    border: 1px solid #225C9E;
    border-radius: 3px;

    color: #225C9E !important;

    font-size: 11px;
    font-weight: 600;

    line-height: 1.3;

    text-decoration: none !important;

    transition: all 0.2s ease;
}

.open-faculty-profile a:hover {
    background: #225C9E;

    color: #ffffff !important;
}

.open-faculty-profile i {
    margin-left: 7px;

    font-size: 11px;
}


/* ---------------------------------------------------------
   EMPTY MESSAGE
   --------------------------------------------------------- */

.open-faculty-empty {
    padding: 35px 20px;

    background: #ffffff;

    border: 1px solid #e1e6eb;
    border-radius: 6px;

    color: #777;

    text-align: center;
}

.open-faculty-empty i {
    display: block;

    margin-bottom: 10px;

    color: #225C9E;

    font-size: 25px;
}

.open-faculty-empty p {
    margin: 0;

    font-size: 13px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .open-faculty-section {
        padding: 38px 0 55px;
    }

    .open-faculty-header {
        margin-bottom: 28px;
    }

    .open-faculty-header h2 {
        font-size: 26px !important;
    }

    .open-faculty-details {
        padding-left: 17px;
        padding-right: 17px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .open-faculty-section {
        padding: 30px 0 45px;
    }

    .open-faculty-header {
        margin-bottom: 24px;
    }

    .open-faculty-kicker {
        font-size: 10px;
        letter-spacing: 1.6px;
    }

    .open-faculty-header h2 {
        font-size: 23px !important;
    }

    .open-faculty-header p {
        font-size: 12px;
    }

    .open-faculty-list {
        display: block;
    }

    .open-faculty-list > div {
        display: block;

        margin-bottom: 18px;
    }

    .open-faculty-item {
        max-width: 100%;
    }

    .open-faculty-photo {
        width: 125px;
        height: 145px;

        margin-top: 20px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .open-faculty-section {
        padding-top: 25px;
    }

    .open-faculty-header h2 {
        font-size: 21px !important;
    }

    .open-faculty-details {
        padding-left: 15px;
        padding-right: 15px;
    }

    .open-faculty-details h3 {
        font-size: 15px !important;
    }

    .open-faculty-designation {
        font-size: 12px;
    }

    .open-contact-row {
        font-size: 11.5px;
    }

    .open-faculty-profile a {
        font-size: 10.5px;
    }

}



/* =========================================================
   OPEN SCHOOL FACULTY PROFILE
   ========================================================= */


/* ---------------------------------------------------------
   MAIN PAGE
   --------------------------------------------------------- */

.open-profile-page {
    padding: 40px 0 65px;
    background: #f5f7fa;
}


/* ---------------------------------------------------------
   PROFILE HEADER
   --------------------------------------------------------- */

.open-profile-header {
    display: flex;
    align-items: center;

    padding: 25px 30px;
    margin-bottom: 18px;

    background: #ffffff;

    border: 1px solid #e1e6eb;
    border-radius: 6px;

    box-shadow: 0 2px 9px rgba(0, 0, 0, 0.035);
}


/* ---------------------------------------------------------
   PROFILE PHOTO
   --------------------------------------------------------- */

.open-profile-photo {
    width: 155px;
    height: 175px;

    flex: 0 0 155px;

    margin-right: 27px;

    overflow: hidden;

    background: #edf2f7;

    border: 1px solid #dce3ea;
    border-radius: 5px;
}

.open-profile-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center top;
}


/* ---------------------------------------------------------
   PROFILE INFORMATION
   --------------------------------------------------------- */

.open-profile-information {
    flex: 1;
    min-width: 0;
}

.open-profile-kicker {
    margin-bottom: 7px;

    color: #225C9E;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.8px;
}

.open-profile-information h1 {
    margin: 0 0 7px;

    color: #222b33;

    font-size: 22px !important;
    font-weight: 700;

    line-height: 1.35;
}

.open-profile-designation {
    margin-bottom: 4px;

    color: #225C9E;

    font-size: 15px;
    font-weight: 600;

    line-height: 1.5;
}

.open-profile-subject {
    margin-bottom: 3px;

    color: #626d76;

    font-size: 13px;

    line-height: 1.5;
}

.open-profile-school {
    color: #7b858d;

    font-size: 12px;

    line-height: 1.5;
}


/* ---------------------------------------------------------
   NAVIGATION
   --------------------------------------------------------- */

.open-profile-navigation {
    display: flex;

    margin-bottom: 18px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e1e6eb;
    border-radius: 5px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);

    position: sticky;
    top: 0;

    z-index: 90;
}

.open-profile-navigation a {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 10px 8px;

    color: #5f6972 !important;

    background: #ffffff;

    border-right: 1px solid #edf0f3;

    border-bottom: 3px solid transparent;

    font-size: 11px;
    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.2s ease;
}

.open-profile-navigation a:last-child {
    border-right: none;
}

.open-profile-navigation a i {
    margin-right: 6px;

    color: #225C9E;

    font-size: 12px;
}

.open-profile-navigation a:hover {
    color: #225C9E !important;

    background: #f7f9fb;

    border-bottom-color: #225C9E;
}


/* ---------------------------------------------------------
   PROFILE SECTION
   --------------------------------------------------------- */

.open-profile-section {
    padding: 27px 30px 30px;

    margin-bottom: 18px;

    background: #ffffff;

    border: 1px solid #e1e6eb;
    border-radius: 6px;

    box-shadow: 0 2px 9px rgba(0, 0, 0, 0.035);

    scroll-margin-top: 70px;
}


/* ---------------------------------------------------------
   SECTION HEADING
   --------------------------------------------------------- */

.open-section-heading {
    display: flex;
    align-items: center;

    padding-bottom: 14px;
    margin-bottom: 20px;

    border-bottom: 1px solid #edf0f3;
}

.open-section-icon {
    width: 41px;
    height: 41px;

    flex: 0 0 41px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 12px;

    background: #eef4f9;

    border-radius: 5px;

    color: #225C9E;

    font-size: 15px;
}

.open-section-heading span {
    display: block;

    margin-bottom: 3px;

    color: #225C9E;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.open-section-heading h2 {
    margin: 0;

    color: #27313a;

    font-size: 22px !important;
    font-weight: 700;

    line-height: 1.3;
}


/* ---------------------------------------------------------
   DATABASE CONTENT
   --------------------------------------------------------- */

.open-profile-content {
    color: #555f67;

    font-size: 13.5px;

    line-height: 1.8;

    text-align: justify;
}

.open-database-content p {
    margin-top: 0;
    margin-bottom: 13px;
}

.open-database-content h1,
.open-database-content h2,
.open-database-content h3,
.open-database-content h4 {
    margin-top: 18px;
    margin-bottom: 9px;

    color: #333;

    line-height: 1.4;
}

.open-database-content ul,
.open-database-content ol {
    margin-top: 7px;
    margin-bottom: 14px;

    padding-left: 24px;
}

.open-database-content li {
    margin-bottom: 6px;

    line-height: 1.7;
}


/* ---------------------------------------------------------
   TABLES INSIDE DATABASE CONTENT
   --------------------------------------------------------- */

.open-profile-content table {
    width: 100%;

    margin-bottom: 15px;

    border-collapse: collapse;
}

.open-profile-content table th {
    padding: 9px 10px;

    background: #225C9E;

    color: #ffffff;

    font-size: 12px;

    text-align: left;
}

.open-profile-content table td {
    padding: 8px 10px;

    border: 1px solid #e1e6eb;

    color: #555;

    font-size: 12px;

    line-height: 1.5;
}


/* ---------------------------------------------------------
   PUBLICATIONS
   --------------------------------------------------------- */

.open-publication-content {
    text-align: left;
}

.open-publication-item {
    padding: 0 0 13px;
    margin-bottom: 13px;

    border-bottom: 1px solid #edf0f3;

    color: #555f67;

    font-size: 13px;

    line-height: 1.75;
}

.open-publication-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;

    border-bottom: none;
}

.open-publication-item p {
    margin: 0 0 8px;
}


/* ---------------------------------------------------------
   RESEARCH
   --------------------------------------------------------- */

.open-research-content {
    text-align: left;
}

.open-research-content ul,
.open-research-content ol {
    padding-left: 25px;
}

.open-research-content li {
    margin-bottom: 7px;
}


/* ---------------------------------------------------------
   CV SECTION
   --------------------------------------------------------- */

.open-cv-section {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   CV BOX
   --------------------------------------------------------- */

.open-cv-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 18px 20px;

    background: #f6f8fa;

    border: 1px solid #e0e6eb;
    border-radius: 5px;
}


/* ---------------------------------------------------------
   CV INFORMATION
   --------------------------------------------------------- */

.open-cv-information {
    display: flex;
    align-items: center;

    min-width: 0;
}

.open-cv-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 12px;

    background: #eef4f9;

    border-radius: 5px;

    color: #225C9E;

    font-size: 20px;
}

.open-cv-information h3 {
    margin: 0 0 3px;

    color: #333;

    font-size: 15px !important;
    font-weight: 700;
}

.open-cv-information p {
    margin: 0;

    color: #7b858d;

    font-size: 11.5px;

    line-height: 1.5;
}


/* ---------------------------------------------------------
   CV BUTTON
   --------------------------------------------------------- */

.open-cv-action a {
    display: inline-flex;

    align-items: center;

    padding: 8px 15px;

    background: #225C9E;

    border: 1px solid #225C9E;
    border-radius: 3px;

    color: #ffffff !important;

    font-size: 11px;
    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.2s ease;
}

.open-cv-action a:hover {
    background: #174b83;

    border-color: #174b83;

    color: #ffffff !important;
}

.open-cv-action i {
    margin-right: 6px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .open-profile-page {
        padding: 35px 0 55px;
    }

    .open-profile-header {
        padding: 22px;
    }

    .open-profile-photo {
        width: 145px;
        height: 165px;

        flex-basis: 145px;

        margin-right: 22px;
    }

    .open-profile-information h1 {
        font-size: 26px !important;
    }

    .open-profile-section {
        padding: 25px 25px 28px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .open-profile-page {
        padding: 27px 0 45px;
    }

    .open-profile-header {
        display: block;

        padding: 23px 18px;

        text-align: center;
    }

    .open-profile-photo {
        width: 135px;
        height: 155px;

        margin: 0 auto 17px;
    }

    .open-profile-kicker {
        font-size: 10px;
    }

    .open-profile-information h1 {
        font-size: 22px !important;
        line-height: 1.35;
    }

    .open-profile-designation {
        font-size: 14px;
    }

    .open-profile-subject {
        font-size: 12.5px;
    }

    .open-profile-school {
        font-size: 11.5px;
    }


    /* Navigation */

    .open-profile-navigation {
        position: relative;

        top: auto;

        display: grid;

        grid-template-columns: repeat(2, 1fr);
    }

    .open-profile-navigation a {
        min-height: 45px;

        padding: 9px 5px;

        border-right: 1px solid #edf0f3;
        border-bottom: 1px solid #edf0f3;

        font-size: 10.5px;
    }

    .open-profile-navigation a:nth-child(2n) {
        border-right: none;
    }

    .open-profile-navigation a:last-child {
        grid-column: span 2;

        border-right: none;
    }


    /* Sections */

    .open-profile-section {
        padding: 21px 17px 24px;

        margin-bottom: 15px;

        scroll-margin-top: 15px;
    }

    .open-section-heading {
        margin-bottom: 16px;

        padding-bottom: 12px;
    }

    .open-section-icon {
        width: 37px;
        height: 37px;

        flex-basis: 37px;

        font-size: 13px;
    }

    .open-section-heading h2 {
        font-size: 19px !important;
    }

    .open-profile-content {
        font-size: 13px;

        line-height: 1.75;

        text-align: left;
    }


    /* Tables */

    .open-profile-content table {
        display: block;

        width: 100%;

        overflow-x: auto;

        white-space: nowrap;
    }


    /* CV */

    .open-cv-box {
        display: block;

        padding: 18px 15px;

        text-align: center;
    }

    .open-cv-information {
        display: block;

        margin-bottom: 15px;
    }

    .open-cv-icon {
        margin: 0 auto 10px;
    }

    .open-cv-action a {
        width: 100%;

        justify-content: center;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .open-profile-photo {
        width: 125px;
        height: 145px;
    }

    .open-profile-information h1 {
        font-size: 20px !important;
    }

    .open-profile-navigation a {
        font-size: 10px;
    }

    .open-profile-navigation a i {
        display: block;

        margin: 0 0 3px;
    }

    .open-section-heading h2 {
        font-size: 18px !important;
    }

    .open-profile-content {
        font-size: 12.5px;
    }

}


/* ==========================================================
   SSHL FACULTY MEMBERS
   Bangladesh Open University
   Equal Height Card Version
   ========================================================== */

.sshl-faculty-section {
    padding: 45px 0 60px;
    background: #f5f7fa;
}


/* ----------------------------------------------------------
   HEADER
   ---------------------------------------------------------- */

.sshl-faculty-header {
    text-align: center;
    margin-bottom: 35px;
}

.sshl-faculty-kicker {
    color: #225C9E;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.5;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.sshl-faculty-header h2 {
    margin: 0;
    color: #222;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
}

.sshl-faculty-header-line {
    width: 45px;
    height: 3px;
    background: #225C9E;
    margin: 12px auto;
}

.sshl-faculty-header p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.5;
}


/* ----------------------------------------------------------
   FACULTY GRID
   IMPORTANT: Makes Bootstrap columns equal-height
   ---------------------------------------------------------- */

.sshl-faculty-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.sshl-faculty-list > div {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;

    display: flex;
}


/* ----------------------------------------------------------
   FACULTY CARD
   IMPORTANT: height:100% fills the column
   ---------------------------------------------------------- */

.sshl-faculty-item {
    position: relative;

    width: 100%;
    height: 100%;

    background: #fff;

    border: 1px solid #e3e7eb;
    border-radius: 4px;

    padding: 25px 20px 20px;

    text-align: center;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    transition: all 0.25s ease;
}

.sshl-faculty-item:hover {
    transform: translateY(-2px);

    border-color: #d6dce2;

    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.07);
}


/* ----------------------------------------------------------
   TOP BLUE ACCENT
   ---------------------------------------------------------- */

.sshl-faculty-accent {
    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    background: #225C9E;
}


/* ----------------------------------------------------------
   FACULTY PHOTO
   ---------------------------------------------------------- */

.sshl-faculty-photo {
    width: 125px;
    height: 145px;

    flex-shrink: 0;

    margin: 0 auto 16px;

    overflow: hidden;

    border: 1px solid #e0e4e8;

    background: #f5f7fa;
}

.sshl-faculty-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* ----------------------------------------------------------
   FACULTY DETAILS
   ---------------------------------------------------------- */

.sshl-faculty-details {
    width: 100%;

    display: flex;
    flex-direction: column;

    flex: 1;
}

.sshl-faculty-details h3 {
    margin: 0 0 7px;

    color: #222;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.4;

    min-height: 25px;
}

.sshl-faculty-designation {
    color: #225C9E;

    font-size: 13px;
    font-weight: 600;

    line-height: 1.5;

    min-height: 20px;

    margin-bottom: 3px;
}

.sshl-faculty-subject {
    color: #777;

    font-size: 12px;

    line-height: 1.5;

    min-height: 18px;
}


/* ----------------------------------------------------------
   CONTACT AREA
   ---------------------------------------------------------- */

.sshl-faculty-contact {
    margin-top: 15px;

    padding-top: 12px;

    border-top: 1px solid #edf0f3;

    text-align: left;
}


/* ----------------------------------------------------------
   CONTACT ROW
   ---------------------------------------------------------- */

.sshl-contact-row {
    display: flex;

    align-items: center;

    min-height: 18px;

    margin-bottom: 7px;

    font-size: 12px;

    line-height: 18px;
}

.sshl-contact-row:last-child {
    margin-bottom: 0;
}


/* ----------------------------------------------------------
   CONTACT ICON
   ---------------------------------------------------------- */

.sshl-contact-icon {
    width: 20px;
    min-width: 20px;

    height: 18px;

    line-height: 18px;

    color: #225C9E;

    font-size: 12px;

    text-align: center;

    margin-right: 6px;
}

.sshl-contact-icon i {
    display: inline-block;

    width: 12px;

    line-height: 18px;

    vertical-align: middle;
}


/* ----------------------------------------------------------
   CONTACT TEXT
   ---------------------------------------------------------- */

.sshl-contact-text {
    color: #666;

    line-height: 18px;

    word-break: break-word;

    flex: 1;
}

.sshl-contact-text a {
    color: #225C9E !important;

    text-decoration: none !important;
}

.sshl-contact-text a:hover {
    color: #174778 !important;

    text-decoration: underline !important;
}


/* ----------------------------------------------------------
   VIEW PROFILE
   IMPORTANT: margin-top:auto keeps button at bottom
   ---------------------------------------------------------- */

.sshl-faculty-profile {
    margin-top: auto;

    padding-top: 18px;
}

.sshl-faculty-profile span{
    color: #fff;
}

.sshl-faculty-profile a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 16px;

    border: 1px solid #225C9E;

    border-radius: 4px;

    background: #225C9E;

    color: #fff !important;

    font-size: 13px;

    font-weight: 600;

    line-height: 18px;

    text-decoration: none !important;

    transition: all 0.25s ease;
}

.sshl-faculty-profile a i {
    font-size: 12px;

    line-height: 1;
    

    transition: transform 0.25s ease;
}

.sshl-faculty-profile a:hover {
    background: #174778;

    border-color: #174778;

    color: #fff !important;

    text-decoration: none !important;

    box-shadow: 0 4px 10px rgba(34, 92, 158, 0.20);
}

.sshl-faculty-profile a:hover i {
    transform: translateX(4px);
}


/* ----------------------------------------------------------
   EMPTY STATE
   ---------------------------------------------------------- */

.sshl-faculty-empty {
    padding: 50px 20px;

    text-align: center;

    background: #fff;

    border: 1px solid #e3e7eb;

    border-radius: 4px;
}

.sshl-faculty-empty i {
    display: block;

    margin-bottom: 10px;

    color: #225C9E;

    font-size: 30px;
}

.sshl-faculty-empty p {
    margin: 0;

    color: #777;

    font-size: 14px;
}


/* ----------------------------------------------------------
   PAGINATION
   ---------------------------------------------------------- */

.sshl-faculty-pagination {
    text-align: center;

    margin-top: 15px;
}

.sshl-faculty-pagination .pagination {
    margin: 0;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 991px) {

    .sshl-faculty-section {
        padding: 40px 0 55px;
    }

    .sshl-faculty-header {
        margin-bottom: 30px;
    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

    .sshl-faculty-section {
        padding: 30px 0 45px;
    }

    .sshl-faculty-header {
        margin-bottom: 25px;
    }

    .sshl-faculty-kicker {
        font-size: 10px;

        padding: 0 10px;
    }

    .sshl-faculty-header h2 {
        font-size: 25px;
    }

    .sshl-faculty-header p {
        font-size: 13px;
    }

    .sshl-faculty-list {
        display: block;

        margin-left: -10px;
        margin-right: -10px;
    }

    .sshl-faculty-list > div {
        display: block;

        margin-bottom: 15px;
    }

    .sshl-faculty-item {
        height: auto;

        padding: 23px 18px 18px;
    }

    .sshl-faculty-photo {
        width: 120px;
        height: 140px;
    }

}


/* ==========================================================
   VERY SMALL MOBILE
   ========================================================== */

@media (max-width: 400px) {

    .sshl-faculty-photo {
        width: 115px;
        height: 135px;
    }

    .sshl-faculty-details h3 {
        font-size: 17px;
    }

}



/* ==========================================================
   SSHL FACULTY PROFILE
   Bangladesh Open University
   ========================================================== */


/* ----------------------------------------------------------
   MAIN PAGE
   ---------------------------------------------------------- */

.sshl-profile-page {
    padding: 40px 0 60px;
    background: #f5f7fa;
}


/* ----------------------------------------------------------
   PROFILE HEADER
   ---------------------------------------------------------- */

.sshl-profile-header {
    display: flex;
    align-items: center;

    background: #fff;

    border: 1px solid #e3e7eb;
    border-top: 4px solid #225C9E;

    padding: 25px 30px;

    margin-bottom: 15px;
}


/* ----------------------------------------------------------
   PROFILE PHOTO
   ---------------------------------------------------------- */

.sshl-profile-photo {
    width: 125px;
    height: 145px;

    flex-shrink: 0;

    overflow: hidden;

    border: 1px solid #dfe4e8;

    background: #f5f7fa;

    margin-right: 25px;
}

.sshl-profile-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* ----------------------------------------------------------
   PROFILE INFORMATION
   ---------------------------------------------------------- */

.sshl-profile-information {
    flex: 1;
}

.sshl-profile-kicker {
    color: #225C9E;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 6px;
}

.sshl-profile-information h1 {
    margin: 0 0 8px;

    color: #222;

    font-size: 28px;
    font-weight: 700;

    line-height: 1.35;
}

.sshl-profile-designation {
    color: #225C9E;

    font-size: 15px;
    font-weight: 600;

    line-height: 1.5;

    margin-bottom: 3px;
}

.sshl-profile-subject {
    color: #555;

    font-size: 13px;

    line-height: 1.5;

    margin-bottom: 3px;
}

.sshl-profile-school {
    color: #777;

    font-size: 13px;

    line-height: 1.5;
}


/* ==========================================================
   PROFILE NAVIGATION
   ========================================================== */

.sshl-profile-navigation {
    display: flex;
    flex-wrap: wrap;

    background: #fff;

    border: 1px solid #e3e7eb;

    margin-bottom: 20px;
}

.sshl-profile-navigation a {
    display: flex;

    align-items: center;
    justify-content: center;

    padding: 13px 18px;

    color: #555 !important;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none !important;

    border-right: 1px solid #edf0f3;

    transition: all 0.25s ease;
}

.sshl-profile-navigation a:last-child {
    border-right: none;
}

.sshl-profile-navigation a i {
    color: #225C9E;

    font-size: 13px;

    margin-right: 7px;
}

.sshl-profile-navigation a:hover {
    background: #225C9E;

    color: #fff !important;
}

.sshl-profile-navigation a:hover i {
    color: #fff;
}


/* ==========================================================
   PROFILE SECTIONS
   ========================================================== */

.sshl-profile-section {
    background: #fff;

    border: 1px solid #e3e7eb;

    padding: 25px 30px;

    margin-bottom: 20px;

    scroll-margin-top: 20px;
}


/* ----------------------------------------------------------
   SECTION HEADING
   ---------------------------------------------------------- */

.sshl-section-heading {
    display: flex;
    align-items: center;

    padding-bottom: 15px;

    margin-bottom: 18px;

    border-bottom: 1px solid #edf0f3;
}

.sshl-section-icon {
    width:28px;
    height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    margin-right:10px;
    background:transparent;
    color:#225C9E;
    font-size:15px;
}

.sshl-section-heading span {
    display: block;

    color: #225C9E;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;

    line-height: 1.3;

    margin-bottom: 2px;
}

.sshl-section-heading h2 {
    margin: 0;

    color: #222;

    font-size: 21px;
    font-weight: 700;

    line-height: 1.35;
}


/* ==========================================================
   DATABASE CONTENT
   ========================================================== */

.sshl-profile-content {
    color: #555;

    font-size: 14px;

    line-height: 1.75;

    text-align: justify;
}

.sshl-database-content {
    width: 100%;
}


/* ----------------------------------------------------------
   DATABASE HTML
   ---------------------------------------------------------- */

.sshl-database-content p {
    margin: 0 0 12px;
}

.sshl-database-content p:last-child {
    margin-bottom: 0;
}

.sshl-database-content h1,
.sshl-database-content h2,
.sshl-database-content h3,
.sshl-database-content h4,
.sshl-database-content h5,
.sshl-database-content h6 {
    color: #333;

    line-height: 1.4;

    margin-top: 18px;
    margin-bottom: 8px;
}

.sshl-database-content ul,
.sshl-database-content ol {
    margin-top: 8px;
    margin-bottom: 12px;

    padding-left: 25px;
}

.sshl-database-content li {
    margin-bottom: 5px;
}

.sshl-database-content a {
    color: #225C9E;

    text-decoration: none;
}

.sshl-database-content a:hover {
    color: #174778;

    text-decoration: underline;
}


/* ==========================================================
   PUBLICATIONS
   ========================================================== */

.sshl-publication-content {
    text-align: left;
}

.sshl-publication-item {
    position: relative;

    padding: 10px 0 10px 18px;

    border-bottom: 1px solid #edf0f3;

    color: #555;

    font-size: 13px;

    line-height: 1.7;
}

.sshl-publication-item:last-child {
    border-bottom: none;
}

.sshl-publication-item:before {
    content: "";

    position: absolute;

    left: 0;
    top: 18px;

    width: 5px;
    height: 5px;

    background: #225C9E;

    border-radius: 50%;
}


/* ==========================================================
   RESEARCH
   ========================================================== */

.sshl-research-content {
    text-align: left;
}


/* ==========================================================
   CV
   ========================================================== */

.sshl-cv-section {
    margin-bottom: 0;
}

.sshl-cv-box {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 18px;

    background: #f7f9fb;

    border: 1px solid #e2e7ec;

    border-left: 4px solid #225C9E;
}


/* ----------------------------------------------------------
   CV INFORMATION
   ---------------------------------------------------------- */

.sshl-cv-information {
    display: flex;

    align-items: center;

    min-width: 0;
}

.sshl-cv-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    margin-right: 12px;

    background: #225C9E;

    color: #fff;

    font-size: 17px;
}

.sshl-cv-information h3 {
    margin: 0 0 3px;

    color: #333;

    font-size: 15px;

    font-weight: 700;
}

.sshl-cv-information p {
    margin: 0;

    color: #777;

    font-size: 12px;
}


/* ----------------------------------------------------------
   DOWNLOAD BUTTON
   ---------------------------------------------------------- */

.sshl-cv-action a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 8px 15px;

    background: #225C9E;

    border: 1px solid #225C9E;

    border-radius: 4px;

    color: #fff !important;

    font-size: 12px;

    font-weight: 600;

    line-height: 18px;

    text-decoration: none !important;

    white-space: nowrap;

    transition: all 0.25s ease;
}

.sshl-cv-action a:hover {
    background: #174778;

    border-color: #174778;

    color: #fff !important;

    box-shadow: 0 3px 8px rgba(34, 92, 158, 0.20);
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 991px) {

    .sshl-profile-header {
        padding: 22px;
    }

    .sshl-profile-information h1 {
        font-size: 25px;
    }

    .sshl-profile-navigation a {
        padding: 12px 14px;
    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

    .sshl-profile-page {
        padding: 25px 0 40px;
    }


    /* Profile Header */

    .sshl-profile-header {
        display: block;

        text-align: center;

        padding: 25px 18px;
    }

    .sshl-profile-photo {
        width: 120px;
        height: 140px;

        margin: 0 auto 18px;
    }

    .sshl-profile-information h1 {
        font-size: 22px;
    }

    .sshl-profile-designation {
        font-size: 14px;
    }


    /* Navigation */

    .sshl-profile-navigation {
        display: grid;

        grid-template-columns: 1fr 1fr;
    }

    .sshl-profile-navigation a {
        padding: 11px 8px;

        border-right: 1px solid #edf0f3;

        border-bottom: 1px solid #edf0f3;

        font-size: 12px;
    }

    .sshl-profile-navigation a:nth-child(2n) {
        border-right: none;
    }

    .sshl-profile-navigation a:nth-last-child(-n+2) {
        border-bottom: none;
    }


    /* Sections */

    .sshl-profile-section {
        padding: 20px 18px;

        margin-bottom: 15px;
    }

    .sshl-section-heading {
        margin-bottom: 15px;
    }

    .sshl-section-heading h2 {
        font-size: 19px;
    }

    .sshl-profile-content {
        font-size: 13px;

        line-height: 1.7;
    }


    /* CV */

    .sshl-cv-box {
        display: block;

        padding: 15px;
    }

    .sshl-cv-information {
        margin-bottom: 15px;
    }

    .sshl-cv-action a {
        width: 100%;

        justify-content: center;
    }

}


/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media (max-width: 400px) {

    .sshl-profile-information h1 {
        font-size: 20px;
    }

    .sshl-profile-navigation a {
        font-size: 11px;
    }

    .sshl-section-heading h2 {
        font-size: 18px;
    }


}


/* =========================================================
   SCHOOL OF BUSINESS - FACULTY LIST
   ========================================================= */

.sob-faculty-section{
    padding:45px 0 60px;
    background:#f5f7fa;
}


/* HEADER */

.sob-faculty-header{
    text-align:center;
    margin-bottom:35px;
}

.sob-faculty-kicker{
    color:#225C9E;
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
    line-height:1.5;
    text-transform:uppercase;
    margin-bottom:7px;
}

.sob-faculty-header h2{
    margin:0;
    color:#222;
    font-size:30px;
    line-height:1.3;
    font-weight:700;
}

.sob-faculty-header-line{
    width:45px;
    height:3px;
    background:#225C9E;
    margin:12px auto;
}

.sob-faculty-header p{
    margin:0;
    color:#777;
    font-size:14px;
    line-height:1.5;
}


/* FACULTY GRID */

.sob-faculty-list{
    display:flex;
    flex-wrap:wrap;
    margin-left:-10px;
    margin-right:-10px;
}

.sob-faculty-list > div{
    padding-left:10px;
    padding-right:10px;
    margin-bottom:20px;
    display:flex;
}


/* FACULTY CARD */

.sob-faculty-item{
    position:relative;
    width:100%;
    height:100%;
    background:#fff;
    border:1px solid #e3e7eb;
    border-radius:4px;
    padding:25px 20px 20px;
    text-align:center;
    overflow:hidden;

    display:flex;
    flex-direction:column;

    transition:all .25s ease;
}

.sob-faculty-item:hover{
    transform:translateY(-2px);
    border-color:#d6dce2;
    box-shadow:0 7px 18px rgba(0,0,0,.07);
}


/* TOP BLUE LINE */

.sob-faculty-accent{
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:4px;
    background:#225C9E;
}


/* PHOTO */

.sob-faculty-photo{
    width:125px;
    height:145px;
    flex-shrink:0;

    margin:0 auto 16px;

    overflow:hidden;

    border:1px solid #e0e4e8;
    background:#f5f7fa;
}

.sob-faculty-photo img{
    width:100%;
    height:100%;

    object-fit:cover;
    display:block;
}


/* DETAILS */

.sob-faculty-details{
    width:100%;

    display:flex;
    flex-direction:column;

    flex:1;
}


/* NAME */

.sob-faculty-details h3{
    margin:0 0 7px;

    color:#222;

    font-size:18px;
    font-weight:700;
    line-height:1.4;

    min-height:25px;
}


/* DESIGNATION */

.sob-faculty-designation{
    color:#225C9E;

    font-size:13px;
    font-weight:600;

    line-height:1.5;

    min-height:20px;

    margin-bottom:3px;
}


/* SUBJECT */

.sob-faculty-subject{
    color:#777;

    font-size:12px;

    line-height:1.5;

    min-height:18px;
}


/* CONTACT */

.sob-faculty-contact{
    margin-top:15px;

    padding-top:12px;

    border-top:1px solid #edf0f3;

    text-align:left;
}


/* CONTACT ROW */

.sob-contact-row{
    display:flex;

    align-items:center;

    min-height:18px;

    margin-bottom:7px;

    font-size:12px;

    line-height:18px;
}

.sob-contact-row:last-child{
    margin-bottom:0;
}


/* CONTACT ICON */

.sob-contact-icon{
    width:20px;
    min-width:20px;
    height:18px;
    line-height:18px;
    margin-right:6px;

    background:transparent !important;
    color:#225C9E;

    font-size:12px;
    text-align:center;
}

.sob-contact-icon i{
    display:inline-block;
    width:12px;
    height:auto;
    line-height:18px;

    background:transparent !important;
    color:#225C9E;

    vertical-align:middle;
}


/* CONTACT TEXT */

.sob-contact-text{
    color:#666;

    line-height:18px;

    word-break:break-word;

    flex:1;
}

.sob-contact-text a{
    color:#225C9E !important;

    text-decoration:none !important;
}

.sob-contact-text a:hover{
    color:#174778 !important;

    text-decoration:underline !important;
}


/* PROFILE BUTTON */

.sob-faculty-profile{
    margin-top:auto;

    padding-top:18px;
}

.sob-faculty-profile span{
   color:#fff;
}


.sob-faculty-profile a{
    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:8px 16px;

    border:1px solid #225C9E;

    border-radius:4px;

    background:#225C9E;

    color:#fff !important;

    font-size:13px;

    font-weight:600;

    line-height:18px;

    text-decoration:none !important;

    transition:all .25s ease;
}

.sob-faculty-profile a i{
    font-size:12px;

    line-height:1;

    transition:transform .25s ease;
}

.sob-faculty-profile a:hover{
    background:#174778;

    border-color:#174778;

    color:#fff !important;

    text-decoration:none !important;

    box-shadow:0 4px 10px rgba(34,92,158,.20);
}

.sob-faculty-profile a:hover i{
    transform:translateX(4px);
}


/* EMPTY */

.sob-faculty-empty{
    padding:50px 20px;

    text-align:center;

    background:#fff;

    border:1px solid #e3e7eb;

    border-radius:4px;
}

.sob-faculty-empty i{
    display:block;

    margin-bottom:10px;

    color:#225C9E;

    font-size:30px;
}

.sob-faculty-empty p{
    margin:0;

    color:#777;

    font-size:14px;
}


/* PAGINATION */

.sob-faculty-pagination{
    text-align:center;

    margin-top:15px;
}

.sob-faculty-pagination .pagination{
    margin:0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:991px){

    .sob-faculty-section{
        padding:40px 0 55px;
    }

    .sob-faculty-header{
        margin-bottom:30px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:767px){

    .sob-faculty-section{
        padding:30px 0 45px;
    }

    .sob-faculty-header{
        margin-bottom:25px;
    }

    .sob-faculty-kicker{
        font-size:10px;
        padding:0 10px;
    }

    .sob-faculty-header h2{
        font-size:25px;
    }

    .sob-faculty-header p{
        font-size:13px;
    }


    /* Disable equal height on mobile */

    .sob-faculty-list{
        display:block;

        margin-left:-10px;
        margin-right:-10px;
    }

    .sob-faculty-list > div{
        display:block;

        margin-bottom:15px;
    }


    .sob-faculty-item{
        height:auto;

        padding:23px 18px 18px;
    }

    .sob-faculty-photo{
        width:120px;
        height:140px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media(max-width:400px){

    .sob-faculty-photo{
        width:115px;
        height:135px;
    }

    .sob-faculty-details h3{
        font-size:17px;
    }

}
}


/* =========================================================
   SCHOOL OF BUSINESS - FACULTY PROFILE
   ========================================================= */

.sob-profile-page{
    padding:40px 0 60px;
    background:#f5f7fa;
}


/* =========================================================
   PROFILE HEADER
   ========================================================= */

.sob-profile-header{
    display:flex;
    align-items:center;

    background:#fff;

    border:1px solid #e3e7eb;
    border-top:4px solid #225C9E;

    padding:25px 30px;

    margin-bottom:15px;
}


/* PHOTO */

.sob-profile-photo{
    width:125px;
    height:145px;

    flex-shrink:0;

    overflow:hidden;

    border:1px solid #dfe4e8;

    background:#f5f7fa;

    margin-right:25px;
}

.sob-profile-photo img{
    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}


/* INFORMATION */

.sob-profile-information{
    flex:1;
}

.sob-profile-kicker{
    color:#225C9E;

    font-size:11px;
    font-weight:700;

    letter-spacing:1px;

    margin-bottom:6px;
}

.sob-profile-information h1{
    margin:0 0 8px;

    color:#222;

    font-size:22px;
    font-weight:700;

    line-height:1.35;
}

.sob-profile-designation{
    color:#225C9E;

    font-size:15px;
    font-weight:600;

    line-height:1.5;

    margin-bottom:3px;
}

.sob-profile-subject{
    color:#555;

    font-size:13px;

    line-height:1.5;

    margin-bottom:3px;
}

.sob-profile-school{
    color:#777;

    font-size:13px;

    line-height:1.5;
}


/* =========================================================
   PROFILE NAVIGATION
   ========================================================= */

.sob-profile-navigation{
    display:flex;
    flex-wrap:wrap;

    background:#fff;

    border:1px solid #e3e7eb;

    margin-bottom:20px;
}

.sob-profile-navigation a{
    display:flex;

    align-items:center;
    justify-content:center;

    padding:13px 18px;

    color:#555 !important;

    font-size:13px;
    font-weight:600;

    text-decoration:none !important;

    border-right:1px solid #edf0f3;

    transition:all .25s ease;
}

.sob-profile-navigation a:last-child{
    border-right:none;
}

.sob-profile-navigation a i{
    color:#225C9E;

    font-size:13px;

    margin-right:7px;
}

.sob-profile-navigation a:hover{
    background:#225C9E;

    color:#fff !important;
}

.sob-profile-navigation a:hover i{
    color:#fff;
}


/* =========================================================
   PROFILE SECTIONS
   ========================================================= */

.sob-profile-section{
    background:#fff;

    border:1px solid #e3e7eb;

    padding:25px 30px;

    margin-bottom:20px;

    scroll-margin-top:20px;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.sob-section-heading{
    display:flex;

    align-items:center;

    padding-bottom:15px;

    margin-bottom:18px;

    border-bottom:1px solid #edf0f3;
}


/* ICON - NO BACKGROUND */

.sob-section-icon{
    width:24px;
    height:24px;

    display:flex;

    align-items:center;
    justify-content:center;

    flex-shrink:0;

    margin-right:10px;

    background:none !important;

    color:#225C9E;

    font-size:14px;
}

.sob-section-icon i{
    display:inline-block;

    width:auto;
    height:auto;

    background:none !important;

    color:#225C9E !important;

    line-height:1;

    vertical-align:middle;
}


/* HEADING TEXT */

.sob-section-heading span{
    display:block;

    color:#225C9E;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    line-height:1.3;

    margin-bottom:2px;
}

.sob-section-heading h2{
    margin:0;

    color:#222;

    font-size:21px;

    font-weight:700;

    line-height:1.35;
}


/* =========================================================
   DATABASE CONTENT
   ========================================================= */

.sob-profile-content{
    color:#555;

    font-size:14px;

    line-height:1.75;

    text-align:justify;
}

.sob-database-content{
    width:100%;
}

.sob-database-content p{
    margin:0 0 12px;
}

.sob-database-content p:last-child{
    margin-bottom:0;
}

.sob-database-content h1,
.sob-database-content h2,
.sob-database-content h3,
.sob-database-content h4,
.sob-database-content h5,
.sob-database-content h6{
    color:#333;

    line-height:1.4;

    margin-top:18px;
    margin-bottom:8px;
}

.sob-database-content ul,
.sob-database-content ol{
    margin-top:8px;

    margin-bottom:12px;

    padding-left:25px;
}

.sob-database-content li{
    margin-bottom:5px;
}

.sob-database-content a{
    color:#225C9E;

    text-decoration:none;
}

.sob-database-content a:hover{
    color:#174778;

    text-decoration:underline;
}


/* =========================================================
   PUBLICATIONS
   ========================================================= */

.sob-publication-content{
    text-align:left;
}

.sob-publication-item{
    position:relative;

    padding:10px 0 10px 18px;

    border-bottom:1px solid #edf0f3;

    color:#555;

    font-size:13px;

    line-height:1.7;
}

.sob-publication-item:last-child{
    border-bottom:none;
}

.sob-publication-item:before{
    content:"";

    position:absolute;

    left:0;

    top:18px;

    width:5px;
    height:5px;

    background:#225C9E;

    border-radius:50%;
}


/* RESEARCH */

.sob-research-content{
    text-align:left;
}


/* =========================================================
   CURRICULUM VITAE
   ========================================================= */

.sob-cv-section{
    margin-bottom:0;
}

.sob-cv-box{
    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    padding:18px;

    background:#f7f9fb;

    border:1px solid #e2e7ec;

    border-left:4px solid #225C9E;
}

.sob-cv-information{
    display:flex;

    align-items:center;

    min-width:0;
}


/* PDF ICON */

.sob-cv-icon{
    width:42px;
    height:42px;

    display:flex;

    align-items:center;
    justify-content:center;

    flex-shrink:0;

    margin-right:12px;

    background:#225C9E;

    color:#fff;

    font-size:17px;
}

.sob-cv-information h3{
    margin:0 0 3px;

    color:#333;

    font-size:15px;

    font-weight:700;
}

.sob-cv-information p{
    margin:0;

    color:#777;

    font-size:12px;
}


/* DOWNLOAD BUTTON */

.sob-cv-action a{
    display:inline-flex;

    align-items:center;

    gap:7px;

    padding:8px 15px;

    background:#225C9E;

    border:1px solid #225C9E;

    border-radius:4px;

    color:#fff !important;

    font-size:12px;

    font-weight:600;

    line-height:18px;

    text-decoration:none !important;

    white-space:nowrap;

    transition:all .25s ease;
}

.sob-cv-action a:hover{
    background:#174778;

    border-color:#174778;

    color:#fff !important;

    box-shadow:0 3px 8px rgba(34,92,158,.20);
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:991px){

    .sob-profile-header{
        padding:22px;
    }

    .sob-profile-information h1{
        font-size:25px;
    }

    .sob-profile-navigation a{
        padding:12px 14px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:767px){

    .sob-profile-page{
        padding:25px 0 40px;
    }


    /* PROFILE HEADER */

    .sob-profile-header{
        display:block;

        text-align:center;

        padding:25px 18px;
    }

    .sob-profile-photo{
        width:120px;
        height:140px;

        margin:0 auto 18px;
    }

    .sob-profile-information h1{
        font-size:22px;
    }

    .sob-profile-designation{
        font-size:14px;
    }


    /* NAVIGATION */

    .sob-profile-navigation{
        display:grid;

        grid-template-columns:1fr 1fr;
    }

    .sob-profile-navigation a{
        padding:11px 8px;

        border-right:1px solid #edf0f3;

        border-bottom:1px solid #edf0f3;

        font-size:12px;
    }

    .sob-profile-navigation a:nth-child(2n){
        border-right:none;
    }

    .sob-profile-navigation a:nth-last-child(-n+2){
        border-bottom:none;
    }


    /* SECTIONS */

    .sob-profile-section{
        padding:20px 18px;

        margin-bottom:15px;
    }

    .sob-section-heading{
        margin-bottom:15px;
    }

    .sob-section-heading h2{
        font-size:19px;
    }

    .sob-profile-content{
        font-size:13px;

        line-height:1.7;
    }


    /* CV */

    .sob-cv-box{
        display:block;

        padding:15px;
    }

    .sob-cv-information{
        margin-bottom:15px;
    }

    .sob-cv-action a{
        width:100%;

        justify-content:center;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media(max-width:400px){

    .sob-profile-information h1{
        font-size:20px;
    }

    .sob-profile-navigation a{
        font-size:11px;
    }

    .sob-section-heading h2{
        font-size:18px;
    }

}




/* =========================================================
   SCHOOL OF AGRICULTURE & RURAL DEVELOPMENT
   FACULTY LIST
   ========================================================= */

.sard-faculty-section{
    padding:45px 0 60px;
    background:#f5f7fa;
}


/* HEADER */

.sard-faculty-header{
    text-align:center;
    margin-bottom:35px;
}

.sard-faculty-kicker{
    color:#225C9E;
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
    line-height:1.5;
    text-transform:uppercase;
    margin-bottom:7px;
}

.sard-faculty-header h2{
    margin:0;
    color:#222;
    font-size:30px;
    line-height:1.3;
    font-weight:700;
}

.sard-faculty-header-line{
    width:45px;
    height:3px;
    background:#225C9E;
    margin:12px auto;
}

.sard-faculty-header p{
    margin:0;
    color:#777;
    font-size:14px;
    line-height:1.5;
}


/* FACULTY GRID */

.sard-faculty-list{
    display:flex;
    flex-wrap:wrap;
    margin-left:-10px;
    margin-right:-10px;
}

.sard-faculty-list > div{
    padding-left:10px;
    padding-right:10px;
    margin-bottom:20px;
    display:flex;
}


/* FACULTY CARD */

.sard-faculty-item{
    position:relative;

    width:100%;
    height:100%;

    background:#fff;

    border:1px solid #e3e7eb;
    border-radius:4px;

    padding:25px 20px 20px;

    text-align:center;

    overflow:hidden;

    display:flex;
    flex-direction:column;

    transition:all .25s ease;
}

.sard-faculty-item:hover{
    transform:translateY(-2px);

    border-color:#d6dce2;

    box-shadow:0 7px 18px rgba(0,0,0,.07);
}


/* TOP BLUE LINE */

.sard-faculty-accent{
    position:absolute;

    top:0;
    left:0;
    right:0;

    height:4px;

    background:#225C9E;
}


/* PHOTO */

.sard-faculty-photo{
    width:125px;
    height:145px;

    flex-shrink:0;

    margin:0 auto 16px;

    overflow:hidden;

    border:1px solid #e0e4e8;

    background:#f5f7fa;
}

.sard-faculty-photo img{
    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}


/* DETAILS */

.sard-faculty-details{
    width:100%;

    display:flex;
    flex-direction:column;

    flex:1;
}


/* NAME */

.sard-faculty-details h3{
    margin:0 0 7px;

    color:#222;

    font-size:18px;
    font-weight:700;

    line-height:1.4;

    min-height:25px;
}


/* DESIGNATION */

.sard-faculty-designation{
    color:#225C9E;

    font-size:13px;
    font-weight:600;

    line-height:1.5;

    min-height:20px;

    margin-bottom:3px;
}


/* SUBJECT */

.sard-faculty-subject{
    color:#777;

    font-size:12px;

    line-height:1.5;

    min-height:18px;
}


/* CONTACT */

.sard-faculty-contact{
    margin-top:15px;

    padding-top:12px;

    border-top:1px solid #edf0f3;

    text-align:left;
}


/* CONTACT ROW */

.sard-contact-row{
    display:flex;

    align-items:center;

    min-height:18px;

    margin-bottom:7px;

    font-size:12px;

    line-height:18px;
}

.sard-contact-row:last-child{
    margin-bottom:0;
}


/* CONTACT ICON - NO BACKGROUND */

.sard-contact-icon{
    width:20px;
    min-width:20px;

    height:18px;

    line-height:18px;

    margin-right:6px;

    color:#225C9E;

    font-size:12px;

    text-align:center;

    background:none !important;

    background-color:transparent !important;

    border:0 !important;

    box-shadow:none !important;
}

.sard-contact-icon i{
    display:inline-block;

    width:auto;
    height:auto;

    line-height:18px;

    vertical-align:middle;

    color:#225C9E !important;

    background:none !important;

    background-color:transparent !important;
}


/* CONTACT TEXT */

.sard-contact-text{
    color:#666;

    line-height:18px;

    word-break:break-word;

    flex:1;
}

.sard-contact-text a{
    color:#225C9E !important;

    text-decoration:none !important;
}

.sard-contact-text a:hover{
    color:#174778 !important;

    text-decoration:underline !important;
}


/* PROFILE BUTTON */

.sard-faculty-profile{
    margin-top:auto;

    padding-top:18px;
}


.sard-faculty-profile span{
color:#fff
}

.sard-faculty-profile a{
    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:8px 16px;

    border:1px solid #225C9E;

    border-radius:4px;

    background:#225C9E;

    color:#fff !important;

    font-size:13px;

    font-weight:600;

    line-height:18px;

    text-decoration:none !important;

    transition:all .25s ease;
}

.sard-faculty-profile a i{
    font-size:12px;

    line-height:1;

    transition:transform .25s ease;
}

.sard-faculty-profile a:hover{
    background:#174778;

    border-color:#174778;

    color:#fff !important;

    text-decoration:none !important;

    box-shadow:0 4px 10px rgba(34,92,158,.20);
}

.sard-faculty-profile a:hover i{
    transform:translateX(4px);
}


/* EMPTY */

.sard-faculty-empty{
    padding:50px 20px;

    text-align:center;

    background:#fff;

    border:1px solid #e3e7eb;

    border-radius:4px;
}

.sard-faculty-empty i{
    display:block;

    margin-bottom:10px;

    color:#225C9E;

    font-size:30px;
}

.sard-faculty-empty p{
    margin:0;

    color:#777;

    font-size:14px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:991px){

    .sard-faculty-section{
        padding:40px 0 55px;
    }

    .sard-faculty-header{
        margin-bottom:30px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:767px){

    .sard-faculty-section{
        padding:30px 0 45px;
    }

    .sard-faculty-header{
        margin-bottom:25px;
    }

    .sard-faculty-kicker{
        font-size:10px;
        padding:0 10px;
    }

    .sard-faculty-header h2{
        font-size:25px;
    }

    .sard-faculty-header p{
        font-size:13px;
    }


    .sard-faculty-list{
        display:block;

        margin-left:-10px;
        margin-right:-10px;
    }

    .sard-faculty-list > div{
        display:block;

        margin-bottom:15px;
    }


    .sard-faculty-item{
        height:auto;

        padding:23px 18px 18px;
    }


    .sard-faculty-photo{
        width:120px;
        height:140px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media(max-width:400px){

    .sard-faculty-photo{
        width:115px;
        height:135px;
    }

    .sard-faculty-details h3{
        font-size:17px;
    }

}



/* =========================================================
   SCHOOL OF AGRICULTURE & RURAL DEVELOPMENT
   FACULTY PROFILE
   ========================================================= */


/* =========================================================
   MAIN PAGE
   ========================================================= */

.sard-profile-page{
    padding:40px 0 60px;
    background:#f5f7fa;
}


/* =========================================================
   PROFILE HEADER
   ========================================================= */

.sard-profile-header{
    display:flex;
    align-items:center;

    background:#fff;

    border:1px solid #e3e7eb;
    border-top:4px solid #225C9E;

    padding:25px 30px;

    margin-bottom:15px;
}


/* =========================================================
   PROFILE PHOTO
   ========================================================= */

.sard-profile-photo{
    width:125px;
    height:145px;

    flex-shrink:0;

    overflow:hidden;

    border:1px solid #dfe4e8;

    background:#f5f7fa;

    margin-right:25px;
}

.sard-profile-photo img{
    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}


/* =========================================================
   PROFILE INFORMATION
   ========================================================= */

.sard-profile-information{
    flex:1;
}

.sard-profile-kicker{
    color:#225C9E;

    font-size:11px;
    font-weight:700;

    letter-spacing:1px;

    margin-bottom:6px;
}

.sard-profile-information h1{
    margin:0 0 8px;

    color:#222;

    font-size:20px;
    font-weight:700;

    line-height:1.35;
}

.sard-profile-designation{
    color:#225C9E;

    font-size:15px;
    font-weight:600;

    line-height:1.5;

    margin-bottom:3px;
}

.sard-profile-subject{
    color:#555;

    font-size:13px;

    line-height:1.5;

    margin-bottom:3px;
}

.sard-profile-school{
    color:#777;

    font-size:13px;

    line-height:1.5;
}


/* =========================================================
   PROFILE NAVIGATION
   ========================================================= */

.sard-profile-navigation{
    display:flex;
    flex-wrap:wrap;

    background:#fff;

    border:1px solid #e3e7eb;

    margin-bottom:20px;
}

.sard-profile-navigation a{
    display:flex;

    align-items:center;
    justify-content:center;

    padding:13px 18px;

    color:#555 !important;

    font-size:13px;
    font-weight:600;

    text-decoration:none !important;

    border-right:1px solid #edf0f3;

    transition:all .25s ease;
}

.sard-profile-navigation a:last-child{
    border-right:none;
}

.sard-profile-navigation a i{
    color:#225C9E;

    font-size:13px;

    margin-right:7px;
}

.sard-profile-navigation a:hover{
    background:#225C9E;

    color:#fff !important;
}

.sard-profile-navigation a:hover i{
    color:#fff;
}


/* =========================================================
   PROFILE SECTIONS
   ========================================================= */

.sard-profile-section{
    background:#fff;

    border:1px solid #e3e7eb;

    padding:25px 30px;

    margin-bottom:20px;

    scroll-margin-top:20px;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.sard-section-heading{
    display:flex;

    align-items:center;

    padding-bottom:15px;

    margin-bottom:18px;

    border-bottom:1px solid #edf0f3;
}


/* =========================================================
   SECTION ICON
   NO BACKGROUND
   ========================================================= */

.sard-section-icon{
    width:24px;
    height:24px;

    display:flex;

    align-items:center;
    justify-content:center;

    flex-shrink:0;

    margin-right:10px;

    background:none !important;
    background-color:transparent !important;

    border:0 !important;

    box-shadow:none !important;

    color:#225C9E;

    font-size:14px;
}

.sard-section-icon i{
    display:inline-block;

    width:auto;
    height:auto;

    background:none !important;
    background-color:transparent !important;

    border:0 !important;

    box-shadow:none !important;

    color:#225C9E !important;

    line-height:1;

    vertical-align:middle;
}


/* =========================================================
   SECTION HEADING TEXT
   ========================================================= */

.sard-section-heading span{
    display:block;

    color:#225C9E;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    line-height:1.3;

    margin-bottom:2px;
}

.sard-section-heading h2{
    margin:0;

    color:#222;

    font-size:21px;

    font-weight:700;

    line-height:1.35;
}


/* =========================================================
   DATABASE CONTENT
   ========================================================= */

.sard-profile-content{
    width:100%;
    max-width:100%;

    color:#555;

    font-size:14px;

    line-height:1.75;

    text-align:justify;

    overflow:hidden;

    word-wrap:break-word;

    overflow-wrap:anywhere;
}

.sard-database-content{
    width:100%;
    max-width:100%;

    word-wrap:break-word;

    overflow-wrap:anywhere;
}

.sard-database-content p{
    margin:0 0 12px;
}

.sard-database-content p:last-child{
    margin-bottom:0;
}

.sard-database-content h1,
.sard-database-content h2,
.sard-database-content h3,
.sard-database-content h4,
.sard-database-content h5,
.sard-database-content h6{
    color:#333;

    line-height:1.4;

    margin-top:18px;
    margin-bottom:8px;

    max-width:100%;
}

.sard-database-content ul,
.sard-database-content ol{
    margin-top:8px;

    margin-bottom:12px;

    padding-left:25px;

    max-width:100%;
}

.sard-database-content li{
    margin-bottom:5px;

    overflow-wrap:anywhere;
}

.sard-database-content a{
    color:#225C9E;

    text-decoration:none;

    overflow-wrap:anywhere;

    word-break:break-word;
}

.sard-database-content a:hover{
    color:#174778;

    text-decoration:underline;
}


/* =========================================================
   PUBLICATIONS
   IMPORTANT OVERFLOW FIX
   ========================================================= */

.sard-publication-content{
    width:100%;
    max-width:100%;

    text-align:left;

    overflow:hidden;

    word-wrap:break-word;

    overflow-wrap:anywhere;
}

.sard-publication-item{
    position:relative;

    width:100%;
    max-width:100%;

    box-sizing:border-box;

    padding:10px 0 10px 18px;

    border-bottom:1px solid #edf0f3;

    color:#555;

    font-size:13px;

    line-height:1.7;

    white-space:normal;

    word-wrap:break-word;

    overflow-wrap:anywhere;

    word-break:normal;

    overflow:hidden;
}

.sard-publication-item:last-child{
    border-bottom:none;
}


/* PUBLICATION BULLET */

.sard-publication-item:before{
    content:"";

    position:absolute;

    left:0;
    top:18px;

    width:5px;
    height:5px;

    background:#225C9E;

    border-radius:50%;
}


/* =========================================================
   PUBLICATION LINKS / DOI / URL
   ========================================================= */

.sard-publication-item a{
    display:inline;

    max-width:100%;

    color:#225C9E;

    text-decoration:none;

    white-space:normal;

    word-wrap:break-word;

    overflow-wrap:anywhere;

    word-break:break-all;
}

.sard-publication-item a:hover{
    color:#174778;

    text-decoration:underline;
}


/* =========================================================
   PUBLICATION CONTENT ELEMENTS
   ========================================================= */

.sard-publication-item p,
.sard-publication-item div,
.sard-publication-item span{
    max-width:100%;

    white-space:normal;

    word-wrap:break-word;

    overflow-wrap:anywhere;
}


/* IMAGES */

.sard-publication-item img{
    display:block;

    max-width:100%;

    height:auto;
}


/* TABLES */

.sard-publication-item table{
    width:100% !important;

    max-width:100%;

    table-layout:fixed;

    border-collapse:collapse;
}

.sard-publication-item td,
.sard-publication-item th{
    max-width:100%;

    word-wrap:break-word;

    overflow-wrap:anywhere;

    word-break:break-word;
}


/* =========================================================
   RESEARCH
   ========================================================= */

.sard-research-content{
    text-align:left;

    width:100%;
    max-width:100%;

    overflow:hidden;

    overflow-wrap:anywhere;
}


/* =========================================================
   CURRICULUM VITAE
   ========================================================= */

.sard-cv-section{
    margin-bottom:0;
}

.sard-cv-box{
    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    padding:18px;

    background:#f7f9fb;

    border:1px solid #e2e7ec;

    border-left:4px solid #225C9E;
}

.sard-cv-information{
    display:flex;

    align-items:center;

    min-width:0;
}


/* PDF ICON */

.sard-cv-icon{
    width:42px;
    height:42px;

    display:flex;

    align-items:center;
    justify-content:center;

    flex-shrink:0;

    margin-right:12px;

    background:#225C9E;

    color:#fff;

    font-size:17px;
}

.sard-cv-information h3{
    margin:0 0 3px;

    color:#333;

    font-size:15px;

    font-weight:700;
}

.sard-cv-information p{
    margin:0;

    color:#777;

    font-size:12px;
}


/* =========================================================
   DOWNLOAD BUTTON
   ========================================================= */

.sard-cv-action a{
    display:inline-flex;

    align-items:center;

    gap:7px;

    padding:8px 15px;

    background:#225C9E;

    border:1px solid #225C9E;

    border-radius:4px;

    color:#fff !important;

    font-size:12px;

    font-weight:600;

    line-height:18px;

    text-decoration:none !important;

    white-space:nowrap;

    transition:all .25s ease;
}

.sard-cv-action a:hover{
    background:#174778;

    border-color:#174778;

    color:#fff !important;

    box-shadow:0 3px 8px rgba(34,92,158,.20);
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:991px){

    .sard-profile-header{
        padding:22px;
    }

    .sard-profile-information h1{
        font-size:25px;
    }

    .sard-profile-navigation a{
        padding:12px 14px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:767px){

    .sard-profile-page{
        padding:25px 0 40px;
    }


    /* PROFILE HEADER */

    .sard-profile-header{
        display:block;

        text-align:center;

        padding:25px 18px;
    }

    .sard-profile-photo{
        width:120px;
        height:140px;

        margin:0 auto 18px;
    }

    .sard-profile-information h1{
        font-size:22px;
    }

    .sard-profile-designation{
        font-size:14px;
    }


    /* NAVIGATION */

    .sard-profile-navigation{
        display:grid;

        grid-template-columns:1fr 1fr;
    }

    .sard-profile-navigation a{
        padding:11px 8px;

        border-right:1px solid #edf0f3;

        border-bottom:1px solid #edf0f3;

        font-size:12px;
    }

    .sard-profile-navigation a:nth-child(2n){
        border-right:none;
    }

    .sard-profile-navigation a:nth-last-child(-n+2){
        border-bottom:none;
    }


    /* SECTIONS */

    .sard-profile-section{
        padding:20px 18px;

        margin-bottom:15px;

        overflow:hidden;
    }

    .sard-section-heading{
        margin-bottom:15px;
    }

    .sard-section-heading h2{
        font-size:19px;
    }

    .sard-profile-content{
        font-size:13px;

        line-height:1.7;

        overflow:hidden;

        overflow-wrap:anywhere;
    }


    /* PUBLICATIONS */

    .sard-publication-item{
        padding-left:15px;
        padding-right:0;

        font-size:13px;

        line-height:1.7;

        overflow:hidden;

        overflow-wrap:anywhere;
    }

    .sard-publication-item a{
        word-break:break-all;

        overflow-wrap:anywhere;
    }


    /* CV */

    .sard-cv-box{
        display:block;

        padding:15px;
    }

    .sard-cv-information{
        margin-bottom:15px;
    }

    .sard-cv-action a{
        width:100%;

        justify-content:center;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media(max-width:400px){

    .sard-profile-information h1{
        font-size:20px;
    }

    .sard-profile-navigation a{
        font-size:11px;
    }

    .sard-section-heading h2{
        font-size:18px;
    }

}

