@charset "UTF-8";
/* =====================================================================
   Yiang Li — personal site stylesheet

   Brand palette (written as literals throughout to keep the cascade
   identical to the original; the dark theme in darkmode.css remaps them):
     #75140c  brand red   — links, accents, active nav, highlights
     #001527  ink         — headings
     #232b34  body ink    — body text, footer background
     #faf7f5  paper       — soft section background
     #ccc     line        — card / panel borders

   Section guide (jump with "==> "):
     ==> Base & typography        (body, headings, links, buttons)
     ==> Header / navigation
     ==> Home / welcome banner
     ==> Research & publications
     ==> Teaching
     ==> Footer
     ==> Responsive (see @media blocks near the end)

   Notes:
     - Self-hosted Avenir @font-face blocks were removed: the fonts/
       folder is absent and headings/body use Georgia. An unused (and
       invalid) Noto Sans SC @import was removed as well.
   ===================================================================== */

/* ==> Base & typography */

body {
  margin: 0;
  padding: 0;
  font-family: "Georgia", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: 400;
  color: #232b34;
  font-size: 18px; /* Adjust main text font size here */
  line-height: 1.4;
}

img {
  max-width: 100%;
  height: auto;
}
.btn-primary.focus,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}

a {
  color: #75140c;
  text-decoration: none;
  transition: 0.3s all ease-in-out 0s;
  -webkit-transition: 0.3s all ease-in-out 0s;
}
a:hover {
  color: #232b34;
  text-decoration: none;
}
a:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 25px 0;
  padding: 0;
  font-family: "Georgia";
  color: #001527;
} /*'Avenir LT Std'*/
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1 {
  font-size: 58px;
  line-height: 1.3;
  font-weight: 900;
}
h2 {
  font-size: 42px;
  line-height: 1.3;
  font-weight: 900;
}
h3 {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 900;
}
h4 {
  font-size: 24px;
  line-height: 1.3;
}
h5 {
  font-size: 19px;
  line-height: 1.3;
}
h6 {
  font-size: 16px;
  line-height: 1.3;
}

p {
  margin: 0 0 22px 0;
}

p:last-child {
  margin-bottom: 0;
}

ol {
  padding-left: 20px;
}
ol li {
  margin-bottom: 0px;
}

ul {
  padding: 0;
  margin: 0;
}
ul li {
  padding: 0;
  padding-left: 20px;
  position: relative;
  list-style: none;
  margin-bottom: 5px;
}

ul li:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #232b34;
  position: absolute;
  top: 9px;
  left: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
.form-control,
select {
  background-color: #fff;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  color: #000;
  border: 1px solid #cccccc;
  height: 48px;
  padding: 2px 16px;
}

textarea {
  height: 100px;
  padding: 10px 16px;
}

select {
  padding: 0 16px;
  background: #fff; /* select arrow icon removed (images/ folder absent) */
  background-size: 18px;
  padding-right: 40px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  background: transparent;
  min-height: 85px;
}

::-webkit-input-placeholder {
  opacity: 1;
  color: #232b34;
}
:-ms-input-placeholder {
  opacity: 1;
  color: #232b34;
}
::-moz-placeholder {
  opacity: 1;
  color: #232b34;
}
:-moz-placeholder {
  opacity: 1;
  color: #232b34;
}

button[type="submit"],
button[type="button"],
input[type="button"],
input[type="submit"] {
  background-color: #75140c;
  color: #fff;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 33px;
  border-radius: 33px;
  text-transform: uppercase;
  cursor: pointer;
  min-width: 150px;
  text-align: center;
  padding: 13px 15px;
}
button[type="submit"]:hover,
button[type="button"]:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
  background-color: #232b34;
  color: #fff;
}

button:focus,
input:focus,
textarea:focus {
  outline: none;
  box-shadow: inherit;
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
}

