@charset "UTF-8";
/* ============================= */
/* ABSTRACTS (PHẢI ĐỂ TRÊN CÙNG) */
/* ============================= */
/* BREAKPOINT */
/* SPACING MAP (optional) */
/* TRANSITION */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
:root {
  --header-height: 80px;
  /* ===== COLOR ===== */
  --color-primary: #146187;
  --color-secondary: #e0c25c;
  --color-third: #a88742;
  --color-four: #00a3e0;
  --color-dark: #1a1a1a;
  --color-text: #333;
  --color-gray: #f5f7fa;
  --color-white: #ffffff;
  --color-black: #000000;
  /* ===== GRADIENT ===== */
  --gradient-main: linear-gradient(to right, #e0c25c, #a88742);
  --gradient-1: linear-gradient(45deg, #0968b1, #004078);
  --gradient-2: linear-gradient(to bottom, #0968b1, #004078);
  --gradient-3: linear-gradient(to right, #f2f5fa, #e0c25c);
  /* ===== FONT ===== */
  --font-primary: "Plus Jakarta Sans", sans-serif;
  --font-fm-1: "UTM Androgyne";
  --font-fm-2: "SFU Futura";
  --font-fm-3: "UTM HelvetIns";
  /* ===== FONT SIZE ===== */
  --fs-sm: 0.9rem;
  --fs-base: 1rem;
  --fs-lg: 1.5rem;
  --fs-xl: 1.8rem;
  --fs-xxl: 3rem;
  /* ===== SPACING ===== */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
  --space-xxxl: 64px;
  /* ===== RADIUS ===== */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  /* ===== SHADOW ===== */
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  /* ===== ICON SIZE ===== */
  --icon-xs: 12px;
  --icon-sm: 16px;
  --icon-md: 20px;
  --icon-lg: 24px;
  --icon-xl: 64px;
  --icon-xxl: 100px;
  /* ===== IMAGE SIZE ===== */
  --img-sm: 120px;
  --img-md: 200px;
  --img-lg: 300px;
  --img-xl: 400px;
  /* ===== AVATAR ===== */
  --avatar-sm: 32px;
  --avatar-md: 48px;
  --avatar-lg: 64px;
}

/* ===== RESPONSIVE ===== */
/* ===== FLEX CENTER ===== */
@media (max-width: 767.98px) {
  :root {
    --fs-xxl: 48px;
    --icon-xl: 48px;
  }
}
@media (max-width: 576px) {
  :root {
    --fs-xxl: 1.5rem;
    --fs-xl: 1.2rem;
    --fs-lg: 1rem;
    --icon-xl: 50px;
    --icon-xxl: 60px;
    --space-xl: 24px;
    --header-height: 60px ;
  }
}
/* ============================= */
/* BASE */
/* ============================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto !important;
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
  padding: 0;
}

b {
  font-weight: bold;
}

@font-face {
  font-family: "UTM HelvetIns";
  src: url("../fonts/UTMHelvetIns.woff2") format("woff2"), url("../fonts/UTMHelvetIns.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "UTM Androgyne";
  src: url("../fonts/UTMAndrogyne.woff2") format("woff2"), url("../fonts/UTMAndrogyne.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SFU Futura";
  src: url("../fonts/SFUFuturaBold.woff2") format("woff2"), url("../fonts/SFUFuturaBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  overflow-y: auto;
}

/* selection */
::selection {
  background: var(--color-primary);
  color: #fff;
}

/* scrollbar (optional) */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 10px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

h1 {
  font-size: var(--fs-xxl);
}

h2 {
  font-size: var(--fs-xl);
}

h3 {
  font-size: var(--fs-lg);
}

h5 {
  font-size: 1.2rem;
}

p {
  margin-bottom: var(--space-md);
  text-align: justify;
}

.text-muted {
  color: var(--color-gray);
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.fw-bold {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--color-primary) !important;
}

.text-secondary {
  color: var(--color-secondary) !important;
}

.text-third {
  color: var(--color-third) !important;
}

.text-four {
  color: var(--color-four) !important;
}

.text-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-1 {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-primary {
  background: var(--color-primary) !important;
}

.bg-secondary {
  background: var(--color-secondary) !important;
}

.bg-third {
  background: var(--color-third) !important;
}

.bg-four {
  background: var(--color-four) !important;
}

.bg-gradient {
  background: var(--gradient-main) !important;
}

.bg-bottom {
  padding-bottom: 15rem;
}
.bg-bottom > .bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  mask-image: linear-gradient(to bottom, transparent, black 90%);
  z-index: 0;
}

.fs-sm {
  font-size: var(--fs-sm);
}

.fs-sm {
  font-size: var(--fs-base);
}

.fs-lg {
  font-size: var(--fs-lg);
}

.fs-xl {
  font-size: var(--fs-xl);
}

.fs-xxl {
  font-size: var(--fs-xxl);
}

.radius-md {
  border-radius: var(--radius-md);
}

.mt-1 {
  margin-top: var(--space-xs);
}

.mt-2 {
  margin-top: var(--space-sm);
}

.mt-3 {
  margin-top: var(--space-md);
}

.mt-4 {
  margin-top: var(--space-lg);
}

.mb-1 {
  margin-bottom: var(--space-xs);
}

.mb-2 {
  margin-bottom: var(--space-sm);
}

.mb-3 {
  margin-bottom: var(--space-md);
}

.mb-4 {
  margin-bottom: var(--space-lg);
}

.gap-1 {
  gap: var(--space-xs);
}

.gap-2 {
  gap: var(--space-sm);
}

.gap-3 {
  gap: var(--space-md);
}

.gap-4 {
  gap: var(--space-lg);
}

.line-height-0 {
  line-height: 0;
}

.no-scroll {
  overflow-x: hidden;
  overflow-y: hidden;
  overflow: hidden;
}

body.auto {
  overflow-x: hidden;
  overflow-y: auto;
}

.header, .footer, .main, .go-top {
  visibility: hidden;
}

.header, .footer, .main, .go-top {
  animation: Start 1s steps(1, end) 0s 1 normal both;
}

.load-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 997;
  pointer-events: none;
}
.load-bg span:nth-child(1), .load-bg span:nth-child(2) {
  content: "";
  position: absolute;
  width: 100%;
  height: 50vh;
  background-color: white;
  transition: height 0.6s ease;
}
.load-bg span:nth-child(1) {
  left: 0;
  top: 0;
}
.load-bg span:nth-child(2) {
  left: 0;
  bottom: 0;
}

body.show .load-bg span:nth-child(1) {
  border-radius: 0 0 30% 30%;
}
body.show .load-bg span:nth-child(2) {
  border-radius: 30% 30% 0 0;
}
body.show .load-bg span:nth-child(1), body.show .load-bg span:nth-child(2) {
  height: 0;
}

.loadicon {
  position: fixed;
  left: 50%;
  top: 50%;
  margin: -9vw 0 0 -10vw;
  width: 20vw;
  height: 18vw;
  z-index: 99999;
}
.loadicon .text-1, .loadicon .text-2 {
  opacity: 0;
}

.loadicon-pic {
  background: url(../../assets/images/logos/logo.svg) no-repeat 50%/contain;
  opacity: 0;
  z-index: 1;
}

.en .loadicon-pic {
  background-image: url(../assets/images/logos/logo.svg);
}

.load-present, .loadicon-pic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.load-present {
  z-index: 0;
}

.stroke-line {
  fill-opacity: 0;
  stroke: #0d68b1;
  stroke-miterlimit: 10;
  stroke-width: 0.5;
  stroke-dashoffset: 1000;
  stroke-dasharray: 1000;
}
.stroke-line.color-1 {
  fill: #0d68b1;
  stroke: #0d68b1;
}
.stroke-line.color-2 {
  fill: #ecaf1f;
  stroke: #ecaf1f;
}
.stroke-line.color-3 {
  fill: none;
  stroke: var(--color-four);
}
.stroke-line.color-4 {
  fill: none;
  stroke: #fff200;
}

.loadered .stroke-line {
  animation-name: DrawStroke;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-timing-function: linear;
}

.loadicon.show .stroke-line {
  transition: all 1s ease;
  fill-opacity: 1;
  stroke-opacity: 0;
}

.load-text {
  opacity: 0;
}

.loadicon.show .loadicon-pic {
  animation: fadeIn;
  animation-duration: 1.2s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}

@media screen and (max-width: 760px) {
  .loadicon {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 40vw;
    height: 20vw;
    margin: -10vw 0 0 -20vw;
  }
}
/* PADDING */
.p-md {
  padding: var(--space-md);
}

.p-lg {
  padding: var(--space-lg);
}

/* FLEX */
.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-none {
  flex: none;
}

.w-100 {
  width: 100%;
}

.main {
  overflow: hidden;
}

.form-select {
  text-transform: uppercase;
}

.form-control {
  position: relative;
  text-transform: uppercase;
}
.form-control::after {
  position: absolute;
  right: 0;
  top: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f060";
  color: #02160e;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

#svg_gradient {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.bg-lottie-cover {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%; /* tăng lên */
  height: 120%;
  transform: translate(-50%, -50%);
}

.bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.bg.mask-top {
  mask-image: linear-gradient(to bottom, transparent, black 90%);
}
.bg.mask-bottom {
  mask-image: linear-gradient(to top, transparent, black 90%);
}

.bg-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-light {
  position: relative;
  background-color: transparent !important;
}
.bg-light::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-main);
  z-index: -1;
  mask-image: linear-gradient(to bottom, transparent, black 90%);
  opacity: 0.3;
}

.lead {
  margin-bottom: 1rem;
}
.lead p {
  color: var(--color-third);
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .lead {
    font-size: var(--fs-base);
  }
}

.list-item {
  margin-bottom: 1rem;
}
.list-item li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 0.5rem;
  text-align: justify;
}
.list-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: var(--space-sm);
  background: var(--color-secondary);
  width: var(--space-sm);
  height: var(--space-sm);
  border-radius: 50%;
}

.fix-scroll {
  overflow: hidden;
  overflow-y: auto;
  padding-right: 0.5rem;
}

@media (min-width: 1200px) {
  .fix-scroll::-webkit-scrollbar {
    width: 0.1875rem;
  }
  .fix-scroll::-webkit-scrollbar-track {
    background: transparent;
  }
  .fix-scroll::-webkit-scrollbar-thumb {
    background: rgba(20, 97, 135, 0.6);
  }
  .fix-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
  }
}
.outer-nav {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  text-align: center;
  background-color: #e2e2e2;
  z-index: 4;
}
.outer-nav.second {
  top: -100px;
  left: 0;
  position: fixed;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s all ease-in-out;
  background-color: #e5eaf5;
  padding: 5px 0;
}
.outer-nav.second.fixed {
  pointer-events: auto;
  opacity: 1;
  top: 70px;
  z-index: 10;
}
.outer-nav.second .sub-nav li {
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
  border-right: 1px solid #ddd;
}
.outer-nav.second .sub-nav li.active-color a, .outer-nav.second .sub-nav li.current a {
  background-color: var(--color-primary);
  color: #fff;
  pointer-events: none;
}
.outer-nav.second .sub-nav a {
  font-size: 10px;
  padding: 10px 15px;
  margin: 0;
  background-color: #fff;
}
.outer-nav:not(.second) {
  padding: 20px 0;
}
.outer-nav:not(.second).fixed {
  pointer-events: none;
  opacity: 0;
}

