*, body{
    margin: 0;
    padding: 0;
}
html {
    overflow-x: hidden;
}


:root {
    --primary: #3A65A3;
    --primaryHover: #1b4b8f;
    --lightPrimary: #3a66a30c;
    --light: #ffffff;
    --dark: #000000;
    --gray: #7a7a7a;
    --lightGray: #7a7a7a52;
}

.bg_primary {
    background: var(--primary);
}

.bg_primary_light {
    background: var(--lightPrimary);
}

.text_primary {
    color: var(--primary);
}

.bg_dark {
    background: var(--dark);
}

.text_dark {
    color: var(--dark) !important;
}

.bg_light {
    background: var(--light);
}

.text_light {
    color: var(--light);
}

.bg_gray {
    background: var(--gray);
}

.text_gray {
    color: var(--gray);
}

/* a:hover {
    opacity: 70%;
} */

.btn.btn_primary {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--light);
    border-radius: 0;
    width: 100%;
    transition: 0.5s;
}
a.btn.btn_primary:hover,
a.btn.btn_primary.active {
    background: var(--dark) !important;
    transition: 0.5s;
}


/* @font-face {
    font-family: SolaimanLipi;
    src: url('fonts/SolaimanLipi.woff2');
} */


p,span {
    font-size: 16px !important;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
p.sm {
    font-size: 14px !important;
    line-height: 17px !important;
}
p.justify {
    text-align: justify;
}
a {
    text-decoration: none;
    color: var(--primary);
    transition: 0.5s;
}


ul.list_style_none {
    list-style: none;
}

ul {
    list-style: none;
    padding-left: 20px;
}

ul li,
ol li {
    text-align: justify;
}

ul li svg {
    font-size: 12px;
}

@media (max-width:991.98px) {
    p,span {
        font-size: 16px !important;
    }
    h2 {
        font-size: 25px;
    }
}

.img_caption {
    font-size: 11px !important;
    font-style: italic;
    text-decoration: none;
}

/* Header */
header p {
    font-weight: 600 !important;
}


/* Navbar */
nav a {
    font-size: 18px !important;
}
.nav-link {
    border-bottom: 1px solid var(--light);
}
.nav-link:hover {
    color: var(--primary) !important;
    border-bottom: 1px solid var(--primary);
}
.nav-link.active {
    color: var(--primary) !important;
    border-bottom: 1px solid var(--primary);
}
.dropdown-item:hover {
    color: var(--light) !important;
    background: var(--primary);
}
.dropdown-item.active {
    color: var(--light) !important;
    background: var(--primary);
}
.dropdown-menu {
    border-radius: 0;
}
.navbar ul li.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid var(--lightGray);
}


/* Biography */
.biography {
    display: flex;
    text-align: justify;
}

.card {
    margin-bottom: 20px;
}
.card,
.card .card-body {
    border-radius: 0;
    border: 0 !important;
    padding: 0 !important;
}

/* Select */
.select2-container .select2-search--inline .select2-search__field {
    height: 28px !important; /* Adjust as needed */
    line-height: 28px !important;
}















/* Footer */
/* Footer Left */
/* .footer_left {
    width: 100%;
    height: 100%;
    display: flex;
} */

.professional_icon {
    display: flex;
    align-items: center;
    justify-content: start;
}
.google_scholar_icon img {
    width: 60%;
}
.google_scholar_icon {
    text-decoration: none;
    background: var(--light);
    border: 1px solid var(--light);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    color: var(--primary);
    margin-right: 5px;
}

.social_media_dark {
    display: flex;
}
.social_media_dark a {
    text-decoration: none;
    background: var(--light);
    border: 1px solid var(--light);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    color: var(--primary);
    margin-right: 5px;
}

@media (max-width:575.98px) {
    footer {
        text-align: center;
    }
    .footer_left {
        justify-content: center;
        text-decoration: underline;
        margin-bottom: 15px;
    }
}



