/* ===================================================
EARTH DESIGN TOKENS
=================================================== */
/* ===================================================
COLOR SYSTEM
=================================================== */
/* Brand */
/* Neutral */
/* Text */
/* ===================================================
TYPOGRAPHY
=================================================== */
/* Font family */
/* Font sizes */
/* Line height */
/* Font weight */
/* ===================================================
BORDER & RADIUS
=================================================== */
/* =========================================
BUTTON TOKENS
========================================= */
/* Size - MD */
/* Size - LG */
/* =========================================
LINK
========================================= */
/* ===================================================
SPACING SCALE
=================================================== */
/* ===================================================
SHADOW
=================================================== */
/* ===================================================
CONTAINER
=================================================== */
/* ===================================================
BREAKPOINT
=================================================== */
/*************** HEADER ***************/
.e-header {
  border-bottom: 1px solid #DCE2E6;
  padding: 5px 0 5px 15px;
  z-index:1000;
}
.e-header .e-header__left {
  width: 20%;
}
.e-header .e-header__menu .nav-link {
  font-size: 16px;
  font-weight: 400;
  color: #212438;
  padding: 1rem;
}
.e-header .e-header__menu .nav-link:hover {
  color: #0554BB !important;
}
.e-header .e-header__menu .nav-link.active {
  font-weight: 700;
}
.e-header .e-header__right {
  align-items: center;
  column-gap: 15px;
  padding-right: 5px;
  position: relative;
}
.e-header .e-header__right .e-header__menu {
  border-right: 1px solid #DCE2E6;
}
/*************** FOOTER ***************/
.e-footer {
  border-top: 1px solid #DCE2E6;
  padding: 30px;
}
.e-footer .e-footer-logo {
  width: 48%;
}
.e-footer .e-menu-list {
  padding: 0;
}
.e-footer .e-menu-list li {
  list-style: none;
  margin-bottom: 10px;
}
.e-footer .e-menu-list li a {
  font-size: 14px;
  text-decoration: none;
}
.e-footer .e-menu-list li:last-child {
  margin-bottom: 0;
}
.e-footer .e-footer-links a {
  font-size: 12px;
  text-decoration: none;
  color: #71738B;
}
.e-footer .e-footer-links .e-footer__line {
  color: #EEF2F5;
}
.e-footer .e-footer-links svg {
  fill: #71738B;
}
.e-footer .e-accordion {
  display: none;
}
.e-footer .e-footer__bottom {
  margin: 40px 0 0 0;
}
.e-footer .footer-social:hover svg {
  fill: #0554BB;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.e-footer .e-text-sm br{
  display: none;
}
/* =====================
BASE
===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #212438;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #212438 !important;
  text-decoration: none;
}
a:hover {
  color: #0554BB !important;
}
/* =====================
COMPONENTS
===================== */
/* ======== BUTTIN ======== */
.btn {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.2s ease;
}
.btn-earth-md {
  font-size: 16px;
  padding: 10px 20px;
}
.btn-earth-lg {
  font-size: 18px;
  padding: 14px 28px;
}
.btn-earth-primary {
  background-color: #0554BB !important;
  border: 1px solid #0554BB !important;
  color: #FFFFFF !important;
}
.btn-earth-primary:hover {
  background-color: #043E8B !important;
  border-color: #043E8B !important;
  color: #FFFFFF !important;
}
.btn-earth-primary-dark {
  background-color: #043E8B;
  border: 1px solid #043E8B;
  color: #FFFFFF;
}
.btn-earth-primary-dark:hover {
  background-color: #033372;
}
.btn-earth-white {
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}
.btn-earth-white:hover {
  background-color: #043E8B;
  color: #FFFFFF !important;
}
.btn-earth-white:hover svg {
  fill: #FFFFFF;
}
.btn-earth-outline {
  background: transparent;
  border: 1px solid #DCE2E6;
  color: #212438 !important;
}
.btn-earth-outline:hover {
  background-color: #0554BB;
  color: #FFFFFF !important;
}
.btn-earth-ghost {
  background: transparent;
  border: none;
  color: #0554BB;
}
.btn-earth-ghost:hover {
  background-color: rgba(5, 84, 187, 0.1);
}
.btn-earth-text {
  background: transparent;
  border: none;
  padding: 0;
  color: #0554BB;
}
.btn-earth-text:hover {
  text-decoration: underline;
}
.btn:disabled,
.btn.disabled {
  background-color: #DCE2E6;
  border-color: #DCE2E6;
  color: #A5A6B7;
  cursor: not-allowed;
}
/* ======== HYPERLINK  ======== */
.e-link-underline {
  color: #212438;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.2s ease;
  padding: 0;
}
.e-link-underline:hover {
  color: #71738B;
}
.e-link-underline:active {
  color: #66677d;
}
.e-link {
  color: #0554BB;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}
.e-link:hover {
  color: #71738B;
}
.e-link-md {
  font-size: 18px;
  padding: 15px 25px;
}
.e-link-sm {
  font-size: 16px;
}
/* ======== TAG  ======== */
.e-tag {
  flex: 0 0 auto;
  padding: 8px 20px;
  border-radius: 999px;
  background: #FFFFFF;
  color: #212438;
  font-size: 16px;
}
/* ======== TEXT ======== */
.e-text-primary {
  color: #212438;
}
.e-text-secondary {
  color: #71738B;
}
.e-text-muted {
  color: #A5A6B7;
}
.e-text-black {
  color: #000000;
}
.e-text-white {
  color: #FFFFFF;
}
.e-hd-primary {
  color: #0554BB;
}
/* ======== BACKGROUND ======== */
.e-bg-primary {
  background-color: #0554BB;
}
.e-bg-primary-dark {
  background-color: #043E8B;
}
.e-bg-gray-95 {
  background-color: #EEF2F5;
}
.e-bg-gray-90 {
  background-color: #DCE2E6;
}
.e-bg-foreground {
  background-color: #F9FBFC;
}
.e-bg-white {
  background-color: #FFFFFF;
}
/* ======== BORDER ======== */
.e-border-divider {
  border-color: #DCE2E6 !important;
}
/* ==============================
DISPLAY & HEADINGS
============================== */
/*60*/
.e-display {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
}
/*48*/
.e-h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}
/*32*/
.e-h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}
/*30*/
.e-h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}
/*28*/
.e-h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}
/*24*/
.e-h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
/*20*/
.e-text-xl {
  font-size: 20px;
  line-height: 1.4;
}
/*18*/
.e-text-lg {
  font-size: 18px;
  line-height: 1.4;
}
/*16*/
.e-text-md {
  font-size: 16px;
  line-height: 1.4;
}
/*14*/
.e-text-sm {
  font-size: 14px;
  line-height: 1.4;
}
/*12*/
.e-text-xs {
  font-size: 12px;
  line-height: 1.4;
}
/*10*/
.e-text-xxs {
  font-size: 10px;
  line-height: 1.4;
}
/********* container *********/
.e-container {
  max-width: 1024px;
  padding: 0 30px;
}
.e-container-sm {
  max-width: 940px;
  padding: 0 30px;
}
.e-container-lg {
  max-width: 1032px;
  padding: 0 30px;
}
/********* Search *********/
.e-search-icon .e-search__toggle {
  background-color: transparent;
  border: 0;
  padding: 0;
}
.e-input .input-group-text {
  background: transparent;
  border-right: 0;
  padding-right: 0;
}
.e-input input {
  padding: 8px;
  border-radius: 0;
  border-left: 0;
}
.e-input-icon {
  background-image: url("../images/icon/ic-search.svg");
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: auto;
  padding: 6px 10px 9px 45px;
  border: 1px solid #DCE2E6;
  border-radius: 0;
}
.e-input-icon::placeholder {
  color: #212438;
}
/********* Accordion **********/
.e-accordion .accordion-button {
  background-color: transparent;
  border-radius: 0;
  border: 0;
  color: #0554BB;
  padding: 0 0 10px 0;
}
.e-accordion .accordion-button::after {
  background-size: 12px;
}
.e-accordion .accordion-button:focus {
  box-shadow: none;
}
.e-accordion .accordion-header {
  border-bottom: 1px solid #DCE2E6;
}
.e-accordion .accordion-item {
  border: 0;
  margin-bottom: 20px;
}
.e-accordion .accordion-item:first-of-type > .accordion-header .accordion-button {
  border: 0;
}
.e-accordion .accordion-body {
  padding: 20px 0 10px 0;
}
/******* Dropdown ********/
.dropdown-menu {
  width: 300px;
  border-radius: 0;
  border: 0;
  box-shadow: 0px 4px 5px 0px rgba(33, 36, 56, 0.4);
}
.dropdown-menu .dropdown-item {
  padding: 7px 20px;
  color: #212438;
}
.dropdown-menu .dropdown-item:hover {
  background-color: #DCE2E6;
}
.dropdown-menu .dropdown-toggle::after {
  border: 0;
}
/***** Text clamp 2 ********/
.e-line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.e-line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/******* Tag ********/
.e-tags-item {
  font-size: 12px;
  color: #0554BB !important;
  border: 1px solid #DCE2E6;
  padding: 2px 10px;
  border-radius: 100px;
  align-items: center;
  gap: 5px;
}
.e-tags-item:hover {
  color: #043E8B !important;
}
/********** IMG ************/
.e-img-object-lg {
  width: 100%;
  height: 235px;
  object-fit: cover;
}
.e-img-object-sm {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
/********** Card **************/
.e-card .e-divi {
  height: 1px;
}
.e-card .e-card__title {
  margin: 0;
}
.e-card .e-card__title a {
  font-size: 24px;
  font-weight: 700;
}
.e-card .e-card__detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.e-card .e-card__meta {
  display: flex;
  gap: 20px;
}
.e-card .e-card__meta .e-card__meta-item {
  display: block;
}
.e-card .e-card__meta .e-card__meta-item span {
  font-size: 12px;
  color: #71738B;
  margin-left: 3px;
}
.e-card.e-crad-Vertical-sm {
  margin-bottom: 0px;
}
.e-card.e-crad-Vertical-sm .e-card__title a {
  font-size: 14px;
  font-weight: 400;
}
/******* Margin & Padding ********/
.e-mb-6 {
  margin-bottom: 60px;
}
.e-mt-6 {
  margin-top: 60px;
}
.e-px {
  padding-left: 30px;
  padding-right: 30px;
}
.e-show-sm {
  display: none;
}
/************* breadcrumb ************/
.e-breadcrumb .breadcrumb-item.active {
  color: #71738B;
}
.e-breadcrumb a {
  font-size: 14px;
  color: #71738B;
  text-decoration: none;
}
/********* Tabs ***********/
.e-tabs .tab-content {
  padding-top: 25px;
}
.e-tabs .tab-content:focus-visible {
  outline: none;
}
.e-tabs .nav-tabs .nav-link {
  border: 0;
  font-size: 16px;
  color: #212438;
}
.e-tabs .tab-pane:target {
  border: 0;
  box-shadow: none;
  outline: none;
}
.e-tabs .nav-tabs .nav-link.active {
  border-bottom: 2px solid #0554BB;
  font-weight: 700;
}
.e-tabs .nav-tabs {
  border-color: #DCE2E6;
}
/********* Pagination **********/
.e-pagination-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  margin-top: 30px;
}
.e-pagination-wrap .e-pagination-info {
  font-size: 14px;
  color: #A5A6B7;
}
.e-pagination-wrap .e-pagination {
  display: flex;
  align-items: center;
  gap: 20px;
}
.e-pagination-wrap .e-page-btn {
  font-size: 16px;
  color: #A5A6B7;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
}
.e-pagination-wrap .e-page-btn:hover {
  color: #0554BB;
}
.e-pagination-wrap .e-page-num {
  font-size: 16px;
  color: #A5A6B7 !important;
  text-decoration: none;
}
.e-pagination-wrap .e-page-num:hover {
  color: #0554BB;
}
.e-pagination-wrap .e-page-num.active {
  color: #212438 !important;
  font-weight: 600;
}
.e-pagination-wrap .e-page-dots {
  color: #212438;
}
/****** Slider *******/
.e-slide .e-slide-dots {
  position: relative;
  margin-top: 20px;
}
.e-slide .e-slide-dots button {
  width: 16px;
  height: 4px;
  border-radius: 4px;
  border: 0;
  background: #EEF2F5;
}
.e-slide .e-slide-dots .active {
  background: #0554BB;
  width: 20px;
}
.e-slide .e-slide-detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.e-slide .e-slide-detail .btn {
  align-self: flex-start;
}
.e-slide .carousel-item img {
  object-fit: cover;
  width: 100%;
  height: 260px;
}
/* =====================
Home Page
===================== */
.e-home .e-hero-section {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  background: #0554BB;
  color: #fff;
  display: flex;
}
.e-home .e-hero-section .e-unicorn-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.e-home .e-hero-section .e-hero-heading {
  color: #EEF2F5;
}
.e-home .e-hero-section .e-hero-dct {
  font-size: 14px;
}
.e-home .e-hero-section .e-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}
.e-home .e-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 62, 139, 0.3) 0%, rgba(4, 62, 139, 0.3) 70%, rgba(4, 62, 139, 0.3) 100%);
  z-index: 1;
}
.e-home .e-hero-cta .btn svg {
  fill: #212438;
}