.sub-nav ul {
  white-space: nowrap;
  margin-bottom: 0;
}
.sub-nav li {
  position: relative;
  display: inline-block;
  margin: 0 -2px;
}
.sub-nav a {
  display: block;
  padding: 12px 15px;
  text-transform: uppercase;
  margin: 0 1px;
  font-weight: bold;
  font-size: 10px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  color: var(--color-text);
}

.wheel {
  border: 1px solid var(--color-secondary);
  width: 30px;
  transition: opacity 0.3s ease-in-out;
  height: 54px;
  position: fixed;
  left: 45px;
  bottom: 40px;
  border-radius: 50px;
  opacity: 0;
  z-index: 20;
}
.wheel.show {
  opacity: 0.8;
}
.wheel.show::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: var(--color-secondary);
  width: 5px;
  height: 10px;
  border-radius: 10px;
  animation: trackBallSlide 3s linear infinite;
}
.wheel.inner {
  bottom: 100px;
}
.wheel::before {
  content: " ";
  width: 1px;
  height: 35px;
  background-color: var(--color-secondary);
  top: -47px;
  left: 50%;
  position: absolute;
}

@keyframes trackBallSlide {
  0%, 100%, 30%, 60% {
    opacity: 1;
    transform: translateY(-12px);
  }
  15%, 50% {
    opacity: 0;
    transform: translateY(8px);
  }
}
.go-top {
  position: fixed;
  right: 20px;
  bottom: 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-third);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
  z-index: 100;
  pointer-events: none;
}
.go-top.show {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1100px) {
  .wheel {
    display: none;
  }
  .outer-nav {
    padding: 10px;
  }
  .outer-nav.second.fixed {
    top: 60px;
  }
  .outer-nav.second.fixed .sub-nav {
    width: 100%;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .sub-nav {
    width: 100%;
    height: auto;
    overflow-y: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    float: none;
    text-align: center;
  }
  .sub-nav ul {
    display: block;
  }
  .sub-nav li a {
    font-size: 12px;
    padding: 12px;
  }
  body.show .load-bg span:nth-child(1), body.show .load-bg span:nth-child(2) {
    border-radius: 0;
  }
}
section {
  position: relative;
  padding: var(--space-xl) 0;
}

.section {
  position: relative;
  padding: var(--space-xl) 0;
}
@media (max-width: 767.98px) {
  .section {
    padding: var(--space-xxl) 0;
  }
}

/* section spacing helper */
.section + .section {
  margin-top: var(--space-lg);
}

/* main layout */
/* page không có banner */
.page-hero .main {
  padding-top: 0;
}

.page--no-hero .main {
  padding-top: var(--header-height);
}

/* ============================= */
/* COMPONENTS */
/* ============================= */
.accordion__panel {
  border-bottom: 1px solid var(--color-secondary);
}
.accordion__panel.active .accordion__title::after {
  content: "\f068";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.accordion__panel:not(.show) .accordion__content {
  display: none;
}
.accordion__title {
  font-weight: 600;
  color: var(--color-primary);
  position: relative;
  font-size: var(--fs-base);
  cursor: pointer;
  padding: var(--space-md) var(--space-lg) var(--space-md) 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.accordion__title h5 {
  margin-bottom: 0;
}
.accordion__title::after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 14px;
  height: 14px;
}
.accordion__title[aria-expanded=true]::after {
  content: "\f068";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.accordion__content {
  padding-bottom: var(--space-md);
}

.item-mobile .accordion__panel {
  border-top: 1px solid var(--color-border);
}
.item-mobile .accordion__panel:last-child {
  border-bottom: 1px solid var(--color-border);
}
.item-mobile .accordion__title {
  font-weight: 600;
  color: var(--color-primary);
  font-size: var(--fs-sm);
  padding: var(--space-md) 0 var(--space-md) var(--space-md);
}
.item-mobile .accordion__title::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  left: 0;
  right: auto;
  font-size: 12px;
  color: var(--color-text);
  transform: translateY(-50%);
}
.item-mobile .accordion__panel.active .accordion__title::after {
  content: "\f077";
}
.item-mobile .accordion__text {
  font-size: var(--fs-sm);
  color: var(--color-text);
  padding-bottom: var(--space-md);
}
.item-mobile .accordion__text ul {
  padding-left: var(--space-md);
}
.item-mobile .accordion__text ul li {
  display: flex;
  padding: var(--space-sm) 0;
}
.item-mobile .accordion__text ul li small {
  width: 40%;
  font-weight: 600;
  color: var(--color-text);
  padding-right: var(--space-sm);
}
.item-mobile .accordion__text ul li .content {
  width: 60%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
.btn--pill {
  border-radius: 999px;
}
.btn--download {
  padding: var(--space-sm) var(--space-xl);
  background: var(--gradient-main);
  color: #fff;
}
.btn--download .icon {
  margin-left: var(--space-sm);
  width: var(--icon-sm);
}
.btn--download:hover {
  opacity: 0.9;
  color: #fff;
}

.view-detail {
  font-family: inherit;
  font-size: 1rem;
  background: var(--gradient-main);
  color: white;
  padding: 0.8em 1.2em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 25px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  cursor: pointer;
}

.view-detail:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
  color: white;
}

.view-detail:active {
  transform: scale(0.95);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.view-detail span {
  display: block;
  transition: all 0.3s;
}

.view-detail svg {
  width: 18px;
  height: 18px;
  fill: white;
  transition: all 0.3s;
}

.view-detail .svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 0.5em;
  transition: all 0.3s;
}

.view-detail:hover .svg-wrapper {
  background-color: rgba(255, 255, 255, 0.5);
}

.view-detail:hover svg {
  transform: rotate(45deg);
}

.button-download {
  line-height: 1;
  background-color: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  padding: 0.75em 1em;
  padding-right: 1.25em;
  color: #fff;
  border: 1px solid transparent;
  font-weight: 700;
  border-radius: 2em;
  font-size: 1rem;
  box-shadow: 0 0.7em 1.5em -0.5em rgba(var(--color-third), 0.7);
  transition: transform 0.3s;
  background: linear-gradient(90deg, var(--color-third) 0%, var(--color-secondary) 100%);
}
.button-download .button__icon {
  width: 1.5em;
  height: 1.5em;
}
.button-download:hover {
  border-color: #f4f5f2;
  color: var(--color-white);
}
.button-download:active {
  transform: scale(0.98);
  box-shadow: 0 0.5em 1.5em -0.5em rgba(var(--color-third), 0.7);
}

.card, .chart-box {
  background: var(--color-white);
  border-radius: var(--radius-xs);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--color-text);
}
.card .title, .chart-box .title {
  display: flex;
  align-items: center;
  color: var(--color-secondary);
  gap: 1rem;
}
.card .title h5, .chart-box .title h5 {
  margin-bottom: 0;
}
.card .text .list-item, .chart-box .text .list-item {
  margin-bottom: 0;
}
.card .text .list-item li:last-child, .chart-box .text .list-item li:last-child {
  margin-bottom: 0;
}
.card .text p:last-child, .chart-box .text p:last-child {
  margin-bottom: 0;
}
.card.card-1 .text .fix-scroll, .card-1.chart-box .text .fix-scroll {
  height: 72px;
}
.card.card-2, .card-2.chart-box {
  flex-direction: row;
}
.card.card-2 .text .fix-scroll, .card-2.chart-box .text .fix-scroll {
  height: 200px;
}
.card.card-3, .card-3.chart-box {
  flex-direction: row;
}
.card.card-3 .text, .card-3.chart-box .text {
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .card.card-1 .text .fix-scroll, .card-1.chart-box .text .fix-scroll {
    height: 144px;
  }
  .card.card-2, .card-2.chart-box {
    flex-direction: column;
    align-items: center;
  }
  .card.card-2 .text .fix-scroll, .card-2.chart-box .text .fix-scroll {
    height: 280px;
  }
  .card.card-3, .card-3.chart-box {
    flex-direction: column;
    align-items: center;
  }
  .card.card-3 .text .fix-scroll, .card-3.chart-box .text .fix-scroll {
    height: 96px;
  }
}

.modal-body {
  padding: 6rem 2rem 2rem 3rem;
}
.modal-body .modal-close {
  position: absolute;
  right: 15px;
  top: 10px;
  width: 50px;
  height: 50px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .modal-body {
    padding: 4rem 1rem 1rem 1.5rem;
  }
}

.swiper-container {
  position: relative;
  margin-bottom: 1rem;
}

.swiper-pagination-bullet-active {
  background: var(--color-secondary);
}

.swiper-button-prev, .swiper-button-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: calc(50% - 30px);
  z-index: 11;
  display: block;
  border-radius: 50%;
  box-shadow: 0 17px 80px -7px rgba(14, 63, 39, 0.3);
  background-image: unset !important;
  left: -2rem;
}
.swiper-button-prev::after, .swiper-button-next::after {
  color: var(--color-third);
  content: "\f060";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: initial;
}

.swiper-button-next {
  right: -2rem;
  left: unset;
}
.swiper-button-next:after {
  content: "\f061";
}

.swiper-pagination {
  position: relative;
  margin-top: 0.5rem;
}

.chart-box {
  padding: 30px;
}

