:root {
  --font-primary-regular: "roboto-regular";
  --font-primary-thin: "roboto-thin";
  --font-primary-light: "roboto-light";
  --font-primary-medium: "roboto-medium";
  --font-primary-semiBold: "roboto-semiBold";
  --font-primary-bold: "roboto-bold";
  --font-primary-black: "roboto-black";
  --font-monasans-regular: "mona-sans-regular";
  --font-monasans-thin: "mona-sans-thin";
  --font-monasans-light: "mona-sans-light";
  --font-monasans-medium: "mona-sans-medium";
  --font-monasans-semiBold: "mona-sans-semiBold";
  --font-monasans-bold: "mona-sans-bold";
  --font-monasans-black: "mona-sans-black";
  --White: #fff;
  --gray-9---body-text: #121212;
  --Green-green-600: #068541;
  --Green-green-500: #079247;
  --Foundation-Green-green-500: #056839;
  --Green-green-400: #39A86C;
  --Red-red-500: #D72028;
  --Red-red-200: #ED989C;
  --gray-6---subtle-text: #8C8C8C;
}

/* font */

@font-face {
  font-family: "roboto-regular";
  src: url(../font/roboto/Roboto-Regular.ttf);
}

@font-face {
  font-family: "roboto-light";
  src: url(../font/roboto/Roboto-Light.ttf);
}

@font-face {
  font-family: "roboto-medium";
  src: url(../font/roboto/Roboto-Medium.ttf);
}

@font-face {
  font-family: "roboto-semiBold";
  src: url(../font/roboto/Roboto-SemiBold.ttf);
}

@font-face {
  font-family: "roboto-bold";
  src: url(../font/roboto/Roboto-Bold.ttf);
}

@font-face {
  font-family: "roboto-black";
  src: url(../font/roboto/Roboto-Black.ttf);
}

@font-face {
  font-family: "mona-sans-regular";
  src: url(../font/mona-sans/MonaSans-Regular.ttf);
}

@font-face {
  font-family: "mona-sans-light";
  src: url(../font/mona-sans/MonaSans-Light.ttf);
}

@font-face {
  font-family: "mona-sans-medium";
  src: url(../font/mona-sans/MonaSans-Medium.ttf);
}

@font-face {
  font-family: "mona-sans-semiBold";
  src: url(../font/mona-sans/MonaSans-SemiBold.ttf);
}

@font-face {
  font-family: "mona-sans-bold";
  src: url(../font/mona-sans/MonaSans-Bold.ttf);
}

@font-face {
  font-family: "mona-sans-black";
  src: url(../font/mona-sans/MonaSans-Black.ttf);
}

label {
  font-weight: unset !important;
}

body {
  font-family: var(--font-primary-regular);
  font-size: 16px;
  line-height: 24px;
  color: var(--gray-9---body-text);
}

.text-white {
  color: var(--White) !important;
}

.text-green {
  color: var(--Green-green-500) !important;
}

.required {
  color: #F00;
}

.text-center {
  text-align: center !important;
}

a {
  text-decoration: none !important;
}

h1:not(.editor-content h1),
h2:not(.editor-content h2),
h3:not(.editor-content h3),
h4:not(.editor-content h4),
h5:not(.editor-content h5),
h6:not(.editor-content h6),
p:not(.editor-content p) {
  margin: 0;
}

p {
  text-align: justify;
}

.overlay-header {
  overflow: hidden;
}

.header-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--White);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  z-index: 999;
}

.header-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}

