:root {
  --hm-bg: #ffffff;
  --hm-alt: #f4f6f9;
  --hm-text: #1a2430;
  --hm-muted: #666e78;
  --hm-border: #e5e5e5;
  --hm-card-bg: #ffffff;
}

body.dark-mode {
  --hm-bg: #0d1117;
  --hm-alt: #10161f;
  --hm-text: #e0e6ed;
  --hm-muted: #8a9aaa;
  --hm-border: rgba(255, 255, 255, 0.1);
  --hm-card-bg: #131a24;
}

.home-main {
  background: var(--hm-bg);
  color: var(--hm-text);
  font-family: "BREUERTEXT", sans-serif;
  overflow-x: hidden;
}

.home-hdr {
  position: fixed;
  inset: 0 0 auto 0;
  background-color: transparent;
  z-index: 200;
  padding: 24px 0;
  transition: all 0.35s ease-out;
}
.home-hdr .home-hdr-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-hdr .home-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.home-hdr .home-hdr-rhs {
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-hdr .hdr-search {
  display: inline-flex;
  padding: 6px;
}
.home-hdr .hdr-search img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: all 0.35s ease-out;
}
.home-hdr .hdr-search:hover img {
  transform: scale(1.15);
}
.home-hdr .ham-menu img {
  width: 30px;
}
.home-hdr.scrolled {
  padding: 12px 0;
  background: #003a5e;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.home-hdr.scrolled .home-logo img {
  height: 42px;
}

.home-bnr {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.home-bnr .bnr-bg {
  position: absolute;
  inset: -12% 0 0 0;
  background: url("../images/home-bnr-bg.jpg") center/cover no-repeat;
  will-change: transform;
}
.home-bnr .bnr-bg .bnr-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home-bnr .bnr-bg .bnr-video--mob {
  display: none;
}
@media (max-width: 767px) {
  .home-bnr .bnr-bg .bnr-video--desk {
    display: none;
  }
  .home-bnr .bnr-bg .bnr-video--mob {
    display: block;
  }
}
.home-bnr::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 20, 0.18) 0%, rgba(8, 10, 20, 0) 30%, rgba(8, 10, 20, 0.35) 100%);
}
.home-bnr .bnr-float {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
}
.home-bnr .bnr-float img {
  height: 20px;
  width: auto;
}
.home-bnr .bnr-center {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  padding-bottom: 58px;
}
.home-bnr .bnr-title {
  font-size: 46px;
  font-weight: 500;
  letter-spacing: 10px;
  line-height: 1.05;
  margin: 0 0 34px;
}
.home-bnr .bnr-scroll-lbl {
  display: inline-block;
  background-image: url(../images/scrll-dwn-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 14px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
}
.home-bnr .bnr-dwnld {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.home-bnr .bnr-dwnld img {
  width: 48px;
  height: 48px;
  transition: all 0.35s ease-out;
}
.home-bnr .bnr-dwnld span {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
}
.home-bnr .bnr-dwnld:hover {
  color: #fff;
}
.home-bnr .bnr-dwnld:hover img {
  transform: translateY(-4px);
}

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #d72027;
  margin-bottom: 20px;
}
.sec-eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: #d72027;
}

.sec-title {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 1px;
  margin: 0 0 22px;
  color: var(--hm-text);
  text-wrap: pretty;
}

.home-founder {
  padding: 110px 0;
  background: #0e3c5f;
}
body.dark-mode .home-founder {
  background: #081827;
}
.home-founder .founder-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.home-founder .founder-pic-panel {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px;
}
.home-founder .founder-pic-panel img {
  width: 100%;
  max-width: 470px;
  display: block;
}
.home-founder .founder-txt-panel {
  background: #15476b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 60px;
}
body.dark-mode .home-founder .founder-txt-panel {
  background: #0d2438;
}
.home-founder .founder-title {
  font-size: 28px;
  font-weight: 400;
  line-height: 120%;
  color: #fff;
  margin: 0;
  text-wrap: pretty;
}
.home-founder .founder-sep {
  display: block;
  width: 44px;
  height: 2px;
  background: #d72027;
  margin: 30px auto;
}
.home-founder .founder-dates {
  margin: 0;
  line-height: 1.6;
}
.home-founder .founder-dates strong {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.home-founder .founder-dates span {
  font-size: 16px;
  color: #c3d3e0;
}
.home-founder .founder-body {
  font-size: 18px;
  line-height: 140%;
  color: #8fa8bc;
  margin: 0;
  max-width: 435px;
  text-wrap: pretty;
}

.home-largest {
  padding: 100px 0;
  background: var(--hm-bg);
}
.home-largest .largest-grid {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 0 56px;
}
.home-largest .largest-title {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2;
  color: #0e3c5f;
  margin: 0 0 40px;
}
body.dark-mode .home-largest .largest-title {
  color: #a8c7e5;
}
.home-largest .largest-pic-big img,
.home-largest .largest-pic-small img {
  width: 100%;
  display: block;
}
.home-largest .largest-top {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
  border-top: 1px solid var(--hm-border);
  padding-top: 34px;
  margin-top: 96px;
}
.home-largest .largest-body {
  font-size: 17px;
  line-height: 140%;
  color: var(--hm-muted);
  margin: 0;
  max-width: 480px;
}
.home-largest .largest-pic-small {
  margin-top: -130px;
}
.home-largest .largest-stats-panel {
  background: #fdf0e4;
  padding: 52px 35px 52px;
  margin-top: 48px;
}
body.dark-mode .home-largest .largest-stats-panel {
  background: #17202b;
}
.home-largest .largest-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 10px;
}
.home-largest .l-stat strong {
  display: block;
  font-size: 38px;
  font-weight: 500;
  color: #0e3c5f;
  line-height: 1.1;
  margin-bottom: 0px;
}
body.dark-mode .home-largest .l-stat strong {
  color: #a8c7e5;
}
.home-largest .l-stat span.desc {
  font-size: 15px;
  line-height: 1.5;
  color: #003A5E;
  display: block;
}
body.dark-mode .home-largest .l-stat span.desc {
  color: #a8c7e5;
}
.home-largest .largest-footnote {
  text-align: right;
  font-size: 12px;
  color: #0e3c5f;
  margin: 10px 0 0;
}
body.dark-mode .home-largest .largest-footnote {
  color: #a8c7e5;
}