.item-highlight.secondary .img-pattern .bg::before {
  content: "";
  position: absolute;
  left: 15%;
  top: 15%;
  width: 70%;
  height: 70%;
  background: var(--color-secondary);
  opacity: 0.7;
  z-index: 1;
  border-radius: 50%;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: none;
}
.icon .bg {
  z-index: 0;
}
.icon .inner {
  position: absolute;
  left: 15%;
  top: 15%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon .inner img {
  max-height: 70%;
  max-width: 60%;
}
.icon svg, .icon img {
  width: 100%;
  height: 100%;
}
.icon--sm {
  width: var(--icon-sm);
  height: var(--icon-sm);
}
.icon--md {
  width: var(--icon-md);
  height: var(--icon-md);
}
.icon--lg {
  width: var(--icon-lg);
  height: var(--icon-lg);
}
.icon--xl {
  width: var(--icon-xl);
  height: var(--icon-xl);
}
.icon--xxl {
  width: var(--icon-xxl);
  height: var(--icon-xxl);
}

.img-pattern {
  position: relative;
  flex: none;
}
.img-pattern .bg {
  position: relative;
  z-index: 0;
}
.img-pattern .inner {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  z-index: 1;
}
.img-pattern .inner h5 {
  margin-bottom: 0;
}
.img-pattern .inner img {
  transition: 0.3s all ease-in-out;
}

.img {
  display: block;
  width: 100%;
  height: auto;
}
.img--cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img--contain {
  object-fit: contain;
}
.img--md {
  width: var(--img-md);
  height: var(--img-md);
}
.img--lg {
  width: var(--img-lg);
  height: var(--img-lg);
}
.img--xl {
  width: var(--img-xl);
  height: var(--img-xl);
}

.item-cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.item-cta .img {
  position: relative;
}
.item-cta .img .bg {
  position: relative;
}
.item-cta .img .inner {
  position: absolute;
  left: 15%;
  top: 15%;
  width: 70%;
  height: 70%;
  overflow: hidden;
  border-radius: 50%;
}
.item-cta .img .inner img {
  transition: 0.3s all ease-in-out;
}
.item-cta .text {
  display: flex;
  gap: 0.5rem;
}
.item-cta .text .number {
  width: var(--icon-xl);
  height: var(--icon-xl);
  color: var(--color-white);
  background: var(--gradient-main);
  font-family: var(--font-fm-3);
  font-weight: normal;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 0;
}
.item-cta .text .title {
  display: flex;
  align-items: center;
}
.item-cta .text .title p {
  font-weight: bold;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0;
  text-align: left;
}
.item-cta:hover .inner img {
  transform: scale(1.2);
}
@media (max-width: 767.98px) {
  .item-cta .text .number {
    width: 40px;
    height: 40px;
  }
  .item-cta .text .title p {
    font-size: var(--fs-sm);
  }
}

.item-leadership {
  cursor: pointer;
}
.item-leadership .img {
  margin: 0 auto 1rem;
  position: relative;
  position: relative;
  overflow: hidden;
  width: 230px;
  border-radius: 50%;
  background-image: linear-gradient(to top, #fefefd 20%, #b98b31);
  background-size: 300% 100%;
  transition: all 0.5s ease-in-out;
}
.item-leadership .img::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.item-leadership .img .bg {
  width: 120%;
  position: absolute;
  left: -5%;
  top: -5%;
  pointer-events: none;
  z-index: 0;
  opacity: 50%;
}
.item-leadership .img .inner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.item-leadership .img .inner img {
  width: auto;
  max-height: 90%;
  transition: 0.3s all ease-in-out;
}
.item-leadership .text {
  text-align: center;
}
.item-leadership .text .title {
  background: url(../../assets/images/sections/leadership/bg-title.svg) no-repeat center/cover;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  padding: 1.5rem 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.item-leadership .text .position {
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
}
.item-leadership:hover img {
  transform: scale(1.1);
}
@media (min-width: 1400px) {
  .item-leadership .text .title {
    padding: 0;
    height: 85px;
  }
}

.item-event {
  display: flex;
}
.item-event .img,
.item-event .text {
  width: 50%;
}
.item-event .img {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
}
.item-event .img img {
  aspect-ratio: 5/3;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.item-event .text h5 {
  position: relative;
  padding-bottom: var(--space-sm);
  display: block;
  width: 100%;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.item-event .text h5::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 6px;
  height: 6px;
  background: var(--color-secondary);
  border-radius: 50%;
}
.item-event .text h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--gradient-main);
  height: 2px;
}
.item-event .text {
  position: relative;
}
.item-event .text .inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  align-items: flex-start;
}
.item-event .text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 2px solid var(--color-third);
  mask: linear-gradient(to left, black, black, transparent);
  pointer-events: none;
}
@media (max-width: 1199.98px) {
  .item-event {
    flex-wrap: wrap;
  }
  .item-event .img, .item-event .text {
    width: 100%;
  }
  .item-event .text::before {
    mask: linear-gradient(to top, black, black, transparent);
  }
  .item-event .text::after {
    display: block;
    content: "";
    padding-top: 50%;
  }
}
@media (max-width: 767.98px) {
  .item-event .text::after {
    padding-top: 90%;
  }
}

.item-award {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.item-award .title {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--color-primary);
}
.item-award .text .fix-scroll {
  height: 200px;
}

.item-number {
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.item-number .title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0;
}
.item-number h3 {
  font-size: 4rem;
  margin-bottom: 0;
}
.item-number .num {
  font-size: 4rem;
}
.item-number .des {
  text-align: center;
}

