/* Other css files */

@import url("../css/bootstrap.min.css");
@import url("../css/fontawesome.css");
@import url("../css/all.css");
@import url("../css/owl.carousel.css");
@import url("../css/slimmenu.min.css");
@import url("../css/sweetalert2.min.css");

/* Fonts */
/* font-family: "Inter", sans-serif; */
/* font-family: "Lato", sans-serif; */

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background-color: var(--white);
}

/* Thumb */
::-webkit-scrollbar-thumb {
    background-color: rgba(8, 59, 79, 0.3);
    border-radius: 3px;
}

/* Hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--Secondary);
}

/* Variables*/
:root {
    --Inter: "Inter", sans-serif;
    --Lato: "Lato", sans-serif;
    --Primary: #083b4f;
    --Sherni: #84276F;
    --Secondary: rgb(148, 192, 195);
    --black: #000000;
    --white: #ffffff;
    --glass: #f8fafc;
    --text: #64748b;
    --Theme-Color: var(--Primary);
    --Theme-Gradient-Start: #1a5a7a;
}

body.theme-sherni {
    --Theme-Color: var(--Sherni);
    --Theme-Gradient-Start: #83276E;
}

/* Typography */
body {
    margin: 0;
    padding: 0;
    background-color: var(--white);
    -ms-overflow-style: scrollbar;
}

body,
p {
    font-family: var(--Lato);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.5px;
}

@media (max-width: 1199px) {

    body,
    p {
        font-size: 13px;
    }
}

@media (max-width: 991px) {

    body,
    p {
        font-size: 12px;
    }
}

img {
    max-width: 100%;
}

::selection {
    background: var(--black);
    color: var(--white);
}

::-moz-selection {
    background: var(--black);
    color: var(--white);
}

::-webkit-selection {
    background: var(--black);
    color: var(--white);
}

b,
strong {
    font-weight: 700;
}

a {
    color: var(--Theme-Color);
    text-decoration: none;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

a:focus,
a:hover {
    text-decoration: none;
    outline: 0;
}

h1,
.h1 {
    font-size: 30px;
    text-transform: capitalize;
    line-height: 1;
}

h2,
.h2 {
    font-size: 26px;
    text-transform: capitalize;
    line-height: 1;
}

h3,
.h3 {
    font-size: 20px;
    line-height: 1.5;
}

h4,
.h4 {
    font-size: 18px;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5 {
    font-family: var(--Inter);
    font-weight: 500;
    margin: 0 0 15px;
    letter-spacing: 0.54px;
    color: var(--Theme-Color);
}

blockquote,
ol,
p,
ul {
    margin: 0 0 15px;
    padding: 0;
}

@media (max-width: 1600px) {

    h1,
    .h1 {
        font-size: 28px;
    }

    h3,
    .h3 {
        font-size: 19px;
    }

    h4,
    .h4 {
        font-size: 17px;
    }

    h1,
    .h1,
    h2,
    .h2,
    h3,
    .h3,
    h4,
    .h4,
    h5 {
        margin: 0 0 10px;
    }

    blockquote,
    ol,
    p,
    ul {
        margin: 0 0 10px;
    }
}

@media (max-width: 1199px) {

    h1,
    .h1 {
        font-size: 26px;
    }

    h3,
    .h3 {
        font-size: 18px;
    }
}

@media (max-width: 991px) {

    h1,
    .h1 {
        font-size: 24px;
    }

    h3,
    .h3 {
        font-size: 17px;
    }

    h4,
    .h4 {
        font-size: 16px;
    }
}

@media (max-width: 767px) {

    h1,
    .h1 {
        font-size: 22px;
    }

    h3,
    .h3 {
        font-size: 16px;
    }

    h4,
    .h4 {
        font-size: 15px;
    }
}

@media (max-width: 575px) {

    h1,
    .h1 {
        font-size: 20px;
    }

    h3,
    .h3 {
        font-size: 15px;
    }

    h4,
    .h4 {
        font-size: 14px;
    }
}

ol li,
ul li {
    list-style-type: none;
}

.footer a,
.white,
.white a,
.white h1,
.white h2,
.white h3,
.white h4,
.white h5,
.white h6,
.white li,
.white p,
.white span {
    color: var(--white);
}

/* Typography */
.form-group {
    margin-bottom: 15px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="color"],
input[type="file"],
input[type="range"],
input[type="hidden"],
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="image"],
input[type="datetime"],
input[type="text"],
input[type="password"],
textarea {
    font-family: var(--Inter);
    width: 100%;
    max-width: 100%;
    display: block;
    height: inherit;
    position: relative;
    z-index: 1;
    direction: ltr;
    border: 1px solid rgba(8, 59, 79, 0.3);
    margin: 0;
    padding: 7px 10px;
    background-color: var(--white);
    border-radius: 3px;
    color: var(--Theme-Color);
    font-size: 12px;
    line-height: 20px;
    font-weight: 300;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

input[type="checkbox"] {
    display: block;
    height: 18px;
    width: 18px;
}

input[type="checkbox"]:checked {
    background-color: var(--Theme-Color);
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="date"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="color"]:focus,
input[type="file"]:focus,
input[type="checkbox"]:focus,
input[type="radio"]:focus,
input[type="range"]:focus,
input[type="hidden"]:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus,
input[type="image"]:focus,
textarea:focus {
    border-color: var(--Secondary);
    outline: none;
}

input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

input::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
    color: rgba(0, 0, 0, 0.5);
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    text-transform: capitalize;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.5);
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    text-transform: capitalize;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.5);
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    text-transform: capitalize;
}

/* Button CSS Start */
.btn_holder {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 10px;
}

.btn_holder.left {
    text-align: left;
    justify-content: flex-start;
}

.btn_holder.right {
    justify-content: flex-end;
}

.btn_holder .my_btn+.my_btn {
    margin-left: 0;
}

.my_btn,
button[type="submit"],
input[type="submit"] {
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    padding: 15px 25px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    color: var(--white);
    background-color: var(--Theme-Color);
    border: 1px solid transparent;
    border-radius: 3px;
    text-align: center;
    display: inline-block;
    min-width: 170px;
    letter-spacing: 0.54px;
    opacity: 1;
    text-transform: capitalize;
    overflow: hidden;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    text-decoration: none !important;
}

.my_btn:hover,
.my_btn:focus {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--black);
}

.my_btn.wht_brdr {
    border-color: var(--white);
    background-color: transparent;
    color: var(--white);
}

.my_btn.blk_brdr {
    border-color: var(--black);
    background-color: transparent;
    color: var(--black);
}

.my_btn.blk_brdr:hover,
.my_btn.blk_brdr:focus {
    background-color: var(--Theme-Color);
    color: var(--white);
}

.my_btn.wht_brdr:hover,
.my_btn.wht_brdr:focus {
    background-color: var(--black);
}

.my_btn.sm {
    min-width: 60px;
    font-size: 14px;
    padding: 10px;
}

.my_btn.md {
    min-width: 120px;
    font-size: 18px;
    padding: 10px 15px;
}

/* Button CSS End */

/* Header CSS Start */
.header {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 99;
    display: block;
    background-color: var(--white);
    text-align: right;
}

.top_header,
.main_header,
.header_right,
.mainmenu,
.logo,
.logo2,
.logo a,
.logo2 a,
.logo img,
.logo2 img,
.header {
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.header .top_header {
    background-color: var(--Theme-Color);
}

.header .top_header .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .top_header .top_header_left ul,
.header .top_header .top_header_right ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.header .top_header .top_header_right ul li a,
.header .top_header .top_header_left ul li a {
    display: inline-block;
    color: var(--white);
    padding: 10px 15px;
    position: relative;
    transition: all 0.25s;
}

.header .top_header .top_header_right ul li:last-child a::before,
.header .top_header .top_header_left ul li:last-child a::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    top: 0;
    left: 0;
}

.header .top_header .top_header_right ul li:first-child a:hover,
.header .top_header .top_header_left ul li a:hover {
    background-color: var(--white);
    color: var(--Theme-Color);
}

.header .top_header .top_header_right ul li:first-child a i,
.header .top_header .top_header_left ul li a i {
    display: inline-block;
    margin-right: 5px;
}