.home-mettle {
  padding: 0 0 70px;
  background: var(--hm-bg);
}
.home-mettle .mettleSwiper-nav {
  max-width: 1300px;
  height: 60px;
  margin: 0 auto;
  position: relative;
}
.home-mettle .mettleSwiper-nav .mettle-next {
  appearance: none;
  width: 44px;
  height: 40px;
  border: 1px solid #14406b;
  background: transparent;
  color: #14406b;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.35s ease-out;
}
body.dark-mode .home-mettle .mettleSwiper-nav .mettle-next {
  border-color: #fff;
  color: #fff;
}
.home-mettle .mettleSwiper-nav .mettle-next::after {
  display: none;
}
.home-mettle .mettleSwiper-nav .mettle-prev {
  appearance: none;
  width: 44px;
  height: 40px;
  left: inherit;
  right: 60px;
  border: 1px solid #14406b;
  background: transparent;
  color: #14406b;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.35s ease-out;
}
body.dark-mode .home-mettle .mettleSwiper-nav .mettle-prev {
  border-color: #fff;
  color: #fff;
}
.home-mettle .mettleSwiper-nav .mettle-prev::after {
  display: none;
}
.home-mettle .mettle-swiper {
  padding: 0 0 0px;
}
.home-mettle .swiper-slide {
  height: auto;
}
.home-mettle .mettle-slide {
  position: relative;
  min-height: 560px;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
}
.home-mettle .mettle-slide.theme-1 .mettle-title .mettle-arw {
  border-left: 14px solid #fff;
}
.home-mettle .mettle-slide.theme-2 .mettle-title .mettle-arw {
  border-left: 14px solid #0094D0;
}
.home-mettle .mettle-slide.theme-3 .mettle-title .mettle-arw {
  border-left: 14px solid #DF8167;
}
.home-mettle .mettle-slide.theme-4 .mettle-title .mettle-arw {
  border-left: 14px solid #00B6BD;
}
.home-mettle .mettle-slide-in {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 44px 56px 52px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.home-mettle .mettle-tag {
  display: inline-block;
  padding: 9px 13px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #14324e;
  margin-bottom: 26px;
}
.home-mettle .mettle-title {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 50px;
  font-weight: 500;
  line-height: 1;
  color: #14324e;
  margin: 0 0 34px;
}
.home-mettle .mettle-arw {
  flex: 0 0 auto;
  width: 0;
  height: 0;
  margin-top: 12px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 14px solid #d72027;
}
.home-mettle .mettle-body {
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 30px;
  color: inherit;
  max-width: 420px;
}
.home-mettle .mettle-body strong {
  font-weight: 500;
}
.home-mettle .mettle-stat {
  margin-bottom: 26px;
  max-width: 420px;
}
.home-mettle .mettle-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0px;
}
.home-mettle .mettle-stat span {
  color: #003A5E;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.85;
}
.home-mettle .mettle-more {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  text-decoration: none;
  margin-top: auto;
  color: currentColor;
}
.home-mettle .mettle-more .mm-lbl {
  display: flex;
  align-items: center;
  border: 1px solid currentColor;
  padding: 11px 34px 11px 16px;
  font-size: 16px;
  font-weight: 500;
  color: inherit;
  transition: all 0.35s ease-out;
}
.home-mettle .mettle-more .mm-arw {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  border: 1px solid currentColor;
  color: inherit;
  font-size: 17px;
  transition: all 0.35s ease-out;
}
.home-mettle .mettle-more:hover {
  color: inherit;
}
.home-mettle .mettle-more:hover .mm-lbl {
  background: #fff;
  border-color: #fff;
  color: #14324e;
}
.home-mettle .mettle-more:hover .mm-arw {
  background: #d72027;
  border-color: #d72027;
  color: #fff;
}
.home-mettle .mettle-dark {
  color: #fff;
}
.home-mettle .mettle-dark .mettle-tag {
  background-image: url(../images/dark-theme-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #fff;
}
.home-mettle .mettle-dark .mettle-title {
  color: #fff;
}
.home-mettle .mettle-light {
  color: #14324e;
}
.home-mettle .mettle-light .mettle-tag {
  background-image: url(../images/light-thee-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.home-mettle .mettle-light .mettle-rhs {
  margin-left: auto;
}
.home-mettle .mettle-topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  gap: 30px 44px;
  margin-bottom: 38px;
}
.home-mettle .mettle-topic {
  text-decoration: none;
}
.home-mettle .mettle-topic h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  border-top: 4px solid rgb(255, 255, 255);
  padding-top: 10px;
  margin: 0 0 10px;
}
.home-mettle .mettle-topic p {
  font-size: 14px;
  line-height: 1.55;
  color: rgb(255, 255, 255);
  margin: 0;
}
.home-mettle .mettle-rhs {
  align-self: flex-end;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: auto;
}
.home-mettle .mettle-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.home-mettle .mettle-bottom .mettle-body {
  max-width: 520px;
  margin-bottom: 0;
}
.home-mettle .mettle-bottom-row {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  margin-bottom: 28px;
}
.home-mettle .mettle-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
}
.home-mettle .mettle-stats-row .mettle-stat {
  margin-bottom: 0;
  max-width: 220px;
}
.home-mettle .mettle-pagination {
  bottom: 0;
}
.home-mettle .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--hm-muted);
  opacity: 0.4;
}
.home-mettle .swiper-pagination-bullet-active {
  background: #d72027;
  opacity: 1;
}

.home-fyh {
  padding: 0 0 110px;
  background: var(--hm-bg);
}
.home-fyh .fyh-head {
  display: flex;
  align-items: flex-start;
  gap: 70px;
  margin-bottom: 54px;
}
.home-fyh .fyh-tag {
  flex: 0 0 auto;
  display: inline-block;
  background-image: url(../images/light-newx-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 10px 13px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #14324e;
  margin-top: 8px;
}
body.dark-mode .home-fyh .fyh-tag {
  color: #a8c7e5;
}
.home-fyh .fyh-title {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2;
  color: #14324e;
  margin: 0;
}
body.dark-mode .home-fyh .fyh-title {
  color: #a8c7e5;
}
.home-fyh .fyh-tabs {
  display: flex;
  position: relative;
  z-index: 2;
}
.home-fyh .fyh-tab {
  appearance: none;
  border: 1px solid #2380c4;
  border-bottom: none;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #14324e;
  padding: 16px 48px 16px 28px;
  margin-right: -20px;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 100%, 0 100%);
  transition: all 0.35s ease-out;
  border-radius: 10px 0px 0px 0px;
}
.home-fyh .fyh-tab.active {
  position: relative;
  z-index: 4;
  margin-bottom: -2px;
  padding-bottom: 18px;
  background-color: #003A5E;
  color: #fff;
}
.home-fyh .fyh-tab-op {
  background: #cfe8f8;
  z-index: 3;
}
body.dark-mode .home-fyh .fyh-tab-op {
  background: #1c3a52;
  color: #cfe8f8;
}
.home-fyh .fyh-tab-fin {
  background: #ccd4f0;
  z-index: 2;
}
body.dark-mode .home-fyh .fyh-tab-fin {
  background: #232c4e;
  color: #ccd4f0;
}
.home-fyh .fyh-tab-sus {
  background: #c9ecd8;
  z-index: 1;
}
body.dark-mode .home-fyh .fyh-tab-sus {
  background: #16382a;
  color: #c9ecd8;
}
.home-fyh .fyh-panel {
  display: none;
  border: 1px solid #2380c4;
  background: var(--hm-card-bg);
  padding: 50px;
  margin-top: -1px;
}
.home-fyh .fyh-panel.active {
  display: block;
}
.home-fyh .fyh-panel#fyhFinancial .fyh-stat-top strong {
  color: #3C77AE;
}
.home-fyh .fyh-panel#fyhFinancial .fyh-stat p {
  color: #3C77AE;
}
.home-fyh .fyh-panel#fyhSustainability .fyh-stat p {
  color: #00A369;
}
.home-fyh .fyh-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 46%) 1fr;
  gap: 56px;
  align-items: center;
}
.home-fyh .fyh-pic img {
  width: 100%;
  display: block;
}
.home-fyh .fyh-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.home-fyh .fyh-col {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.home-fyh .fyh-col-sep {
  border-left: 1px solid var(--hm-border);
  padding-left: 40px;
}
.home-fyh .fyh-stat-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0px;
}
.home-fyh .fyh-stat-top strong {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
  color: #0094D0;
}
.home-fyh .fyh-badge {
  flex: 0 0 auto;
  background: #00A369;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
}
.home-fyh .fyh-stat p {
  font-size: 15px;
  line-height: 1.5;
  color: #0094D0;
  margin: 0;
  max-width: 250px;
}
.home-fyh .fyh-stat p small {
  font-size: 12px;
}
.home-fyh .fyh-sus-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}
.home-fyh .fyh-sus-pics {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
  margin-bottom: 44px;
}
.home-fyh .fyh-sus-pics img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-fyh .fyh-sus-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 32px;
}
.home-fyh .fyh-sus-stats .fyh-stat-top strong {
  color: #00A369;
}
.home-fyh .fyh-sus-awards {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.home-fyh .fyh-award {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  align-items: center;
}
.home-fyh .fyh-award img {
  width: 100%;
  display: block;
}
.home-fyh .fyh-award p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--hm-muted);
  margin: 0;
}