.item-vission {
  display: flex;
  gap: 5rem;
  padding: 1rem 0;
}
.item-vission:last-child {
  border-bottom: none;
}
.item-vission .icon span {
  position: absolute;
  right: -4rem;
  top: var(--space-xxl);
  width: 4rem;
  border-bottom: 2px solid var(--color-white);
}
.item-vission .icon span::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  width: 7px;
  height: 7px;
  background: var(--color-white);
  border-radius: 50%;
}
.item-vission .icon .inner img {
  max-height: 80%;
  max-width: 90%;
}
.item-vission .text {
  flex: 1;
  padding-top: calc(var(--space-xxl) - 1.5rem);
}
.item-vission .text p {
  margin-bottom: 0;
}
.item-vission .text .fix-scroll {
  height: 72px;
}
.item-vission.type-1 {
  gap: calc(3rem - 1px);
}
.item-vission.type-1 .icon span {
  border-bottom: 2px dotted var(--color-primary);
  right: -3rem;
  width: 3rem;
}
.item-vission.type-1 .icon span::after {
  background: var(--color-primary);
}
.item-vission.type-1 .text {
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
}
@media (max-width: 767.98px) {
  .item-vission {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
  .item-vission .icon span {
    display: none;
  }
  .item-vission .text {
    padding-top: 1rem;
  }
  .item-vission.type-1 {
    gap: 1rem;
  }
}

.item-partner .bg {
  position: relative;
}
.item-partner .inner {
  position: absolute;
  left: 60%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.items {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.items.list-1 {
  row-gap: 20px;
}
.items.list-1 .item {
  width: 100%;
}
.items.list-2 {
  gap: 1rem;
}
.items.list-2 .item {
  width: calc(50% - 0.5rem);
}
.items.list-3 {
  gap: 20px;
}
.items.list-3 .item {
  width: calc(33% - 30px);
}
.items.list-4 {
  gap: 20px;
}
.items.list-4 .item {
  width: calc(25% - 15px);
}
.items.list-5 {
  gap: 10px;
}
.items.list-5 .item {
  width: calc(20% - 10px);
}
.items.list-up {
  align-items: flex-end;
}
.items.list-up .item:nth-child(1) {
  width: 25%;
}
.items.list-up .item:nth-child(2) {
  width: 35%;
}
.items.list-up .item:nth-child(3) {
  width: 40%;
}
@media (max-width: 767.98px) {
  .items {
    display: block;
  }
  .items.list-2 .item {
    width: 100%;
  }
  .items.list-3 .item {
    width: 100% !important;
  }
}

@media (max-width: 1199.98px) {
  .items.list-4, .items.list-5 {
    gap: 20px;
  }
  .items.list-4 .item, .items.list-5 .item {
    width: calc(33% - 20px);
  }
}
@media (max-width: 992px) {
  .items.list-3 {
    gap: 40px;
  }
  .items.list-3 .item {
    width: calc(50% - 20px);
  }
  .items.list-4 {
    gap: 40px;
  }
  .items.list-4 .item {
    width: calc(50% - 20px);
  }
  .items.list-5 {
    gap: 10px;
  }
  .items.list-5 .item {
    width: calc(50% - 10px);
  }
  .items.list-up {
    gap: 40px;
  }
  .items.list-up .item {
    width: calc(50% - 20px) !important;
  }
}
@media (max-width: 767.98px) {
  .other-items {
    display: block;
    gap: 0;
  }
  .items {
    display: block;
  }
  .items.list-2 {
    row-gap: 20px;
  }
  .items.list-2 .item {
    width: 100%;
  }
  .items.list-3 {
    row-gap: 20px;
  }
  .items.list-3 .item {
    width: 100% !important;
  }
  .items.list-4 {
    row-gap: 20px;
  }
  .items.list-4 .item {
    width: 100%;
  }
  .items.list-5 {
    row-gap: 10px;
  }
  .items.list-5 .item {
    width: 100%;
  }
  .items.list-up {
    row-gap: 20px;
  }
  .items.list-up .item {
    width: 100% !important;
  }
}
.quote {
  color: var(--color-secondary);
  text-transform: uppercase;
  display: flex;
  margin-bottom: 1rem;
  gap: 1rem;
}
.quote .text h4 span {
  font-size: 4rem;
}
.quote .img {
  width: var(--icon-xxl);
}
.quote .img-1 {
  width: var(--icon-xxl);
  transform: rotate(-180deg);
}
@media (max-width: 1400px) {
  .quote .img, .quote .img-1 {
    width: var(--icon-xl);
  }
  .quote .text h4 span {
    font-size: 3rem;
  }
}
@media (max-width: 767.98px) {
  .quote .text h4 span {
    font-size: 2rem;
  }
}

.item__title {
  font-size: var(--fs-xxl);
  font-weight: 300;
  color: var(--color-primary);
  margin-bottom: 2rem;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .item__title {
    margin-bottom: 1rem;
  }
}

.item__title__1 {
  font-size: var(--fs-xl);
  color: var(--color-third);
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 1rem;
}

.item__title__2 {
  font-size: var(--fs-lg);
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}

.title__icon {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.title__icon .icon {
  flex: none;
}
.title__icon .text {
  border-bottom: 1px solid var(--color-secondary);
  flex: 1;
}

.tabs {
  display: flex;
  gap: var(--space-md);
  border-bottom: none;
}
.tabs .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: var(--fs-base);
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(186, 140, 52, 0.2);
  color: var(--color-secondary);
  transition: all 0.3s ease;
  cursor: pointer;
}
.tabs .nav-link.active, .tabs .nav-link:hover {
  background: var(--gradient-main);
  color: #fff;
}
.tabs.tab-1 .nav-link {
  background: rgba(255, 255, 255, 0.2);
}
.tabs.tab-1 .nav-link.active, .tabs.tab-1 .nav-link:hover {
  background: var(--gradient-main);
  color: #fff;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-md);
}
.table th,
.table td {
  padding: var(--space-sm);
  text-align: left;
}
.table th {
  font-weight: 600;
  border-bottom: 2px solid var(--color-primary);
}
.table td {
  border-bottom: 1px solid var(--color-primary);
}
.table .bg-press td {
  background: #fbf7f1;
}

@media (max-width: 576px) {
  .table-responsive .table {
    width: 700px;
  }
  .table-responsive.type-1 .table {
    width: 1000px;
  }
}

.popup-open-browser {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.popup-open-browser__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
}
.popup-open-browser__inner {
  position: relative;
  width: min(100%, 420px);
  background: white;
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  z-index: 2;
}
.popup-open-browser h3 {
  font-size: 28px;
  margin-bottom: 12px;
}
.popup-open-browser p {
  margin-bottom: 24px;
  color: #666;
}
.popup-open-browser .guide {
  padding: 12px 16px;
  border-radius: 14px;
  background: #f5f5f5;
  margin-bottom: 12px;
}
.popup-open-browser .btn-copy-link {
  margin-top: 20px;
  width: 100%;
  height: 52px;
  border-radius: 14px;
  border: none;
  background: black;
  color: white;
  font-weight: 700;
}

/* ============================= */
/* EFFECTS */
/* ============================= */
/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1 ;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

@keyframes Start {
  0% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}
@keyframes goLeft {
  0% {
    opacity: 0;
    transform: translate3d(200px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes goRight {
  0% {
    opacity: 0;
    transform: translate3d(-200px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes aniWidth {
  0% {
    transform: scale3d(0, 1, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes scaleLarge {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scaleLarge2 {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes Preloader {
  to {
    transform: rotate(360deg);
  }
}
@keyframes DrawStroke {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes DrawPlay {
  0% {
    stroke-dashoffset: 2800;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes DrawPlay1 {
  0% {
    stroke-dashoffset: 500;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes move {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50px);
  }
}
@keyframes move1 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-40px);
  }
}
@keyframes move2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}
@keyframes may-bay {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-200%, -300%);
  }
  100% {
    transform: translate(-200%, -300%);
  }
}
@keyframes chart-ngang {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(100%);
  }
}
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadein, .fadeindown, .fadeinup, .fadeoff, .fadeon, .fadeout, .goleft, .goright {
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.fadein {
  animation-name: fadeIn;
}

.fade-In {
  animation-name: fadeIn;
}

.fade-Out {
  animation-name: fadeOut;
}

.fadein {
  animation-name: fadeIn;
}

.fadeout {
  animation-name: fadeOut;
}

.move1 {
  animation: move1 10s ease-in-out infinite;
}

.move2 {
  animation: move2 10s ease-in-out infinite;
}

@keyframes circle360 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes Start {
  0% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}
.js-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.js-reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ============================= */
/* LAYOUT */
/* ============================= */
.header {
  position: fixed;
  height: auto;
  text-align: center;
  z-index: 999;
  width: 100%;
  top: 0;
  left: 0;
}
.header::before {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 100%;
  top: 0;
  left: 0;
  height: 70px;
  background-color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
}
.header::after {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 33vw;
  height: 33vw;
  top: -16vw;
  left: -14vw;
  filter: blur(70px);
  z-index: -1;
  background: radial-gradient(circle, rgb(255, 255, 255) 0px, rgb(255, 255, 255) 20%, rgba(255, 255, 255, 0) 70%);
}

.logo {
  position: absolute;
  left: 40px;
  top: 5px;
  width: 10vw;
  height: 5vw;
  z-index: 30;
}
.logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/logos/logo.svg) no-repeat 50%/contain;
}

.navigation {
  width: 100%;
  top: 0;
  height: 100%;
  position: fixed;
  text-align: right;
  right: 0;
  margin: 0;
  transition: transform 0.3s ease-in-out;
  transform: translateX(100%);
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  z-index: 100;
}
.navigation .nav {
  width: 100%;
  height: auto;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 2vw;
  z-index: 30;
}
.navigation .nav ul {
  position: relative;
  vertical-align: middle;
}
.navigation .nav ul li.current {
  pointer-events: none;
}
.navigation .nav ul li a {
  position: relative;
}
.navigation.show {
  transform: none;
}
.navigation.show .item-menu {
  animation-name: goLeft;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}
.navigation.show .item-menu:nth-child(1) {
  animation-delay: 0.3s;
}
.navigation.show .item-menu:nth-child(2) {
  animation-delay: 0.4s;
}
.navigation.show .item-menu:nth-child(3) {
  animation-delay: 0.5s;
}
.navigation.show .item-menu:nth-child(4) {
  animation-delay: 0.6s;
}
.navigation.show .item-menu:nth-child(5) {
  animation-delay: 0.7s;
}
.navigation.show .item-menu:nth-child(6) {
  animation-delay: 0.8s;
}
.navigation.show .item-menu:nth-child(7) {
  animation-delay: 0.9s;
}
.navigation.show .item-menu:nth-child(8) {
  animation-delay: 1s;
}

.item-menu {
  display: inline-flex;
  width: 100%;
  align-items: center;
  margin-bottom: 1.5rem;
  opacity: 0;
}
.item-menu .icon {
  width: var(--icon-xxl);
}
.item-menu .icon img {
  max-height: var(--icon-xl);
}
.item-menu .text {
  width: calc(100% - var(--icon-xxl));
  padding-bottom: 10px;
  position: relative;
  text-align: left;
}
.item-menu .text > span {
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom: 1px solid var(--color-secondary);
  width: 0;
  transition: 0.3s all ease-in-out;
}
.item-menu .text > span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  background-color: var(--color-secondary);
  width: 6px;
  height: 6px;
  transition: 0.3s all ease-in-out;
  opacity: 0;
}
.item-menu .text h5 {
  color: var(--color-secondary);
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.3s all ease-in-out;
  margin-bottom: 0;
}
.item-menu.item-menu-cus .text {
  width: 100%;
  padding-left: 0;
}
.item-menu.item-menu-cus .text h5 {
  color: var(--color-secondary);
}
.item-menu:hover .text > span {
  width: 100%;
}
.item-menu:hover .text > span::after {
  left: 100%;
  opacity: 1;
}

.text-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  top: 30px;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.3s ease-in-out;
}
.text-menu span {
  border-left: 1px solid var(--color-secondary);
  padding-left: 10px;
  margin-left: 10px;
}

.right-header {
  position: absolute;
  width: auto;
  height: auto;
  right: 110px;
  top: 20px;
  z-index: 9;
  transition: all 0.3s ease-in-out;
}

.link-home {
  display: inline-block;
  vertical-align: middle;
}
.link-home a {
  position: relative;
  display: block;
  width: 30px;
  padding: 5px 0;
  text-align: center;
}

.language {
  margin-left: 10px;
  vertical-align: middle;
  display: inline-block;
}
.language ul {
  margin-bottom: 0;
}
.language li {
  position: relative;
  display: inline-block;
}
.language li a {
  text-indent: -9999px;
  display: block;
  text-align: center;
  font-size: 15px;
  padding: 0 10px;
  line-height: 40px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.language li a.vn {
  background: url(../images/language/vietnam.svg) no-repeat 50%/contain;
}
.language li a.en {
  background: url(../images/language/united.svg) no-repeat 50%/contain;
}

.nav-click {
  position: fixed;
  top: 20px;
  right: 40px;
  width: 45px;
  z-index: 999;
  cursor: pointer;
  display: block;
  transition: all 0.3s ease-in-out;
}
.nav-click svg line {
  transition: all 0.3s ease-in-out;
  transform-origin: center center;
}
.nav-click.active .line-1 {
  transform: translate(-10px, 10px) rotate(45deg);
}
.nav-click.active .line-3 {
  transform: translate(-10px, -10px) rotate(-45deg);
}
.nav-click.active .line-2 {
  opacity: 0;
}
.nav-click.active .tron {
  opacity: 0;
}

.overlay-menu {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: fixed;
  left: 0;
  bottom: 0;
  overflow: hidden;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
  z-index: 99;
  background-color: white;
}
.overlay-menu::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  opacity: 0.3;
  -webkit-mask-image: linear-gradient(black, transparent);
  mask-image: linear-gradient(black, transparent);
}
.overlay-menu .object-menu {
  position: absolute;
  width: 60vw;
  height: 100vh;
  overflow: hidden;
  right: 0;
  top: 0;
  transform-origin: 50% 50%;
}
.overlay-menu .object-menu img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.overlay-menu.show {
  opacity: 1;
}
.overlay-menu.show img {
  animation: scaleLarge 1.5s forwards;
}

@media screen and (min-width: 1200px) {
  .header.hide::before {
    opacity: 1;
  }
  .header.hide .logo {
    height: 66.66667px;
    width: 100px;
    top: 2px;
    left: 40px;
    min-height: inherit;
    min-width: inherit;
  }
  .header.hide .text-menu {
    top: 20px;
  }
  .header.hide .right-header {
    top: 15px;
    right: 100px;
  }
  .header.hide .nav-click {
    top: 15px;
    width: 40px;
  }
  .logo {
    transition: all 0.6s ease-in-out;
  }
}
@media screen and (max-width: 1199.91px) {
  .header {
    height: 60px;
    border-bottom: 1px solid var(--color-primary);
    z-index: 20;
  }
  .header::before {
    background-color: white;
    opacity: 1;
    height: 60px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
    z-index: 5;
  }
  .logo {
    top: 5px;
    width: 120px;
    height: 50px;
    left: 20px;
    min-height: inherit;
    min-width: inherit;
    transition: all 0.5s ease-in-out;
    z-index: 110;
  }
  .text-menu {
    top: 20px;
    font-size: 16px;
    z-index: 5;
  }
  .right-header {
    top: 10px;
    right: 80px;
    z-index: 20;
  }
  .nav-click {
    top: 10px;
    right: 20px;
  }
  .overlay-menu {
    height: calc(100% - 60px);
    top: 60px;
    left: auto;
    right: 0;
    z-index: 80;
  }
  .overlay-menu .object-menu {
    display: none;
  }
  .navigation {
    height: calc(100% - 60px);
    top: 60px;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
  }
  .navigation .nav {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 992.91px) {
  .text-menu {
    display: none;
  }
  .item-menu {
    margin: 10px 0;
    padding: 10px;
    border-bottom: 1px solid rgba(var(--color-secondary), 0.5);
  }
  .item-menu .icon__svg::after {
    display: none;
  }
  .item-menu .text {
    padding: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .item-menu .icon {
    width: 80px;
  }
  .item-menu .icon .img__icon {
    font-size: 2rem;
  }
  .item-menu .text h5 {
    font-size: 1rem;
  }
}
.footer {
  position: relative;
  overflow: hidden;
}

.info__f ul li {
  margin-bottom: 1rem;
  position: relative;
}
.info__f ul li.address::before {
  background-image: url(../images/layout/footer/map-pin.svg);
}
.info__f ul li.phone::before {
  background-image: url(../images/layout/footer/phone.svg);
}
.info__f ul li.hotline::before {
  background-image: url(../images/layout/footer/printer.svg);
}
.info__f ul li.email::before {
  background-image: url(../images/layout/footer/mail.svg);
}
.info__f ul li {
  padding-left: 30px;
  color: white;
}
.info__f ul li::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  background-size: contain;
  background-position: center;
}
.info__f ul li:last-child {
  margin-bottom: 0;
}

.social {
  display: block;
  text-align: left;
}
.social ul {
  width: auto;
  height: auto;
  position: relative;
  margin-bottom: 0;
}
.social li {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}
.social a {
  color: var(--color-primary);
}
.social svg {
  width: 50px;
  height: 50px;
}

.foreground {
  fill: transparent;
  stroke-dasharray: 377;
  stroke-dashoffset: 377;
  stroke-width: 1.5;
  transform-origin: 50% 50%;
}

@media screen and (min-width: 1200px) {
  .foreground {
    transition: stroke-dashoffset 0.6s ease-in-out;
  }
  .social li a:hover {
    color: var(--color-primary);
  }
  .social li a:hover .foreground {
    stroke-dashoffset: 0;
  }
}
.footer .footer__top {
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--color-secondary);
}
.footer .footer__top .logo__f {
  width: 20rem;
  height: 10rem;
  position: relative;
}
.footer .footer__top .logo__f::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/logos/logo.svg) no-repeat 50%/contain;
}
.footer .footer__bottom {
  background: var(--gradient-main);
  padding: 2rem 3rem 2rem;
  position: relative;
  overflow: hidden;
}
.footer .footer__bottom h3 {
  margin-bottom: 3rem;
}
.footer .footer__bottom .row {
  margin-bottom: 5rem;
}
.footer .footer__bottom .bg {
  left: -15%;
  bottom: 0;
  height: 70%;
  top: auto;
  z-index: 1;
  pointer-events: none;
}
.footer .footer__bottom .inner {
  position: relative;
  z-index: 2;
}
.footer .footer__right {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .footer .footer__bottom .bg {
    left: 0;
    top: auto;
    bottom: 0;
    height: auto;
  }
}

@media (max-width: 767.98px) {
  .footer .footer__top .logo__f {
    width: 15rem;
    height: 8rem;
  }
  .footer .footer__bottom {
    padding: 2rem 1rem;
  }
  .footer .footer__bottom h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .footer .footer__bottom .row {
    margin-bottom: 1rem;
  }
}
.video-fill {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#home-page .sec-hero .box-text {
  left: auto;
  right: 2%;
  top: 35%;
  width: 45%;
}
@media (min-width: 1400px) {
  #home-page .sec-hero .box-text {
    width: 36%;
  }
}
@media (max-width: 767.98px) {
  #home-page .sec-hero .box-text {
    text-align: center;
  }
}

.sec-hero {
  padding: 0;
}
.sec-hero .box-text {
  position: absolute;
  left: 5%;
  top: 15%;
  width: 50%;
}
.sec-hero .box-text .slogan {
  margin-bottom: 1rem;
}
.sec-hero .box-text .slogan h3 {
  font-family: var(--font-fm-1);
  font-size: 2.5rem;
  font-weight: 400;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0.5rem 0;
  margin-bottom: 0;
}
.sec-hero .box-text .slogan h4 {
  font-family: var(--font-fm-2);
  font-size: 2.5rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0.5rem 0.5rem 0.5rem 0rem;
  margin-bottom: 0;
}
.sec-hero .box-text .slogan h3 > span, .sec-hero .box-text .slogan h4 > span {
  display: inline-block;
}
.sec-hero .box-text .slogan h3 > span > span, .sec-hero .box-text .slogan h4 > span > span {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.sec-hero .box-text .slogan h3 > span > span.move, .sec-hero .box-text .slogan h4 > span > span.move {
  opacity: 1;
}
.sec-hero .box-text .title {
  display: flex;
  gap: 1rem;
}
.sec-hero .box-text .title .number {
  width: var(--icon-xl);
  height: var(--icon-xl);
  color: #fff;
  background: var(--gradient-main);
  font-family: var(--font-fm-3);
  font-weight: normal;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
}
.sec-hero .box-text .title .name {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-third);
}
.sec-hero .box-text .title .name p {
  font-weight: bold;
  text-transform: uppercase;
  color: var(--color-third);
  margin-bottom: 0;
  font-size: 1.5rem;
  text-align: left;
}
@media (max-width: 1199.98px) {
  .sec-hero .box-text {
    width: 60%;
  }
  .sec-hero .box-text .slogan h3, .sec-hero .box-text .slogan h4 {
    font-size: 2rem;
  }
  .sec-hero .box-text .title .name p {
    font-size: 1.2rem;
  }
}
@media (max-width: 767.98px) {
  .sec-hero .box-text {
    width: 100% !important;
    right: auto !important;
    top: 15% !important;
    left: 0 !important;
    padding: 0 1rem;
  }
  .sec-hero .box-text .slogan h3, .sec-hero .box-text .slogan h4 {
    font-size: 1.5rem;
  }
  .sec-hero .box-text .title .name p {
    font-size: 1rem;
  }
}

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 260px;
  height: 100vh;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  padding: var(--space-md);
}
.sidebar ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.sidebar a {
  padding: 10px 14px;
  border-radius: var(--radius-md);
  transition: 0.2s;
}
.sidebar a:hover {
  background: var(--color-gray);
}

/* ============================= */
/* SECTIONS */
/* ============================= */
.sec-result-1 .object {
  position: absolute;
  left: -5%;
  top: 5%;
  width: 30%;
  z-index: -1;
  opacity: 0.3;
}

.sec-human {
  overflow: hidden;
}
.sec-human .img-svg {
  margin-bottom: -20rem;
}
@media (max-width: 991.98px) {
  .sec-human .img-svg {
    margin-bottom: -12rem;
  }
}
@media (max-width: 767.98px) {
  .sec-human .img-svg {
    margin-bottom: -5rem;
  }
}

.sec-active-network .card, .sec-active-network .chart-box {
  border-radius: 8px;
  border: 1px solid #ccc;
}
.sec-active-network .table-wrap {
  overflow: auto;
  max-height: 600px;
}
.sec-active-network table {
  width: 100%;
  min-width: 1200px;
  border-collapse: collapse;
}
.sec-active-network thead th {
  position: sticky;
  top: 0;
  background: var(--color-secondary);
  color: white;
  font-size: 13px;
  text-align: left;
  padding: 10px;
  z-index: 4;
}
.sec-active-network thead th:first-child {
  z-index: 5;
}
.sec-active-network tbody td {
  padding: 10px;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  vertical-align: top;
}
.sec-active-network tbody tr:hover td {
  background: #eef2ff;
}
.sec-active-network {
  /* Sticky first column */
}
.sec-active-network th:first-child,
.sec-active-network td:first-child {
  position: sticky;
  left: 0;
  width: 50px; /* ⚠️ bắt buộc có width */
  min-width: 50px;
  background: #fff; /* ⚠️ QUAN TRỌNG */
  z-index: 3; /* nằm trên */
  text-align: center;
}
.sec-active-network th:first-child {
  background: var(--color-secondary);
}
.sec-active-network .bg-press td {
  background: #fbf7f1;
}
.sec-active-network {
  /* Badge */
}
.sec-active-network .badge {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
}
.sec-active-network .badge-stop {
  background: #fee2e2;
  color: #b91c1c;
}
.sec-active-network .badge-active {
  background: #dcfce7;
  color: #166534;
}

.download {
  background: linear-gradient(135deg, #0d6efd, #3d8bfd);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.sec-environment .bg-sharp {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.sec-environment .item-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
}
.sec-environment .item-circle:after {
  content: "";
  display: block;
  padding-top: 100%;
}
.sec-environment .item-circle:hover {
  z-index: 5 !important;
}
.sec-environment .item-circle:hover .item-circle__inner .f-body {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.sec-environment .item-circle__inner {
  position: absolute;
  width: 87%;
  height: 87%;
  border-radius: 50%;
  overflow: hidden;
}
.sec-environment .item-circle__inner .bg {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.sec-environment .item-circle__inner .f-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  background-color: var(--color-white);
  padding: 14%;
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.sec-environment .item-circle__inner .f-body h3 {
  font-size: 1.1875rem;
  color: inherit;
  margin-bottom: 0.3125rem;
  color: var(--color-secondary);
}
.sec-environment .item-circle__inner .f-body p {
  margin-bottom: 0.5rem;
}
.sec-environment .item-circle__inner .f-body ul {
  margin-bottom: 0.5rem;
}
.sec-environment .item-circle__inner .f-body .fix-scroll {
  max-height: 60%;
  overflow: hidden;
  overflow-y: auto;
  padding-right: 0.3125rem;
  margin-right: -0.3125rem;
}
.sec-environment .item-circle__inner .f-body .fix-scroll::-webkit-scrollbar {
  width: 0.25rem;
  border-radius: 0.3125rem;
}
.sec-environment .item-circle__inner .f-body .fix-scroll::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 0.3125rem;
}
.sec-environment .item-circle__inner .f-body .fix-scroll::-webkit-scrollbar-thumb {
  background: rgba(14, 99, 175, 0.4);
  border-radius: 0.3125rem;
}
.sec-environment .item-circle__inner .f-body .fix-scroll::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-primary);
}
.sec-environment .item-pc {
  position: relative;
}
.sec-environment .item-pc img {
  width: 100%;
}
.sec-environment .item-pc .item-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  left: 0;
}
.sec-environment .item-pc .item-panel .panel {
  position: relative;
}
.sec-environment .item-pc .item-panel .panel:not(.show) {
  display: none;
}
.sec-environment .item-pc .item-panel .panel .item-circle {
  width: 34.5%;
}
.sec-environment .item-pc .item-panel .panel .item-circle-2 {
  position: absolute;
  top: 0;
  left: 21.5%;
  z-index: 2;
}
.sec-environment .item-pc .item-panel .panel .item-circle-3 {
  position: absolute;
  top: 0;
  left: 44%;
  z-index: 1;
}
.sec-environment .item-pc .item-panel .panel .item-circle-4 {
  position: absolute;
  top: 0;
  left: 65.5%;
  z-index: 1;
}
.sec-environment .item-pc .item-panel .panel .item-circle-1 {
  z-index: 3;
}
.sec-environment .item-pc .item-panel .panel.show {
  animation: fadeIn 0.3s ease;
}
.sec-environment .item-pc.fix-3 .item-panel .panel .item-circle-1 {
  z-index: 1;
}
.sec-environment .item-pc.fix-3 .item-panel .panel .item-circle-2 {
  z-index: 2;
}
.sec-environment .item-mb__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 1.875rem;
}
.sec-environment .item-mb__nav a {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  line-height: 1.2;
  padding: 0 0.5625rem;
  opacity: 0.5;
}
.sec-environment .item-mb__nav a p {
  margin: 0;
  padding-top: 0.3125rem;
}
.sec-environment .item-mb__nav a.active {
  opacity: 1;
}
.sec-environment .item-mb__panel .panel:not(.show) {
  display: none;
}
.sec-environment .item-mb__panel .panel.show {
  animation: fadeIn 0.3s ease;
}
.sec-environment .item-mb__panel .item-circle__inner {
  width: 100%;
  height: 100%;
}
.sec-environment .item-mb__panel .item-circle__inner .f-body {
  font-size: 0.75rem;
}
.sec-environment .item-mb__panel .item-circle__inner .f-body h3 {
  font-size: 0.875rem;
}
.sec-environment .item-mb__panel .owl-dots {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec-environment .item-mb__panel .owl-dots .owl-dot {
  margin: 0;
  padding: 0;
  width: 1.875rem;
  border-radius: 0;
  height: 0.1875rem;
  background-color: var(--color-gray);
}
.sec-environment .item-mb__panel .owl-dots .owl-dot.active {
  background-color: var(--color-primary);
}
.sec-environment .item-foot {
  margin-top: 3.75rem;
}

@media (min-width: 992px) {
  .sec-environment .item-pc:not(.fix) .item-circle.active {
    z-index: 5 !important;
  }
  .sec-environment .item-pc:not(.fix) .item-circle.active .item-circle__inner .f-body {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .sec-environment .item-foot {
    margin-top: 5rem;
  }
}
@media (min-width: 1500px) {
  .sec-environment .item-pc .item-circle__nav li a {
    font-size: 1.5625rem;
  }
  .sec-environment .item-foot {
    margin-top: 7.5rem;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .sec-environment .item-circle__inner .f-body {
    font-size: 0.6875rem;
  }
  .sec-environment .item-circle__inner .f-body h3 {
    font-size: 0.8125rem;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .sec-environment .item-circle__inner .f-body {
    font-size: 0.75rem;
  }
  .sec-environment .item-circle__inner .f-body h3 {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .sec-environment .item-pc .item-circle__nav li a {
    font-size: 1.375rem;
  }
}
.sec-relationship {
  overflow: hidden;
}
.sec-relationship .bg {
  top: 0;
  bottom: auto;
  height: auto;
  opacity: 0.5;
}

.sec-relationship-a {
  margin-right: -1.5625rem;
  border-top: 1px solid var(--color-third);
  position: relative;
  margin-top: 1.875rem;
}

@media (max-width: 767.98px) {
  .sec-relationship-a {
    margin-left: -1.5625rem;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}
@media (min-width: 768px) {
  .sec-relationship-a {
    margin-right: calc(-3vw - 0.9375rem);
    margin-top: 4.375rem;
  }
}
@media (min-width: 992px) {
  .sec-relationship-a {
    margin-right: calc(-4vw - 0.9375rem);
    margin-top: 5.9375rem;
  }
}
@media (min-width: 1200px) {
  .sec-relationship-a {
    margin-right: calc(-11vw - 1.5rem);
  }
}
.sec-relationship-a {
  margin-right: -1.5625rem;
  position: relative;
}

@media (max-width: 767.98px) {
  .sec-relationship-a {
    margin-left: -1.5625rem;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}
@media (min-width: 768px) {
  .sec-relationship-a {
    margin-right: calc(-3vw - 0.9375rem);
  }
}
@media (min-width: 992px) {
  .sec-relationship-a {
    margin-right: calc(-4vw - 0.9375rem);
  }
}
@media (min-width: 1200px) {
  .sec-relationship-a {
    margin-right: calc(-11vw - 1.5rem);
  }
}
.sec-relationship-a .owl-nav {
  position: absolute;
  top: -0.625rem;
  left: 0;
  transform: translateY(-100%);
}

.sec-relationship-a .owl-nav .owl-prev, .sec-relationship-a .owl-nav .owl-next {
  background-color: transparent;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 1.5625rem;
  color: var(--color-secondary);
  line-height: 1;
}

.sec-relationship-a .owl-nav .owl-prev.disabled, .sec-relationship-a .owl-nav .owl-next.disabled {
  opacity: 0.6;
}

.sec-relationship-a .owl-nav .owl-prev {
  margin-right: 0.625rem;
}

@media (max-width: 767.98px) {
  .sec-relationship-a .owl-stage-outer {
    overflow: visible;
  }
}
.sec-relationship-a .item {
  position: relative;
}

@media (min-width: 768px) {
  .sec-relationship-a .item {
    width: 55vw;
  }
}
@media (min-width: 992px) {
  .sec-relationship-a .item {
    width: 40vw;
  }
}
@media (min-width: 1200px) {
  .sec-relationship-a .item {
    width: 30vw;
  }
}
@media (min-width: 1500px) {
  .sec-relationship-a .item {
    width: 23vw;
  }
}
.sec-relationship-a .item:after {
  content: "";
  display: block;
  padding-top: 80%;
}

@media (min-width: 768px) {
  .sec-relationship-a .item:after {
    padding-top: 98%;
  }
}
@media (min-width: 1200px) {
  .sec-relationship-a .item:after {
    padding-top: 105%;
  }
}
@media (min-width: 1500px) {
  .sec-relationship-a .item:after {
    padding-top: 109%;
  }
}
.sec-relationship-a .item__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.75rem 0;
  border-right: 1px solid var(--color-third);
}

.sec-relationship-a .item__inner .f-body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .sec-relationship-a .item__inner .f-body {
    transform: translateY(8.75rem);
    transition: all 0.3s ease;
  }
  .sec-relationship-a .item__inner .f-body .f-body__text {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .sec-relationship-a .item__inner:hover .f-body {
    transform: translateY(0);
  }
  .sec-relationship-a .item__inner:hover .f-body .f-body__text {
    opacity: 1;
    visibility: visible;
  }
}
.sec-relationship-a .item__inner h4 {
  font-size: 1.75rem;
  color: var(--color-third);
  font-weight: 700;
  letter-spacing: -1px;
  max-width: 90%;
}

.sec-relationship-a .item__inner .f-body__text {
  position: relative;
  padding-right: 0.3125rem;
  padding-top: 0.9375rem;
  display: flex;
  flex-direction: column;
  height: calc(100% - 50px);
}

@media (min-width: 768px) {
  .sec-relationship-a .item__inner .f-body__text {
    font-size: 0.875rem;
  }
}
.sec-relationship-a .item__inner .f-body__text .fix-scroll {
  margin: 0;
  padding-right: 1.25rem;
  overflow: hidden;
  overflow-y: auto;
}

.sec-relationship-a .item__inner .f-body__text .fix-scroll::-webkit-scrollbar {
  width: 0.3125rem;
  border-radius: 0.3125rem;
}

.sec-relationship-a .item__inner .f-body__text .fix-scroll::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 0.3125rem;
}

.sec-relationship-a .item__inner .f-body__text .fix-scroll::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  opacity: 0.6;
  border-radius: 0.3125rem;
}

.sec-relationship-a .item__inner .f-body__text .fix-scroll::-webkit-scrollbar-thumb:hover {
  background-color: #fff;
}

@media (min-width: 768px) {
  .sec-relationship-a .item__inner {
    padding: 2.1875rem 0;
  }
  .sec-relationship-a .item__inner h4 {
    font-size: 1.875rem;
  }
}
@media (min-width: 992px) {
  .sec-relationship-a .item__inner {
    padding: 2.5rem 0;
  }
  .sec-relationship-a .item__inner h4 {
    font-size: 2rem;
  }
}
@media (min-width: 1500px) {
  .sec-relationship-a .item__inner {
    padding: 3.4375rem 0;
  }
  .sec-relationship-a .item__inner h4 {
    font-size: 2rem;
  }
}
.sec-esg {
  padding: 20rem 0;
}

.sec-bctcChart__tab .tab-header {
  position: relative;
  overflow: hidden;
  margin-bottom: 35px;
}

@media (max-width: 991.98px) {
  .sec-bctcChart__tab .tab-header {
    margin-bottom: 10px;
  }
}
@media (max-width: 767.98px) {
  .sec-bctcChart__tab .tab-header {
    margin-bottom: -1px;
  }
}
.sec-bctcChart__tab .tab-header .btn-link {
  font-family: "SF Pro Text", sans-serif;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-primary);
}

.sec-bctcChart__tab .tab-header .btn-link svg {
  vertical-align: 1px;
}

.sec-bctcChart__tab .tab-header .btn-link svg path {
  fill: var(--color-primary);
  stroke: var(--color-primary);
}

.sec-bctcChart__tab .tab-header .btn-link:hover {
  color: var(--color-secondary);
}

.sec-bctcChart__tab .tab-header .btn-link:hover svg path {
  fill: var(--color-secondary);
  stroke: var(--color-secondary);
}

@media (max-width: 991.98px) {
  .sec-bctcChart__tab .tab-header .btn-link {
    float: right;
    margin-top: 15px;
  }
}
@media (min-width: 992px) {
  .sec-bctcChart__tab .tab-header .btn-link {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}
.sec-bctcChart__tab .nav-fix-mobile {
  position: relative;
}

@media (min-width: 992px) {
  .sec-bctcChart__tab .nav-fix-mobile {
    padding-right: 210px;
  }
}
.sec-bctcChart__tab .nav-fix-mobile:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  background-color: #E6E6E6;
}

.sec-bctcChart__tab .nav-fix-mobile .nav-tabs {
  max-width: 100%;
  white-space: nowrap;
  overflow-x: auto;
  flex-wrap: nowrap;
}

.sec-bctcChart__tab .nav-fix-mobile .nav-tabs::-webkit-scrollbar {
  display: none;
}

.sec-bctcChart__tab .nav-fix-mobile .nav-tabs .nav-item {
  display: inline-block;
}

.sec-bctcChart__tab .nav-fix-mobile .nav-tabs .nav-item:not(:last-child) {
  margin-right: 20px;
}

.sec-bctcChart__tab .nav-fix-mobile .nav-tabs .nav-item a {
  font-family: "SF Pro Display", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid transparent;
  border-top: 0;
  color: #696969;
  padding: 10px 0;
  padding-right: 10px;
}

.sec-bctcChart__tab .nav-fix-mobile .nav-tabs .nav-item a:hover {
  color: var(--color-primary);
}

.sec-bctcChart__tab .nav-fix-mobile .nav-tabs .nav-item a.active {
  border-color: var(--color-primary);
  background: var(--gradient-main);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
  .sec-bctcChart__tab .nav-fix-mobile .nav-tabs .nav-item a {
    font-size: 18px;
  }
}
@media (min-width: 576px) and (max-width: 1199.98px) {
  .sec-bctcChart__responsive {
    overflow: hidden;
    overflow-x: auto;
  }
  .sec-bctcChart__responsive .sec-bctcChart__table {
    width: 1200px;
  }
}
.sec-bctcChart__table {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.1px;
  color: #000000;
}

.sec-bctcChart__table .item__title__1-fix {
  color: var(--color-primary);
  font-weight: bold;
  text-transform: uppercase;
}

.sec-bctcChart__table .item-header {
  background: #F5F5F5;
  font-weight: normal;
  line-height: 1.2;
}

.sec-bctcChart__table .item-header .td {
  display: inline-block;
  font-family: "SF Pro Display", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  color: #7D7D7D;
}

.sec-bctcChart__table .tr {
  display: flex;
  flex-wrap: wrap;
}

.sec-bctcChart__table .td-1,
.sec-bctcChart__table .td-2,
.sec-bctcChart__table .td-3,
.sec-bctcChart__table .td-4,
.sec-bctcChart__table .td-5 {
  padding: 15px 15px 15px 20px;
}

.sec-bctcChart__table .td-1 {
  width: 40%;
}

.sec-bctcChart__table .td-2 {
  width: 10%;
}

.sec-bctcChart__table .td-3 {
  width: 10%;
}

.sec-bctcChart__table .td-4,
.sec-bctcChart__table .td-5 {
  width: 20%;
}

.sec-bctcChart__table .f-label {
  display: none;
}

.sec-bctcChart__table .accordion__header {
  font-weight: 600;
}

@media (min-width: 768px) {
  .sec-bctcChart__table .accordion__header {
    color: var(--color-secondary);
  }
}
.sec-bctcChart__table .accordion__title {
  font-family: inherit;
  font-size: inherit;
  color: var(--color-text);
  font-weight: 400;
  padding: 0;
  display: block;
}

.sec-bctcChart__table .accordion__title:after {
  display: none;
}

.sec-bctcChart__table .accordion__title[data-bs-toggle=collapse] .td-1 b {
  position: relative;
}

.sec-bctcChart__table .accordion__title[data-bs-toggle=collapse] .td-1 b:before {
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translate(-100%, -50%);
}

.sec-bctcChart__table .accordion__title[data-bs-toggle=collapse][aria-expanded=true] .td-1 b:before {
  content: "\f0d8";
}

.sec-bctcChart__table .tr-list .tr {
  border-top: 1px solid #E6E6E6;
}

.sec-bctcChart__table .accordion__item .accordion__item:last-child {
  border-bottom: 0;
}

@media (min-width: 768px) {
  .sec-bctcChart__table .accordion__item .accordion__item .accordion__header {
    color: #000;
  }
  .sec-bctcChart__table .accordion__item .accordion__item .accordion__header .td-1 {
    padding-left: 50px;
  }
  .sec-bctcChart__table .accordion__item > .accordion__content .td-1 {
    padding-left: 30px;
  }
  .sec-bctcChart__table .accordion__item .accordion__item .accordion__content .td-1 {
    padding-left: 60px;
  }
}
@media (min-width: 768px) {
  .sec-bctcChart__table .accordion__item .accordion__content .tr-fix-2 .td {
    font-size: 15px;
  }
  .sec-bctcChart__table .accordion__item .accordion__content .tr-fix-2 .td-1 {
    padding-left: 40px;
  }
}
.sec-bctcChart__table .accordion__item .accordion__item .accordion__content .tr-fix-2 .td-1 {
  padding-left: 80px;
}

.sec-bctcChart__table #accordion-kqkinhdoanh .accordion__title {
  cursor: initial;
}

.sec-bctcChart__table #accordion-kqkinhdoanh .accordion__item .accordion__header {
  padding-left: 0;
}

.sec-bctcChart__table .item-total {
  color: var(--color-primary);
  font-weight: bold;
  border-bottom: 1px solid #E6E6E6;
}

.sec-bctcChart__table .item-total .td-1 {
  text-transform: uppercase;
  padding-left: 5px;
}

@media (max-width: 767.98px) {
  .sec-bctcChart__table .item-total .tr {
    padding: 10px 20px;
  }
  .sec-bctcChart__table .item-total .td-1 {
    margin-bottom: 10px;
  }
  .sec-bctcChart__table .item-total .f-label {
    color: #A8A8A8;
    font-weight: 500;
  }
}
@media (max-width: 767.98px) {
  .sec-bctcChart__table {
    font-size: 12px;
    line-height: 1.3;
  }
  .sec-bctcChart__table .f-label {
    display: block;
  }
  .sec-bctcChart__table .item-header {
    display: none;
  }
  .sec-bctcChart__table .tr {
    flex-direction: column;
  }
  .sec-bctcChart__table .tr .td-1,
  .sec-bctcChart__table .tr .td-2,
  .sec-bctcChart__table .tr .td-3,
  .sec-bctcChart__table .tr .td-4,
  .sec-bctcChart__table .tr .td-5 {
    display: flex;
    width: 100%;
    padding: 6px 0;
  }
  .sec-bctcChart__table .tr .td-1 .f-label,
  .sec-bctcChart__table .tr .td-2 .f-label,
  .sec-bctcChart__table .tr .td-3 .f-label,
  .sec-bctcChart__table .tr .td-4 .f-label,
  .sec-bctcChart__table .tr .td-5 .f-label {
    width: 45%;
  }
  .sec-bctcChart__table .accordion__item .accordion__header {
    padding-left: 30px;
    color: var(--color-secondary);
  }
  .sec-bctcChart__table .accordion__item .accordion__header .f-label {
    color: #A8A8A8;
  }
  .sec-bctcChart__table .accordion__item .accordion__header .td-2 {
    margin-top: 10px;
  }
  .sec-bctcChart__table .accordion__item .accordion__title[aria-expanded=true] .tr-sub .td-2,
  .sec-bctcChart__table .accordion__item .accordion__title[aria-expanded=true] .tr-sub .td-3,
  .sec-bctcChart__table .accordion__item .accordion__title[aria-expanded=true] .tr-sub .td-4 {
    display: flex;
  }
  .sec-bctcChart__table .accordion__item .accordion__item .accordion__header {
    padding-left: 45px;
    color: #2E2E2E;
  }
  .sec-bctcChart__table .accordion__item .accordion__item .accordion__header .f-label {
    color: #A8A8A8;
    font-weight: 500;
  }
  .sec-bctcChart__table .accordion__item .accordion__item .accordion__header .tr-sub-1 .td-2,
  .sec-bctcChart__table .accordion__item .accordion__item .accordion__header .tr-sub-1 .td-3,
  .sec-bctcChart__table .accordion__item .accordion__item .accordion__header .tr-sub-1 .td-4 {
    display: none;
  }
  .sec-bctcChart__table .accordion__item .accordion__item .accordion__title[aria-expanded=true] .tr-sub-1 .td-2,
  .sec-bctcChart__table .accordion__item .accordion__item .accordion__title[aria-expanded=true] .tr-sub-1 .td-3,
  .sec-bctcChart__table .accordion__item .accordion__item .accordion__title[aria-expanded=true] .tr-sub-1 .td-4 {
    display: flex;
  }
  .sec-bctcChart__table .accordion__item .tr-list .tr {
    padding: 10px 0;
    padding-left: 45px;
    font-weight: 600;
  }
  .sec-bctcChart__table .accordion__item .accordion__item .accordion__content .tr-fix-2 .td-1 {
    padding-left: 0;
  }
  .sec-bctcChart__table .accordion__item .tr-list .tr.tr-fix-2 {
    padding-left: 60px;
  }
  .sec-bctcChart__table .accordion__item .tr-list .tr .f-label {
    color: #A8A8A8;
    font-weight: 500;
  }
  .sec-bctcChart__table .accordion__item .tr-list .tr .td-1 {
    margin-bottom: 10px;
  }
  .sec-bctcChart__table .accordion__title {
    padding: 13px 0;
  }
}
@media (min-width: 768px) {
  .sec-bctcChart__table .td-2,
  .sec-bctcChart__table .td-3 {
    text-align: center;
  }
  .sec-bctcChart__table .td-4,
  .sec-bctcChart__table .td-5 {
    text-align: right;
  }
  .sec-bctcChart__table .tr-fix-2 {
    color: #6A6A6A;
  }
}
@media (min-width: 768px) {
  #bctcChart-tab-1 .sec-bctcChart__table .td-3,
  #bctcChart-tab-1 .sec-bctcChart__table .td-4,
  #bctcChart-tab-3 .sec-bctcChart__table .td-3,
  #bctcChart-tab-3 .sec-bctcChart__table .td-4 {
    width: 25%;
    text-align: right;
  }
}
#bctcChart-tab-1 .sec-bctcChart__table .item-title-fix .tr .td {
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
  color: var(--color-secondary);
  padding-top: 25px;
  padding-bottom: 0;
  font-weight: bold;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  #bctcChart-tab-1 .sec-bctcChart__table .item-title-fix .tr .td {
    font-size: 1.125rem;
  }
}
@media (min-width: 1500px) {
  #bctcChart-tab-1 .sec-bctcChart__table .item-title-fix .tr .td {
    font-size: 1.25rem;
  }
}
#bctcChart-tab-2 .sec-bctcChart__table .item-total .td-1 {
  text-transform: initial;
}