.header .main_header .container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky.header {
    position: fixed;
    -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.sticky.header .top_header .top_header_right ul li a,
.sticky.header .top_header .top_header_left ul li a {
    padding: 5px 15px;
}

.sticky.header ul.slimmenu>li>a {
    line-height: 80px;
}

.header .main_header .logo {
    width: 294px;
}

.header .main_header .logo2 {
    width: 287px;
}

.header .main_header .logo a,
.header .main_header .logo2 a {
    display: block;
}

.header .main_header .logo img,
.header .main_header .logo2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sticky.header .main_header .logo {
    width: 270px;
}

.sticky.header .main_header .logo2 {
    width: 260px;
}

.sticky.header.search_bar input[type="search"] {
    padding: 8px 10px;
}

.sticky.header .search_bar {
    top: 0px;
}

@media (max-width: 1600px) {
    .search .search_btn i {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 14px;
    }

    .header .top_header .top_header_right ul li a,
    .header .top_header .top_header_left ul li a {
        padding: 6px 13px;
    }

    .sticky.header .top_header .top_header_right ul li a,
    .sticky.header .top_header .top_header_left ul li a {
        padding: 6px 15px;
    }

    .header .main_header .logo {
        width: 260px;
    }

    .header .main_header .logo2 {
        width: 260px;
    }

    .sticky.header .main_header .logo {
        width: 240px;
    }

    .sticky.header .main_header .logo2 {
        width: 240px;
    }

    header ul.slimmenu>li>a {
        line-height: 100px;
    }

    .sticky.header ul.slimmenu>li>a {
        line-height: 80px;
    }
}

@media (max-width: 1199px) {

    .header,
    .sticky.header {
        position: relative;
        -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .header .top_header .top_header_right ul li a,
    .header .top_header .top_header_left ul li a,
    .sticky.header .top_header .top_header_right ul li a,
    .sticky.header .top_header .top_header_left ul li a {
        padding: 5px 12px;
    }

    .header .main_header .logo,
    .sticky.header .main_header .logo {
        width: 240px;
    }

    .header .main_header .logo2,
    .sticky.header .main_header .logo2 {
        width: 240px;
    }

    .header .main_header .mainmenu {
        order: 1;
        padding: 20px 0;
    }

    .sticky.header ul.slimmenu>li>a,
    header ul.slimmenu>li>a {
        line-height: 20px;
    }

    ul.slimmenu li .sub-toggle {
        width: 37px;
        height: 37px;
        line-height: 37px;
    }
}

@media (max-width: 991px) {
    .header .main_header .logo .sticky.header .main_header .logo {
        width: 210px;
    }

    .header .main_header .logo2,
    .sticky.header .main_header .logo2 {
        width: 210px;
    }
}

@media (max-width: 767px) {

    .header .top_header .top_header_right ul li a,
    .header .top_header .top_header_left ul li a {
        font-size: 0;
    }

    .header .top_header .top_header_right ul li a i,
    .header .top_header .top_header_left ul li a i {
        font-size: 15px;
        margin-right: 0;
    }

    .header .top_header .top_header_right ul li:first-child a i,
    .header .top_header .top_header_left ul li a i {
        margin-right: 0;
    }

    .header .top_header .top_header_right ul li a,
    .header .top_header .top_header_left ul li a,
    .sticky.header .top_header .top_header_right ul li a,
    .sticky.header .top_header .top_header_left ul li a {
        padding: 5px 10px;
    }

    .sticky.header .top_header .top_header_left ul li a,
    .header .top_header .top_header_left ul li a {
        padding-right: 0;
        padding: 10px 0 10px 10px;
    }

    .header .main_header .logo,
    .sticky.header .main_header .logo {
        width: 200px;
    }

    .header .main_header .logo2,
    .sticky.header .main_header .logo2 {
        width: 200px;
    }

    .header .top_header_right ul li:first-child a {
        padding: 10px;
    }

    .header .main_header .mainmenu {
        padding: 15px 0;
    }
}

@media (max-width: 575px) {
    .header .main_header .container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .header .main_header .logo,
    .sticky.header .main_header .logo,
    .header .main_header .logo2,
    .sticky.header .main_header .logo2 {
        width: 40%;
    }
}

@media (max-width: 400px) {
    .header .main_header .container {
        flex-wrap: wrap;
    }

    .header .main_header .logo,
    .sticky.header .main_header .logo {
        width: 70%;
    }

    .header .main_header .logo2,
    .sticky.header .main_header .logo2 {
        display: none;
    }
}

/* Header CSS End */

.header_gap {
    margin-top: 144px;
}

@media (max-width: 1600px) {
    .header_gap {
        margin-top: 137px;
    }
}

@media (max-width: 1199px) {
    .header_gap {
        margin-top: 0;
    }
}

/* Billboard CSS Start */
.billboard {
    position: relative;
}

.billboard .item {
    padding: 100px 0;
    position: relative;
    width: 100%;
    max-height: 500px;
    height: 500px;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

.billboard .item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--black);
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
}

.caption {
    background-color: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 30px;
    border-radius: 8px;
}

.caption h1 {
    font-size: 50px;
}

.caption h1:last-child,
.caption p:last-child {
    margin-bottom: 0;
}

/* Billboard CSS End */

/* Sections */
.sections {
    padding: 40px 0;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.sections.sm {
    padding: 30px 0;
}

.sections_title {
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

.sections_title.left {
    text-align: left;
}

.sections_title.left {
    text-align: left;
}

.sections_title .title_right {
    display: inherit;
    flex: 0 auto;
}

.sections_title h2 {
    position: relative;
    display: inline-block;
}

.sections_title p:last-child,
.sections_title h2:last-child,
.sections_title h3:last-child {
    margin-bottom: 0px;
}

.fit_icon {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.fit_icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.fit_img {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: var(--Theme-Color);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.fit_img+.fit_img {
    margin-top: 30px;
}

.fit_img img {
    width: 100%;
    height: 100%;
    object-fit: inherit;
    object-position: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.extra_space {
    margin-left: -6px;
    margin-right: -6px;
}

.extra_space>div {
    padding-left: 6px;
    padding-right: 6px;
}

.extra_space.lg {
    margin-left: -20px;
    margin-right: -20px;
}

.extra_space.lg>div {
    padding-left: 20px;
    padding-right: 20px;
}

.tb_space {
    margin-top: -12px;
    margin-bottom: -12px;
}

.tb_space>div {
    padding-top: 12px;
    padding-bottom: 12px;
}

.tb_space.sm {
    margin-top: -6px;
    margin-bottom: -6px;
}

.tb_space.sm>div {
    padding-top: 6px;
    padding-bottom: 6px;
}

.bg_primary {
    background-color: var(--Theme-Color);
}

.bg_secondary_light {
    background-color: rgba(148, 192, 195, 0.2);
}

/* Sections*/

/* Search Box CSS Start*/
.search_box {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
    background-color: var(--white);
}

.search_bar {
    position: relative;
    display: flex;
    align-items: center;
    width: 900px;
    margin: 0 auto;
}

.search_bar .custom-select {
    width: 300px;
}

.search_bar .custom-select .select-trigger {
    padding: 15px;
    font-size: 15px;
}

.search_bar[type="search"] {}

.search_bar .search_btn {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #01a2ff;
    color: var(--white);
    padding: 6px;
    z-index: 1;
}

/* Search Box CSS End*/

/* About Vidwan Section CSS Start */
.about_content {
    background-color: rgba(46, 35, 94, 0.01);
    height: 100%;
    padding: 15px;
    border-radius: 8px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.about_content h2:last-child,
.about_content p:last-child {
    margin-bottom: 0;
}

.about_vd {
    position: relative;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: all 0.25s;
    box-shadow:
        rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
        rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.about_vd iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    transition: all 0.25s;
}

.about_vd:hover iframe {
    transform: scale(1.02);
}

/* About Vidwan Section CSS Start */

/* Category Section CSS Start */
.category_wrapper {
    background-color: var(--white);
    padding: 15px;
    border-radius: 8px;
}

.category_wrapper h3 {
    text-align: center;
}

.category_list {
    max-height: 230px;
    overflow-y: auto;
    padding-right: 20px;
}

.category_box {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
    margin-bottom: 5px;
    transition: all 0.25s;
}

.category_box:hover {
    background-color: rgba(148, 192, 195, 0.2);
}

.category_box:hover p {
    color: var(--Theme-Color);
}

.category_wrapper .category_box:last-child {
    margin-bottom: 0;
}

.category_box p {
    margin-bottom: 0;
}

.catg_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
}

.catg_icon img {
    width: 100%;
    height: 100%;
}

.category_box span {
    display: inline-block;
    padding: 3px 5px;
    background-color: var(--Theme-Color);
    color: var(--white);
    margin-left: auto;
}

/* Category Section CSS End */

/* Why Vidwan Section CSS Start */
.why_box {
    width: 100%;
    position: relative;
    height: 100%;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.25s;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.why_box::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: unset;
    width: 100%;
    height: 0;
    border-radius: 8px;
    transition:
        height 0.4s,
        opacity 0.35s;
    opacity: 0;
}

.why_box .fit_icon {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: 100%;
    box-sizing: border-box;
    padding: 15px;
    border: 1px solid rgba(100, 100, 111, 0.2);
}

.why_box .fit_icon img {
    position: relative;
    width: 100%;
    height: 100%;
    filter: invert(79%) sepia(16%) saturate(453%) hue-rotate(136deg) brightness(93%) contrast(90%);
}

.why_box h3,
.why_box p {
    position: relative;
    margin-bottom: 0;
}

.why_box .my_btn {
    margin-top: auto;
}

.why_box:hover::before {
    background-color: var(--Secondary);
    opacity: 0.5;
    height: 100%;
}

/* Why Vidwan Section CSS End */

/* footer */
.footer {
    position: relative;
    padding: 65px 0 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    background-color: var(--black);
}

.footer h3 {
    font-size: 26px;
    font-family: var(--Inter);
    margin-bottom: 35px;
    color: var(--white);
}

.footer a,
.footer p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
}

.footer a:hover {
    color: var(--Secondary);
}

.f_address {
    display: flex;
    align-items: baseline;
    gap: 25px;
}

.f_address p {
    margin-bottom: 0;
}

.contact_info ul li {
    margin-bottom: 10px;
    margin-top: 10px;
    align-items: center;
}

.contact_info ul li,
.quick_links ul li {
    line-height: 1.5;
}

.contact_info ul li i {
    margin-right: 15px;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.contact_info ul li a:hover i {
    margin-right: 10px;
}

.contact_info ul li:last-child {
    margin-bottom: 0;
}

.quick_links ul {
    column-count: 2;
    column-gap: 10px;
    margin-bottom: 0;
}

.quick_links ul li {
    margin: 10px 0;
}

.quick_links ul li:last-child {
    margin-bottom: 0;
}

.quick_links ul li:first-child {
    margin-top: 0;
}

.quick_links ul li a {
    position: relative;
    padding-left: 20px;
    display: inline-block;
    transition: all 0.25s ease-in-out;
}

.quick_links ul li a::before {
    content: "\f105";
    font-family: "FontAwesome";
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.25s ease-in-out;
}

.footer .quick_links ul li a:hover:before {
    left: 5px;
}

.footer .social_media li {
    margin-right: 10px;
}

.social_media {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.footer .social_media li a {
    display: block;
    border-radius: 6px;
    background-color: var(--Secondary);
    height: 46px;
    width: 46px;
    text-align: center;
    line-height: 46px;
    transition: all 0.25s ease-in-out;
    color: var(--black);
    font-size: 22px;
}

.footer .social_media li a:hover {
    background-color: var(--white);
    color: var(--Theme-Color);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 0;
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.copyright p {
    margin: 0;
    font-size: 16px;
}

.copyright p a {
    color: var(--Secondary);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.copyright p a:hover {
    color: var(--white);
}

/* footer */

/* Profile Page CSS Start */
.page_wrapper {
    background-color: #f1f3f5;
}

.profile_header {
    padding: 10px 0;
    -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

/* Profile Banner */
.profile_info {
    position: relative;
    padding: 30px 0;
    background-color: var(--Theme-Color);
    background-image: radial-gradient(circle at 10% 20%,
            var(--Theme-Gradient-Start) 0%,
            var(--Theme-Color) 100%);
}

.profile_info .container-fluid {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.profile_box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
}

.profile_box .user_img {
    position: relative;
    height: 140px;
    width: 140px;
    min-width: 140px;
    max-width: 140px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.12);
    border: 3px solid rgba(255, 255, 255, 0.7);
    background: #ffffff;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile_box .user_img:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.u_details {
    flex: 1;
    min-width: 0;
    position: relative;
}

.u_details p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--white);
}

.u_details p i {
    margin-right: 8px;
}

.u_details p span {
    display: block;
}

.u_details p span i {
    margin-right: 8px;
}

.profile_box .user_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.u_details h1,
.u_details h2 {
    margin-bottom: 0;
}

.u_details .name_id {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-bottom: 12px;
}

.u_details .name_id h1,
.u_details .name_id h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.2px;
}

.u_details .name_id h1 span,
.u_details .name_id h2 span {
    font-weight: 600;
    opacity: 0.95;
}

.u_details .name_actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.u_details .vidwan_id_pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 20px;
    line-height: 1.2;
    letter-spacing: 0.2px;
}

.u_details .vidwan_id_pill i {
    font-size: 11px;
    opacity: 0.9;
}

.u_details .classic_btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    text-decoration: none;
    line-height: 1.2;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.u_details .classic_btn i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.u_details .classic_btn:hover {
    background: #ffffff;
    color: var(--Theme-Color, #083b4f);
    border-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
}

.u_details .classic_btn:hover i {
    transform: translate(1px, -1px);
}

.u_details .name_id a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 20px;
    line-height: 1.2;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 4px 10px;
    transition: all 0.25s;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.u_details .name_id a .id_icon i {
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 12px;
    background-color: var(--white);
    color: var(--Theme-Color);
    border-radius: 50%;
    text-align: center;
}

.u_details .name_id a:hover {
    background-color: var(--white);
    color: var(--Theme-Color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.u_details .name_id a .verified {
    color: rgba(0, 255, 0, 1);
}

.u_details .name_id a:hover .id_icon i {
    background-color: var(--Theme-Color);
    color: var(--white);
}

.u_details .name_id a:hover .verified {
    color: rgba(0, 255, 0, 1);
}

.all_ids {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.all_ids a {
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 2px;
    font-family: var(--Inter);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.25s;
    border-radius: 5px;
    line-height: 1;
}

.all_ids a:hover {
    background-color: var(--white);
    color: var(--Theme-Color);
}

.all_ids a .id_icon i {
    background-color: var(--white);
    color: var(--Theme-Color);
    font-size: 14px;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
}

.all_ids a:hover .id_icon i {
    background-color: var(--Theme-Color);
    color: var(--white);
}

.all_ids a .id_icon img {
    padding: 2px;
    background-color: var(--white);
    height: 20px;
    width: 20px;
}

.all_ids a span i {
    color: rgba(89, 187, 89, 1);
    font-size: 16px;
}

.view_profile {
    position: absolute;
    bottom: -40px;
    left: 0;
    display: block;
    margin-top: 15px;
}

.view_profile i {
    background-color: var(--white);
    color: var(--Theme-Color);
    height: 25px;
    width: 25px;
    line-height: 25px;
    border-radius: 100%;
    font-size: 12px;
    transition: all 0.25s;
}

.view_profile i:hover {
    background-color: var(--Secondary);
}

.gender_icon {
    margin: 10px 0;
}

.gender_icon i {
    height: 25px;
    width: 25px;
    line-height: 25px;
    border-radius: 100%;
    background-color: var(--white);
    font-size: 13px;
    color: var(--Theme-Color);
}

.expertise {
    position: relative;
    max-width: 480px;
    width: 100%;
}

.expertise h2 {
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.expertise h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 5px;
    border-radius: 5px;
    background-color: var(--white);
}

.expertise ul {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.expertise ul li {
    background-color: var(--white);
    color: var(--Theme-Color);
    padding: 7px 10px;
    border-radius: 20px;
    font-size: 12px;
    line-height: 1;
}

.edit_button.edit_exp {
    top: 0;
    left: unset;
    right: 0;
}

.expertise ul .my_btn {
    min-width: unset;
    padding: 10px 16px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    line-height: 1;
    color: var(--white);
    border: 1px solid var(--white);
    background: transparent;
}

.expertise ul .my_btn i {
    margin-right: 5px;
}

.expertise ul .my_btn:hover {
    background-color: var(--Secondary);
    color: var(--black);
    border-color: var(--Secondary);
}

.p_quick_link {
    display: block;
    margin-top: 20px;
    padding: 10px;
    border-radius: 3px;
    background-color: rgba(148, 192, 195, 0.4);
}

.p_quick_link h3 {
    margin-bottom: 5px;
    color: var(--white);
}

.p_quick_link ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 0;
}

.p_quick_link ul li a {
    position: relative;
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
    padding-bottom: 6px;
}

.p_quick_link ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: width 0.25s ease;
}

.p_quick_link ul li a:hover::after {
    width: 100%;
}

.p_quick_link ul li a i {
    margin-right: 5px;
    font-size: 14px;
}

.social_media_links h3 {
    margin-bottom: 0;
}

.social_media_links {
    position: absolute;
    right: 15px;
    bottom: 15px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.social_media_links ul {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 0;
}

.social_media_links ul li a i {
    display: inline-block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 15px;
    background-color: var(--white);
    color: var(--Theme-Color);
    text-align: center;
    border-radius: 50%;
    transition: all 0.5s;
}

.social_media_links ul li a i:hover {
    transform: rotate(360deg);
}

@media (max-width: 1645px) {
    .all_ids a {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 1600px) {
    .profile_box {
        gap: 20px;
    }

    .profile_box .user_img {
        height: 135px;
        width: 135px;
        min-width: 135px;
        max-width: 135px;
        border-radius: 16px;
    }

    .u_details {
        flex: 1;
        width: auto;
    }

    .all_ids a {
        padding: 4px 8px;
        font-size: 12px;
    }

    .all_ids a .id_icon i {
        height: 18px;
        width: 18px;
        line-height: 18px;
    }

    .all_ids a .id_icon img {
        height: 18px;
        width: 18px;
    }

    .social_media_links {
        margin-top: 10px;
        gap: 10px;
    }

    .social_media_links ul li a i {
        height: 28px;
        width: 28px;
        line-height: 28px;
        font-size: 14px;
    }
}

@media (max-width: 1199px) {
    .profile_box .user_img {
        height: 125px;
        width: 125px;
        min-width: 125px;
        max-width: 125px;
        border-radius: 14px;
    }

    .u_details {
        flex: 1;
        width: auto;
    }

    .social_media_links ul li a i {
        height: 26px;
        width: 26px;
        line-height: 26px;
        font-size: 13px;
    }

    .expertise h2 {
        font-size: 17px;
    }

    .expertise ul li {
        padding: 6px 9px;
        border-radius: 18px;
    }

    .expertise h2::before {
        width: 60px;
        height: 4px;
    }
}

@media (max-width: 991px) {
    .profile_info .container-fluid {
        flex-wrap: wrap;
        row-gap: 25px;
        justify-content: center;
    }

    .profile_box {
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .profile_box .user_img {
        height: 115px;
        width: 115px;
        min-width: 115px;
        max-width: 115px;
        border-radius: 14px;
    }

    .u_details {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .u_details .name_id {
        justify-content: center;
        text-align: center;
    }

    .u_details .name_id h1,
    .u_details .name_id h2 {
        font-size: 21px;
        width: 100%;
        text-align: center;
    }

    .u_details .name_actions {
        justify-content: center;
    }

    .all_ids {
        justify-content: center;
    }

    .all_ids a {
        padding: 3px 6px;
        font-size: 11px;
    }

    .all_ids a .id_icon i {
        height: 16px;
        width: 16px;
        line-height: 16px;
    }

    .all_ids a .id_icon img {
        height: 16px;
        width: 16px;
    }

    .social_media_links {
        justify-content: center;
        margin-top: 15px;
    }

    .social_media_links ul li a i {
        height: 24px;
        width: 24px;
        line-height: 24px;
        font-size: 12px;
    }

    .expertise {
        width: 100%;
        text-align: center;
    }

    .expertise ul {
        gap: 8px;
    }

    .expertise ul li {
        padding: 5px 8px;
        border-radius: 15px;
        font-size: 11px;
        line-height: 1;
    }

    .expertise h2::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .expertise ul {
        justify-content: center;
    }

    .expertise h2::before {
        width: 50px;
        height: 4px;
    }
}

@media (max-width: 767px) {
    .profile_box .user_img {
        height: 105px;
        width: 105px;
        min-width: 105px;
        max-width: 105px;
    }

    .social_media_links ul li a i {
        height: 22px;
        width: 22px;
        line-height: 22px;
        font-size: 11px;
    }

    .expertise h2::before {
        width: 46px;
        height: 4px;
    }
}

@media (max-width: 575px) {
    .profile_info {
        padding: 20px 0;
    }

    .profile_info .container-fluid {
        gap: 20px;
    }

    .profile_box {
        flex-wrap: wrap;
        justify-content: center;
    }

    .profile_box .user_img {
        height: 96px;
        width: 96px;
        min-width: 96px;
        max-width: 96px;
        border-radius: 12px;
    }

    .u_details {
        width: 100%;
        text-align: center;
    }

    .u_details .name_id h1,
    .u_details .name_id h2 {
        font-size: 19px;
    }

    .all_ids {
        justify-content: center;
    }

    .all_ids a {
        padding: 3px 6px;
        font-size: 11px;
        line-height: 1;
    }

    .social_media_links ul {
        width: 100%;
        justify-content: center;
    }

    .expertise {
        width: 100%;
    }

    .expertise h2 {
        font-size: 16px;
        text-align: center;
    }

    .expertise h2::before {
        width: 40px;
        height: 4px;
    }
}

/* Profile Banner */

/* Graph */

.publications_info {
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 12px 32px rgba(8, 59, 79, 0.1);
}

.publication_chart {
    padding: 15px;
    background-color: var(--white);
}

.publication_chart h3 {
    font-size: 18px;
}

.publication_chart .chart {
    width: 100%;
    height: 130px;
    opacity: 1;
}

.publication_chart .chart canvas {
    width: 100%;
    height: 100%;
}

/* Graph */
@media (max-width: 1600px) {
    .publications_info {
        border-radius: 12px;
    }

    .publication_chart h3 {
        font-size: 17px;
    }

    .publication_chart .fit_img {
        height: 110px;
    }
}

@media (max-width: 1399px) {
    .publication_chart .fit_img {
        height: 150px;
    }
}

@media (max-width: 1199px) {
    .publications_info {
        border-radius: 9px;
    }

    .publication_chart .fit_img {
        height: 120px;
    }
}

@media (max-width: 991px) {
    .publications_info {
        border-radius: 6px;
    }

    .publications_info {
        padding: 10px;
    }

    .publication_chart {
        padding: 10px;
    }

    .publication_chart h3 {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .publications_info {
        border-radius: 3px;
    }
}

@media (max-width: 575px) {
    .publication_chart h3 {
        font-size: 15px;
    }

    .publication_chart .fit_img {
        height: 90px;
    }
}

.metrics {
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
    padding: 15px;
    box-shadow: 0 12px 32px rgba(8, 59, 79, 0.1);
}

.metric_card {
    background-color: var(--white);
    padding: 15px;
    height: 100%;
}

.metric_card_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.metric_card_title {
    font-size: 18px;
    color: var(--Theme-Color);
    margin: 0;
}

.metric_card_icon {
    width: 34px;
    height: 34px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--Theme-Color);
    font-size: 20px;
}

.metric_card_icon img {
    height: 25px;
    width: 25px;
}

.metric_card_label {
    font-size: 13px;
    color: var(--Theme-Color);
}

.metric_card_stats {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.metric_card_stat {
    display: flex;
    justify-content: space-between;
    text-align: center;
    border-bottom: 1px dotted var(--Secondary);
    padding: 5px 0;
}

.metric_card_stat .stat_label {
    font-size: 14px;
    color: var(--text);
}

.metric_card_stat .stat_label i {
    margin-right: 5px;
    color: var(--Theme-Color);
}

.metric_card_stat .stat_label img {
    margin-right: 5px;
    height: 20px;
    width: 20px;
}

.metric_card_stat .stat_value {
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    color: var(--Theme-Color);
}

.metric_ind {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    text-align: center;
}

.metric_ind span:first-child,
.g_scholar .metric_card_stat .stat_label {
    width: 60%;
    text-align: left;
    max-height: 25px;
}

.metric_ind .all,
.metric_ind .since,
.g_scholar .metric_card_stat .stat_value {
    width: 20%;
    text-align: left;
}

@media (max-width: 1600px) {
    .metrics {
        border-radius: 12px;
    }

    .metric_card_title {
        font-size: 17px;
    }

    .metric_card_icon {
        width: 32px;
        height: 32px;
    }

    .metric_card_stat .stat_value {
        font-size: 19px;
    }
}

@media (max-width: 1321px) {

    .metric_ind .all,
    .metric_ind .since,
    .g_scholar .metric_card_stat .stat_value {
        width: 27%;
    }

    .metric_ind span:first-child,
    .g_scholar .metric_card_stat .stat_label {
        width: 46%;
    }
}

@media (max-width: 1199px) {
    .metrics {
        border-radius: 9px;
    }

    .metric_card_icon {
        width: 30px;
        height: 30px;
    }

    .metric_card_icon img {
        height: 24px;
        width: 24px;
    }

    .metric_card_stat .stat_value {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .metrics {
        padding: 10px;
        border-radius: 6px;
    }

    .metric_card {
        padding: 10px;
    }

    .metric_card_title {
        font-size: 16px;
    }

    .metric_card_icon {
        width: 28px;
        height: 28px;
    }

    .metric_card_icon img {
        height: 22px;
        width: 22px;
    }

    .metric_card_stat .stat_value {
        font-size: 17px;
    }

    .metric_card_stat .stat_label {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .main_row {
        flex-direction: column-reverse;
    }

    .metrics {
        border-radius: 3px;
    }

    .metric_card_icon {
        width: 26px;
        height: 26px;
    }

    .metric_card_icon img {
        height: 20px;
        width: 20px;
    }

    .metric_card_stat .stat_value {
        font-size: 16px;
    }

    .metric_ind span:first-child,
    .g_scholar .metric_card_stat .stat_label {
        width: 50%;
    }

    .metric_ind .all,
    .metric_ind .since,
    .g_scholar .metric_card_stat .stat_value {
        width: 25%;
    }
}

@media (max-width: 575px) {
    .metric_card_icon {
        width: 24px;
        height: 24px;
    }

    .metric_card_title {
        font-size: 15px;
    }

    .metric_card_icon img {
        height: 18px;
        width: 18px;
    }

    .metric_card_stat .stat_value {
        font-size: 15px;
    }

    .metric_card_stat .stat_label {
        font-size: 12px;
    }
}

/* All Metric */

/* Personal Information */
#personal_detail {
    height: auto;
}

.profile_information {
    background-color: var(--white);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 12px 32px rgba(8, 59, 79, 0.1);
}

.profile_information #myTabContent {
    padding: 15px;
    background-color: var(--glass);
}

#personal_detail #myTabContent {
    max-height: none;
    overflow-y: visible;
}

.profile_information #myTabContent ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
}

.profile_information #myTabContent ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text);
}

.profile_information #myTabContent ul li i {
    font-size: 13px;
    color: var(--Theme-Color);
    margin-top: 2px;
    min-width: 16px;
    text-align: center;
}

.profile_information #myTabContent ul li span {
    flex: 1;
}

.nav-link {
    color: var(--Theme-Color);
    font-size: 14px;
    font-weight: 700;
}

.nav-link:hover {
    color: var(--Theme-Color);
    background-color: var(--glass);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: var(--glass);
    color: var(--Theme-Color);
}

@media (max-width: 1600px) {
    .profile_information .nav-tabs .nav-item .nav-link {
        padding: 6px 8px;
    }
}

@media (max-width: 1199px) {

    .profile_information #myTabContent,
    .profile_information {
        padding: 12px;
    }
}

@media (max-width: 991px) {
    .profile_information {
        padding: 10px;
    }

    .profile_information .nav-tabs .nav-item .nav-link {
        padding: 5px 8px;
    }
}

@media (max-width: 767px) {

    .profile_information #myTabContent,
    .profile_information {
        padding: 10px;
    }
}

@media (max-width: 575px) {
    .profile_information .nav-tabs {
        justify-content: center;
        border: 1px solid #dee2e6;
        border-bottom: 0;
    }

    .profile_information .nav-tabs {
        flex-wrap: wrap;
    }

    .profile_information .nav-tabs .nav-item {
        width: 100%;
    }

    .profile_information .nav-tabs .nav-item .nav-link {
        width: 100%;
        padding: 5px 7px;
    }

    .profile_information .nav-tabs .nav-item .nav-link.active {
        border-color: #dee2e6;
        margin-top: 0;
        border-radius: none;
    }
}

/* Personal Information */

/* Education Qualification */
.education_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.education_item {
    position: relative;
    padding-left: 2px;
    background-color: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
}

.education_item .icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.education_item .icons span i {
    color: var(--text);
    transition: all 0.25s;
}

.education_item .icons span i:hover {
    color: var(--Theme-Color);
}

.edu_header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--Theme-Color);
}

.edu_header i {
    font-size: 13px;
    color: var(--Theme-Color);
}

.edu_degree {
    line-height: 1.4;
}

.edu_meta {
    margin-left: 21px;
    font-size: 13px;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.edu_year {
    font-size: 12px;
    color: var(--text);
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Education Qualification */

/* Experience */
.experience_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.experience_item {
    position: relative;
    padding-left: 2px;
    background-color: var(--white);
    padding: 15px;
    border-radius: 8px;
}

.exprnc_list,
.ed_ql_list {
    gap: 0;
}

.exprnc_list .experience_item,
.ed_ql_list .education_item {
    background-color: transparent;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: unset;
}

.exprnc_list .experience_item:last-child,
.ed_ql_list .education_item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.experience_item>.icons {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.experience_item>.icons i {
    font-size: 16px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.25s;
}

.experience_item>.icons i:hover {
    color: var(--Theme-Color);
}

.exp_header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;

    font-size: 14px;
    font-weight: 600;
    color: var(--Theme-Color);
}

.exp_post {
    line-height: 1.4;
}

.exp_duration {
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.exp_org {
    margin-top: 4px;
    font-size: 13px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.exp_org i {
    font-size: 12px;
    color: var(--Theme-Color);
}

@media (max-width: 1600px) {}

@media (max-width: 1199px) {
    .experience_list {
        gap: 12px;
    }

    .education_item,
    .experience_item {
        padding: 12px 18px;
    }
}

@media (max-width: 991px) {}

@media (max-width: 767px) {

    .education_list,
    .experience_list {
        gap: 10px;
    }

    .education_item,
    .experience_item {
        padding: 10px 15px;
    }
}

@media (max-width: 575px) {}

/* Experience */

/* Bio */
.bio_card {
    position: relative;
    overflow: visible;
    background-color: var(--white);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(8, 59, 79, 0.08);
    max-height: none;
    height: auto;
}

.bio_card h3 {
    position: relative;
    margin-bottom: 10px;
    line-height: 1;
    color: var(--Theme-Color);
    padding-bottom: 10px;
}

.bio_card .scroll_content {
    max-height: none;
    overflow-y: visible;
    padding-right: 5px;
}

.bio_text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--black);
    opacity: 1;
    margin-bottom: 0;
    max-height: none;
    overflow: visible;
}

@media (max-width: 1199px) {
    .bio_card {
        padding: 12px;
    }

    .bio_text {
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .bio_card {
        padding: 10px;
    }
}

@media (max-width: 767px) {
    .bio_text {
        max-height: 60px;
        font-size: 12px;
    }
}

@media (max-width: 575px) {}

/* Similar Experts, Similar Organisation and Co-Author */
.s_experts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.s_experts_box {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--white);
    padding: 10px;
}

.tab_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.tab_head h3 {
    margin-bottom: 0;
}

.s_experts_box p:last-child {
    margin-bottom: 0;
}

.s_experts_box .fit_img {
    width: 60px;
    height: 60px;
    border-radius: 100%;
}

.s_experts_box .fit_img img {
    object-position: top;
}

.e_name {
    font-size: 16px;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 0;
}

.e_name a {
    color: var(--text);
}

.e_name a:hover {
    color: var(--Theme-Color);
}

.post {
    color: var(--Theme-Color);
    font-size: 14px;
}

/* Similar Experts, Similar Organisation and Co-Author */

/* Publication */
.publications {
    margin-top: 15px;
    background-color: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(8, 59, 79, 0.08);
}

.all_achivements h3,
.profile_information h3,
.publications h3 {
    position: relative;
    padding-bottom: 10px;
}

.recognition .scroll_content {
    max-height: 400px;
    overflow-y: auto;
}

/* .recognition .nav {
  margin-top: 15px;
} */

.all_achivements h3::before,
.bio_card h3::before,
.profile_information h3::before,
.publications h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 5px;
    border-radius: 5px;
    background-color: var(--Theme-Color);
}

@media (max-width: 1725px) {
    .recognition .nav-tabs .nav-item .nav-link {
        padding: 8px 8px;
    }

    .recognition .nav-tabs {
        justify-content: space-between;
    }
}

@media (max-width: 1600px) {
    .recognition .nav-tabs {
        justify-content: center;
        border: 1px solid #dee2e6;
        border-bottom: 0;
    }

    .recognition .nav-tabs .nav-item,
    .recognition .nav-tabs .nav-item .nav-link {
        width: 100%;
    }

    .recognition .nav-tabs .nav-item {
        background-color: var(--white);
    }

    .recognition .nav-tabs .nav-item .nav-link {
        padding: 6px 8px;
        margin-bottom: 0;
    }

    .recognition .nav-tabs .nav-item .nav-link.active {
        border-color: #dee2e6;
        margin-top: 0;
        border-radius: 3px;
    }
}

@media (max-width: 1199px) {

    .all_achivements h3::before,
    .bio_card h3::before,
    .publications h3::before {
        width: 60px;
        height: 4px;
    }
}

@media (max-width: 991px) {

    .all_achivements h3::before,
    .bio_card h3::before,
    .publications h3::before {
        width: 50px;
    }
}

@media (max-width: 767px) {

    .all_achivements h3::before,
    .bio_card h3::before,
    .publications h3::before {
        width: 46px;
    }
}

@media (max-width: 575px) {
    .recognition .nav-tabs .nav-item .nav-link {
        padding: 5px 7px;
    }

    .all_achivements h3::before,
    .bio_card h3::before,
    .publications h3::before {
        width: 40px;
    }
}

.projects {
    padding: 15px;
    background-color: var(--glass);
}

.pub_card {
    background-color: var(--white);
    padding: 15px;
    margin-bottom: 15px;
}

.projects .pub_card:last-child {
    margin-bottom: 0;
}

.pub_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.pub_title {
    margin-bottom: 5px;
}

.type {
    background-color: var(--text);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 12px;
    line-height: 1;
}

.pub_meta {
    margin-top: 6px;
}

.pub_authors {
    font-size: 13px;
    color: var(--text);
}

.pub_journal {
    margin-top: 4px;
    font-size: 13px;
    color: var(--text);
}

.pub_journal a {
    transition: all 0.25s;
}

.pub_journal a:hover {
    text-decoration: underline;
    color: var(--Theme-Color);
}

.pub_cit {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pub_citation,
.pub_count {
    font-size: 12px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s;
}

.pub_count a:hover {
    color: var(--Theme-Color);
    text-decoration: underline;
}

.pub_citation i {
    font-size: 11px;
}

.pub_citation.pill {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    background-color: rgba(148, 192, 195, 0.25);
    color: var(--Theme-Color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.additional_info {
    margin-top: 0px;
    color: var(--Theme-Color);
}

.additional_info>div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.additional_info div a.doi {
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.25s;
    color: var(--text);
    background-color: rgba(148, 192, 195, 0.25);
    padding: 3px 8px;
    font-size: 12px;
    border: 1px solid transparent;
    border-radius: 20px;
}

.additional_info div div.doi {
    background-color: var(--white);
    font-size: 12px;
}

.additional_info div a.doi:hover {
    background-color: var(--white);
    color: var(--Theme-Color);
    border-color: var(--Theme-Color);
}

.additional_info div .doi img {
    height: 15px;
    width: 15px;
}

.info_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
}

.info_btn {
    min-width: 115px;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 20px;
    background-color: #78bd4c;
    color: var(--white);
    border: 1px solid transparent;
    transition: all 0.25s;
}

.info_btn i {
    margin-right: 5px;
}

.info_btn:hover {
    background-color: var(--white);
    color: var(--Theme-Color);
    border-color: var(--Theme-Color);
}

.s_citation_badge {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.s_citation {
    position: relative;
}

.citation_panel>ul {
    position: relative;
}

.citation_panel>ul::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%) rotate(90deg);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--Theme-Color);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
}

.s_citation_badge .citation_panel>ul {
    list-style: none;
    margin-bottom: 0;
}

.s_citation_badge .citation_panel>ul,
.s_citation_badge .citation_panel>ul li {
    display: flex;
    align-items: center;
}

.s_citation_badge .citation_panel>ul li {
    border: 1px solid var(--Secondary);
    border-right: none;
    padding: 3px 12px;
}

.s_citation_badge .citation_panel ul li a {
    margin-right: 3px;
    line-height: 1;
}

.s_citation_badge .citation_panel ul li:last-child {
    border-right: 1px solid var(--Secondary);
}

.s_citation_badge .citation_panel ul li a i {
    color: var(--Theme-Color);
    font-size: 18px;
}

.s_citation_badge .citation_panel ul li span {
    color: var(--text);
    font-size: 14px;
}

.rotated {
    transform: rotate(-45deg);
}

.smart_citation_details {
    display: block;
    position: absolute;
    right: -255px;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid var(--Theme-Color);
    padding: 10px;
    z-index: 5;
    background: var(--white);
    width: 240px;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
}

.citation_panel ul:hover::before,
.citation_panel ul:hover+.smart_citation_details {
    visibility: visible;
    opacity: 1;
}

.citation_panel:hover>ul::before,
.smart_citation_details:hover {
    visibility: visible;
    opacity: 1;
}

.smart_citation_details h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.smart_citation_details p {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--text);
}

.smart_citation_details ul {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    justify-content: center;
}

.smart_citation_details ul li {
    border: none !important;
}

.smart_citation_details ul li i {
    min-width: 25px;
    font-size: 16px;
}

.smart_citation_details ul li strong {
    display: inline-block;
    min-width: 25px;
}

.smart_citation_details p a {
    color: var(--Theme-Color);
}

.smart_citation_details p a:hover {
    text-decoration: underline;
}

.smart_citation_details a.my_btn {
    background-color: var(--Theme-Color);
    min-width: 150px;
    padding: 10px 20px;
    color: var(--white);
    border-radius: 0;
    font-size: 16px;
}

.smart_citation_details a.my_btn:hover {
    background-color: var(--white);
    color: var(--Theme-Color);
    border-color: var(--Theme-Color);
}

.smart_citation_details p:last-child {
    margin-bottom: 0;
}

.badges {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.badge {
    position: relative;
    display: block;
    height: 60px;
    width: 60px;
    border-radius: 100%;
    transition: all 1s;
}

.badge::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--Theme-Color);
    left: -10px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
}

.badge a {
    height: 100%;
    transition: all 0.5s;
}

.badge a .fit_icon {
    width: 100%;
    height: 100%;
}

.badge .badge_info {
    visibility: hidden;
    position: absolute;
    left: -195px;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    background-color: var(--white);
    border: 1px solid var(--Theme-Color);
    opacity: 0;
    transition: all 0.5s;
    border-radius: 5px;
}

.badge a .fit_icon img {
    object-fit: contain;
}

.badge:hover img {
    transform: rotate(360deg);
}

.badge:hover::before,
.badge:hover .badge_info {
    visibility: visible;
    opacity: 1;
    z-index: 5;
}

.badge_info div {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.badge_info div:last-child {
    margin-bottom: 0;
}

.badge_info div span {
    color: var(--text);
}

.badge_info div span:last-child,
.badge_info div span i {
    color: var(--Theme-Color);
}

.badge.b_almetric .badge_info {
    left: -208px;
}

.badge.b_almetric .badge_info span {
    font-size: 14px;
    color: var(--text);
}

.badge.b_almetric .badge_info span i {
    color: var(--Theme-Color);
}

.badge.b_almetric .badge_info .more_details {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: var(--Theme-Color);
}

.badge.b_almetric .badge_info a:hover {
    text-decoration: underline;
}

/* Publication */

/* All Achievemetns CSS */
.all_achivements {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
}

.all_achivements.recognition {
    box-shadow: 0 4px 12px rgba(8, 59, 79, 0.08);
    padding: 15px;
}

.all_achivements .tab-pane {
    background-color: var(--glass);
    padding: 15px;
}

.all_achivements .tab-pane h4 {
    color: var(--Theme-Color);
}

/* Stabilise the membership card grid inside profile tabs */
.all_achivements .members,
.all_achivements .p_bodies {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    align-items: start;
}

/* Cards inside the profile tab should size to content, not to parent height */
.all_achivements .members_card,
.all_achivements .p_bodies .members_card {
    height: auto;
    margin-bottom: 0;
}

/* Research Projects */
.project_card {
    position: relative;
    background-color: var(--white);
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.project_card .icons {
    position: absolute;
    right: 15px;
    bottom: 50px;
    transition: all 0.25s ease-out;
}

.project_status {
    position: absolute;
    right: 15px;
    bottom: 15px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.completed {
    background-color: rgba(148, 192, 195, 0.3);
    color: var(--text);
}

.ongoing {
    background-color: rgba(255, 0, 0, 0.5);
    color: var(--glass);
}

.project_status i {
    margin-right: 5px;
}

.project_card h5 {
    font-size: 16px;
    line-height: 1.5;
}

.project_card .rp_info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: auto;
}

.project_card .rp_info p {
    margin-bottom: 0;
    font-size: 13px;
    color: var(--black);
}

.project_card .rp_info p i {
    margin-right: 10px;
}

.project_card .rp_info p i,
.project_card .rp_info p span {
    font-weight: 700;
    color: var(--Theme-Color);
    font-size: 15px;
}

/* Research Projects */

/* Publications */
.tab-pane .projects .pub_card {
    padding: 15px;
    margin-bottom: 15px;
}

.tab-pane .projects .pub_card:last-child {
    margin-bottom: 0;
}

/* Publications */

/* Theses */
.theses_wrapper {
    position: relative;
}

.theses_card {
    position: relative;
    padding: 15px;
    background-color: var(--white);
    margin-bottom: 10px;
}

.theses .theses_card:last-child {
    margin-bottom: 0;
}

.theses_card .icons {
    position: absolute;
    right: 15px;
    bottom: 5px;
    transition: all 0.25s;
}

.sg_icon {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 30px;
    height: 30px;
}

.sg_icon a image {
    height: 100%;
    width: 100%;
}

.theses_title {
    font-size: 15px;
    font-weight: 600;
    color: var(--Theme-Color);
    line-height: 1.45;
    margin-bottom: 10px;
}

.theses_meta {
    display: flex;
    gap: 15px;
}

.theses_row {
    display: flex;
}

.theses_label {
    font-size: 12px;
    color: var(--text);
    margin-right: 5px;
}

.theses_value {
    font-size: 12.5px;
    color: var(--Theme-Color);
}

.theses_value i {
    margin-right: 5px;
}

/* Theses */

/* Honours and Awards */
.awards {
    position: relative;
    padding: 15px;
    background-color: var(--glass);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(8, 59, 79, 0.08);
}

.award_card {
    position: relative;
    display: flex;
    gap: 14px;
    background-color: var(--white);
    padding: 10px;
    margin-bottom: 10px;
}

.award_card .icons {
    position: absolute;
    right: 10px;
    top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.award_card .icons i {
    color: var(--text);
    cursor: pointer;
}

.award_card .icons i:hover {
    color: var(--Theme-Color);
}

.awards .award_card:last-child {
    margin-bottom: 0;
}

.award_item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.award_year {
    max-height: 60px;
    width: 60px;
    line-height: 60px;
    font-size: 15px;
    font-weight: 600;
    background-color: var(--white);
    color: var(--Theme-Color);
    border: 1px solid var(--Theme-Color);
    border-radius: 100%;
    min-width: 42px;
    text-align: center;
}

.award_body {
    width: calc(100% - 60px);
}

.award_content {
    display: flex;
    flex-direction: column;
}

.award_title {
    font-size: 16px;
    font-weight: 600;
    color: var(--Theme-Color);
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.award_title i {
    font-size: 12px;
    color: var(--Theme-Color);
}

.award_from {
    font-size: 14px;
    color: var(--text);
    margin-top: 10px;
}

.award_from i {
    margin-right: 6px;
}

.honours_award {
    padding: 15px;
    background-color: var(--glass);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(8, 59, 79, 0.08);
}

.honours_award .scroll_content,
.awards .scroll_content {
    padding-right: 5px;
    max-height: 400px;
    overflow-x: hidden;
    overflow-y: auto;
}

.honours_award .awards {
    padding: unset;
    background-color: unset;
    border-radius: unset;
    margin-bottom: unset;
    box-shadow: unset;
}

@media (max-width: 1600px) {
    .award_item {
        gap: 10px;
    }

    .award_year {
        max-height: 50px;
        width: 50px;
        line-height: 50px;
        font-size: 14px;
    }

    .award_body {
        width: calc(100% - 50px);
    }

    .recognition {
        padding: 10px;
    }

    .award_title {
        font-size: 15px;
    }

    .award_from {
        font-size: 13px;
    }

    .recognition .tab-pane {
        padding: 10px;
    }
}

@media (max-width: 1199px) {
    .award_year {
        max-height: 44px;
        width: 44px;
        line-height: 44px;
        font-size: 13px;
    }

    .award_body {
        width: calc(100% - 44px);
    }

    .award_title {
        font-size: 14px;
    }

    .award_from {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .award_card {
        margin-top: 35px;
        margin-bottom: 0;
    }

    .award_year {
        max-height: 40px;
        width: 40px;
        line-height: 40px;
        font-size: 12px;
        margin: 0 auto;
        margin-top: -32px;
    }

    .award_body {
        width: 100%;
    }

    .award_item {
        flex-wrap: wrap;
    }

    .award_title {
        font-size: 13px;
        margin-bottom: 5px;
    }
}

@media (max-width: 767px) {
    .award_card {
        margin-top: 0;
        margin-bottom: 7px;
    }

    .award_item {
        flex-wrap: nowrap;
    }

    .award_year {
        max-height: 42px;
        width: 40px;
        line-height: 40px;
        font-size: 11px;
        margin-top: 0;
    }

    .award_body {
        width: calc(100% - 36px);
    }
}

@media (max-width: 575px) {}

/* Honours and Awards */

/*  Membership In Committees */
.members_card {
    position: relative;
    display: flex;
    background-color: var(--white);
    padding: 15px;
    flex-direction: column;
    height: auto;
    margin-bottom: 10px;
    border-left: 4px solid var(--Theme-Color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.members_card .icons {
    position: absolute;
    right: 15px;
    top: 15px;
}

.members_card .icons i {
    color: var(--text);
}

.members_card .icons i:hover {
    color: var(--Theme-Color);
}

.p_bodies .members_card:last-child,
.members .members_card:last-child {
    margin-bottom: 0;
}

.members_card .m_year {
    color: var(--Theme-Color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.members_card p {
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--Theme-Color);
    line-height: 1.3;
    font-weight: 700;
}

.m_details {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.m_role {
    font-size: 14px;
    color: var(--Theme-Color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.m_role i {
    color: var(--Theme-Color);
    font-size: 14px;
}

.m_sep {
    color: #ccc;
    font-size: 14px;
}

.m_date {
    background-color: #f0f4f8;
    color: var(--Theme-Color);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.m_date i {
    color: var(--Theme-Color);
    font-size: 13px;
}

.member {
    background-color: rgba(148, 192, 195, 0.2);
    color: var(--Theme-Color);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 12px;
    align-self: flex-start;
    flex: 0 auto;
}

.p_bodies .members_card .member {
    align-self: flex-start;
}

.members_full {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

@media (max-width: 1600px) {
    .members_card {
        padding: 10px;
    }

    .members_card p {
        font-size: 14px;
    }
}

@media (max-width: 1199px) {
    .members_card .m_year {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .members_card .m_year {
        font-size: 14px;
    }

    .members_card p {
        font-size: 13px;
    }
}

@media (max-width: 767px) {}

@media (max-width: 575px) {
    .member {
        font-size: 11px;
        border-radius: 15px;
    }
}

/*  Membership In Committees */

/* Patent CSS */
.patent_wrapper {
    position: relative;
}

.patent_card {
    position: relative;
    background-color: var(--white);
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
    margin-bottom: 10px;
}

.patent_card>h4 {
    margin-bottom: 10px;
}

.patent_card .icons {
    position: absolute;
    right: 15px;
    top: 15px;
}

.add_patent_btn {
    position: absolute;
    right: 5px;
    top: -5px;
}

.patents .patent_card:last-child {
    margin-bottom: 0;
}

.patent_card .applicant {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 20px;
    row-gap: 10px;
    margin-bottom: 10px;
}

.patent_card .applicant h5 {
    font-size: 14px;
    position: relative;
    margin-bottom: 0;
}

.patent_card .applicant h5::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -10px;
    width: 2px;
    height: 20px;
    background-color: var(--text);
}

.patent_card .applicant h5:last-child::before {
    display: none;
}

.patent_card .applicant h5 i {
    font-size: 12px;
    margin-right: 3px;
}

.patent_info {
    margin-top: auto;
    display: flex;
    align-items: flex-start;
    column-gap: 20px;
}

.patent_card .published_info span,
.patent_info span {
    color: var(--text);
    font-size: 14px;
}

.patent_info span i {
    color: var(--Theme-Color);
    margin-right: 5px;
}

.patent_card .published_info span i {
    margin-right: 5px;
    color: var(--Theme-Color);
}

.patent_info span strong {
    color: var(--Theme-Color);
}

.patent_card .published_info {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.patent_card .published_info .published {
    position: relative;
    background-color: rgba(148, 192, 195, 0.25);
    color: var(--text);
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 400;
    font-size: 13px;
}

.patent_card .published_info .published::before {
    position: absolute;
    content: "";
    height: 18px;
    width: 2px;
    background-color: var(--Theme-Color);
    top: 50%;
    transform: translateY(-50%);
    left: -15px;
}

.tooltip-inner {
    background-color: var(--white);
    color: var(--black);
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--black);
    padding: 3px 6px;
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: var(--black);
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: var(--black);
}

.tooltip.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: var(--black);
}

.tooltip.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: var(--black);
}

/* All Achievemetns CSS */
.profile_footer {
    padding: 20px 0 50px 0;
}

.profile_footer .copyright {
    margin-top: 0;
    border-top: none;
    padding: 0;
}

.profile_footer .container {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.footer_logos h3 {
    margin-bottom: 10px;
    color: var(--Secondary);
}

.f_logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.f_logos img {
    position: relative;
    filter: brightness(0) invert(1);
    height: 60px;
}

.f_logo {
    position: relative;
}

.f_logo::before {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background-color: var(--white);
}

.f_logos a:last-child .f_logo::before {
    display: none;
}

/* Profile Page CSS End */

/* Dashboard Page CSS Start */
.custom-file {
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.file-trigger {
    padding: 10px 14px;
    background-color: rgba(255, 255, 255, 0.5);
    color: var(--Theme-Color);
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s ease;
    text-align: center;
}

.file-trigger:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.file-trigger:hover i,
.file-trigger:hover span {
    color: var(--white);
}

.form-group label {
    margin-bottom: 5px;
}

.form-group label i {
    color: var(--text);
    font-size: 18px;
}

.select-trigger {
    width: 100%;
    background-color: unset;
    color: var(--Theme-Color);
    border: none;
    border-radius: unset;
    border: 1px solid rgba(8, 59, 79, 0.3);
    cursor: pointer;
    font-size: 12px;
}

.add_experience .form-group label {
    color: var(--Theme-Color);
}

.profile_info_edit .form-group input[type="file"] {
    border: none;
}

.my_btn.cancel {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 10px 15px;
}

.my_btn.cancel:hover {
    color: var(--Theme-Color);
    border-color: var(--white);
    background-color: var(--white);
}

.my_btn.save {
    background-color: var(--white);
    color: var(--Theme-Color);
    padding: 10px 15px;
}

.my_btn.save:hover {
    color: var(--white);
    border-color: var(--white);
    background-color: var(--Theme-Color);
}

.edit_expertise ul {
    margin-top: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.edit_expertise ul li {
    background-color: var(--white);
    color: var(--Theme-Color);
    padding: 10px;
    border: 1px solid var(--Theme-Color);
    border-radius: 20px;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.25s;
}

.edit_expertise ul li:hover i {
    color: rgba(255, 0, 0, 0.5);
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-body {
    padding: 8px 10px;
}

.accordion-body ul {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
}

.accordion-body ul li {
    background-color: var(--Theme-Color);
    color: var(--white);
    padding: 10px;
    border-radius: 20px;
    font-size: 12px;
    line-height: 1;
    border: 1px solid transparent;
    cursor: pointer;
}

.accordion-body ul li i {
    font-size: 12px;
}

.accordion-body ul li:hover {
    background-color: var(--white);
    color: var(--Theme-Color);
    border-color: var(--Theme-Color);
}

.accordion-body ul li:hover i {
    color: var(--Theme-Color);
}

.accordion-button {
    font-size: 15px;
    padding: 8px 10px;
}

.accordion-item:first-of-type,
.accordion-item:first-of-type .accordion-button,
.accordion-item:last-of-type,
.accordion-item:last-of-type .accordion-button {
    border-radius: unset;
}

.accordion-item {
    border: none;
}

.accordion-button:not(.collapsed) {
    color: var(--white);
    background-color: var(--Theme-Color);
    box-shadow: unset;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23083b4f'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-item .accordion-button {
    border: 1px solid var(--white);
}

/* Edit Bio */
.edit_bio {
    display: none;
    margin-top: 10px;
    border-radius: 8px;
    background-color: var(--white);
}

.edit_bio label {
    font-size: 16px;
    color: var(--Theme-Color);
}

.edit_bio textarea {
    height: 80px;
    font-size: 14px;
}

/* Edit Bio */

/* Edit Personal Information */

/* Edit Honours Award */
.honours_award {
    position: relative;
}

.edit_hnr_awrd_btn {
    position: absolute;
    right: 10px;
    top: 10px;
}

.add_honours_award {
    display: none;
    margin-top: 15px;
}

.edit_curr_ha {
    display: none;
    margin-bottom: 20px;
}

/* Edit Honours Award */

/* Edit Members In Commitee */
.m_ber_in_cmt {
    position: relative;
}

.m_ber_in_cmt .edit_m_ber_in_cmt_btn {
    position: absolute;
    top: -5px;
    right: 0;
}

.edit_cur_mmbrsp {
    margin: 15px 0;
}

.edit_cur_mmbrsp {
    display: none;
}

/* Edit Members In Commitee */

/* Add Edit Professional Bodies */
.pb_wrapper {
    position: relative;
}

.add_p_bdy {
    position: absolute;
    right: 0;
    top: 0;
}

.p_bodies .members_card .icons {
    top: unset;
    bottom: 10px;
}

.edit_cur_pb {
    display: none;
    margin-bottom: 10px;
}

/* Add Edit Professional Bodies */

/* Add Edit Research Project */
.rp_wrapper {
    position: relative;
}

.add_rp {
    position: absolute;
    right: 0;
    top: 0;
}

.icons i {
    color: var(--text);
    cursor: pointer;
}

.icons i:hover {
    color: var(--Theme-Color);
}

.edit_cur_rp {
    display: none;
    margin-bottom: 15px;
}

.theses_wrapper {
    position: relative;
}

/* Add Edit Research Project */

/* Add Edit Theses */
.add_theses_btn {
    position: absolute;
    right: 0;
    top: 0;
}

.edit_cur_theses {
    display: none;
    margin-bottom: 15px;
}

/* Add Edit Theses */

/* Add Edit Patents */

.edit_cur_patent {
    display: none;
    margin-bottom: 15px;
}

/* Add Edit Patents */

/* Add Edit Publications */
.projects_wrapper {
    position: relative;
}

.projects_wrapper .add_publication_btn {
    position: absolute;
    right: 15px;
    top: 0;
    z-index: 1;
}

/* Add Edit Publications */

/* Dashboard Page CSS End */

/*  */

.edit_profile {
    margin: 20px 0;
}

.edit_profile .nav {
    justify-content: space-evenly;
    margin-bottom: 30px;
    border-radius: 3px;
    overflow: hidden;
}

.edit_profile .nav-tabs .nav-link {
    color: var(--Theme-Color);
    border-radius: unset;
    font-size: 18px;
    border: unset;
    border-bottom: 5px solid transparent;
    padding: 10px 15px;
}

.edit_profile .nav-tabs .nav-link:hover,
.edit_profile .nav-tabs .nav-link.active {
    background-color: transparent;
    color: var(--Theme-Color);
    border-bottom: 2px solid var(--Theme-Color);
}

.edit_profile .tab-content {
    margin-top: 20px;
}

.edit_profile .tab-content .bio {
    padding-left: 15px;
}

#personal h2 {
    text-transform: capitalize;
}

.bio_wrapper,
.per_info_wrapper {
    background-color: var(--white);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.bio_wrapper {
    margin-top: 30px;
}

.bio_box {
    display: block;
    position: relative;
    width: 100%;
}

.bio_box p {
    margin-bottom: 0;
}

.edit_bio_box {
    display: none;
}

.edit_btn {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    z-index: 10;
}

.edit_btn i {
    height: 25px;
    width: 25px;
    line-height: 25px;
    background-color: var(--text);
    color: var(--white);
    text-align: center;
    font-size: 14px;
    border-radius: 5px;
}

.edit_btn i:hover {
    background-color: var(--Theme-Color);
    color: var(--white);
}

.profile_box .edit_profile_btn {
    top: 38px;
}

.per_info_box {
    position: relative;
}

.edit_per_info_box {
    display: none;
}

.per_info_box ul {
    margin-bottom: 0;
}

.per_info_box ul li {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 8px;
}

.per_info_box ul li:last-child {
    margin-bottom: 0;
}

.per_info_box ul li i {
    margin-right: 5px;
    color: var(--Theme-Color);
}

.exp_qua_wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 15px;
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.exp_wrapper,
.education_wrapper {
    width: 50%;
    position: relative;
}

.exp_wrapper .experience_item,
.education_wrapper .education_item {
    background-color: var(--glass);
    height: 75px;
}

/*  */
.form_fields {
    position: relative;
    padding: 15px;
    padding-top: 60px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid rgba(148, 192, 195, 0.5);
    background-color: var(--white);
}

.form_fields h3 {
    font-size: 18px;
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 15px;
    background-color: rgba(148, 192, 195, 0.5);
    width: 100%;
    overflow: hidden;
}

.add_experience,
.add_edu_qua {
    display: none;
}

.get_height {
    display: block;
}

.less_width {
    display: none;
}

.show_width {
    display: block;
}

.edit_curr_exp {
    overflow: hidden;
    display: none;
    margin-bottom: 0;
}

.get_height_2 {
    height: 300px;
}

.edit_curr_qual {
    display: none;
    margin-bottom: 0;
}

.custom-select-new {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.custom-select-new .select-trigger {
    position: relative;
    padding: 7px 10px;
    border: 1px solid rgba(8, 59, 79, 0.3);
    background: #fff;
    border-radius: 3px;
}

.custom-select-new .select-trigger i {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    transition: transform 0.2s ease;
}

.custom-select-new .select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid rgba(8, 59, 79, 0.3);
    background-color: var(--glass);
    max-height: 220px;
    overflow-y: auto;
    display: none;
    z-index: 99;
}

.custom-select-new.open .select-options {
    display: block;
}

.custom-select-new.open .select-trigger i {
    transform: translateY(-50%) rotate(180deg);
}

.select-options li {
    padding: 7px 10px;
    border-bottom: 1px solid rgba(8, 59, 79, 0.3);
    border-right: 1px solid rgba(8, 59, 79, 0.3);
    background-color: var(--white);
}

.select-options li:hover {
    background-color: var(--Theme-Color);
    color: var(--white);
}

.custom-select.disabled {
    pointer-events: none;
    opacity: 0.6;
}

.switch {
    position: relative;
    display: block;
    width: 48px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #ccc;
    border-radius: 30px;
    transition: 0.3s;
    width: 50px;
}

.slider::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

/* checked */
.switch input:checked+.slider {
    background-color: var(--Secondary);
}

.switch input:checked+.slider::before {
    transform: translateX(22px);
}

.award_wrapper {
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    margin-bottom: 15px;
    background-color: var(--white);
    border-radius: 8px;
}

.award_wrapper>.awards {
    box-shadow: unset;
    margin-bottom: 0;
}

.award_wrapper>.awards .add_award {
    right: 15px;
    top: 15px;
}

.pr_wrapper {
    width: 100%;
    display: flex;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--white);
    border-radius: 8px;
    gap: 15px;
}

.pr_wrapper .members,
.pr_wrapper .p_bodies {
    position: relative;
    width: 50%;
    background-color: var(--glass);
    padding: 15px;
}

.pr_wrapper .members .edit_btn,
.pr_wrapper .p_bodies .edit_btn {
    top: 15px;
    right: 15px;
}

.pr_wrapper .members_card {
    height: unset;
}

.add_awards,
.edit_awards,
.add_membership,
.edit_membership,
.add_pb,
.add_research_prjct,
.edit_research_prjct,
.add_theses,
.edit_theses,
.add_patent,
.edit_patent {
    display: none;
}

.rp_wrapper,
.theses_wrapper,
.patent_wrapper {
    position: relative;
    margin-top: 30px;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.theses_wrapper,
.patent_wrapper {
    margin-top: 15px;
}

.rp_wrapper .add_rp_btn,
.theses_wrapper .add_theses_btn,
.patent_wrapper .add_patent_btn {
    right: 15px;
    top: 15px;
}

.profile_info_edit {
    height: 0;
    visibility: hidden;
    opacity: 0;
    padding: 0;
    transition:
        height 0.4s ease,
        opacity 0.35s ease;
    background-color: var(--white);
}

.profile_info_edit hr {
    border: none;
    border: 1px solid var(--Secondary);
    width: 100%;
}

.pe_get_height {
    margin: 20px auto 0;
    height: 755px;
    opacity: 1;
    visibility: visible;
    padding: 60px 15px 15px;
    box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
}

.edit_exprt_btn i,
.edit_profile_btn i {
    background-color: var(--white);
    color: var(--Theme-Color);
}

.edit_exprt_btn i:hover,
.edit_profile_btn i:hover {
    background-color: var(--Secondary);
    color: var(--white);
}

.edit_expertise {
    overflow: hidden;
    padding: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition:
        height 0.4s ease,
        opacity 0.35s ease;
    background-color: transparent;
}

.edit_exprt_get_height {
    padding: 60px 15px 15px;
    height: 700px;
    visibility: visible;
    opacity: 1;
    overflow-y: auto;
}

.is-hidden {
    display: none !important;
}

input:disabled {
    background-color: #f2f2f2;
    cursor: not-allowed;
}

/* Default calendar icon */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: grayscale(1);
    opacity: 0.6;
    cursor: pointer;
}

/* On focus or when value exists */
input[type="date"]:focus::-webkit-calendar-picker-indicator,
input[type="date"]:not(:placeholder-shown)::-webkit-calendar-picker-indicator {
    filter: none;
    opacity: 1;
    color: var(--Theme-Color);
    accent-color: var(--Theme-Color);
}