.e-home .btn-earth-white:hover svg {
  fill: #FFFFFF !important;
}

.e-home .e-hero-cta .btn-earth-outline {
  color: #FFFFFF !important;
}
.e-home .e-hero-cta .btn-earth-outline:hover {
  background-color: #FFFFFF;
  color: #212438 !important;
}
.e-home .e-slide-section {
  padding: 40px 0 25px 0;
}
.e-home .e-feature-section {
  padding: 30px 0;
}
.e-home .e-feature-section .e-feature-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.e-home .e-feature-section .e-feature-col {
  flex: 0 0 calc(33.33% - 15px);
}
.e-home .e-feature-card {
  background-color: #ffffff;
  display: block;
  padding: 30px;
  border-radius: 8px;
}
.e-home .e-feature-card .e-feature-card__title {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.e-home .e-feature-card .e-feature-card__title:hover {
  color: #043E8B;
}
.e-home .e-feature-card .e-feature-card__icon {
  margin-bottom: 25px;
}
.e-home .e-feature-card .e-feature-card__icon img {
  width: 30%;
}
.e-home .e-news-update {
  padding-bottom: 40px;
}
.e-home .e-news-update .e-news-list {
  padding-top: 40px;
  border-top: 1px solid #DCE2E6;
  margin-bottom: 30px;
}
.e-home .e-news-update .e-card {
  margin-bottom: 20px;
}
.e-home .e-partners-logo .carousel-item img {
  object-fit: inherit;
  width: auto;
  height: auto;
  margin: auto;
}
.e-home .e-partners-logo .carousel-item a {
  margin-bottom: 20px;
}
.e-home .e-partners-logo {
  padding: 60px 0 40px 0;
}
.e-home .e-text-secondary br{
  display: none;
}
.e-home .e-funded-by{
  padding: 60px 0;
}
.e-home .e-funded-by__list {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
}

/* =====================
About
===================== */
.e-about {
  /********** About *************/
  /********** Partnerships *************/
  /********** Members *************/
}
.e-about .e-container {
  max-width: 1038px;
}
.e-about .e-expand .e-expand__btn {
  display: none;
}
.e-about .e-about-intro {
  max-width: 589px;
}
.e-about .e-about-headline {
  font-size: 32px;
  font-weight: 700;
}
.e-about .e-about-headline-md {
  font-size: 28px;
  font-weight: 700;
}
.e-about .e-about-hero {
  margin: 30px 0 40px 0;
}
.e-about .e-collaboration {
  background-image: url("../images/about.png");
  background-repeat: no-repeat;
  background-color: #FFFFFF;
  padding: 30px 0 45px 0;
  background-image: url(../images/about.png);
  background-repeat: no-repeat;
  background-color: #FFFFFF;
  padding: 30px 0 45px 0;
  background-position: 110% -72px;
  background-size: 30%;
}
.e-about .e-collaboration .e-stats {
  margin-top: 30px;
}
.e-about .e-collaboration .e-stat-item {
  border-top: 2px solid #0554BB;
  padding-top: 30px;
}
.e-about .e-collaboration .e-stat-number {
  font-size: 60px;
  color: #0554BB;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 30px;
}
.e-about .e-collaboration .e-stat-title {
  font-size: 24px;
}
.e-about .e-collaboration .e-stat-desc {
  font-size: 14px;
  color: #71738B;
}
.e-about .e-vision-mission {
  padding: 40px 0;
  background-image: url("../images/bg-stripe-left.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.e-about .e-vision-mission .e-vision__quote {
  font-size: 48px;
  font-weight: 400;
  color: #043E8B;
}
.e-about .e-vision-mission .e-vision__label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.e-about .e-vision-mission .e-vision__label-text {
  width: 16%;
}
.e-about .e-mission__desc {
  font-size: 18px;
}
.e-about .e-vision {
  margin: 0 0 100px 0;
}
.e-about .e-mission-cards {
  margin: 20px 0;
}
.e-about .e-mission-card__icon img {
  width: 30%;
}
.e-about .e-mission-card__title {
  font-size: 20px;
  color: #0554BB;
  font-weight: 700;
  border-bottom: 1px solid #0554BB;
  padding-bottom: 20px;
}
.e-about .e-mission-card__desc {
  font-size: 12px;
}
.e-about .e-mission__footer {
  font-size: 18px;
}
.e-about .e-gallery {
  display: flex;
}
.e-about .e-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.e-about .e-video {
  margin-top: 20px;
}
.e-about .e-video iframe {
  width: 100%;
  height: 580px;
}
.e-about .e-commitment {
  padding: 80px 0 60px 0;
}
.e-about .e-cta-block {
  background-image: url(../images/earth.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #f9fbfc;
  background-position: right;
  padding: 50px 0;
  margin-top: 30px;
}
.e-about .e-partnerships-block {
  padding: 30px;
}
.e-about .e-partnerships-block .js-viewmore {
  display:grid;
  grid-template-columns: repeat(6,1fr);
  gap:24px;
}
.e-about .e-partnerships .e-logo-action {
  margin-top: 40px;
}
.e-about .e-partnerships .e-partnerships-col.is-hidden {
  display: none;
}
.e-about .e-partnerships .js-viewmore {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.e-about .e-partnerships .e-partnerships-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.e-about .e-partnerships .e-partnerships-col img {
  max-width: 100%;
  height: auto;
}
.e-about .e-collaborators {
  padding: 30px 0;
}
.e-about .e-collaborators .e-member-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-evenly;
}
.e-about .e-collaborators .e-member-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 0 0 calc(25% - 35px);
  margin-bottom: 20px;
}
.e-about .e-collaborators .e-executive .e-member-col {
  flex: 0 0 calc(30% - 30px);
}
.e-about .e-collaborators .e-member-detail {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.e-about .e-collaborators .modal-body .e-member-detail {
  cursor: auto;
}
.e-about .e-collaborators .e-member-name {
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
  text-align: center;
}
.e-about .e-collaborators .e-member-position {
  font-size: 14px;
  text-align: center;
}
.e-about .e-collaborators .e-member-location {
  font-size: 12px;
  text-align: center;
}
.e-about .e-collaborators .e-member-link {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 15px;
}
.e-about .e-collaborators .e-profile-stats-row {
  gap: 20px;
  justify-content: space-evenly;
}
.e-about .e-collaborators .e-profile-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.e-about .e-collaborators .e-profile-stat-label {
  font-size: 14px;
}
.e-about .e-collaborators .e-profile-update {
  text-align: center;
  margin-top: 15px;
}
.e-about .e-collaborators .modal-body {
  padding: 30px;
}
.e-about .e-collaborators .e-member-contact {
  margin-top: 25px;
}
.e-about .e-collaborators .e-member-contact a {
  margin-bottom: 15px;
  font-size: 16px;
}
.e-about .e-collaborators .e-member-contact a span {
  text-decoration: underline;
}
.e-about .e-collaborators .e-collaborators-heading {
  font-size: 32px;
  font-weight: 700;
}
.e-about .e-collaborators-tab {
  margin-top: 60px;
}
.e-about .e-collaborators-tab .nav-tabs {
  border: 0;
  gap: 20px;
}
.e-about .e-collaborators-tab .nav-tabs .nav-link {
  font-size: 32px;
  color: #71738B;
  border-right: 1px solid #DCE2E6;
  border-radius: 0;
  padding: 0 20px 0 0;
  line-height: normal;
}
.e-about .e-collaborators-tab .nav-tabs .nav-item:last-child .nav-link {
  border-right: 0;
  padding: 0;
}
.e-about .e-collaborators-tab .nav-tabs .nav-link.active {
  border-bottom: 0;
  color: #212438;
}
.e-about .e-team-filter {
  margin-bottom: 30px;
}
.e-about .e-team-filter .nav {
  border-bottom: 1px solid #DCE2E6;
  justify-content: space-between;
  overflow-x: auto;
  flex-wrap: nowrap;
}
.e-about .e-team-filter .nav-link {
  padding: 5px 10px;
  white-space: nowrap;
}
.e-about .e-team-filter .nav-link.active {
  border-bottom: 2px solid #0554BB;
}
.e-about .e-sub-team .e-member-name span {
  display: block;
}
/* =====================
News Page
===================== */
.e-news {
  margin-bottom: 60px;
}
.e-news .e-news-toolbar {
  margin-bottom: 30px;
  border-width: 1px;
  border-style: solid;
}
.e-news .e-news-nav {
  width: 80%;
  padding-left: 15px;
}
.e-news .e-news-nav .nav-link {
  font-size: 14px;
}
.e-news .e-news-nav .nav-link.active {
  font-weight: 700;
}
.e-news .e-news-nav .dropdown-toggle::after {
  display: none;
}
.e-news .e-news-nav .dropdown-toggle svg {
  position: relative;
  top: -2px;
}
.e-news .e-search-icon {
  width: 20%;
}
.e-news .e-search-icon .e-search__toggle {
  display: none;
}
.e-news .e-search-icon .e-input-icon {
  border-width: 0 0 0 1px;
}
.e-news .e-news-list {
  padding: 0 30px;
}
.e-news .e-news-list .e-card {
  margin-bottom: 60px;
}
.e-tags {
  margin-bottom: 60px;
}
.e-tags .e-tags-container {
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.e-news .e-card.e-crad-Vertical-sm {
  margin-bottom: 30px;
}

/* =====================
Event page
===================== */
.e-event .e-heading {
  font-size: 24px;
  padding: 20px 0;
  margin-bottom: 30px;
}
.e-event .e-event-title {
  font-size: 24px;
}
.e-event .e-event-detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.e-event .e-event-detail .btn {
  align-self: flex-start;
}
.e-event .e-event-meta__item {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.e-event .e-event-meta__item span {
  font-size: 12px;
}
.e-all-event {
  padding-top: 60px;
}
.e-all-event .e-event-title {
  font-size: 18px;
  margin-bottom: 0;
}
.e-all-event .e-event-detail {
  gap: 10px;
}
.e-all-event .e-event-img img {
  object-fit: cover;
  width: 100%;
  height: 145px;
}
.e-all-event .e-publication-item {
  border-bottom: 1px solid #DCE2E6;
  padding: 0 0 20px 0;
  margin: 0 0 20px 0;
}
.e-all-event .e-publication-item.is-hidden {
  display: none;
}
.no-event {
  display: none;
}
.no-event.active {
  display: block;
}
.e-publication-event {
  padding-bottom: 80px;
}
/* =====================
Single Post
===================== */
.single-post {
  padding-top: 50px;
}
/*********** Start Event ************/
.e-event-detail {
  padding: 50px 0;
}
.e-event-detail .event-sidebar.fixed {
  position: fixed;
  top: 30px;
}
.e-event-detail .e-event-detail__header {
  border-bottom: 1px solid #DCE2E6;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.e-event-detail .e-event-detail__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}
.e-event-detail .e-event-detail__description {
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.e-event-detail .e-event-detail__description.show {
  -webkit-line-clamp: initial;
  line-clamp: initial;
}
.e-event-detail .e-event-detail__view-all {
  padding: 0;
  border: 0;
  background-color: transparent;
}
.e-event-detail .e-event-detail__meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.e-event-detail .e-event-detail__meta .e-event-detail__organizer {
  color: #A5A6B7;
}
.e-event-detail .e-event-detail__meta .e-event-detail__organizer-name,
.e-event-detail .e-event-detail__meta .e-event-detail__status {
  color: #212438;
}
.e-event-detail .e-event-detail__heading {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}
.e-event-detail .e-event-detail__map {
  margin-top: 20px;
}
.e-event-detail .e-event-detail__map-link,
.e-event-detail .e-event-detail__view-all {
  text-decoration: underline;
}
.e-event-detail .e-event-detail__category {
  font-size: 14px;
}
.e-event-detail .e-event-detail__category .e-event-detail__category-label {
  color: #A5A6B7;
}
.e-event-detail .event-sidebar {
  padding: 23px;
  border: 1px solid #DCE2E6;
  border-radius: 8px;
  background-color: #ffffff;
}
.e-event-detail .event-sidebar h3 {
  font-size: 18px;
}
.e-event-detail .event-sidebar .e-event-meta span {
  font-size: 14px;
}
.e-event-detail .event-sidebar .e-event-meta {
  margin-bottom: 20px;
  border-bottom: 1px solid #DCE2E6;
  padding-bottom: 20px;
}
.e-event-detail .event-sidebar .event-sidebar-md {
  display: none;
}
.e-event-detail .e-share__social {
  justify-content: center;
  margin-top: 20px;
}
.event-sidebar-md {
  display: none;
}
/*********** End Event ************/
/*********** Start Article ************/
.e-post-detail h2 {
  font-size: 32px;
}
.e-post-detail h3 {
  font-size: 30px;
}
.e-post-detail h4 {
  font-size: 28px;
}
.e-post-detail h5 {
  font-size: 24px;
}
.e-post-detail a {
  text-decoration: underline;
  color: #0554BB;
}
.e-share__social {
  display: flex;
  column-gap: 30px;
}
.e-share__social a {
  display: inline-block;
}
.e-share-box {
  border-top: 1px solid #DCE2E6;
  padding-top: 30px;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
.e-share-box a {
  text-decoration: none;
}
.e-share-box .e-share__count,
.e-share-box .e-feedback {
  color: #212438;
  font-size: 16px;
}
.e-block-sidebar {
  width: 100px;
}
.e-block-content {
  padding-left: 85px;
}
.e-block-content .e-post-breadcrumb {
  display: flex;
  justify-content: space-between;
}
.e-sidebar-fixed{
  position: fixed;
  top:150px;
}
.e-article__share {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #fff;
  padding: 15px;
}
.e-article__share .e-icon-item {
  border-bottom: 1px solid #DCE2E6;
  padding: 0 10px 10px 10px;
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 15px;
  font-size: 12px;
  color: #212438;
}
.e-reference {
  margin-top: 30px;
  /* note */
}
.e-reference .e-reference-box {
  background: #DCE2E6;
  padding: 30px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.e-reference .e-reference-item {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #212438;
}
.e-reference .e-reference-item:last-child {
  margin-bottom: 0;
}
.e-reference .e-reference-label {
  font-weight: 700;
  margin-right: 4px;
}
.e-reference .e-reference-text a {
  color: #0554BB !important;
  text-decoration: none;
}
.e-reference .e-reference-source {
  font-size: 18px;
  margin-bottom: 10px;
  color: #212438;
}
.e-reference .e-reference-source a {
  text-decoration: none;
  color: #0554BB;
}
.e-reference .e-reference-note {
  font-size: 14px;
  color: #A5A6B7;
}
.e-reference .e-reference-note a {
  text-decoration: underline;
  color: #0554BB;
}
.relate-article {
  background-color: #F9FBFC;
  margin-top: 80px;
  padding: 40px 0;
}
.relate-article .e-caed-media {
  width: 60%;
}
.relate-article .e-card {
  margin-bottom: 10px;
}
.relate-article .e-card .e-card__title a {
  font-size: 16px;
  text-decoration: none;
}
.relate-article .e-card__meta-item {
  text-decoration: none;
}
.relate-article .e-img-object-sm {
  height: 100px;
}
.relate-article .e-card .e-card__detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/*********** End Article ************/
.e-footer-detail__share {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid #DCE2E6;
}
/* =====================
Search
===================== */
.e-search-page {
  padding: 60px 0;
}
.e-search-page .e-search-result .e-card.e-crad-Vertical-sm {
  margin-bottom: 30px;
}
.e-search-page .e-search__wrapper {
  max-width: 1100px;
  margin: auto;
}
.e-search-page .e-result-container {
  padding: 20px 30px;
}
.e-search-page .e-search__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  padding: 0 30px;
}
.e-search-page .e-search-bar {
  border: 1px solid #DCE2E6;
  padding: 5px 16px 5px 30px;
  display: flex;
  gap: 10px;
}
.e-search-page .e-search-bar .e-tags-item {
  border-color: #DCE2E6;
}
.e-search-page .e-input-icon {
  border: none !important;
  outline: none;
  background-position: 0 center;
  padding: 5px 10px 5px 35px;
}
.e-search-page .e-search-tags {
  margin-top: 10px;
}
.e-search-page .e-tag {
  background: #eef4ff;
  color: #2d6cdf;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
}
.e-search-page .e-search-info {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 20px;
}
.e-search-empty {
  padding: 30px;
}
.e-search-empty.hidden {
  display: none;
}
.e-search-page .e-button {
  border: 0;
  background-color: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.e-search-page .e-pagination-wrap {
  padding: 0;
}

/* =====================
Digital Library
===================== */

.e-toolbar-search {
  display: none;
}

.e-digital-library .e-card {
  border: 1px solid #DCE2E6;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.e-digital-library .e-card__image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.e-digital-library .e-card img:not(.e-icon):not(.e-card__image) {
  width: auto;
  height: auto;
  object-fit: contain;
}

.e-digital-library .e-card__detail {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1; 
}


.e-digital-library .e-card__title a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  display: block;
}

.e-digital-library .e-card__detail p {
  font-size: 14px;
  
  margin: 0;
  line-height: 1.6;
}

.e-digital-library .e-tags-item {
  font-size: 12px;
  padding: 4px 10px;
}

/* meta */
.e-digital-library .e-card__meta {
  margin-top: auto;
  font-size: 12px;
  display: flex;               
  justify-content: space-between;
  align-items: center;          
  gap: 10px;
}

.e-digital-library .e-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

.e-digital-library .e-card__meta-item img {
  width: 16px !important;
  height: 16px !important;
}

.e-digital-library .e-card__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.e-digital-library .e-card__meta-item {
  display: inline-flex;      
  align-items: center;
  gap: 5px;
  line-height: 1;           
}

/* icon align */
.e-digital-library .e-card__meta-item .e-icon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px; 
}

.e-digital-library .e-card__meta-item span {
  display: inline-block;
  vertical-align: middle;
}

/* filter*/

.e-digital-library .e-filter label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.e-digital-library .e-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* meta layout */
.e-digital-library .e-card__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===== Layout ===== */
.e-digital-library .e-filter-col {
  transition: all 0.3s ease;
}

.e-digital-library .e-filter-col.is-collapsed {
  display: none;
}

.e-digital-library .e-filter-col.is-collapsed ~ .col-lg-9 {
  flex: 0 0 100%;
  max-width: 100%;
}

.e-digital-library .e-library-toolbar {
  width: 100%;
}


.e-library-toolbar {
  margin-bottom: 5px;
}


.e-toolbar-top {
  padding: 4px 0;
  justify-content: space-between;
}


.e-toolbar-left {
  gap: 15px;
}


.e-toolbar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}


.e-filter-toggle-btn {
  padding: 8px 14px;
  border-radius: 5px;
  bo
}


.e-btn-icon-text {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;  
  padding: 0 10px;
  padding: 8px 10px;
  border-radius: 10px;
}


.e-view-toggle {
  margin-left: 4px;
}


.e-toolbar-search {
  margin-top: 0;
}

.e-toolbar-search input {
  height: 44px;
  border-radius: 12px;
  padding: 0 14px;
}

.e-digital-library .e-digital-library__sort .btn {
  transition: all 0.2s ease;
}

.e-digital-library .e-digital-library__sort .btn:hover {
  background-color: #0554BB;
  border-color: #0554BB;
  color: #FFFFFF !important;
}

.e-digital-library .e-digital-library__sort .btn:hover .e-icon {
  filter: brightness(0) invert(1);
}

.e-digital-library .dropdown-menu {
  min-width: 200px;
  padding: 8px 0;
  border-radius: 2px;
  border: 1px solid #E6E8EC;
  box-shadow: 0px 4px 5px 0px rgba(33, 36, 56, 0.4);
  overflow: hidden;
}

.e-digital-library .dropdown-item {
  font-size: 14px;
  padding: 10px 16px;
  color: #212438;
  transition: all 0.2s ease;
  
}

.e-digital-library .dropdown-item:hover {
  background-color: rgba(5, 84, 187, 0.1);
  color: #0554BB;
}

.e-digital-library .dropdown-item.active {
  background-color: #DCE2E6;
  color: #0554BB;
}

.e-digital-library .dropdown-item:active {
  background-color: #DCE2E6;
  color: #0554BB;
}

.e-digital-library .dropdown-item:focus {
  background-color: #DCE2E6;
  color: #0554BB;
}

.e-digital-library .dropdown-toggle::after {
  margin-left: 6px;
}

.e-card-view {
  margin-top: 10px;
}


.e-digital-library .e-card-col {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.e-digital-library .e-filter-col.is-collapsed + .col-lg-9 .e-card-col {
  flex: 0 0 25%;
  max-width: 25%;
}

.e-digital-library .e-card__image-wrap {
  position: relative;
}

/* access icon */
.e-digital-library .e-card__access {
  position: absolute;
  top: 10px;
  right: 10px;
  
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 6px;
  
  display: flex;
  align-items: center;
  justify-content: center;
}

.e-digital-library .e-card__access .e-icon {
  width: 14px;
  height: 14px;
}

/* ===== Filter ===== */
.e-digital-library .e-filter-toggle-btn {
  display: none;
  white-space: nowrap;
}

.e-digital-library .e-filter-toggle-btn.active {
  display: inline-flex;
}

.e-digital-library .e-filter-content {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.e-digital-library .e-filter-item {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  margin-bottom: 15px;
}

.e-digital-library .e-filter-text {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.e-digital-library .e-filter-icon {
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

.e-digital-library .e-filter-item input {
  display: none;
}

.e-digital-library .e-checkmark {
  width: 16px;
  height: 16px;
  border: 2px solid #DCE2E6;
  margin-right: 5px;
  border-radius: 5px;
  display: inline-block;
  position: relative;
  
}

.e-digital-library .e-filter-item input:checked + .e-checkmark {
  background: #0554BB;
  border-color: #0554BB;
}

.e-digital-library .e-filter-item input:checked + .e-checkmark::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../images/icon/ic-check.svg") no-repeat center;
  background-size: contain;
}

.e-digital-library .e-filter-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  color: #212438;
}
.e-filter {
  margin: 15px;
}

.e-filter-item--child {
  padding-left: 30px;
}

.e-filter-item--child .e-filter-label {
  font-weight: 400;
}

.e-filter-item--child .e-checkmark {
  transform: scale(0.9);
}

.e-digital-library .e-count {
  margin-left: 5px;
  color: #A5A6B7;
  font-size: 14px;
}

.e-filter-group__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 10px;
}

.e-filter-group__body {
  
  max-height: 1000px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* collapsed */
.e-filter-group.is-collapsed .e-filter-group__body {
  max-height: 0;
  opacity: 0;
}

/* arrow rotate */
.e-filter-arrow {
  transition: transform 0.3s ease;
  background: none;
  border: none
}

.e-filter-group.is-collapsed .e-filter-arrow {
  transform: rotate(-180deg);
}

/* ===== View Toggle ===== */
.e-digital-library .e-view-toggle {
  display: flex;
  align-items: center;
  border: 1px solid #D1D5DB;
  border-radius: 10px;
  overflow: hidden;
}

.e-digital-library .e-view-btn {
  width: 44px;
  height: 40px;
  border: none;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.e-digital-library .e-view-btn img {
  width: 18px;
  height: 18px;
}

.e-digital-library .e-view-btn.active {
  background: #0554BB;
}

.e-digital-library .e-view-btn.active img {
  filter: brightness(0) invert(1);
}

.e-digital-library .e-view-btn:hover {
  background: rgba(5, 84, 187, 0.1);
}

/* ===== Map ===== */
.e-digital-library #research-map {
  width: 100%;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
}


/* ===================== Map */
.e-map-marker {
  background: transparent;
  border: none;
}

.e-map-marker__inner {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.e-map-marker__inner img {
  width: 18px;
  height: 18px;
}

/* =====================
Responsive
===================== */

/* =========== 1400 =========== */
@media (max-width: 1400px) {
  .e-about .e-collaboration {
    background-size: 37%;
  }
  
}


/* =========== 1200 =========== */
@media (max-width: 1200px) {
  /********** Header *********/
  .e-header .e-header__menu .nav-link {
    font-size: 12px;
    padding: 1rem 0.5rem;
  }
  .e-header .e-header__right .e-header__menu {
    padding-right: 10px;
  }
  /********** /Header *********/
  .e-footer .e-footer-logo {
    width: 70%;
  }
  .e-home .e-feature-card {
    min-height: 240px;
    padding: 20px;
  }
}
/* =========== 1024 =========== */
@media (max-width: 1024px) {
  .e-relate-post .col-md-3 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  
  .e-relate-post .block-row .block-item:nth-child(4) {
    display: none;
  }
  
  .e-event-detail .event-sidebar {
    top: inherit;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100% !important;
    z-index: 1000;
  }
  
  .e-event-detail .event-sidebar.fixed {
    position: fixed;
    top: auto;
  }
  
  .e-event-detail .col-md-7 {
    flex: 0 0 auto;
    width: 100%;
  }
  
  .e-home .carousel-item .col-md-2 {
    flex: 0 0 auto;
    width: 23.666667%;
  }
  
  .e-home .e-feature-card {
    min-height: 260px;
    padding: 30px;
  }
  
  .e-about .e-partnerships .js-viewmore {
    grid-template-columns: repeat(4, 1fr);
  }
  
  
  .e-news-update .e-news-list .row > div:nth-child(n+5){
    display: none;
  }
  
  .e-about .e-partnerships-block .js-viewmore{
    grid-template-columns: repeat(4,1fr);
  }
  
  .e-about .e-collaboration {
    background-size: 40%;
    background-position: 110% 100%;
  }
}

/* =========== 991 =========== */
@media (max-width: 991px) {
  /********** Header *********/
  .e-header .e-header__right {
    flex-direction: row-reverse;
    padding-right: 0;
    flex-basis: 100%;
  }
  
  /* ปุ่ม toggle */
  .e-header__menu .navbar-toggler {
    border: 0;
    box-shadow: none;
  }
  
  /* hamburger (ตอนเมนูปิด) */
  .e-header__menu .navbar-toggler.collapsed .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba%2833,36,56,0.9%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  
  /* X icon (ตอนเมนูเปิด) */
  .e-header__menu .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background-image: none;
    position: relative;
  }
  
  .e-header__menu .navbar-toggler:not(.collapsed) .navbar-toggler-icon::before,
  .e-header__menu .navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 2px;
    background: #212438;
    left: 4px;
    top: 10px;
  }
  
  .e-header__menu .navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
    transform: rotate(45deg);
  }
  
  .e-header__menu .navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
    transform: rotate(-45deg);
  }
  
  .e-header__menu .navbar-collapse {
    position: fixed;
    top: 70px; /* ความสูง header */
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    padding: 30px 20px;
    overflow-y: auto;
    z-index: 999;
  }
  
  /* เอา shadow card ออก */
  .e-header__menu .navbar-nav {
    width: 100%;
  }
  
  /* เอา padding container ออก */
  .e-header .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
  
  .navbar-collapse {
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  
  .navbar-collapse.show {
    transform: translateX(0);
  }
  
  .e-header .e-header__right .e-header__menu {
    padding: 15px 0 15px 15px;
    border-left: 1px solid #DCE2E6;
    border-right: 0;
  }
  .navbar-collapse {
    position: absolute;
    left: 0;
    top: 57px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 4px 5px 0px rgba(33, 36, 56, 0.4);
    z-index: 3;
  }
  .e-header__left.d-flex {
    position: absolute;
    z-index: 9999;
    width: 32%;
  }
  .e-header .e-header__menu .dropdown-menu {
    width: 100%;
    box-shadow: none;
    border-top: 1px solid #DCE2E6;
    border-bottom: 1px solid #DCE2E6;
  }
  .e-header .e-header__menu .dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 5px 30px;
  }
  .e-header .e-header__menu .nav-link {
    font-size: 14px;
    padding: 0.5rem 1rem;
  }
  /********** /Header *********/
  .e-about .e-vision-mission .e-vision__label-text {
    width: 20%;
  }
  .e-about .e-vision-mission .e-vision__quote br {
    display: none;
  }
  .e-about .e-vision-mission .e-vision__label {
    gap: 0;
  }
  .e-about .e-collaboration {
    background-size: 37%;
  }
  .e-about .e-commitment {
    padding: 10px 0 0px 0;
  }
  .e-about .e-collaborators .e-member-col {
    flex: 0 0 calc(33.33% - 35px);
  }
  .e-home .e-feature-card {
    min-height: 268px;
    padding: 15px;
  }
  .e-home .e-feature-section .e-feature-col {
    flex: 0 0 calc(32% - 5px);
  }
  .e-relate-post .e-img-object-sm {
    height: 120px;
  }
  .relate-article .e-img-object-sm {
    height: 80px;
  }
  .relate-article .e-caed-media {
    width: 80%;
  }
  
}
/* =========== 768 =========== */
@media (max-width: 768px) {
  .e-header .e-header__left {
    width: 40%;
    left: 20px;
  }
  .e-header {
    padding: 0;
  }
  .e-footer .e-footer-logo {
    width: 50%;
  }
  .e-search-page .e-result-container {
    padding: 20px 0;
  }
  .e-search-page .e-search__title {
    font-size: 28px;
    padding: 0;
  }
  .e-card .e-card__title a {
    font-size: 16px;
  }
  .e-card .e-card__detail {
    gap: 12px;
  }
  .e-img-object-lg {
    height: 200px;
  }
  .e-news .e-news-list .e-card {
    margin-bottom: 35px;
  }
  .e-mb-6 {
    margin-bottom: 40px;
  }
  .e-pagination-wrap {
    padding: 0 15px;
  }
  .e-pagination-wrap .e-pagination-info,
  .e-pagination-wrap .e-page-btn,
  .e-pagination-wrap .e-page-num {
    font-size: 12px;
  }
  .e-slide .carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 260px;
  }
  .e-home .btn-earth-white {
    width: 100%;
  }
  .e-home .e-hero-cta .btn-earth-outline {
    padding: 10px 0 0 0;
    border: 0;
    text-decoration: underline;
    font-size: 16px;
    width: 100%;
  }
  .e-home .e-hero-cta .btn-earth-outline:hover {
    background-color: transparent;
    color: #ffffff !important;
  }
  .e-home .e-funded-by__text br {
    display: none;
  }
  .e-about .e-about-hero {
    margin: 20px 0 20px 0;
  }
  .e-about .e-collaboration {
    padding: 20px 0;
  }
  .e-about .e-collaboration .e-stats {
    margin-top: 15px;
  }
  .e-about .e-collaboration .e-stat-item {
    padding-top: 10px;
  }
  .e-about .e-collaboration .e-stat-number {
    margin-bottom: 10px;
  }
  .e-about .e-collaboration {
    padding: 20px 0;
    background-size: 66%;
    background-position: 171% 71%;
  }
  .e-about .e-vision-mission .e-vision__quote {
    font-size: 32px;
  }
  .e-about .e-vision-mission .e-vision__label-text {
    width: 30%;
  }
  .e-about .e-vision {
    margin: 0 0 60px 0;
  }
  .e-about .e-video iframe {
    height: 430px;
  }
  .e-about .e-cta-block {
    padding: 20px 0;
    margin-top: 20px;
    background-size: 40%;
    background-position: bottom right;
  }
  .e-about .e-cta-block .e-cta-text {
    padding-right: 50px;
  }
  .e-about .e-collaborators .e-member-col {
    flex: 0 0 calc(50% - 35px);
  }
  .e-about .e-collaborators .e-executive .e-member-col {
    flex: 0 0 calc(50% - 30px);
  }
  .e-about .e-collaborators-tab .nav-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .e-about .e-collaborators-tab .nav-tabs .nav-link {
    font-size: 20px;
    white-space: nowrap;
  }
  .e-home .e-feature-card .e-feature-card__icon .show-sm {
    display: block;
  }
  .e-home .e-feature-card .e-feature-card__icon .show-lg {
    display: none;
  }
  .e-home .e-feature-card {
    min-height: 100%;
    padding: 20px;
  }
  .e-home .e-feature-card .e-feature-card__title {
    font-size: 16px;
  }
  .e-home .e-feature-card .e-feature-card__desc {
    font-size: 14px;
  }
  .e-home .e-feature-section .e-feature-row {
    gap: 10px;
  }
  .e-home .e-feature-section .e-feature-col {
    flex: 0 0 calc(32% - 1px);
  }
  .e-home .e-hero-section .e-hero-content {
    padding: 40px 20px;
  }
  .e-news .e-news-list {
    padding: 0 15px;
  }
  .e-news .e-search-icon .e-input-icon {
    display: none;
  }
  .e-news .e-search-icon .e-search__toggle {
    display: block;
    margin: auto;
  }
  .e-news .e-search-icon {
    width: 10%;
    text-align: center;
  }
  .e-news .e-news-nav {
    width: 90%;
    padding-left: 0px;
    border-right: 1px solid #dce2e6;
  }
  .e-news .e-px {
    padding-left: 15px;
    padding-right: 15px;
  }
  .e-news .e-news-list .e-card {
    margin-bottom: 40px;
  }
  .e-news .e-news-nav .nav-link {
    font-size: 16px;
    white-space: nowrap;
  }
  .e-news .e-news-nav .dropdown {
    position: inherit;
  }
  .e-relate-post .e-px {
    padding: 15px;
    margin-bottom: 20px;
  }
  .e-all-event .e-event-title {
    font-size: 16px;
  }
  .e-all-event .e-event-dcp {
    display: none;
  }
  .e-event h1 {
    font-size: 28px;
  }
  .e-event .e-heading {
    font-size: 20px;
  }
  .e-all-event {
    padding-top: 40px;
  }
  .e-block-sidebar {
    display: none;
  }
  .e-block-content {
    padding-left: 0;
  }
  .e-block-content .e-post-breadcrumb {
    display: none;
  }
  .e-share-box .e-share__count,
  .e-share__social {
    width: auto;
  }
  .e-share-box {
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 30px;
  }
  .e-share-box .e-feedback {
    width: 100%;
    justify-content: center;
    margin-top: 30px;
  }
  .relate-article .e-img-object-sm {
    height: 100px;
  }
  .relate-article .e-caed-media {
    width: 40%;
  }
  .relate-article .block-item:nth-child(n + 4):nth-child(-n + 6) {
    display: none;
  }
  .relate-article {
    margin-top: 50px;
  }
  .e-event-detail .event-sidebar .register-card,
  .e-event-detail .event-sidebar .register-card.fixed {
    display: none !important;
  }
  .event-sidebar-md {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    box-shadow: 0px -2px 9px 0px rgba(33, 36, 56, 0.4);
  }
  .e-event-detail .event-sidebar-md .e-share__social {
    justify-content: flex-start;
    margin-top: 10px;
    padding-left: 20px;
  }
  .event-sidebar-md h3 {
    font-size: 18px;
  }

  .e-library-toolbar {
    display: flex;
    flex-direction: column; 
    gap: 10px;
  }
  
  .e-toolbar-top {
    display: flex;
    flex-wrap: nowrap;          
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  
  .e-toolbar-top > div:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
  
  .e-toolbar-top > div:last-child {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
  }
  
  .e-library-toolbar input.form-control {
    display: none;
  }
  
  .e-library-toolbar .btn-light {
    display: none;
  }
  
  .e-toolbar-top {
    margin-bottom: 4px;
  }
  
  .e-toolbar-left {
    gap: 10px;
  }
  
  .e-toolbar-right {
    gap: 5px;
  }
  
  .e-view-btn {
    width: 36px;
    height: 36px;
  }
  
  .e-toolbar-search {
    display: block;
    margin-top: 0;
    
  }
  
  .e-btn-clear {
    display: none;
  }
  
  .e-view-btn {
    width: 36px;
    height: 36px;
  }
  
  .btn {
    padding: 6px 10px;
    font-size: 14px;
  }
  
  .e-btn-icon-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  } 
  
  
  .e-digital-library .e-card-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  
  .e-digital-library .e-filter-col {
    display: none !important;
  }
  
  
  .e-digital-library .col-lg-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  
  .e-digital-library .e-filter-toggle-btn {
    display: inline-flex !important;
  }
  
  .e-digital-library .e-card__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;      
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .e-digital-library .e-card__detail p {
    display: -webkit-box;
    -webkit-line-clamp: 2;      
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .e-digital-library .e-card__meta {
    flex-direction: column;    
    align-items: flex-start;   
    gap: 5px;
  }
  
  
  .e-digital-library .e-filter-col {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 85%;
    max-width: 320px;
    background: #fff;
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: block !important; 
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .e-digital-library .e-filter-col.is-open {
    display: block !important;
    transform: translateX(0);
  }
  
  .e-digital-library .e-filter-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1500;
    display: none;
  }
  
 .e-digital-library .e-filter-backdrop.active {
    display: block;
  }
}
@media (max-width: 589px) {
  .e-news .e-news-nav {
    width: 100%;
    border: 1px solid #dce2e6;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .e-news .e-search-icon .e-search__toggle {
    display: none;
  }
  .e-news .e-search-icon .e-input-icon {
    display: block;
    padding: 10px 10px 10px 45px;
    border-width: 1px;
  }
  .e-news .e-search-icon {
    width: 100%;
    border: 0;
    padding: 0 15px 0 0;
    margin-top: 20px;
  }
}
/* =========== 575 =========== */
@media (max-width: 575px) {
  /********** Header *********/
  .e-header .e-search-icon {
    display: none;
  }
  .e-header .e-header__right .e-header__menu {
    padding: 15px 0 15px 12px;
  }
  .e-header .e-header__left {
    width: 55%;
  }
  /********** /Header *********/
  /********** Footer *********/
  .e-footer .e-accordion {
    display: block;
    margin-top: 30px;
  }
  .e-footer #MenuShowlg {
    display: none !important;
  }
  .e-footer .e-footer__bottom {
    margin: 10px 0;
  }
  .e-footer .e-footer-logo {
    width:70%;
    margin: auto;
  }
  /********** /Footer *********/
  .e-show-sm {
    display: block;
  }
  .e-show-lg {
    display: none;
  }
  .e-mb-6 {
    margin-bottom: 40px;
  }
  .e-pagination-wrap {
    padding: 0;
    flex-direction: column;
  }
  .e-slide .carousel-item img {
    height: 270px;
  }
  .e-slide .e-slide-detail {
    margin-top: 20px;
  }
  .e-slide .e-slide-dots {
    margin-top: 20px;
  }
  .e-slide .e-slide-title {
    font-size: 16px;
  }
  .e-slide .e-heading {
    font-size: 16px;
    padding: 0 15px 10px 15px;
  }
  .e-slide .e-slide-dcp {
    font-size: 14px;
  }
  .e-slide .e-slide-detail .btn {
    align-self: normal;
  }
  .e-home .e-hero-section .e-hero-heading {
    font-size: 28px;
  }
  .e-home .e-feature-section .e-feature-row {
    flex-direction: column;
  }
  .e-home .e-partners-logo .carousel-item img {
    width: auto;
  }
  .e-home .e-feature-section .e-feature-row {
    gap: 30px;
  }
  .e-home .e-feature-card .e-feature-card__icon img {
    width: 25%;
  }
  .e-home .e-funded-by__title {
    font-size: 12px;
  }
  .e-home .e-funded-by__item {
    font-size: 12px;
  }
  .e-home .e-funded-by__list {
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }
  .e-home .e-funded-by__logo{
    width:140px; 
    flex-shrink:0;
  }
  .e-home .e-funded-by__logo img{
    max-width:100%;
    height:auto;
  }
  .e-about .e-expand .e-expand-text.is-hidden {
    display: none;
  }
  .e-about .e-expand .e-expand__btn {
    font-size: 14px;
    display: block;
  }
  .e-about .e-collaboration {
    background: none;
  }
  .e-about .e-about-headline {
    font-size: 28px;
  }
  .e-about .e-vision-mission .e-vision__quote {
    background: none;
  }
  .e-about .e-vision-mission {
    background: none;
  }
  .e-about .e-stats .e-stats-col {
    width: 50%;
  }
  .e-about .e-stats .e-stats-col:last-child {
    width: 100%;
  }
  .e-about .e-text-lg {
    font-size: 16px;
  }
  .e-about .e-collaboration .e-stat-number {
    font-size: 32px;
  }
  .e-about .e-collaboration .e-stat-title {
    font-size: 18px;
  }
  .e-about .e-mission-card__title {
    font-size: 16px;
    padding-bottom: 10px;
  }
  .e-about .e-mission-card__title br {
    display: none;
  }
  .e-about .e-mission-card .e-mission-card__divider {
    margin-bottom: 10px !important;
  }
  .e-about .e-mission__footer {
    font-size: 16px;
  }
  .e-about .e-mission__desc {
    font-size: 16px;
  }
  .e-about .e-video iframe {
    height: 180px;
  }
  .e-about .e-h1 {
    font-size: 32px;
  }
  .e-about .e-gallery .col-sm-3 {
    display: none;
  }
  .e-about .e-partnerships .js-viewmore {
    grid-template-columns: repeat(2, 1fr);
  }
  .e-about .e-about-headline-md {
    font-size: 24px;
  }
  .e-about .e-collaborators .e-member-col {
    flex: 0 0 calc(100% - 35px);
  }
  .e-about .e-collaborators .e-executive .e-member-col {
    flex: 0 0 calc(100% - 30px);
  }
  .e-news .e-px {
    padding-left: 0;
    padding-right: 0;
  }
  .e-news .e-swipe-container {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0;
  }
  .e-news .e-news-toolbar {
    flex-direction: column;
    padding-left: 15px;
    border: 0;
  }
  .e-news .e-container {
    padding: 0;
  }
  .e-news .e-px {
    padding-left: 10px;
    padding-right: 10px;
  }
  .e-news .e-swipe-container .col-6 {
    flex: 0 0 auto;
    width: 50%;
    padding: 0 7px;
  }
  .e-tags .e-tags-container {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: start;
  }
  .e-tags .e-tags-item {
    white-space: nowrap;
  }
  .e-tags {
    margin-bottom: 60px;
    padding-left: 15px;
  }
  .e-tags .e-tags-container span {
    display: none;
  }
  .e-relate-post .block-row .block-item {
    width: 100%;
    margin-bottom: 10px;
  }
  .e-relate-post .block-item .e-card {
    display: flex;
    gap: 12px;
  }
  .e-relate-post .e-px {
    padding: 0;
  }
  .e-relate-post .e-heading {
    font-size: 20px;
  }
  .e-card.e-crad-Vertical-sm {
    margin-bottom: 0px;
  }
  .e-all-event .e-event-date {
    display: none;
  }
  .e-all-event .e-event-img img {
    object-fit: cover;
    width: 100%;
    height: 95px;
  }
  .e-all-event .e-event-detail {
    margin-top: 0;
  }
  .e-all-event .e-view-more {
    padding: 0;
    border: 0;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 400;
    color: #212438;
  }
  .e-all-event .e-heading {
    font-size: 20px;
  }
  .relate-article .e-img-object-sm {
    height: 85px;
  }
  .relate-article .e-caed-media {
    width: 100%;
  }
  .relate-article .e-h2 {
    font-size: 20px;
    margin-bottom: 30px !important;
  }
  .single-post .e-block-content .e-post-title {
    font-size: 28px;
  }
  .event-sidebar-md {
    flex-direction: column;
  }
  .event-sidebar-md .register-card {
    width: 100%;
  }
  .event-sidebar-md .btn-regis-md span {
    display: none;
  }
  .btn-regis-md,
  .btn-regis-md .btn {
    width: 100%;
  }
  .e-event-detail .event-sidebar-md .e-share__social {
    justify-content: center;
    margin-bottom: 15px;
    padding-left: 0;
  }
  .event-sidebar-md h3 {
    font-size: 16px;
  }
  .event-sidebar-md .e-event-meta span {
    font-size: 12px;
  }
  .e-event-detail .e-event-detail__title {
    font-size: 28px;
  }
  .e-home .e-news-list .row {
    --bs-gutter-x: 10px;
  }
  .e-partnerships-block .js-viewmore{
    grid-template-columns: repeat(2,1fr);
  }
  
}
/* =========== 560 =========== */
@media (max-width: 560px) {
  .e-tabs .nav-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .e-tabs .nav-tabs .nav-link {
    white-space: nowrap;
  }
  .e-about .e-vision-mission .e-vision__label-text {
    width: 50%;
  }
}
/* =========== 390 =========== */
@media (max-width: 390px) {
  .e-slide .carousel-item img {
    height: 300px;
  }
  
  .e-news .e-search-icon .e-input-icon {
    background-size: 6%;
  }
  
  .e-relate-post .e-img-object-sm {
    height: 90px;
  }
  
  .e-all-event .e-event-img img {
    height: 60px;
  }
  
  .e-footer .e-text-sm br {
    display: block;
  }
  
  .e-home .carousel-item .col-md-2 {
    flex: 0 0 auto;
    width: 50%;
  }
  
  .e-home .carousel-item .row {
    --bs-gutter-x: 15px;
  }
  .e-home .e-text-secondary br{
    display: block;
  }
}