.home-chair {
  background: var(--hm-bg);
}
.home-chair .chair-stage {
  position: relative;
  overflow: hidden;
}
.home-chair .chair-panel {
  display: grid;
  grid-template-columns: 22% 1fr;
  opacity: 1;
  transition: opacity 0.6s ease;
  color: #fff;
}
.home-chair .chair-panel:not(.active) {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.home-chair .chair-cmd .chair-body {
  background: #243b47;
}
body.dark-mode .home-chair .chair-cmd .chair-body {
  background: #16262e;
}
.home-chair .chair-jmd .chair-body {
  background: #10456e;
}
body.dark-mode .home-chair .chair-jmd .chair-body {
  background: #0a2c47;
}
.home-chair .chair-sea {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}
.home-chair .chair-who strong {
  display: block;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 6px;
}
.home-chair .chair-who span {
  font-size: 14px;
  opacity: 0.9;
}
.home-chair .chair-body {
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 60px;
  padding: 0 130px 0 0;
}
.home-chair .chair-head {
  grid-column: 1/-1;
  padding: 56px 0px 40px 50px;
}
.home-chair .chair-pic {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.home-chair .chair-pic img {
  width: 100%;
  display: block;
  margin-top: auto;
}
.home-chair .chair-txt {
  padding: 120px 0 70px;
}
.home-chair .chair-tag {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.home-chair .chair-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 56px;
}
.home-chair .chair-msg h3 {
  font-size: 21px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 22px;
}
.home-chair .chair-msg p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 36px;
  max-width: 460px;
}
.home-chair .chair-more {
  display: inline-flex;
  align-items: stretch;
  text-decoration: none;
  color: #fff;
}
.home-chair .chair-more .mm-lbl {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 12px 40px 12px 18px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.35s ease-out;
}
.home-chair .chair-more .mm-arw {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-left: none;
  font-size: 17px;
  transition: all 0.35s ease-out;
}
.home-chair .chair-more:hover {
  color: #14324e;
}
.home-chair .chair-more:hover .mm-lbl {
  background: #fff;
  border-color: #fff;
}
.home-chair .chair-more:hover .mm-arw {
  background: #d72027;
  border-color: #d72027;
  color: #fff;
}
.home-chair .chair-tabs {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 96px;
  border-left: 1px solid #fff;
  display: flex;
  flex-direction: column;
  z-index: 5;
}
.home-chair .chair-tab {
  appearance: none;
  flex: 1;
  border: none;
  background: transparent;
  color: rgb(255, 255, 255);
  font-family: inherit;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  writing-mode: vertical-rl;
  padding: 40px 0;
  transition: all 0.35s ease-out;
}
.home-chair .chair-tab.active {
  background: #fff;
  color: #14324e;
}
body.dark-mode .home-chair .chair-tab.active {
  background: #e0e6ed;
  color: #10161f;
}

.home-fin {
  padding: 110px 0;
  background: var(--hm-alt);
}
.home-fin .fin-head {
  display: flex;
  align-items: flex-start;
  gap: 70px;
  margin-bottom: 54px;
}
.home-fin .fin-tag {
  flex: 0 0 auto;
  display: inline-block;
  background-image: url(../images/light-newx-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: var(--hm-card-bg);
  padding: 16px 11px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #14324e;
  margin-top: 8px;
}
body.dark-mode .home-fin .fin-tag {
  color: #a8c7e5;
}
.home-fin .fin-title {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2;
  color: #14324e;
  margin: 0;
}
body.dark-mode .home-fin .fin-title {
  color: #a8c7e5;
}
.home-fin .fin-tabs {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.home-fin .fin-tab {
  appearance: none;
  border: none;
  border-bottom: none;
  background: #cfe8f8;
  font-family: inherit;
  text-align: left;
  color: #14324e;
  padding: 14px 52px 14px 26px;
  margin-right: -30px;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 38px) 0, 100% 100%, 0 100%);
  transition: all 0.35s ease-out;
  border-radius: 20px 0px 0px 0px;
  filter: drop-shadow(1px 0 0 #003A5E);
}
.home-fin .fin-tab strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}
.home-fin .fin-tab small {
  display: block;
  font-size: 12px;
  margin-top: 3px;
  opacity: 0.8;
}
.home-fin .fin-tab.active {
  position: relative;
  z-index: 4;
  background: var(--hm-card-bg);
  color: #2380c4;
  margin-bottom: -2px;
  padding-bottom: 16px;
}
body.dark-mode .home-fin .fin-tab {
  background: #1c3a52;
  color: #cfe8f8;
}
body.dark-mode .home-fin .fin-tab.active {
  background: var(--hm-card-bg);
  color: #6db3e8;
}
.home-fin .fin-panel {
  display: none;
  border: 1px solid #003A5E;
  background: var(--hm-card-bg);
  padding: 56px;
  margin-top: -1px;
}
.home-fin .fin-panel.active {
  display: block;
}
.home-fin .fin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 90px;
}
.home-fin .fin-chart h3 {
  font-size: 24px;
  font-weight: 500;
  color: #14406b;
  margin: 0 0 20px;
}
body.dark-mode .home-fin .fin-chart h3 {
  color: #a8c7e5;
}
.home-fin .fin-cagr {
  display: inline-block;
  background: #B8E0D3;
  color: #003A5E;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  margin-bottom: 30px;
  min-height: 32px;
}
body.dark-mode .home-fin .fin-cagr {
  background: #1c3a52;
  color: #cfe8f8;
}
.home-fin .fin-cagr.fin-cagr-empty, body.dark-mode .home-fin .fin-cagr.fin-cagr-empty {
  background: transparent;
}
.home-fin .fin-chart-body {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: end;
  border-top: 1px solid #97ABB5;
  border-bottom: 1px solid #97ABB5;
}
.home-fin .fin-nums {
  align-self: center;
}
.home-fin .fin-big strong {
  display: block;
  font-size: 40px;
  font-weight: 500;
  color: #14324e;
  line-height: 1.05;
}
body.dark-mode .home-fin .fin-big strong {
  color: #e0e6ed;
}
.home-fin .fin-big span {
  font-size: 16px;
  color: var(--hm-muted);
}
.home-fin .fin-growth {
  margin-top: 26px;
}
.home-fin .fin-growth strong {
  display: flex;
  align-items: center;
  gap: 0px 5px;
  font-size: 40px;
  font-weight: 500;
  color: #00A369;
  line-height: 1.05;
}
.home-fin .fin-growth strong span {
  color: #00A369;
}
.home-fin .fin-growth span {
  font-size: 13px;
  color: var(--hm-muted);
}
.home-fin .fin-bars {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 330px;
  border-top: 1px solid var(--hm-border);
  border-bottom: 1px solid var(--hm-border);
}
.home-fin .fin-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  min-width: 0;
}
.home-fin .fin-bar-col:last-child .fin-bar-val {
  color: #01395D;
}
.home-fin .fin-bar-col::before {
  content: "";
  align-self: center;
  width: 1px;
  height: 12px;
  background: var(--hm-muted);
  opacity: 0.55;
}
.home-fin .fin-bar-val {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 16px;
  color: var(--hm-muted);
  align-self: center;
  padding-bottom: 6px;
  margin-top: 4px;
  max-height: 92px;
  overflow: hidden;
}
.home-fin .fin-bar {
  position: relative;
  margin-top: auto;
  background: #9fb1bd;
  min-height: 14px;
}
body.dark-mode .home-fin .fin-bar {
  background: #46586a;
}
.home-fin .fin-bar-last {
  background: #0e3c5f !important;
}
body.dark-mode .home-fin .fin-bar-last {
  background: #2380c4 !important;
}
.home-fin .fin-bar-fy {
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-size: 13px;
  color: #fff;
  max-height: 100%;
  overflow: hidden;
}
.home-fin .fin-cap {
  font-size: 16px;
  line-height: 1.6;
  color: var(--hm-muted);
  margin: 34px 0 0;
}
.home-fin .fin-footnote {
  text-align: left;
  font-size: 13px;
  color: var(--hm-muted);
  margin: 10px 0 0;
}