.header-inner .logo img {
  width: 80px;
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.header-right-first {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-search {
  position: relative;
  padding-right: 12px;
  border-right: 1px solid rgba(216, 216, 216, 0.50);
}

.popup-search {
  position: absolute;
  top: 40px;
  right: 0;
  width: max-content;
  background-color: var(--White);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.header-language {
  position: relative;
}

.header-language-current {
  display: flex;
  padding: 2px 8px 2px 2px;
  align-items: center;
  gap: 4px;
  border-radius: 62px;
  border: 1px solid var(--Green-green-500);
  cursor: pointer;
}

.header-language-current span {
  color: var(--Green-green-500);
  font-family: var(--font-primary-semiBold);
  font-size: 16px;
  font-style: normal;
  line-height: 22px;
  width: 22px;
}

.header-language-list {
  position: absolute;
  top: 32px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  width: max-content;
  border-radius: 8px;
  background: var(--White);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.10);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.header-language-list.active {
  opacity: 1;
  visibility: visible;
}

.header-language-item {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.header-language-item span {
  width: 24px;
}

.header-navigator .navigator-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-navigator .navigator-menu li {
  position: relative;
}

.header-navigator .navigator-menu li .sub-menu {
  display: flex;
  min-width: 200px;
  width: max-content;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  list-style: none;
  background: #FFF;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.header-navigator .navigator-menu li .sub-menu li a {
  padding: 4px 0;
}

.header-navigator .navigator-menu li a,
.header-navigator .navigator-menu li span {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.header-navigator .navigator-menu li span i,
.header-navigator .navigator-menu li a i {
  font-size: 12px;
}

.header-navigator .navigator-menu li .sub-menu li a,
.header-navigator .navigator-menu li a,
.header-navigator .navigator-menu li span {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-semiBold);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-bottom: 2px solid;
  border-color: transparent;
}

.header-navigator .navigator-menu li .sub-menu li a:hover,
.header-navigator .navigator-menu li.active a,
.header-navigator .navigator-menu li:hover a,
.header-navigator .navigator-menu li:hover span {
  border-color: var(--Green-green-500);
  color: var(--Green-green-500);
}

.header-navigator .navigator-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}

.main-container {
  min-height: 100vh;
  margin-top: 92px;
}

.footer-container {
  width: 100%;
  height: 379px;
  background-image: url('../img/bg-footer.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}

.footer-copyright {
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
  color: var(--White);
}

.footer-main {
  flex: 1;
  width: 100%;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  padding: 40px 0;
}

.footer-first {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 370px;
}

.footer-inner .title,
.footer-second ul li span {
  color: var(--White);
  font-family: var(--font-monasans-medium);
  font-size: 18px;
  font-style: normal;
  line-height: 26px;
  text-transform: uppercase;
}

.footer-info .desc {
  color: var(--White);
  font-size: 14px;
  line-height: 22px;
}

.footer-info-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.footer-info-item span,
.footer-info-item a {
  color: var(--White);
  font-family: var(--font-monasans-medium);
}

.footer-second ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-second ul li:has(span) {
  padding-bottom: 10px;
}

.footer-second ul li a {
  color: var(--White);
  font-family: var(--font-monasans-medium);
}

.footer-third {
  display: flex;
  width: 275px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
}

.footer-third-first {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-third-first .desc {
  color: var(--White);
  font-family: var(--font-monasans-regular);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
}

.form-send-footer {
  margin-top: -16px;
  display: flex;
  height: 48px;
  padding: 12px 8px 12px 16px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 48px;
  border: 1px solid var(--White);
}

.form-send-footer .form-control {
  border: none;
  outline: none;
  background-color: transparent;
  flex: 1;
  color: var(--White);
  font-family: var(--font-monasans-regular);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
}

.form-send-footer button {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 32px;
  background: var(--white, #FFF);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  border: none;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-social .list {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.home-box-1-inner {
  display: flex;
  width: 100%;
  padding: 32px;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  background: #FFF;
  box-shadow: 0 0 10px 0 rgba(7, 63, 146, 0.15);
  gap: 42px;
  margin-top: -60px;
  z-index: 10;
  position: relative;
}

.home-box-1-inner .item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-box-1-inner .item .number {
  color: var(--Green-green-500);
  text-align: center;
  font-family: var(--font-monasans-bold);
  font-size: 42px;
  font-style: normal;
  line-height: 46px;
}

.home-box-1-inner .item .number .until {
  font-size: 24px;
  line-height: 46px;
}

.home-box-1-inner .item .title {
  color: var(--gray-9---body-text);
  text-align: center;
  font-family: var(--font-monasans-medium);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  height: 48px;
}

.sec-64 {
  padding: 64px 0;
}

.sec-56 {
  padding: 56px 0;
}

.sec-32 {
  padding: 32px 0;
}

.home-box-2-first,
.home-box-2-second {
  display: flex;
  gap: 32px 16px;
  align-items: stretch;
  flex-wrap: wrap;
}

.home-box-2-second .main-title {
  width: 100%;
}

.home-box-2-first-right,
.home-box-2-second-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  width: 330px;
}

.home-box-2-first-right .item {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.home-box-2-first-right .item img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease-in-out;
}

.home-box-2-first-right .item:hover img {
  transform: scale(1.05);
}

.row {
  margin: 0 -8px;
}

.row>* {
  padding: 8px;
}

.home-box-2-first-left {
  width: calc(100% - 346px);
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
  border-radius: 4px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.80);
  box-shadow: 0 0 10px 0 rgba(7, 63, 146, 0.15);
}

.main-title {
  color: var(--gray-9---body-text, #121212);
  font-family: var(--font-monasans-bold);
  font-size: 30px;
  font-style: normal;
  line-height: 40px;
  padding-bottom: 8px;
  position: relative;
}

.main-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  max-width: 120px;
  height: 4px;
  background: var(--Red-red-500, #D72028);
}

.new-events-silde {
  width: 100%;
}

.new-events-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.new-event-item {
  display: flex;
  width: 100%;
  height: 156px;
  align-items: center;
  gap: 32px;
  position: relative;
}

.new-event-item:not(:last-child) {
  margin-bottom: 20px;
}

.new-event-item:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #d8d8d8;
}

.new-event-item .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 0 0;
}

.new-event-item .content .title {
  font-family: var(--font-primary-semiBold);
  font-size: 18px;
  font-style: normal;
  line-height: 26px;
  height: 52px;
  color: var(--gray-9---body-text);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease-in-out;
}

.new-event-item:hover .content .title {
  color: var(--Green-green-500);
}

.new-event-item .content .desc {
  color: var(--gray-9---body-text);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 48px;
}

.new-event-item .content .link {
  color: var(--Green-green-400);
  font-family: var(--font-primary-medium);
}

.new-event-item .img {
  width: 264px;
  border-radius: 4px;
  overflow: hidden;
  background-color: red;
}

.new-event-item .img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  background-color: red;
}

.new-event-item:hover .img img {
  transform: scale(1.05);
}

.new-event-item .time {
  display: flex;
  width: 119px;
  height: 100%;
  padding-top: 10px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  border-radius: 4px;
  background: #F6F7F8;
  overflow: hidden;
}

.new-event-item .time .month,
.new-event-item .time .year {
  color: var(--gray-9---body-text);
  font-family: var(--font-monasans-semiBold);
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
}

.new-event-item .time .day {
  color: var(--gray-9---body-text);
  font-family: var(--font-monasans-bold);
  font-size: 48px;
  font-style: normal;
  line-height: 48px;
}

.new-event-item .time .hour {
  display: flex;
  padding: 4px 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  background: var(--Green-green-500);
  color: var(--White);
  font-family: var(--font-monasans-bold);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  text-transform: uppercase;
}

.new-events-silde .owl-dots {
  width: 100%;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.new-events-silde .owl-dot span {
  display: none !important;
}

.new-events-silde .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 29px;
  background: var(--Red-red-200);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.new-events-silde .owl-dot.active {
  width: 28px;
  background-color: var(--Red-red-500);
}

.home-box-2-second {
  margin-top: 56px;
}

.news-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.news-item .img {
  width: 100%;
  aspect-ratio: 330/189;
  border-radius: 4px;
  overflow: hidden;
}

.news-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.news-item:hover .img img {
  transform: scale(1.05);
}

.news-item .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.news-item .content .title {
  overflow: hidden;
  color: var(--gray-9---body-text);
  text-overflow: ellipsis;
  font-family: var(--font-monasans-semiBold);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all;
}

.news-item:hover .content .title {
  color: var(--Green-green-500);
}

.news-item .content .time {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.news-item .content .time span {
  color: var(--gray-6---subtle-text);
}


.home-box-2-second-left {
  width: calc(100% - 346px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.home-box-2-second-left .first {
  width: 100%;
}

.news-item-type-1 {
  width: 100%;
  height: 488px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.news-item-type-1 .img,
.news-item-type-1 .img img {
  width: 100%;
  height: 100%;
}

.news-item-type-1 .content {
  display: flex;
  width: 100%;
  padding: 88px 24px 24px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(180deg, rgba(10, 16, 13, 0.00) 0%, rgba(10, 16, 13, 0.90) 64.37%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
}

.news-item-type-1 .content .title {
  color: var(--White);
  font-family: var(--font-primary-semiBold);
  font-size: 24px;
  font-style: normal;
  line-height: 32px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease-in-out;
}

.news-item-type-1:hover .content .title {
  color: var(--Green-green-500);
}

.news-item-type-1 .content .desc {
  color: var(--White);
  opacity: 0.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 48px;
}

.home-box-2-second-left .second {
  display: flex;
  align-items: flex-start;
  gap: 16px 30px;
  flex-wrap: wrap;
}

.home-box-2-second-left .second .news-item {
  width: calc(50% - 16px);
}

.news-type-2 {
  flex-direction: row;
}

.news-type-2 .img {
  width: 178px;
}

.news-type-2 .content {
  flex: 1;
}

.second .news-type-2 {
  padding-bottom: 16px;
  border-bottom: 1px dashed #d8d8d8;
}

.news-type-2:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news-type-2.custom-last {
  border-bottom: none;
  padding-bottom: 0;
}

.bg-second {
  background: #F3F3F3;
}

.home-box-3-inner,
.standing-committee-inner {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.home-box-3-content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
}

.home-box-3-content .left {
  width: calc(100% - 435px);
}

.home-box-3-content .right {
  display: flex;
  width: 405px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}

.news-item .desc {
  color: var(--gray-9---body-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 48px;
}

.home-box-3-content .right .news-type-2:not(:last-child) {
  padding-bottom: 16px;
  border-bottom: 1px dashed #d8d8d8;
}

.breadcrumb-container {
  width: 100%;
  background-color: var(--Green-green-500);
  padding: 6px 0;
}

.breadcrumb {
  margin: 0;
  padding: 0;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 12px;
}

.breadcrumb>li+li:before {
  display: none;
}

.breadcrumb>li a,
.breadcrumb>li span {
  color: var(--White);
  font-family: var(--font-primary-regular);
  font-size: 15px;
  font-style: normal;
  line-height: 24px;
}

.breadcrumb>li:last-child a,
.breadcrumb>li:last-child span {
  opacity: 0.7;
}

.breadcrumb>li i {
  font-size: 12px;
  font-weight: 400;
  color: var(--White);
}

.standing-committee-img {
  width: 100%;
}

.standing-committee-img img {
  width: 100%;
}

.organizational-structure-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.organizational-structure-box-1-content {
  display: flex;
  width: 100%;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px 30px;
}

.organizational-structure-item {
  display: flex;
  width: calc(33% - 20px);
  height: 430px;
  padding: 40px 24px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  border: 10px solid #FFF;
  background: linear-gradient(180deg, #DAF8E1 0%, #FFF 100%);
  box-shadow: 0 0 10px 0 rgba(7, 146, 71, 0.15);
}

.organizational-structure-item .first {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.organizational-structure-item .first .title {
  color: var(--Green-green-500);
  font-family: var(--font-primary-bold);
  font-size: 24px;
  font-style: normal;
  line-height: 32px;
}

.organizational-structure-item .first .desc ul {
  padding-left: 20px;
}

.organizational-structure-item .number {
  color: var(--Red-red-500);
  text-align: center;
  font-family: var(--font-monasans-black);
  font-size: 34px;
  font-style: normal;
  line-height: 36px;
}

.organizational-structure-box-2-content {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 30px;
}

.organizational-structure-box-2-content .left {
  width: 468px;
  height: auto;
}

.organizational-structure-box-2-content .left img {
  width: 100%;
  height: auto;
}

.organizational-structure-box-2-content .right {
  display: flex;
  padding: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
  align-self: stretch;
  border-bottom: 4px solid var(--Green-green-600);
  background: var(--White);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
}

.organizational-structure-box-2-content .right .info {
  display: flex;
  padding-top: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.organizational-structure-box-2-content .right .info .name {
  color: var(--Green-green-500);
  font-family: var(--font-primary-bold);
  font-size: 18px;
  font-style: normal;
  line-height: 26px;
}

.organizational-structure-box-2-content .right .info .position {
  font-family: var(--font-monasans-regular);
}

.organizational-structure-box-2 {
  padding: 64px 0;
}

.introduce-box-1 {
  padding: 32px 0 64px 0;
}

.introduce-box-1-inner {
  display: flex;
  align-items: center;
  width: 100%;
}

.introduce-box-1-inner .left {
  width: 483px;
  height: 688px;
  position: relative;
}

.introduce-box-1-inner .left>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.introduce-box-1-inner .left .location {
  display: inline-flex;
  padding: 16px 48px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--Foundation-Green-green-500);
  background: var(--White);
  position: absolute;
  left: 0;
  bottom: 0;
  color: var(--Foundation-Green-green-500);
  font-family: var(--font-primary-medium);
  font-size: 18px;
  font-style: normal;
  line-height: 26px;
}

.introduce-box-1-inner .right {
  display: flex;
  flex: 1;
  padding: 48px 56px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  background: #F8F8F8;
}

.introduce-box-1-inner .right .first {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.introduce-box-1-inner .right .first .tag {
  color: var(--Foundation-Green-green-500);
  font-family: var(--font-primary-medium);
}

.introduce-box-1-inner .right .second {
  width: 100%;
  display: flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-left: 2px solid var(--Foundation-Green-green-500);
  background: var(--White);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-medium);
}

.introduce-box-2-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.introduce-box-2-content {
  width: 100%;
  display: flex;
  padding-top: 32px;
  align-items: flex-start;
  gap: 30px;
}

.introduce-box-2-content .su-menh-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 12px;
}

.introduce-box-2-content .su-menh-list .item {
  display: flex;
  height: 132px;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
}

.introduce-box-2-content .su-menh-list .item .number {
  color: #FFF;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--Red-red-500);
  font-family: var(--font-primary-bold);
  font-size: 34px;
  font-style: normal;
  line-height: 44px;
  text-transform: uppercase;
}

.introduce-box-2-content .su-menh-list .item .desc {
  font-family: var(--font-primary-medium);
  font-size: 18px;
  font-style: normal;
  line-height: 24px;
}

.introduce-box-2-content .su-menh-list .item:not(:last-child) {
  padding-bottom: 32px;
  border-bottom: 1px solid #d8d8d8;
}

.introduce-box-3 {
  width: 100%;
  height: 498px;
  background-image: url('/img/vision-bg.webp');
  background-size: cover;
  background-position: center;
}

.introduce-box-3-inner {
  width: 100%;
  padding-top: 64px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.30);
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.introduce-box-3-inner .main-title {
  width: 336px;
  color: var(--White);
}

.introduce-box-3-desc {
  display: flex;
  flex: 1;
  padding: 20px 40px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-radius: 24px;
  border: 6px solid #00D261;
}

.introduce-box-3-desc>div:first-child {
  color: var(--White);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  line-height: 26px;
}

.introduce-box-3-desc>div:last-child {
  color: var(--White);
  text-align: center;
  font-family: var(--font-primary-semiBold);
  font-size: 18px;
  font-style: normal;
  line-height: 26px;
  text-transform: uppercase;
}

.introduce-box-4 {
  width: 100%;
  background-image: url(/img/cor-value-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 64px 0 100px 0;
}

.introduce-box-4-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.introduce-box-4-first {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.introduce-box-4-second {
  width: 100%;
}

.core-value-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}

.core-value-item .icon {
  display: flex;
  width: 96px;
  height: 96px;
  padding: 24px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.50);
}

.core-value-item .title {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-semiBold);
  font-size: 20px;
  font-style: normal;
  line-height: 28px;
}

.introduce-box-5 {
  width: 100%;
  height: 790px;
  background-color: var(--White);
  background-image: url(/img/introduce-box-4-bg.webp);
  background-size: contain;
  background-position: top right;
  padding: 64px 0 100px 0;
}

.introduce-box-5-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.introduce-box-5-content {
  width: max-content;
  height: max-content;
  position: relative;
}

.introduce-box-5-content .item {
  border-radius: 50%;
  background-color: var(--Green-green-500);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  position: absolute;
}

.introduce-box-5-content .item .title {
  color: #FFF;
  text-align: center;
  font-family: var(--font-primary-semiBold);
  font-size: 18px;
  font-style: normal;
  line-height: 26px;
}

.introduce-box-5-content .item .number {
  color: var(--White);
  text-align: center;
  font-family: var(--font-primary-bold);
  font-size: 36px;
  font-style: normal;
  line-height: 42px;
}

.introduce-box-5-content .item .number .until {
  font-size: 24px;
}

.introduce-box-5-content .item.don-vi-truc-thuoc {
  width: 160px;
  height: 160px;
  top: 50px;
  left: 0;
}

.introduce-box-5-content .item.doanh-nghiep {
  width: 286px;
  height: 286px;
  top: 0;
  right: 0;
}

.introduce-box-5-content .item.doanh-thu {
  width: 232px;
  height: 232px;
  bottom: 40px;
  left: 0;
}

.introduce-box-5-content .item.nhan-su {
  width: 172px;
  height: 172px;
  bottom: 20px;
  right: 40px;
}

.history-box-1-content {
  width: 100%;
  margin-top: 42px;
}

.list-history {
  max-width: 100%;
  overflow-x: scroll;
  display: flex;
  flex-wrap: nowrap;
  padding-left: 20px;
}

.list-history::-webkit-scrollbar {
  display: none;
}

.item-history {
  padding: 20px 64px 20px 43px;
  display: flex;
  flex-direction: column;
  min-width: 700px;
  position: relative;
}

.item-history::after {
  width: 100%;
  height: 2px;
  content: '';
  position: absolute;
  top: 52%;
  left: 24px;
  background-color: var(--Red-red-500);
  transform: translateY(-50%);
}

.item-history::before {
  width: 32px;
  height: 32px;
  content: '';
  position: absolute;
  top: 52%;
  left: -15px;
  transform: translateY(-50%);
  background-color: var(--Red-red-500);
  border-radius: 50%;
}

.item-history:not(:first-child)::before {
  width: 12px;
  height: 12px;
  left: -6px;
}

.item-history:nth-child(even) {
  flex-direction: column-reverse;
}

.item-history-img {
  width: 332px;
  height: 224px;
  flex-shrink: 0;
  border-radius: 8px;
  box-shadow: 0 4px 2px 0 rgba(0, 0, 0, 0.15);
  position: relative;
}

.item-history-img::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -43px;
  width: 1px;
  height: 110%;
  background: linear-gradient(180deg, #D72028 0%, rgba(215, 32, 40, 0.00) 100%);
}


.item-history:nth-child(even) .item-history-img::after {
  top: -15px;
  background: linear-gradient(0deg, #D72028 0%, rgba(215, 32, 40, 0.00) 100%);
}

.item-history-img::before {
  content: '';
  position: absolute;
  top: -9px;
  left: -47px;
  width: 9px;
  height: 9px;
  border-radius: 509%;
  background: var(--Red-red-500);
}

.item-history:nth-child(even) .item-history-img::before {
  top: 100%;
  bottom: unset;
}

.item-history-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.item-history-content {
  display: flex;
  width: 656px;
  padding: 40px 64px 0 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.item-history-content .year {
  font-family: var(--font-primary-bold);
  font-size: 88px;
  font-style: normal;
  line-height: 64px;
  text-transform: uppercase;
  opacity: 0.7;
  background: linear-gradient(180deg, #079247 -0.78%, rgba(7, 146, 71, 0.00) 100.78%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.item-history-content .desc {
  padding-right: 4px;
}

.item-history-content .desc::-webkit-scrollbar {
  width: 4px;
}

.item-history-content .desc::-webkit-scrollbar-track {
  background: transparent;
}

.item-history-content .desc::-webkit-scrollbar-thumb {
  background-color: var(--Green-green-500);
  border-radius: 20px;
}

.item-history:nth-child(even) .item-history-content {
  margin-top: -32px;
  padding: 0 64px 32px 0;
}

.item-history:nth-child(odd) .item-history-img {
  margin-bottom: 20px;
}

.year-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}

.year-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex: 1;
}

.year-item {
  color: #8C8C8C;
  font-family: var(--font-primary-medium);
  font-size: 18px;
  font-style: normal;
  line-height: 26px;
  transition: all 0.3s ease;
}

.year-item.active {
  color: #1aa24a;
  font-size: 28px;
  font-style: normal;
  line-height: 36px;
  font-family: var(--font-primary-bold);
}

button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #1aa24a;
  background: #fff;
  color: #1aa24a;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s;
}

button:hover {
  background: #1aa24a;
  color: #fff;
}

.year-slider {
  margin: 85px auto 0 auto;
  width: min(100%, 832px);
}

.history-box-1{
  background-image: url(/img/history-bg.webp);
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}

@media (min-width: 1400px) {
  .container {
    width: 1200px;
    padding: 0;
  }
}