@media (min-width: 768px) {
  #bctcChart-tab-2 .sec-bctcChart__table .td-1 {
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .sec-bctcChart__tab .nav-fix-mobile .nav-tabs .nav-item a br {
    display: block;
  }
  .sec-bctcChart__responsive .item__title__1 {
    padding: 13px 0;
    margin-bottom: 0;
    font-size: 1rem;
  }
  .no-detail .td-2, .no-detail .td-3, .no-detail .td-4 {
    display: none !important;
  }
}
.sec-governance {
  padding: 0;
}
.sec-governance .top .box-text {
  position: relative;
  padding: 10rem var(--space-xl) 15rem;
  overflow: hidden;
  clip-path: polygon(0% 0%, 100% 0, 100% 80%, 48% 100%, 0 80%);
}
.sec-governance .top .box-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #faf2de;
  mask-image: linear-gradient(to bottom, transparent, black 90%);
  z-index: 0;
}
.sec-governance .top .box-text .lead {
  position: relative;
}
.sec-governance .top .box-text .object {
  position: absolute;
  left: -20%;
  top: -40%;
  width: 140%;
  opacity: 0.5;
  mix-blend-mode: screen;
  pointer-events: none;
}
.sec-governance .top .box-text .object-1 {
  position: absolute;
  bottom: -5%;
  left: 20%;
  width: 60%;
}
@media (max-width: 991.98px) {
  .sec-governance .top .box-text {
    padding: 5rem var(--space-xl) 10rem;
  }
  .sec-governance .top .box-text .object-1 {
    bottom: 0;
  }
}