.home-purpose {
  padding: 110px 0 120px;
  background: #fdf3e6;
}
.home-purpose .footer-notes {
  font-size: 13px;
  margin-top: 30px;
}
body.dark-mode .home-purpose {
  background: #1c1811;
}
.home-purpose .pf-top {
  display: grid;
  grid-template-columns: minmax(0, 420px) 1fr;
  gap: 90px;
  margin-bottom: 90px;
}
.home-purpose .pf-tag {
  display: inline-block;
  background-image: url(../images/light-newx-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 21px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #14406b;
  margin-bottom: 30px;
}
body.dark-mode .home-purpose .pf-tag {
  color: #a8c7e5;
  border-color: #a8c7e5;
}
.home-purpose .pf-title {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2;
  color: #14406b;
  margin: 0 0 40px;
}
body.dark-mode .home-purpose .pf-title {
  color: #a8c7e5;
}
.home-purpose .pf-more {
  display: inline-flex;
  align-items: stretch;
  text-decoration: none;
  color: #14406b;
}
body.dark-mode .home-purpose .pf-more {
  color: #a8c7e5;
}
.home-purpose .pf-more .mm-lbl {
  display: flex;
  align-items: center;
  border: 1px solid currentColor;
  padding: 11px 34px 11px 16px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.35s ease-out;
}
.home-purpose .pf-more .mm-arw {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  border: 1px solid currentColor;
  font-size: 17px;
  transition: all 0.35s ease-out;
}
.home-purpose .pf-more:hover {
  color: #14406b;
}
.home-purpose .pf-more:hover .mm-lbl {
  background: #14406b;
  border-color: #14406b;
  color: #fff;
}
.home-purpose .pf-more:hover .mm-arw {
  background: #d72027;
  border-color: #d72027;
  color: #fff;
}
.home-purpose .pf-driven {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 34px;
}
.home-purpose .pf-driven span {
  font-size: 19px;
  font-weight: 500;
  color: #14406b;
  white-space: nowrap;
}
body.dark-mode .home-purpose .pf-driven span {
  color: #a8c7e5;
}
.home-purpose .pf-driven i,
.home-purpose .pf-anchor i {
  flex: 1;
  height: 1px;
  background: #b7c6cf;
}
body.dark-mode .home-purpose .pf-driven i,
body.dark-mode .home-purpose .pf-anchor i {
  background: #3d4652;
}
.home-purpose .pf-vm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.home-purpose .pf-vm-item h3 {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 0 0 14px;
}
body.dark-mode .home-purpose .pf-vm-item h3 {
  color: #a8c7e5;
}
.home-purpose .pf-vm-item p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #003A5E;
  margin: 0;
}
body.dark-mode .home-purpose .pf-vm-item p {
  color: #4fb8c0;
}
.home-purpose .pf-anchor {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
}
.home-purpose .pf-anchor > span {
  font-size: 19px;
  font-weight: 500;
  color: #14406b;
  white-space: nowrap;
}
body.dark-mode .home-purpose .pf-anchor > span {
  color: #a8c7e5;
}
.home-purpose .pf-nav {
  display: flex;
  gap: 6px;
}
.home-purpose .pf-nav button {
  appearance: none;
  width: 44px;
  height: 40px;
  border: 1px solid #14406b;
  background: transparent;
  color: #14406b;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.35s ease-out;
}
body.dark-mode .home-purpose .pf-nav button {
  border-color: #a8c7e5;
  color: #a8c7e5;
}
.home-purpose .pf-nav button:hover {
  background: #14406b;
  color: #fff;
}
.home-purpose .pf-nav button.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.home-purpose .pf-card {
  border-top: 4px solid #00a5b5;
  padding-top: 34px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.home-purpose .pf-icn {
  display: block;
  margin-bottom: 22px;
}
.home-purpose .pf-icn img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}
body.dark-mode .home-purpose .pf-icn img {
  filter: brightness(0) invert(0.82);
}
.home-purpose .pf-card h3 {
  font-size: 30px;
  font-weight: 500;
  color: #14406b;
  margin: 0 0 18px;
}
body.dark-mode .home-purpose .pf-card h3 {
  color: #a8c7e5;
}
.home-purpose .pf-card p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
  color: #14406b;
  margin: 0;
}
body.dark-mode .home-purpose .pf-card p {
  color: #4fb8c0;
}
.home-purpose .pf-stat {
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  transition: max-height 0.45s ease-out, opacity 0.45s ease-out, transform 0.45s ease-out, margin-top 0.45s ease-out;
}
.home-purpose .pf-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 500;
  color: #14406b;
  margin-bottom: 8px;
}
body.dark-mode .home-purpose .pf-stat strong {
  color: #a8c7e5;
}
.home-purpose .pf-stat span {
  font-size: 14px;
  line-height: 1.5;
  color: #14406b;
}
body.dark-mode .home-purpose .pf-stat span {
  color: #4fb8c0;
}
.home-purpose .pf-card:hover .pf-stat {
  margin-top: 40px;
  max-height: 160px;
  opacity: 1;
  transform: translateY(0);
}
@media (hover: none) {
  .home-purpose .pf-stat {
    margin-top: 40px;
    max-height: none;
    opacity: 1;
    transform: none;
  }
}