/* custom checkbox */
.form_input_check {
  position: relative;
  margin: 0;
  padding-left: 40px;
}
.form_input_check span {
  margin: 0;
  padding: 0;
}
.form_input_check input[type="checkbox"] {
  visibility: hidden;
  display: none;
}
.form_input_check input[type="checkbox"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 22px;
  height: 22px;
  border: 2px solid #feb620;
  background: #fff;
}
.form_input_check input[type="checkbox"] + span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: none; /* checkmark icon removed (images/ folder absent) */
}
.form_input_check input[type="checkbox"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
/* .form_input_check input[type="checkbox"]:checked + span::before {
  
} */
.form_input_check input[type="checkbox"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio */
.form_input_radio {
  position: relative;
  margin: 0;
  padding-left: 30px;
}
.form_input_radio span {
  margin: 0;
  padding: 0;
}
.form_input_radio input[type="radio"] {
  visibility: hidden;
  display: none;
}
.form_input_radio input[type="radio"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}
.form_input_radio input[type="radio"] + span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.form_input_radio input[type="radio"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
/* .form_input_radio input[type="radio"]:checked + span::before {
  
} */
.form_input_radio input[type="radio"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
/* custom radio end */

/* navbar*/
.navbar-brand {
  padding: 0;
  margin: 0;
}
.navbar {
  background: none;
  margin: 0;
  padding: 0;
  min-height: 0;
  height: 0;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
.navbar-nav li {
  position: relative;
  list-style: none;
}
.navbar-nav > li {
  margin: -10px 19px;
  padding: 0;
  position: relative;
}
.navbar-nav > li:last-child {
  margin-right: 0;
}
.navbar-nav > li:first-child {
  margin-left: 0;
}
/*if need to uppercase the menu navbar texts put:text-transform: uppercase;  in the curly brackets below*/
.navbar-nav > li > a {
  color: #232b34;
  font-size: 20px;
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
}
/*COMMENT OUT THE HOVER ICON.navbar-nav > li > a:after,.navbar-nav > li.current-menu-item > a:after{
    position: absolute;
    content: "";
    width: 15px;
    height: 12px;
    background: #FF948B;
    left: -7px;
    top: 0;
    transform: translate(-10px,-10px);
    z-index: -1;
    opacity: 0;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
}*/
/*COMMENT OUT HOVER ICON.navbar-nav > li > a:hover:after,.navbar-nav > li.current-menu-item > a:after{
 transition: 0.3s ease-in-out;
 -webkit-transition: 0.3s ease-in-out;
 opacity: 1;
 transform: inherit;
}*/
.navbar-nav > li.current-menu-item > a,
.navbar-nav > li > a:hover,
.navbar-nav > li.menu-item-has-children:hover > a {
  color: #232b34;
}

.navbar-nav li:before {
  display: none;
}

/* navbar submenu*/
.sub-menu {
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  width: 140px;
  padding: 0;
}
.sub-menu > li > a {
  color: #425964;
  display: block;
  width: 100%;
  padding: 5px 10px;
}
.sub-menu > li {
  width: 100%;
  display: block;
}
.sub-menu > li > a:hover,
.sub-menu > li.menu-item-has-children:hover > a {
  background: #c02013;
  color: #fff;
}

.navbar-nav > li:last-child > .sub-menu {
  right: 0;
  left: inherit;
  padding: 0;
}

/* 2nd level submenu */
.navbar-nav > li > .sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}

.cmn-gap {
  padding-top: 20px;
  padding-bottom: 30px;
}
/* ==> Header / navigation */
.main-head {
  background: #fff;
  box-shadow: 3.857px 4.596px 4px 0px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 3.857px 4.596px 4px 0px rgba(0, 0, 0, 0.06);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9999;
  left: 0;
}
.main-head-parent {
  position: relative;
  padding: 38px 0;
  background: #fff;
}

.search_ico_part .search_icoo_head li {
  padding: 0;
  margin: 0;
}
.search_ico_part .search_icoo_head li:before {
  display: none;
}
.search_ico_part {
  padding-left: 32px;
}

.search_icoo_head_out i {
  font-size: 20px;
  color: #75140c;
  font-weight: 300;
}

.main-head-botttom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-200%);
  z-index: -9999;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  background-color: #fff;
}

.main-head-botttom.actv_part {
  transform: inherit;
  z-index: 999999;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
}
.main-head-botttom .inner {
  padding: 10px 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.main-head-botttom .inner .inner_uin {
  width: 100%;
  position: relative;
  padding-left: 30px;
}
.main-head-botttom .inner .inner_uin .hd_meu_close {
  position: absolute;
  top: 5px;
  left: 0;
}

.hd_meu_close {
  font-size: 20px;
}
.main-head-botttom .inner .form-group {
  position: relative;
}
.main-head-botttom .inner .form-group input[type="text"] {
  padding-right: 80px;
  height: 40px;
  font-size: 14px;
}
.main-head-botttom .inner .form-group input[type="submit"],
.main-head-botttom .inner .form-group button {
  position: absolute;
  right: 0;
  top: 6px;
  font-size: 0;
  background: transparent;
  min-width: inherit;
  padding: 0;
  background: none; /* search icon removed (images/ folder absent) */
  width: 48px;
  height: 28px;
}

/* ==> Home / welcome banner */
.welcome_banner_row_left_in {
  text-align: center;
}

.welcome_banner_row_left_in .main_img {
  margin-bottom: 17px;
}
.welcome_banner_row_left_in h2 {
  font-weight: 400;
  font-size: 40px;
  margin-bottom: 1px;
}
.welcome_banner_row_left_in p {
  font-size: 20px;
  color: #232b34;
  font-weight: 400;
  margin-bottom: 10px;
}
.welcome_banner_row_left_in p span {
  color: #75140c;
}
.welcome_banner_row_left_in p:last-child {
  margin-bottom: 0;
}
.welcome_banner_row_left_in .scl_img {
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}
.welcome_banner_row_left_in .scl_img a {
  display: inline-flex;
  align-items: center;
}
.welcome_banner_row_left_in .scl_img img {
  width: 26px;
  height: 26px;
}

.paragraph p {
  font-size: 19px;
}
.paragraph p em {
  color: #75140c;
  font-style: italic;
  border-bottom: solid 2px #75140c;
}
.paragraph p span {
  color: #75140c;
  border-bottom: solid 2px #75140c;
}
.paragraph p strong {
  color: #75140c;
  font-style: bold;
  font-size: 24px;
}
.cmn_hdngg .cmn_hdngg_headd h2 small {
  font-size: 30px;
}
.cmn_hdngg .cmn_hdngg_headd h2 span {
  color: #75140c;
}
.cmn_hdngg .cmn_hdngg_headd {
  margin-bottom: 14px;
}
.cmn_hdngg .cmn_hdngg_headd:last-child {
  margin-bottom: 0;
}

.cmn-gap-border {
  border-bottom: 1px solid #ccc;
}

section:last-child .cmn-gap-border {
  border-bottom: 0;
}
.section_rscr_rt > ul > li:before {
  display: none;
}
.section_rscr_rt > ul > li {
  padding: 0;
  margin: 0;
  margin-bottom: 17px;
}
.section_rscr_rt > ul > li:last-child {
  margin-bottom: 0;
}
.section_rscr_rt_undr {
  padding: 23px 25px;
  border: 1px solid #ccc;
  border-radius: 2px;
  -webkit-border-radius: 2px;
}

.section_rscr_rt_undr h5 {
  color: #001527;
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 15px;
}
.section_rscr_rt_undr h5 span {
  font-size: 18px;
  color: #232b34;
  font-family: "Georgia", sans-serif;
  font-weight: 400;
}

.section_rscr_rt_undr .paragraph {
  margin-bottom: 15px;
}
.section_rscr_rt_undr .paragraph:last-child {
  margin-bottom: 0;
}
.section_rscr_rt_undr .tag_part li {
  display: inline-block;
  margin: 0;
  padding: 0;
  margin-right: 8px;
}
.section_rscr_rt_undr .tag_part li:before {
  display: none;
}
.section_rscr_rt_undr .tag_part li span {
  color: #75140c;
  font-size: 16px;
  font-weight: 400;
  display: block;
  border: 1px solid #75140c;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  padding: 6px 14px;
}

.vbtn_brd {
  color: #75140c;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 500;
  display: inline-block;
  border-bottom: 1px solid #fac7c3;
  text-transform: uppercase;
  margin-top: 21px;
}
.vbtn_brd:hover {
  color: #232b34;
  border-color: #232b34;
}

.cmn_hdngg.new {
  margin-bottom: 30px;
}
.cmn_hdngg.new:last-child {
  margin-bottom: 0;
}
.cmn_hdngg.cntrr {
  text-align: center;
}

.vbtn_brd.cntr {
  display: table;
  margin: 0 auto;
  margin-top: 34px;
}

/* ==> Teaching (course list, feedback panel) */
.teachs_secc_outr li:before {
  display: none;
}
.teachs_secc_outr > ul > li {
  display: block;
  margin-bottom: 30px;
  padding: 0;
}
.teaching-course-list .rsc_paper_innnnner_hdngs + .rsc_paper_innnnner_hdngs {
  margin-top: 14px;
}
.teaching-feedback {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid #e2e2e2;
}
.teaching-feedback h4 {
  font-size: 17px;
  margin-bottom: 10px;
  color: #75140c;
}
.teaching-feedback blockquote {
  margin: 0 0 12px 0;
  padding: 10px 14px;
  background: #faf7f5;
  border-left: 3px solid #75140c;
  font-size: 15px;
  line-height: 1.45;
}
.teaching-feedback blockquote:last-child {
  margin-bottom: 0;
}
.teachs_secc_outr > ul > li:last-child {
  margin-bottom: 0;
}
.teachs_secc_innnr {
  position: relative;
  padding-left: 80px;
}
.teachs_secc_innnr .arrow_prt {
  display: block;
  position: absolute;
  left: 0;
  top: 20px;
}
.teachs_secc_innnr .arrow_prt img {
  width: 38px;
}
.teachs_secc_innnr_undr {
  padding: 28px 31px;
  box-shadow: 0px 5px 22px 0px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0px 5px 22px 0px rgba(0, 0, 0, 0.12);
  background-color: #fff;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
}
.teachs_secc_innnr_undr:hover {
  box-shadow: 0px 5px 22px 0px rgba(0, 118, 255, 0.2);
  -webkit-box-shadow: 0px 5px 22px 0px rgba(0, 118, 255, 0.2);
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
}
.teachs_secc_innnr_undr h4 {
  color: #001527;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
}
.teachs_secc_innnr_undr .cmn_btn {
  font-size: 17px;
  font-weight: 500;
}

.teachs_secc_innnr_undr ul,
.teachs_secc_innnr_undr ol {
  margin-bottom: 20px;
  margin-left: 20px;
}
.teachs_secc_innnr_undr ul li {
  padding: 0;
}
.teachs_secc_innnr_undr ul li:last-child {
  margin-bottom: 0;
}
.teachs_secc_innnr_undr ul:last-child {
  margin-bottom: 0;
}

.teachs_secc_outr .vbtn_brd {
  margin-left: 80px;
  margin-top: 30px;
}
/* ==> Footer */
.main_footer_top {
  background-color: #000000;
  padding: 6px 0;
  color: #fff;
  text-align: center;
}
.main_footer_top p {
  font-size: 16px;
  font-weight: 300;
}

/*software*/
.breadcrumb_outtr {
  margin-top: 25px;
  margin-bottom: 10px;
}
.breadcrumb_outtr .breadcrumb-item.active {
  color: #232b34;
}
.breadcrumb_outtr .breadcrumb-item + .breadcrumb-item::before {
  content: var(--bs-breadcrumb-divider, "-");
  color: #232b34;
}

.cmn-gap-border-inner {
  border-bottom: 1px solid #ccc;
}
.cmn-gap-border-inner:last-child {
  border-bottom: 0;
}

.inner_pagee > .cmn-gap:first-child,
.inner_pagee > section:first-child .cmn-gap {
  padding-top: 0;
}

.sub_haeding_mn {
  text-align: center;
  margin-bottom: 10px;
}
.sub_haeding_mn:last-child {
  margin-bottom: 0;
}

.panel_data_mthd_col_inner {
  border: 1px solid #ccc;
  padding: 17px 18px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  height: 100%;
}
.panel_data_mthd_col_inner .hdng {
  color: #75140c;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
  margin-bottom: 16px;
}
.panel_data_mthd_col_inner .hdng a {
  text-decoration: underline;
  text-decoration-color: #f44234;
}
.panel_data_mthd_col_inner .hdng a:hover {
  text-decoration-color: #232b34;
}
.panel_data_mthd_col_inner .hdng:last-child {
  margin-bottom: 0;
}

.panel_data_mthd_col_inner .main_imgg {
  margin-bottom: 15px;
  text-align: center;
  min-height: 235px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel_data_mthd_col_inner .main_imgg img {
  max-height: 235px;
  object-fit: contain;
}
.panel_data_mthd_col_inner p {
  font-size: 14px;
}

/*research*/

.sub_haeding_mn.left {
  text-align: left;
}

.tab_area_part_main .nav-tabs li:before {
  display: none;
}
.tab_area_part_main .nav-tabs {
  border: 0;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #ccc;
}
.tab_area_part_main .nav-tabs li {
  border: 0;
  padding: 0;
  margin: 0;
  font-family: "Georgia", sans-serif;
  padding-right: 43px;
}
.tab_area_part_main .nav-tabs li:last-child {
  padding-right: 0;
}
.tab_area_part_main .nav-tabs li a {
  border: 0;
  padding: 0;
  margin: 0;
  color: #001527;
  font-size: 20px;
  padding-bottom: 14px;
  position: relative;
}
.tab_area_part_main .nav-tabs li a:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: #75140c;
  bottom: -1px;
  left: 0;
  opacity: 0;
}
.tab_area_part_main .nav-tabs li a.active {
  color: #75140c;
}
.tab_area_part_main .nav-tabs li a.active:after {
  opacity: 1;
}

.tab_area_part_main .tab-content {
  margin-top: 36px;
}
.tag_part_cmmmn ul {
  margin-bottom: -8px;
}
.tag_part_cmmmn li {
  display: inline-block;
  margin: 0;
  padding: 0;
  margin-right: 8px;
  margin-bottom: 8px;
}

.tag_part_cmmmn li::before {
  display: none;
}

.tag_part_cmmmn li span {
  color: #75140c;
  font-size: 16px;
  font-weight: 400;
  display: block;
  border: 1px solid #75140c;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  padding: 6px 14px;
}

/* ==> Research & publications (paper rows, tags, panels) */
.rsc_paper_innnnner {
  border: 1px solid #ccc;
  padding: 17px 24px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin-bottom: 18px;
}
.rsc_paper_innnnner:last-child {
  margin-bottom: 0;
}
.rsc_paper_innnnner .rsc_paper_innnnner_hdngs {
  margin-bottom: 5px;
}
.rsc_paper_innnnner .rsc_paper_innnnner_hdngs h5 {
  font-size: 20px;
  color: #75140c;
  font-style: italic;
  margin-bottom: 5px;
}
.rsc_paper_innnnner .rsc_paper_innnnner_hdngs h3 {
  font-size: 22px;
  margin-bottom: 2px;
}
.rsc_paper_innnnner .rsc_paper_innnnner_hdngs h4 {
  font-size: 18px;
  font-family: "Georgia", sans-serif;
  font-weight: 400;
  color: #232b34;
}
.rsc_paper_innnnner .rsc_paper_innnnner_hdngs h4 span {
  color: #75140c;
}

.mobile_hd_hd {
  display: none;
}

.teachs_secc_innnr_undr ul li,
.teachs_secc_innnr_undr ol li {
  list-style: decimal-leading-zero;
  list-style-position: inside;
}

.search-results .inner_pagee {
  min-height: calc(100vh - 100px);
}

/*.panel_data_mthd .tag_part_cmmmn a{display: inline-block; margin-right: 8px;} */

/*SG 21-05-21*/
.rsc_paper_innnnner .rsc_paper_innnnner_hdngs h4 span {
  font-style: italic;
}
/*.prd_lnk {
	border: 2px solid #232b34;
	padding: 20px 0;
}*/
.prd_lnk > a {
  margin-top: 15px;
  padding: 0px 20px;
  color: #75140c;
  font-weight: 400;
  display: inline-block;
  border: 1px solid #75140c;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  padding: 8px 14px 6px 14px;
}
.prd_lnk > a:hover {
  color: #fff;
  background: #75140c;
}
.main_img.no_brdr {
  padding: 0;
}
.main_img.no_brdr::after {
  display: none;
}
.sub-menu {
  min-width: 210px;
  top: calc(100% + 12px);
}
.sub-menu > li {
  padding: 0;
  margin: 0;
}
.sub-menu > li > a {
  padding: 8px 12px;
  font-size: 15px;
  scroll-behavior: smooth;
}
.sub-menu {
  padding: 6px 0;
}
.sub-menu::before {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 20px;
  top: -18px;
  background: transparent;
  content: "";
}
/*24.05*/
.section_rscr_rt_undr h5 span span {
  font-style: italic;
  color: #75140c;
}

.cmn-gap-border-inner.othrr_mthd:nth-child(2) {
  border-top: 1px solid #ccc;
}

/**/

/**/

/*responsive start*/

@media (min-width: 768px) {
  .responsive-tabs .dropdown-arrow {
    display: none;
  }
}

@media (min-width: 1025px) {
  /* navbar*/
  .clickD {
    display: none;
  }
  .navbar-nav li.menu-item-has-children:hover > .sub-menu {
    display: block;
  }
}

@media (max-width: 1024px) {
  /* navbar*/
  .navbar-nav .clickD {
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: block;
  }
  /* Down chevron drawn in CSS (replaces the former sort-down.svg) */
  .navbar-nav .clickD::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 4px;
    width: 7px;
    height: 7px;
    border-right: 2px solid #75140c;
    border-bottom: 2px solid #75140c;
    transform: rotate(45deg);
  }
  .navbar-nav > li.menu-item-has-children {
    padding-right: 20px;
  }
  .sub-menu.show {
    display: block;
  }

  .navbar-nav > li > a::after,
  .navbar-nav > li.current-menu-item > a::after {
    display: none;
  }
  .navbar-nav > li.current-menu-item > a,
  .navbar-nav > li > a:hover {
    color: #75140c;
  }
}

@media (max-width: 991px) {
  .cmn-gap {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .main-head-top .navbar-toggler {
    min-width: inherit;
    background-color: transparent !important;
    border: 0 !important;
    margin-left: auto;
    padding: 0;
    box-shadow: inherit;
  }

  .main-head-top .navbar-collapse {
    position: fixed;
    left: -100%;
    top: 0;
    background: #fff;
    transition: 0.3s all ease-in-out 0s;
    z-index: 999;
    height: 100%;
    width: 100%;
    padding: 0 30px;
    overflow-y: scroll;
  }

  .main-head-top .navbar-collapse.show {
    left: 0;
    transition: 0.3s all ease-in-out 0s;
    overflow-y: scroll;
  }
  .mobile_hd_hd {
    display: block;
    padding-top: 50px;
  }

  .mobile-menu-close.mobileMenuClose {
    background-color: transparent !important;
    min-width: inherit;
    padding: 0;
    box-shadow: inherit;
    border: 0 !important;
    margin-top: 0;
    cursor: pointer;
    border: none;
    font-size: 20px;
    color: #232b34 !important;
    display: table;
    margin-left: auto;
  }

  .navbar-nav > li {
    margin: 0;
    margin-bottom: 15px;
  }
  .navbar-nav > li:last-child {
    margin-bottom: 0;
  }

  body.show_hd_bdy {
    overflow-y: hidden;
  }
  .welcome_banner_row_left {
    margin-bottom: 30px;
  }
  .research_pappr_row_left {
    margin-bottom: 30px;
  }
  .rsc_paper_innnnner_row > [class*="col-"] {
    margin-bottom: 30px;
  }
  .rsc_paper_innnnner_row > [class*="col-"]:last-child {
    margin-bottom: 0;
  }

  /*SG 21-05-21*/
  .sub-menu {
    min-width: 100%;
    margin: 10px 0;
    position: static;
    margin-left: 20px;
    padding: 0;
  }
  .sub-menu::before {
    display: none;
  }
  /**/
}

@media (max-width: 767px) {
  /* images alignment for wordpress content pages */
  .alignright,
  .alignleft,
  .aligncenter {
    float: none;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin: 0 0 22px 0;
    max-width: 100%;
  }

  /* navbar*/
  .navbar-nav .clickD {
    top: 0px;
    right: 10px;
  }
  .sub-menu,
  .navbar-nav > li > .sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
  }
  .navbar-nav > li.menu-item-has-children {
    padding-right: 0;
  }
  .navbar-nav > li {
    margin: 0;
    padding: 0;
  }
  .navbar-nav > li > a {
    padding: 6px 10px;
    display: inline-block;
    width: 85%;
  }

  ul.nav.nav-tabs.responsive-tabs.open {
    height: auto;
  }

  .sub-menu > li > a {
    padding-left: 20px;
  }
  .sub-menu .sub-menu > li > a {
    padding-left: 40px;
  }
  .sub-menu .sub-menu .sub-menu > li > a {
    padding-left: 60px;
  }

  /*boot_tab*/
  .responsive-tabs {
    position: relative;
    border: 1px solid #ccc;
  }
  .responsive-tabs li {
    width: 100%;
    margin: 0;
  }
  .responsive-tabs li > a {
    display: none;
    border: 0;
    border-radius: 0;
  }
  .responsive-tabs.open li > a,
  .responsive-tabs li > a.active {
    display: block;
  }
  .responsive-tabs .dropdown-arrow {
    position: absolute;
    top: 15px;
    right: 15px;
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    vertical-align: middle;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transition: all ease 0.5s;
    cursor: pointer;
  }
  .responsive-tabs.open .dropdown-arrow {
    transform: rotate(-135deg);
    transition: all ease 0.5s;
  }

  /*boot_tab_end*/

  .cmn-gap {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .main-head-botttom .inner {
    padding: 10px 30px;
  }
  .main-head-botttom .inner .form-group input[type="text"] {
    padding-right: 45px;
  }

  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 35px;
  }
  h3 {
    font-size: 30px;
  }

  .tab_area_part_main .nav-tabs li a {
    padding: 0;
    font-size: 17px;
  }

  .tab_area_part_main .nav-tabs li a::after {
    display: none;
  }
  .tab_area_part_main .nav-tabs li {
    padding-right: 0;
    margin-bottom: 0;
  }
  .tab_area_part_main .nav-tabs li:last-child {
    margin-bottom: 0;
  }
  .tab_area_part_main .nav-tabs {
    border: 1px solid #ccc;
    background: #fff;
    padding: 10px 15px;
    padding-right: 40px;
  }

  .tab_area_part_main .nav-tabs.open li {
    margin-bottom: 10px;
  }
  .tab_area_part_main .nav-tabs.open li:last-child {
    margin-bottom: 0;
  }
  .tab_area_part_main .responsive-tabs .dropdown-arrow {
    top: 15px;
  }

  .panel_data_mthd_col_inner .main_imgg {
    min-height: inherit;
  }
  .panel_data_mthd_col_inner .main_imgg img {
    max-height: inherit;
  }

  .panel_data_mthd_col_inner {
    height: auto !important;
  }
}

@media (max-width: 575px) {
  .main-head-top .navbar-collapse {
    padding: 0 15px;
  }

  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 26px;
  }
  h4 {
    font-size: 22px;
  }
  h5 {
    font-size: 17px;
  }
  h6 {
    font-size: 16px;
  }
  body {
    font-size: 15px;
  }

  footer {
    background-color: #75140c;
  }

  .vbtn_brd {
    font-size: 15px;
  }
  .teachs_secc_innnr {
    padding-left: 40px;
  }
  .teachs_secc_innnr .arrow_prt img {
    width: 25px;
  }
  .main_footer_top p {
    font-size: 15px;
  }
  .section_rscr_rt_undr h5 {
    font-size: 15px;
  }
  .teachs_secc_innnr_undr h4 {
    font-size: 16px;
  }
  .teachs_secc_outr .vbtn_brd {
    margin-left: 40px;
  }
  .rsc_paper_innnnner .rsc_paper_innnnner_hdngs h3 {
    font-size: 20px;
  }
  .rsc_paper_innnnner .rsc_paper_innnnner_hdngs h5 {
    font-size: 17px;
  }
  .rsc_paper_innnnner .rsc_paper_innnnner_hdngs h4 {
    font-size: 15px;
  }
  .sub_haeding_mn {
    margin-bottom: 18px;
  }
}

@media (max-width: 479px) {
}

/*responsive end*/

/* Research page: tab strip height (was inline wp-custom-css) */
.tab_area_part_main .nav-tabs {
  height: 45px;
}

/* ==> Research: collapsible paper abstract (button reuses .tag_part_cmmmn pill) */
.tag_part_cmmmn button.abstract-toggle {
  text-transform: none;
  font: inherit;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
  cursor: pointer;
}
.tag_part_cmmmn button.abstract-toggle[aria-expanded="true"] span {
  background: #75140c;
  color: #fff;
}
.paper-abstract {
  margin-top: 14px;
}

/* ==> Research: named media-coverage line under a paper */
.paper-media {
  font-size: 15px;
  font-style: italic;
  color: #5f5f5f;
  margin-top: 12px;
}