.sec-highlight {
  padding-bottom: 0;
}
.sec-highlight .object {
  mask-image: linear-gradient(to bottom, transparent, black 90%);
}
.sec-highlight .bg {
  position: relative;
}

.sec-info .box-text {
  background: var(--gradient-1);
  border-top-left-radius: 3rem;
  border-bottom-left-radius: 3rem;
  color: white;
  padding: 1rem 2rem;
  font-size: var(--fs-sm);
}
.sec-info .box-text li {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid white;
  padding: 0.5rem 0;
}
.sec-info .box-text li:last-child {
  border: none;
}
.sec-info .box-text li .name {
  width: 30%;
}
.sec-info .box-text li .text {
  width: 70%;
}

.modal-leadership .modal-body {
  padding: 0;
}
.modal-leadership .item-leadership .img {
  width: 100%;
  border-radius: 0;
  border-bottom: 6px solid var(--color-secondary);
}
.modal-leadership .item-leadership .img::after {
  display: none;
}
.modal-leadership .item-leadership .img .bg lottie-player {
  height: 260%;
}
.modal-leadership .item-leadership .img .inner {
  position: relative;
  padding-top: 3rem;
  border-radius: 0;
}
.modal-leadership .item-leadership .img .inner img {
  max-height: 300px;
}
.modal-leadership .item-leadership .text {
  text-align: center;
  padding: 0 1.5rem 1.5rem;
}
.modal-leadership .item-leadership .text .title {
  width: 100%;
  padding: 1.5rem 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.modal-leadership .item-leadership .text .position {
  text-align: center;
}
@media (max-width: 767.98px) {
  .modal-leadership .item-leadership .img .bg lottie-player {
    height: 120%;
  }
}
@media (min-width: 1400px) {
  .modal-leadership .item-leadership .img {
    width: 100%;
    border-radius: 0;
    border-bottom: 6px solid var(--color-secondary);
  }
  .modal-leadership .item-leadership .img::after {
    display: none;
  }
  .modal-leadership .item-leadership .img .bg lottie-player {
    height: 260%;
  }
  .modal-leadership .item-leadership .img .inner {
    position: relative;
    padding-top: 3rem;
    border-radius: 0;
  }
  .modal-leadership .item-leadership .img .inner img {
    max-height: 300px;
  }
  .modal-leadership .item-leadership .text .title {
    padding: 1.75rem 0;
  }
}

.sec-message {
  overflow: hidden;
}
.sec-message > .object {
  position: absolute;
  right: -5%;
  top: -5%;
  width: 50%;
  opacity: 0.5;
}
.sec-message .bg {
  opacity: 0.34;
}
.sec-message .box-img {
  position: relative;
}
.sec-message .box-img .object {
  bottom: 0%;
  left: -20%;
  width: 140%;
  position: absolute;
  mask-image: linear-gradient(to top, transparent, black 70%);
}
.sec-message .box-img img {
  position: relative;
  z-index: 1;
}

.sec-network {
  background: var(--gradient-2);
}
.sec-network .item-number {
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.sec-network .item-number h3 {
  font-size: 2rem;
  color: var(--color-secondary);
}
.sec-network .item-number .title {
  color: white;
  border-bottom: 1px solid var(--color-secondary);
  padding-bottom: var(--space-sm);
  width: 100%;
  margin-bottom: 1rem;
  font-weight: 300;
}
.sec-network .item-number .des {
  text-align: center;
  color: white;
  font-weight: 600;
}
.sec-network .img-pattern .bg {
  mix-blend-mode: overlay;
}
.sec-network .box-img .img-pattern:nth-child(1) {
  width: 50%;
}
.sec-network .box-img .img-pattern:nth-child(2) {
  width: 60%;
  margin-left: auto;
  margin-top: -5%;
  margin-right: -5%;
}
.sec-network .box-img .img-pattern:nth-child(3) {
  width: 70%;
  margin-top: -5%;
}
.sec-network .box-img .img-pattern .inner {
  border-radius: 0;
}
@media (max-width: 1199.98px) {
  .sec-network .item-number h3, .sec-network .item-number .num {
    font-size: 3rem;
  }
  .sec-network .item-number .title {
    font-size: var(--fs-md);
  }
  .sec-network .item-number .des {
    font-size: var(--fs-sm);
  }
}
@media (max-width: 767.98px) {
  .sec-network .box-img .img-pattern {
    width: 100% !important;
    margin-top: 0 !important;
    margin-right: 0 !important;
  }
}

.sec-report-business .bg, .sec-solution .bg {
  bottom: 0;
  top: auto;
  height: auto;
}
.sec-report-business .table tr th, .sec-solution .table tr th {
  text-align: right;
}
.sec-report-business .table tr th:nth-child(1), .sec-solution .table tr th:nth-child(1) {
  text-align: left;
}
.sec-report-business .table tr td:nth-child(2), .sec-report-business .table tr td:nth-child(4), .sec-solution .table tr td:nth-child(2), .sec-solution .table tr td:nth-child(4) {
  background: #faf2de;
  color: black;
  text-align: right;
}
.sec-report-business .table tr td:nth-child(3), .sec-solution .table tr td:nth-child(3) {
  color: black;
  text-align: right;
}
.sec-report-business .table tr th:nth-child(1), .sec-report-business .table tr td:nth-child(1), .sec-solution .table tr th:nth-child(1), .sec-solution .table tr td:nth-child(1) {
  width: 40%;
}

.sec-report-result .box-img {
  position: relative;
}
.sec-report-result .box-img .inner {
  text-align: center;
}
.sec-report-result .box-img .inner img {
  display: inline-block;
  max-width: 80%;
}

.sec-timeline .timeline .timeline-list-wrapper {
  margin-bottom: 1.5rem;
  position: relative;
  height: 100px;
}
.sec-timeline .timeline .timeline-list-wrapper .timeline-list {
  width: 86%;
  height: 150px;
  margin: 0 auto;
}
.sec-timeline .timeline .timeline-list-wrapper .timeline-list .swiper-wrapper {
  padding: 0;
}
.sec-timeline .timeline .timeline-list-wrapper .timeline-list .timeline-item {
  height: 100px;
  display: flex;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
.sec-timeline .timeline .timeline-list-wrapper .timeline-list .timeline-item span {
  float: left;
  height: 3.5rem;
  display: flex;
  cursor: pointer;
  color: #bdbdbd;
  text-align: center;
  flex-direction: column-reverse;
  justify-content: end;
  font-style: normal;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -0.03em;
}
.sec-timeline .timeline .timeline-list-wrapper .timeline-list .timeline-item span::before {
  bottom: -2px;
  content: "\f192";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #bdbdbd;
  font-size: 1.25rem;
  position: absolute;
  z-index: 2;
  left: calc(50% - 11px);
}
.sec-timeline .timeline .timeline-list-wrapper .timeline-list .timeline-item span::after {
  bottom: 0;
  content: "";
  width: 1.75rem;
  height: 1.75rem;
  position: absolute;
  z-index: 1;
  left: calc(50% - 15px);
  background-color: #fff;
  border-radius: 50%;
}
.sec-timeline .timeline .timeline-list-wrapper .timeline-list .timeline-item.current-timeline span {
  color: var(--color-primary);
  padding: 0.5rem 2rem;
  border-radius: 2rem;
  font-style: normal;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.5rem;
  letter-spacing: -0.04em;
  background: linear-gradient(to right, rgba(242, 213, 144, 0.3058823529), rgba(187, 137, 51, 0.3843137255));
}
.sec-timeline .timeline .timeline-list-wrapper .timeline-list .timeline-item.current-timeline span:before {
  color: var(--color-secondary);
  bottom: -6px;
}
.sec-timeline .timeline .timeline-list-wrapper .timeline-nav .timeline-nav__btn {
  top: 0.75rem;
  outline: 0;
  z-index: 1;
  width: 3.75rem;
  border: none;
  height: 3.75rem;
  position: absolute;
  color: rgba(0, 0, 0, 0.4);
  border-radius: 30px;
  display: inline-block;
  background: rgba(0, 0, 0, 0.05);
}
.sec-timeline .timeline .timeline-list-wrapper .timeline-nav .timeline-nav__btn.disabled:after {
  color: rgba(0, 0, 0, 0.4) !important;
}
.sec-timeline .timeline .timeline-list-wrapper .timeline-nav .timeline-nav__prev {
  left: 0;
}
.sec-timeline .timeline .timeline-list-wrapper .timeline-nav .timeline-nav__prev::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f060";
  color: #02160e;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec-timeline .timeline .timeline-list-wrapper .timeline-nav .timeline-nav__next {
  right: 0;
}
.sec-timeline .timeline .timeline-list-wrapper .timeline-nav .timeline-nav__next::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f061";
  color: #02160e;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec-timeline .timeline .timeline-list-wrapper::after {
  width: 100%;
  content: "";
  border-bottom: 1px var(--color-secondary) dotted;
  position: absolute;
  bottom: 0.875rem;
}
.sec-timeline .timeline .timeline-item-content-wrapper {
  padding: 2.25rem;
  min-height: 15rem;
  position: relative;
  border: 1px dotted var(--color-secondary);
  overflow: hidden;
}
.sec-timeline .timeline .timeline-item-content-wrapper .timeline-item-content-list {
  position: relative;
}
.sec-timeline .timeline .timeline-item-content-wrapper .timeline-item-content-list .timeline-item-content {
  display: none;
}

.sec-vission .content-vission {
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.sec-vission .box-img img {
  height: 100%;
  object-fit: cover;
}
.sec-vission .box-text {
  background: var(--gradient-1);
  color: white;
  padding: 1rem 2rem;
}
.sec-vission .box-text p {
  color: white;
}
@media (max-width: 767.98px) {
  .sec-vission .box-text {
    padding: 1rem;
  }
}

.sec-target {
  padding-bottom: 20rem;
}
.sec-target .bg {
  height: 50%;
}

.sec-share {
  padding-bottom: 25rem;
}
.sec-share .bg {
  height: 60%;
  bottom: 0;
  top: auto;
}
.sec-share .box-text {
  background: var(--gradient-3);
  border-top-right-radius: var(--radius-xl);
  border-bottom-right-radius: var(--radius-xl);
  padding: var(--space-xl);
  font-weight: 500;
  box-shadow: var(--shadow-md);
}
.sec-share .box-text p {
  text-align: left;
}
.sec-share .box-text p:last-child {
  margin-bottom: 0;
}

.sec-partner .swiper-slide:nth-child(odd) .bg {
  transform: rotate(-180deg);
}
.sec-partner .swiper-slide:nth-child(odd) .inner {
  left: 40%;
}/*# sourceMappingURL=theme.css.map */