.home-projhl {
  background: linear-gradient(180deg, #17395e 0%, #24507c 100%);
}
body.dark-mode .home-projhl {
  background: linear-gradient(180deg, #0d2036 0%, #16314e 100%);
}
.home-projhl .ph-stage {
  position: relative;
}
.home-projhl .ph-bg {
  width: 100%;
  display: block;
}
.home-projhl .ph-head {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 5;
  padding-top: 88px;
}
.home-projhl .ph-head-in {
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(0, 620px);
  justify-content: space-between;
  gap: 48px;
}
.home-projhl .ph-tag {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 28px;
}
.home-projhl .ph-title {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 44px;
}
.home-projhl .ph-more {
  display: inline-flex;
  align-items: stretch;
  text-decoration: none;
  color: #fff;
}
.home-projhl .ph-more .mm-lbl {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 11px 34px 11px 16px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.35s ease-out;
}
.home-projhl .ph-more .mm-arw {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 17px;
  transition: all 0.35s ease-out;
}
.home-projhl .ph-more:hover {
  color: #fff;
}
.home-projhl .ph-more:hover .mm-lbl {
  background: #fff;
  border-color: #fff;
  color: #14406b;
}
.home-projhl .ph-more:hover .mm-arw {
  background: #d72027;
  border-color: #d72027;
  color: #fff;
}
.home-projhl .ph-intro {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin: 6px 0 0;
}
.home-projhl .ph-spot {
  position: absolute;
  z-index: 6;
  width: 28px;
  height: 28px;
  margin: -17px 0 0 -17px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.home-projhl .ph-spot:hover .ph-dot, .home-projhl .ph-spot:focus-visible .ph-dot {
  opacity: 0;
}
.home-projhl .ph-spot:hover .ph-dot-red, .home-projhl .ph-spot:focus-visible .ph-dot-red {
  opacity: 1;
}
.home-projhl .ph-spot:hover .ph-tip, .home-projhl .ph-spot:focus-visible .ph-tip {
  opacity: 1;
  transform: translateY(0);
}
.home-projhl .ph-dot,
.home-projhl .ph-dot-red {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease-out;
}
.home-projhl .ph-dot-red {
  opacity: 0;
}
.home-projhl .ph-tip {
  position: absolute;
  left: 50%;
  bottom: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
  pointer-events: none;
}
.home-projhl .ph-tip i {
  order: 2;
  width: 1px;
  height: 96px;
  background: rgba(255, 255, 255, 0.85);
}
.home-projhl .ph-tip-box {
  order: 1;
  padding: 0 0 12px 14px;
  text-align: left;
  width: 230px;
}
.home-projhl .ph-tip-box strong {
  display: block;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 10px;
}
.home-projhl .ph-tip-box small {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.home-opctx {
  background: var(--hm-bg);
}
.home-opctx .opctx-pin {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 40px 0;
}
.home-opctx .opctx-wrp {
  width: 100%;
}
@media (min-width: 768px) {
  .home-opctx {
    overflow: clip;
  }
  .home-opctx .opctx-swiper {
    position: relative;
    height: 560px;
    overflow: visible;
  }
  .home-opctx .opctx-swiper .swiper-wrapper {
    display: block;
    height: 100%;
  }
  .home-opctx .opctx-swiper .swiper-slide {
    position: absolute;
    inset: 0;
    height: 100%;
    will-change: transform;
  }
  .home-opctx .opctx-pagination {
    display: none;
  }
}
.home-opctx .opctx-card {
  display: grid;
  grid-template-columns: 48.5% 1fr;
  gap: 48px;
  height: 100%;
  background: var(--hm-card-bg);
  border: 1px solid var(--hm-border);
  padding: 24px;
}
.home-opctx .opctx-pic {
  overflow: hidden;
}
.home-opctx .opctx-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-opctx .opctx-txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 40px 16px 0;
}
.home-opctx .opctx-txt p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--hm-muted);
  margin: 0 0 36px;
}
.home-opctx .opctx-tag {
  display: inline-block;
  border: 1px solid #14406b;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #14406b;
  margin-bottom: 26px;
}
body.dark-mode .home-opctx .opctx-tag {
  color: #a8c7e5;
  border-color: #a8c7e5;
}
.home-opctx .opctx-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.22;
  color: #14406b;
  margin: 0 0 34px;
}
body.dark-mode .home-opctx .opctx-title {
  color: #a8c7e5;
}
.home-opctx .opctx-more {
  display: inline-flex;
  align-items: stretch;
  text-decoration: none;
  color: #14406b;
  margin-top: auto;
}
body.dark-mode .home-opctx .opctx-more {
  color: #a8c7e5;
}
.home-opctx .opctx-more .mm-lbl {
  display: flex;
  align-items: center;
  border: 1px solid currentColor;
  padding: 11px 34px 11px 16px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.35s ease-out;
}
.home-opctx .opctx-more .mm-arw {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  border: 1px solid currentColor;
  font-size: 17px;
  transition: all 0.35s ease-out;
}
.home-opctx .opctx-more:hover {
  color: #14406b;
}
.home-opctx .opctx-more:hover .mm-lbl {
  background: #14406b;
  border-color: #14406b;
  color: #fff;
}
.home-opctx .opctx-more:hover .mm-arw {
  background: #d72027;
  border-color: #d72027;
  color: #fff;
}
.home-opctx .opctx-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.home-opctx .opctx-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hm-muted);
  opacity: 0.4;
}
.home-opctx .opctx-pagination .swiper-pagination-bullet-active {
  background: #d72027;
  opacity: 1;
}

.home-sus {
  background: var(--hm-bg);
  padding: 0;
  overflow-x: clip;
}
.home-sus .container-1360-wrp {
  overflow: visible;
}
.home-sus .sus-nav {
  max-width: 1300px;
  margin: 0 auto;
  height: 60px;
  position: relative;
}
.home-sus .sus-nav .sus-next {
  appearance: none;
  width: 44px;
  height: 40px;
  border: 1px solid #14406b;
  background: transparent;
  color: #14406b;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.35s ease-out;
}
body.dark-mode .home-sus .sus-nav .sus-next {
  border-color: #fff;
  color: #fff;
}
.home-sus .sus-nav .sus-next::after {
  display: none;
}
.home-sus .sus-nav .sus-prev {
  appearance: none;
  width: 44px;
  height: 40px;
  left: inherit;
  right: 60px;
  border: 1px solid #14406b;
  background: transparent;
  color: #14406b;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.35s ease-out;
}
body.dark-mode .home-sus .sus-nav .sus-prev {
  border-color: #fff;
  color: #fff;
}
.home-sus .sus-nav .sus-prev::after {
  display: none;
}
.home-sus .sus-swiper {
  overflow: visible;
}
.home-sus .sus-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.home-sus .sus-vlbl {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 90px;
  padding: 50px 0px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.home-sus .sus-pic {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.home-sus .sus-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-sus .sus-panel {
  flex: 1;
  background: var(--sus-clr);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 240px) 1fr auto;
  align-items: start;
  gap: 40px;
  padding: 30px 30px 30px 30px;
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 80%;
}
body.dark-mode .home-sus .sus-panel {
  background: color-mix(in oklab, var(--sus-clr) 82%, #000);
}
.home-sus .sus-panel h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
  margin: 0;
}
.home-sus .sus-panel p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.home-sus .sus-more {
  display: inline-flex;
  align-items: stretch;
  text-decoration: none;
  color: #fff;
  align-self: end;
}
.home-sus .sus-more .mm-lbl {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 9px 26px 9px 14px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.35s ease-out;
}
.home-sus .sus-more .mm-arw {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: all 0.35s ease-out;
}
.home-sus .sus-more:hover {
  color: var(--sus-clr);
}
.home-sus .sus-more:hover .mm-lbl,
.home-sus .sus-more:hover .mm-arw {
  background: #fff;
  border-color: #fff;
}

.home-dc {
  padding: 110px 0;
  background: var(--hm-bg);
}
.home-dc .dc-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 100px;
  align-items: start;
}
.home-dc .dc-cover img {
  width: 100%;
  display: block;
}
.home-dc .dc-full {
  display: flex;
  align-items: stretch;
  text-decoration: none;
  border: 1px solid #14406b;
  transition: all 0.35s ease-out;
}
body.dark-mode .home-dc .dc-full {
  border-color: #a8c7e5;
}
.home-dc .dc-full .dc-full-lbl {
  flex: 1;
  padding: 13px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #14406b;
  transition: all 0.35s ease-out;
}
body.dark-mode .home-dc .dc-full .dc-full-lbl {
  color: #a8c7e5;
}
.home-dc .dc-full .dc-full-icn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  border-left: 1px solid #14406b;
  transition: all 0.35s ease-out;
}
body.dark-mode .home-dc .dc-full .dc-full-icn {
  border-color: #a8c7e5;
}
.home-dc .dc-full .dc-full-icn img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.home-dc .dc-full:hover {
  background: #14406b;
}
.home-dc .dc-full:hover .dc-full-lbl {
  color: #fff;
}
.home-dc .dc-full:hover .dc-full-icn img {
  filter: brightness(0) invert(1);
}
.home-dc .dc-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  row-gap: 0;
}
.home-dc .dc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid #14406b;
  text-decoration: none;
}
body.dark-mode .home-dc .dc-item {
  border-color: rgba(168, 199, 229, 0.45);
}
.home-dc .dc-item span {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.35;
  color: #14406b;
  transition: all 0.35s ease-out;
}
body.dark-mode .home-dc .dc-item span {
  color: #a8c7e5;
}
.home-dc .dc-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 58px;
  height: 58px;
  border: 1px solid #14406b;
  transition: all 0.35s ease-out;
}
body.dark-mode .home-dc .dc-item i {
  border-color: #a8c7e5;
}
.home-dc .dc-item i img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: all 0.35s ease-out;
}
.home-dc .dc-item:hover span {
  color: #d72027;
}
.home-dc .dc-item:hover i {
  background: #14406b;
  border-color: #14406b;
}
.home-dc .dc-item:hover i img {
  filter: brightness(0) invert(1);
}
body.dark-mode .home-dc .dc-full-icn img,
body.dark-mode .home-dc .dc-item i img {
  filter: brightness(0) invert(0.82);
}

.home-explore {
  padding: 100px 0 110px;
  background: var(--hm-alt);
}
.home-explore .explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.home-explore .exp-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  background: var(--hm-card-bg);
  border: 1px solid var(--hm-border);
  padding: 30px 28px;
  text-decoration: none;
  transition: all 0.35s ease-out;
}
.home-explore .exp-card h3 {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--hm-text);
  margin: 0;
}
.home-explore .exp-card small {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hm-muted);
  display: block;
  margin-bottom: 10px;
}
.home-explore .exp-card .exp-more {
  font-size: 14px;
  letter-spacing: 1px;
  color: #d72027;
  text-transform: uppercase;
}
.home-explore .exp-card:hover {
  border-color: #d72027;
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(10, 20, 32, 0.12);
}

.home-footer {
  background: #003A5E;
  padding: 40px 0;
}
body.dark-mode .home-footer {
  background: #070d16;
}
.home-footer .foot-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.home-footer .foot-in svg .stirrup {
  fill: #fff;
}
.home-footer .foot-logo img {
  height: 44px;
}
.home-footer p {
  margin: 0;
  font-size: 14px;
  color: white;
  text-align: center;
}
.home-footer a {
  color: #cdd6df;
  text-decoration: none;
  font-size: 14px;
}
.home-footer a:hover {
  color: #fff;
}

@media (max-width: 1024px) {
  html {
    overflow-x: hidden;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .container-1360-wrp {
    max-width: 1200px;
  }
  .home-largest .largest-title,
  .home-mettle .mettle-title,
  .home-fyh .fyh-title,
  .home-fin .fin-title,
  .home-purpose .pf-title,
  .home-projhl .ph-title {
    font-size: 40px;
  }
  .home-largest .largest-body {
    font-size: 16px;
  }
  .home-largest .l-stat strong {
    display: block;
    font-size: 30px;
  }
  .home-largest .largest-stats-panel {
    padding: 20px 20px 20px;
  }
  .home-largest .l-stat span {
    font-size: 13px;
  }
  .home-largest .largest-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px 10px;
  }
  .home-mettle .mettle-topic h3 {
    font-size: 16px;
  }
  .home-mettle .mettle-topic p {
    font-size: 12px;
  }
  .home-mettle .mettle-topics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 205px));
    gap: 15px 15px;
    margin-bottom: 38px;
  }
  .home-mettle .mettle-body {
    font-size: 12px;
    line-height: 1.75;
    margin: 0 0 30px;
    color: inherit;
    max-width: 270px;
  }
  .home-mettle .mettle-bottom-row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 0px;
  }
  .home-mettle .mettle-rhs {
    align-self: flex-end;
    max-width: 310px;
  }
  .home-mettle .mettle-stat strong {
    display: block;
    font-size: 16px;
  }
  .home-mettle .mettle-stat span {
    color: #003A5E;
    font-size: 13px;
    line-height: 1.5;
    display: block;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-sus {
    overflow: hidden;
  }
  .home-projhl .ph-spot {
    display: none;
  }
  .home-fin .fin-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 4px;
    margin-bottom: 12px;
  }
  .home-fin .fin-tab {
    flex-shrink: 0;
    border: 1px solid rgba(35, 128, 196, 0.4);
    border-radius: 4px;
  }
  .home-fin .fin-tab.active {
    border-color: #2380c4;
    margin-bottom: 0;
  }
  .home-sus .sus-panel {
    position: relative;
    width: 100%;
  }
  .home-opctx .opctx-pin {
    min-height: auto;
    align-items: flex-start;
    padding: 60px 0;
  }
  .home-opctx .opctx-swiper {
    height: auto;
  }
  .home-opctx .opctx-pic img {
    height: 100%;
  }
  .home-opctx .opctx-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px;
    height: auto;
    display: block;
  }
  .home-opctx .opctx-swiper {
    height: auto !important;
  }
  .home-opctx .opctx-pic {
    overflow: hidden;
    margin-bottom: 20px;
  }
  .home-sus .sus-panel {
    padding: 20px !important;
    gap: 14px;
  }
}
@media (max-width: 1199px) {
  .home-bnr .bnr-title {
    font-size: 72px;
    letter-spacing: 6px;
  }
  .sec-title {
    font-size: 38px;
  }
  .home-fin .fin-tabs {
    gap: 8px;
  }
  .home-fin .fin-tab {
    clip-path: none;
    margin-right: 0;
    padding: 10px 16px;
    border-bottom: 1px solid #2380c4;
  }
  .home-fin .fin-tab.active {
    margin-bottom: 0;
    padding-bottom: 10px;
    border-bottom-color: var(--hm-card-bg);
  }
  .home-fin .fin-panel {
    margin-top: 8px;
  }
}
@media (max-width: 991px) {
  .home-hdr {
    padding: 16px 0;
  }
  .home-hdr .home-logo img {
    height: 42px;
  }
  .home-bnr {
    min-height: 560px;
  }
  .home-bnr .bnr-title {
    font-size: 42px;
    letter-spacing: 9px;
  }
  .home-bnr .bnr-center {
    padding-bottom: 48px;
  }
  .home-bnr .bnr-dwnld {
    right: 24px;
  }
  .home-bnr .bnr-dwnld span {
    font-size: 16px;
  }
  .home-bnr .bnr-dwnld img {
    width: 40px;
    height: 40px;
  }
  .home-founder,
  .home-largest {
    padding: 80px 0;
  }
  .home-founder .founder-card {
    grid-template-columns: 1fr;
  }
  .home-founder .founder-pic-panel {
    padding: 40px;
  }
  .home-founder .founder-txt-panel {
    padding: 56px 40px;
  }
  .home-founder .founder-title {
    font-size: 24px;
  }
  .home-largest .largest-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .home-largest .largest-title {
    font-size: 34px;
    margin-bottom: 30px;
  }
  .home-largest .largest-top {
    margin-top: 0;
    grid-template-columns: 1fr 280px;
  }
  .home-largest .largest-pic-small {
    margin-top: 0;
  }
  .home-largest .largest-stats-panel {
    padding: 44px 36px 32px;
  }
  .home-mettle {
    padding-bottom: 70px;
  }
  .home-mettle .mettle-slide {
    min-height: 520px;
  }
  .home-mettle .mettle-slide-in {
    padding: 36px 40px 44px;
  }
  .home-mettle .mettle-title {
    font-size: 30px;
  }
  .home-mettle .mettle-bottom-row {
    flex-direction: column;
    gap: 28px;
  }
  .home-fyh {
    padding-bottom: 80px;
  }
  .home-fyh .fyh-head {
    gap: 30px;
    margin-bottom: 40px;
    flex-direction: column;
  }
  .home-fyh .fyh-tag {
    margin-top: 0;
  }
  .home-fyh .fyh-title {
    font-size: 32px;
  }
  .home-fyh .fyh-panel {
    padding: 36px;
  }
  .home-fyh .fyh-panel-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .home-fyh .fyh-sus-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .home-chair .chair-panel {
    grid-template-columns: 1fr;
  }
  .home-chair .chair-sea {
    min-height: 220px;
    padding: 28px;
  }
  .home-chair .chair-body {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }
  .home-chair .chair-pic {
    padding: 44px 40px 0;
    max-width: 460px;
  }
  .home-chair .chair-head {
    padding: 20px 20px 0px;
  }
  .home-chair .chair-txt {
    padding: 40px 40px 56px;
  }
  .home-chair .chair-title {
    font-size: 32px;
    margin-bottom: 36px;
  }
  .home-chair .chair-stage {
    display: flex;
    flex-direction: column;
  }
  .home-chair .chair-panel:not(.active) {
    inset: auto 0 0 0;
    top: 0;
  }
  .home-chair .chair-tabs {
    position: static;
    width: auto;
    flex-direction: row;
    order: -1;
  }
  .home-chair .chair-tab {
    writing-mode: horizontal-tb;
    padding: 16px 10px;
    background: var(--hm-alt);
    color: var(--hm-muted);
    font-size: 13px;
  }
  .home-chair .chair-tab.active {
    background: #14324e;
    color: #fff;
  }
  body.dark-mode .home-chair .chair-tab.active {
    background: #1c3a52;
    color: #fff;
  }
  .home-fin {
    padding: 80px 0;
  }
  .home-fin .fin-head {
    gap: 30px;
    margin-bottom: 40px;
    flex-direction: column;
  }
  .home-fin .fin-tag {
    margin-top: 0;
  }
  .home-fin .fin-title {
    font-size: 32px;
  }
  .home-fin .fin-tab strong {
    font-size: 14px;
  }
  .home-fin .fin-panel {
    padding: 36px;
  }
  .home-fin .fin-grid {
    grid-template-columns: 1fr;
    gap: 56px 0;
  }
  .home-fin .fin-bars {
    height: 280px;
  }
  .home-purpose {
    padding: 80px 0 90px;
  }
  .home-purpose .pf-top {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 60px;
  }
  .home-purpose .pf-title {
    font-size: 34px;
  }
  .home-purpose .pf-vm {
    gap: 40px;
  }
  .home-projhl .ph-head {
    position: static;
    padding: 60px 0 44px;
  }
  .home-projhl .ph-head-in {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .home-projhl .ph-title {
    font-size: 34px;
    margin-bottom: 32px;
  }
  .home-projhl .ph-tip i {
    height: 60px;
  }
  .home-projhl .ph-tip-box {
    width: 190px;
  }
  .home-projhl .ph-tip-box strong {
    font-size: 16px;
  }
  .home-opctx .opctx-swiper {
    height: 620px;
  }
  .home-opctx .opctx-card {
    grid-template-columns: 1fr;
    grid-template-rows: 300px 1fr;
    gap: 24px;
  }
  .home-opctx .opctx-txt {
    padding: 0 8px 8px;
  }
  .home-opctx .opctx-title {
    font-size: 27px;
    margin-bottom: 22px;
  }
  .home-opctx .opctx-txt p {
    font-size: 15px;
    margin-bottom: 26px;
  }
  .home-sus .sus-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 30px 28px 66px;
  }
  .home-sus .sus-more {
    align-self: start;
  }
  .home-dc {
    padding: 80px 0;
  }
  .home-dc .dc-grid {
    grid-template-columns: 260px 1fr;
    gap: 50px;
  }
  .home-dc .dc-list {
    grid-template-columns: 1fr;
  }
  .home-dc .dc-item {
    padding: 24px 0;
  }
  .home-explore .explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .home-hdr .home-hdr-rhs {
    gap: 16px;
  }
  .home-bnr {
    min-height: 520px;
  }
  .home-bnr .bnr-float {
    top: auto;
    bottom: 200px;
    transform: none;
    width: 160px;
  }
  .home-bnr .bnr-float img {
    width: 100%;
    height: auto;
  }
  .home-bnr .bnr-title {
    font-size: 26px;
    letter-spacing: 5px;
    margin-bottom: 24px;
  }
  .home-bnr .bnr-center {
    padding-bottom: 44px;
  }
  .home-bnr .bnr-dwnld {
    top: auto;
    bottom: 190px;
    right: 16px;
    transform: none;
  }
  .home-bnr .bnr-dwnld span {
    font-size: 14px;
  }
  .home-bnr .bnr-dwnld img {
    width: 36px;
    height: 36px;
  }
  .sec-title {
    font-size: 30px;
  }
  .home-founder,
  .home-largest {
    padding: 60px 0;
  }
  .home-founder .founder-pic-panel {
    padding: 26px;
  }
  .home-founder .founder-txt-panel {
    padding: 44px 24px;
  }
  .home-founder .founder-title {
    font-size: 20px;
  }
  .home-founder .founder-sep {
    margin: 22px auto;
  }
  .home-largest .largest-title {
    font-size: 28px;
  }
  .home-largest .largest-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .home-largest .largest-stats-panel {
    padding: 36px 24px 28px;
  }
  .home-largest .largest-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }
  .home-largest .l-stat strong {
    font-size: 28px;
  }
  .home-mettle {
    padding-bottom: 56px;
  }
  .home-mettle .mettle-slide {
    min-height: 0;
  }
  .home-mettle .mettle-slide-in {
    padding: 26px 22px 34px;
    position: relative;
  }
  .home-mettle .mettle-slide-in::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: -1;
  }
  .home-mettle .mettle-tag {
    margin-bottom: 18px;
  }
  .home-mettle .mettle-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .home-mettle .mettle-arw {
    margin-top: 6px;
    border-top-width: 8px;
    border-bottom-width: 8px;
    border-left-width: 11px;
  }
  .home-mettle .mettle-topics {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
  }
  .home-mettle .mettle-rhs {
    align-self: flex-start;
    margin-left: 0;
    margin-top: 0;
  }
  .home-mettle .mettle-light .mettle-rhs {
    margin-left: 0;
  }
  .home-mettle .mettle-bottom {
    margin-top: 0;
  }
  .home-mettle .mettle-stats-row {
    gap: 20px 32px;
  }
  .home-fyh {
    padding-bottom: 60px;
  }
  .home-fyh .fyh-title {
    font-size: 24px;
  }
  .home-fyh .fyh-tab {
    font-size: 12px;
    padding: 12px 34px 12px 16px;
    margin-right: -20px;
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 100%, 0 100%);
  }
  .home-fyh .fyh-panel {
    padding: 22px 18px;
  }
  .home-fyh .fyh-stats {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .home-fyh .fyh-col {
    gap: 32px;
  }
  .home-fyh .fyh-col-sep {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--hm-border);
    padding-top: 32px;
  }
  .home-fyh .fyh-stat-top strong {
    font-size: 24px;
  }
  .home-fyh .fyh-sus-pics {
    grid-template-columns: 1fr;
  }
  .home-fyh .fyh-sus-stats {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  .home-fyh .fyh-award {
    grid-template-columns: 140px 1fr;
    gap: 16px;
  }
  .home-chair .chair-sea {
    min-height: auto;
    padding: 20px;
    background-image: none !important;
    background-color: #243b47;
  }
  .home-chair .chair-pic {
    padding: 0px 20px 0;
  }
  .home-chair .chair-panel.chair-jmd .chair-sea {
    background-color: #10456e;
  }
  .home-chair .chair-txt {
    padding: 32px 20px 44px;
  }
  .home-chair .chair-title {
    font-size: 24px;
    margin-bottom: 28px;
  }
  .home-chair .chair-msg p {
    font-size: 15px;
  }
  .home-chair .chair-tab {
    font-size: 11px;
    letter-spacing: 1px;
  }
  .home-fin {
    padding: 60px 0;
  }
  .home-fin .fin-title {
    font-size: 24px;
  }
  .home-fin .fin-tab strong {
    font-size: 12px;
  }
  .home-fin .fin-tab small {
    font-size: 10px;
  }
  .home-fin .fin-panel {
    padding: 22px 16px;
  }
  .home-fin .fin-chart h3 {
    font-size: 19px;
  }
  .home-fin .fin-chart-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .home-fin .fin-nums {
    display: flex;
    align-items: baseline;
    gap: 28px;
  }
  .home-fin .fin-growth {
    margin-top: 0;
  }
  .home-fin .fin-bars {
    height: 230px;
    gap: 4px;
  }
  .home-fin .fin-bar-val {
    font-size: 9px;
    max-height: 70px;
  }
  .home-purpose {
    padding: 60px 0 70px;
  }
  .home-purpose .pf-title {
    font-size: 26px;
    margin-bottom: 28px;
  }
  .home-purpose .pf-vm {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .home-purpose .pf-vm-item p {
    font-size: 17px;
  }
  .home-purpose .pf-anchor {
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
  }
  .home-purpose .pf-anchor i {
    min-width: 40px;
  }
  .home-purpose .pf-card {
    min-height: 0;
  }
  .home-purpose .pf-card h3 {
    font-size: 24px;
  }
  .home-projhl .ph-head {
    padding: 44px 0 32px;
  }
  .home-projhl .ph-title {
    font-size: 26px;
    margin-bottom: 24px;
  }
  .home-projhl .ph-intro {
    font-size: 15px;
  }
  .home-projhl .ph-spot {
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
  }
  .home-projhl .ph-tip i {
    height: 34px;
  }
  .home-projhl .ph-tip-box {
    width: 150px;
    padding: 0 0 8px 10px;
  }
  .home-projhl .ph-tip-box strong {
    font-size: 13px;
    margin-bottom: 5px;
  }
  .home-projhl .ph-tip-box small {
    font-size: 11px;
  }
  .home-opctx .opctx-pin {
    min-height: 0;
    padding: 60px 0;
    display: block;
  }
  .home-opctx .opctx-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px;
    height: auto;
  }
  .home-opctx .opctx-pic img {
    height: 220px;
  }
  .home-opctx .opctx-txt {
    padding: 4px 6px 10px;
  }
  .home-opctx .opctx-title {
    font-size: 24px;
    margin-bottom: 18px;
  }
  .home-opctx .opctx-txt p {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .home-sus .sus-vlbl {
    width: 42px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }
  .home-sus .sus-panel {
    padding: 22px 20px 24px 50px;
    gap: 14px;
  }
  .home-sus .sus-panel h3 {
    font-size: 17px;
  }
  .home-sus .sus-panel p {
    font-size: 12px;
  }
  .home-dc {
    padding: 60px 0;
  }
  .home-dc .dc-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .home-dc .dc-cover {
    max-width: 300px;
    margin: 0 auto;
  }
  .home-dc .dc-item span {
    font-size: 16px;
  }
  .home-dc .dc-item i {
    flex: 0 0 48px;
    height: 48px;
  }
  .home-explore {
    padding: 60px 0 70px;
  }
  .home-explore .explore-grid {
    grid-template-columns: 1fr;
  }
  .home-footer .foot-in {
    text-align: center;
  }
  .home-sus .sus-vlbl {
    width: 100%;
    font-size: 12px;
    letter-spacing: 1.5px;
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    position: relative;
    padding: 20px;
    background-color: #14406b;
  }
  .home-sus .sus-panel {
    min-height: 250px;
  }
  .home-footer {
    background: #003A5E;
    padding: 10px 0;
  }
  .home-hdr .home-hdr-rhs {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .home-hdr .home-logo img {
    height: 40px;
  }
  .middle {
    display: none;
  }
}