:root {
  --font-primary-regular: "inter-regular";
  --font-primary-thin: "inter-thin";
  --font-primary-light: "inter-light";
  --font-primary-medium: "inter-medium";
  --font-primary-semiBold: "inter-semiBold";
  --font-primary-bold: "inter-bold";
  --font-primary-black: "inter-black";
  --font-poppins-regular: "poppins-regular";
  --font-poppins-thin: "poppins-thin";
  --font-poppins-light: "poppins-light";
  --font-poppins-medium: "poppins-medium";
  --font-poppins-semiBold: "poppins-semiBold";
  --font-poppins-bold: "poppins-bold";
  --font-poppins-black: "poppins-black";
  --font-leostut: "leostut";
  --clr-white: #fff;
  --clr-blue: #122966;
  --yellow-400: #d7b380;
  --Yellow-yellow-500: #C69930;
  --gray-9---body-text: #262626;
  --Foundation-Blue-blue-500: #142040;
  --Foundation-Blue-blue-50: #e9eaeb;
  --gray-8: #434343;
  --gray-6---subtle-text: #8c8c8c;
  --gray-7: #595959;
  --Neutral-8: #434343;
  --attention: #daac07;
  --Foundation-Blue-blue-200: #989da4;
  --gray-4---stroke: #d9d9d9;
  --Foundation-Yellow-yellow-50: #f9f6ea;
  --bg-2: #F1F1F1;
  --Color-Neutral-neutral-800: #232323;
  --Color-Neutral-neutral-300: #7E7E7E;
  --Foundation-Blue-blue-900: #0D1218;
  --gray-3: #F0F0F0;
  --Green-green-500: #005F5C;
  --Neutral-200: #EEF0F4;
  --Grey-1: #333;
}

/* font */

@font-face {
  font-family: "inter-regular";
  src: url(../font/inter/Inter-Regular.ttf);
}

@font-face {
  font-family: "inter-light";
  src: url(../font/inter/Inter-Light.ttf);
}

@font-face {
  font-family: "inter-medium";
  src: url(../font/inter/Inter-Medium.ttf);
}

@font-face {
  font-family: "inter-semiBold";
  src: url(../font/inter/Inter-SemiBold.ttf);
}

@font-face {
  font-family: "inter-bold";
  src: url(../font/inter/Inter-Bold.ttf);
}

@font-face {
  font-family: "inter-black";
  src: url(../font/inter/Inter-Black.ttf);
}

@font-face {
  font-family: "poppins-regular";
  src: url(../font/poppins/Poppins-Regular.ttf);
}

@font-face {
  font-family: "poppins-light";
  src: url(../font/poppins/Poppins-Light.ttf);
}

@font-face {
  font-family: "poppins-medium";
  src: url(../font/poppins/Poppins-Medium.ttf);
}

@font-face {
  font-family: "poppins-semiBold";
  src: url(../font/poppins/Poppins-SemiBold.ttf);
}

@font-face {
  font-family: "poppins-bold";
  src: url(../font/poppins/Poppins-Bold.ttf);
}

@font-face {
  font-family: "poppins-black";
  src: url(../font/poppins/Poppins-Black.ttf);
}

body {
  font-family: var(--font-primary-regular);
  font-size: 16px;
  font-style: normal;
  line-height: 24px
}

a {
  text-decoration: none !important;
}

.text-yellow {
  color: var(--Yellow-yellow-500) !important;
}

.requied {
  color: red;
}

.header-inner {
  display: flex;
  width: 100%;
  padding: 4px 0;
  justify-content: space-between;
  align-items: center;
}

.header {
  width: 100%;
  background: var(--clr-white);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  z-index: 999;
}

.header-inner>div {
  display: flex;
  padding: 16px 0px;
  align-items: center;
  gap: 40px;
}

.navigator-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navigator-menu>li>a {
  color: var(--gray-9---body-text) !important;
  font-family: var(--font-primary-semiBold);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  padding: 8px;
  border-bottom: 2px solid;
  border-color: transparent;
  transition: all 0.3s ease;
}

.navigator-menu>li:hover>a,
.navigator-menu>li.active>a {
  color: var(--Yellow-yellow-500) !important;
  border-color: var(--Yellow-yellow-500);
}

.header-inner>div>div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-inner>div>div .line {
  width: 1px;
  height: 24px;
  background: var(--gray-4---stroke);
}

.header-first-right-language {
  position: relative;
}

.header-language-header {
  display: flex;
  padding: 4px 0px;
  align-items: center;
  gap: 6px;
  border-radius: 42px;
  background: var(--clr-white);
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-medium);
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  cursor: pointer;
}

.header-language-list {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 150px;
  padding: 12px;
  border-radius: 8px;
  background: var(--clr-white);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.05);
  color: var(--gray-9---body-text);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.header-language-list.active {
  opacity: 1;
  visibility: visible;
}

.header-language-item {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-medium);
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  cursor: pointer;
  padding: 8px;
}

.header-language-item:first-child>img {
  margin-right: 2px;
}

.header-language-item:last-child>img {
  width: 30px;
  height: 30px;
  margin-left: -2px;
}

.footer {
  border-top: 2px solid var(--Yellow-yellow-500);
  background: var(--clr-white);
}

.footer-bottom {
  display: flex;
  width: 100%;
  padding: 8px 0px;
  justify-content: center;
  align-items: center;
  background: var(--Yellow-yellow-500);
  color: var(--clr-white);
  text-align: center;
  font-family: var(--font-primary-regular);
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
}

.footer-inner {
  width: 100%;
  padding: 40px 0 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-info {
  width: min(100%, 424px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-logo>p {
  color: var(--Yellow-yellow-500);
  font-family: var(--font-primary-bold);
  font-size: 18px;
  font-style: normal;
  line-height: 26px;
  text-transform: uppercase;
}

.list-info-contact {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.contact-map{
  width: 100%;
}

.info-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-contact-item>a {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-regular);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
}

.info-contact-item>a>strong {
  font-family: var(--font-primary-medium);
}

.footer-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu .first.leaf>span {
  color: var(--Yellow-yellow-500);
  font-family: var(--font-primary-bold);
  font-size: 18px;
  font-style: normal;
  line-height: 26px;
  margin-bottom: 8px;
}

.footer-menu .leaf>a {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-regular);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
}

.footer-inner .line {
  width: 1px;
  height: 320px;
  background: #E6EFEF;
}

.footer-last {
  display: flex;
  padding-left: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
}

.footer-last-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-title {
  margin: 0;
  color: var(--Yellow-yellow-500);
  font-family: var(--font-primary-bold);
  font-size: 18px;
  font-style: normal;
  line-height: 26px;
  margin-bottom: 8px;
}

.footer-social-list {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-last-form {
  width: 342px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 25.5px;
  background: var(--gray-3);
  display: flex;
  align-items: center;
  padding: 4px 4px 4px 16px;
}

.footer-last-form>input {
  flex: 1;
  height: 100%;
  background-color: transparent;
  font-family: var(--font-primary-regular);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  color: var(--gray-9---body-text);
  border: none;
  box-shadow: none;
  outline: none;
}

.footer-last-form>input::placeholder {
  color: var(--gray-6---subtle-text);
}

.btn-color-green {
  display: inline-flex;
  height: 40px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 40px;
  background: var(--Green-green-500);
  color: var(--clr-white);
  font-family: var(--font-primary-semiBold);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
}

.main {
  margin-top: 76px
}

.breadcrumb-container {
  display: flex;
  padding: 4px 0px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  background: #FAFAFA;
}

.breadcrumb-inner {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 8px;
}

.breadcrumb-item {
  color: var(--gray-6---subtle-text) !important;
  font-family: var(--font-primary-regular);
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
}

.breadcrumb-item.active {
  color: var(--Yellow-yellow-500) !important;
  font-family: var(--font-primary-regular);
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
}

.contact-inner {
  padding: 32px 0 64px 0;
  display: flex;
  align-items: center;
  gap: 32px 30px;
  flex-wrap: wrap;
}

.contact-left {
  display: flex;
  width: min(100%, 470px);
  padding: 16px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
}

.contact-left .info-contact-item:not(:last-child) {
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid #E6E6E6;
}

.contact-title {
  margin: 0;
  color: var(--Yellow-yellow-500);
  font-family: var(--font-primary-bold);
  font-size: 28px;
  font-style: normal;
  line-height: 40px;
  letter-spacing: 0.28px;
}

.contact-right {
  display: flex;
  flex: 1;
  padding: 16px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  background: #F2F2F3;
}

.form-group {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.form-group>input {
  display: flex;
  height: 48px;
  padding: 12px 16px;
  align-items: center;
  gap: 10px;
  border-radius: 48px;
  border: 1px solid #D8D8D8;
  background: var(--clr-white);
  width: 100%;
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-regular);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  outline: none;
}

.form-group>input::placeholder,
.form-group>textarea::placeholder {
  color: var(--gray-6---subtle-text);
}

.form-group>textarea {
  display: flex;
  height: 112px;
  padding: 12px 16px;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid #D8D8D8;
  background: var(--White, #FFF);
  resize: none;
}

.form-group>label {
  color: var(--gray-9---body-text);
  text-align: center;
  font-family: var(--font-primary-medium);
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
}

.btn-color-yellow {
  margin-top: 8px;
  display: flex;
  height: 48px;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 56px;
  background: var(--Yellow-yellow-500);
  border: none;
  outline: none;
  box-shadow: none;
  color: var(--clr-white) !important;
  font-family: var(--font-primary-semiBold);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
}

.banner-page {
  width: 100%;
  height: 450px;
}

.banner-page>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-inner {
  padding: 64px 15px !important;
}

.ecosystem-inner {
  background-image: url(../img/ecosystem-page-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ecosystem-header-title {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-bold);
  font-size: 32px;
  font-style: normal;
  line-height: 40px;
  margin: 0;
}

.ecosystem-header-subtitle {
  color: var(--gray-8);
  text-align: justify;
  font-family: var(--font-primary-regular);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
}

.ecosystem-item {
  display: flex;
  width: 100%;
  height: 540px;
  padding: 32px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 16px;
  border: 1px solid var(--gray-4---stroke);
  background: var(--clr-white);
  margin-bottom: 40px;
  box-shadow: 0px 0 0 0px rgba(0, 0, 0, 0.05);
  transition: all 0.3s linear;
}

.ecosystem-item>a:not(.ecosystem-item-link) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.ecosystem-item>a:first-child>img {
  border-radius: 50%;
  padding: 4px;
  border: 6px solid var(--Yellow-yellow-500);
}

.ecosystem-item-name-sologan {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.ecosystem-item-name {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-semiBold);
  font-size: 22px;
  font-style: normal;
  line-height: 32px;
  margin: 0;
  transition: color 0.3s linear;
}

.ecosystem-item:hover {
  box-shadow: 16px 16px 16px 0px rgba(0, 0, 0, 0.05);
}

.ecosystem-item:hover .ecosystem-item-name {
  color: var(--Yellow-yellow-500);
}

.ecosystem-item-sologan {
  color: var(--Yellow-yellow-500);
  font-family: var(--font-primary-medium);
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 44px;
}

.ecosystem-item-description {
  color: var(--gray-8);
  font-family: var(--font-primary-regular);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 146px;
}

.ecosystem-item-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--Yellow-yellow-500) !important;
  font-family: var(--font-primary-semiBold);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
}

.news-header {
  padding: 64px 0 16px 0;
  background: #F2F2F3;
}

.news-header-inner {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.news-title {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-bold);
  font-size: 32px;
  font-style: normal;
  line-height: 40px;
  margin: 0;
}

.news-menu {
  display: flex;
  padding: 8px 0px;
  align-items: center;
  gap: 16px;
}

.news-menu-item {
  display: flex;
  padding: 8px 0px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: var(--gray-9---body-text) !important;
  font-family: var(--font-primary-medium);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.news-menu-item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 24px;
  background: var(--gray-4---stroke);
}

.news-item-type-1 {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--clr-white);
  overflow: hidden;
  box-shadow: 0px 0px 10px 0px rgba(2, 25, 86, 0.10);
  cursor: pointer;
  height: 572px;
}

.news-item-type-1-img {
  height: 400px;
  width: 100%;
  overflow: hidden;
}

.news-item-type-1-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.news-item-type-1 .news-item-type-1-img img:hover {
  transform: scale(1.05);
}

.news-item-type-1-content {
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.news-item-type-1-tag {
  color: var(--Yellow-yellow-500);
  font-family: var(--font-primary-medium);
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  margin: 0;
}

.news-item-type-1-title {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-bold);
  font-size: 24px;
  font-style: normal;
  line-height: 32px;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 64px;
}

.news-item-type-1-info,
.news-item-type-2-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-item-type-1-author {
  color: var(--Green-green-500);
  font-family: var(--font-primary-medium);
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  margin: 0;
}

.news-item-type-1-info .line,
.news-item-type-2-info .line {
  display: block;
  width: 1px;
  height: 16px;
  background: #D9D9D9;
}

.news-item-type-1-date {
  color: var(--gray-6---subtle-text);
  font-family: var(--font-primary-medium);
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  margin: 0;
}

.news-item-type-2.news-item-type-2-first {
  display: flex;
  height: 572px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-radius: 8px;
  overflow: hidden;
  background: var(--clr-white);
  box-shadow: 0px 0px 10px 0px rgba(2, 25, 86, 0.10);
  margin-bottom: 40px;
}

.news-item-type-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-radius: 8px;
  overflow: hidden;
  background: var(--clr-white);
  box-shadow: 0px 0px 10px 0px rgba(2, 25, 86, 0.10);
  margin-bottom: 40px;
}

.news-item-type-2-img {
  height: 200px;
  overflow: hidden;
  width: 100%;
}

.news-item-type-2-img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.news-item-type-2:hover>.news-item-type-2-img>img {
  transform: scale(1.05);
}

.news-item-type-2-content {
  flex: 1;
  display: flex;
  width: 100%;
  padding: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
}

.news-item-type-2-first.news-item-type-2-content>div:not(.news-item-type-2-info) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.news-item-type-2-title {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-semiBold);
  font-size: 18px;
  font-style: normal;
  line-height: 26px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 52px;
}

.news-item-type-2-desc {
  color: var(--gray-7);
  font-family: var(--font-primary-regular);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 120px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.pagination>.page-item>a {
  display: flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  border-radius: 32px !important;
  background: var(--Neutral-200);
  color: var(--gray-9---body-text);
  text-align: center;
  font-family: var(--font-primary-regular);
  font-size: 14px;
  font-style: normal;
  line-height: 24px;
  border: none;
  transition: all 0.3s ease;
}

.pagination>.page-item:hover>a,
.pagination>.page-item.active>a {
  background: var(--Yellow-yellow-500);
  color: var(--clr-white);
}

.recruitment-header {
  padding: 32px 0;
}

.hightlight-news {
  display: flex;
  padding: 24px 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex-shrink: 0;
  background: var(--clr-white);
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.08);
}

.hightlight-news-container {
  position: sticky;
  top: 100px;
}

.hightlight-news-title {
  color: var(--Color-Neutral-neutral-800);
  font-family: var(--font-primary-bold);
  font-size: 24px;
  font-style: normal;
  line-height: 32px;
}

.hightlight-news-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.hightlight-news-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.hightlight-news-item:not(:last-child) {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-4---stroke);
}

.hightlight-news-item-img {
  width: 100px;
  height: 78px;
}

.hightlight-news-item-img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hightlight-news-item-title-time {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
}

.hightlight-news-item-title {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-semiBold);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 72px;
  margin: 0;
}

.hightlight-news-item-time {
  color: var(--gray-7);
  text-align: center;
  font-family: var(--font-primary-medium);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  margin: 0;
}

.news-detail {
  padding-top: 32px;
}

.news-detail-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.news-detail-content-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.news-detail-content-header>.line {
  width: 100%;
  height: 1px;
  background: var(--gray-4---stroke);
}

.news-detail-content-title {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-bold);
  font-size: 28px;
  font-style: normal;
  line-height: 36px;
  margin: 0;
}

.news-detail-subheader {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.news-detail-author-time,
.news-detail-share {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-detail-author {
  color: var(--Green-green-500);
  font-family: var(--font-primary-medium);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  margin: 0;
}

.news-detail-author-time .line {
  width: 1px;
  height: 16px;
  background: #D9D9D9;
}

.news-detail-time {
  color: var(--gray-7);
  font-family: var(--font-primary-medium);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  margin: 0;
}

.news-detail-share-title {
  color: var(--Grey-1);
  font-family: var(--font-primary-regular);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  margin: 0;
}

.news-detail-content-subtitle {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-semiBold);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
}

.news-detail-content-menu {
  display: flex;
  padding: 12px 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
  border-radius: 4px;
  border: 1px solid var(--Foundation-Blue-blue-50);
  background: var(--bg-2);
}

.news-detail-content-menu-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}

.news-detail-content-menu-title {
  flex: 1;
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-semiBold);
  font-size: 18px;
  font-style: normal;
  line-height: 26px;
}

.news-detail-content-menu-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.news-detail-content-menu-list.active {
  max-height: 1000px;
}

.news-detail-content-menu-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.news-detail-content-menu-item-header {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.news-detail-content-menu-item-header>p {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-semiBold);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
}

.news-detail-content-menu-item-child {
  max-height: 0;
  overflow: hidden;
  margin-top: -8px;
  transition: all 0.3s ease-in-out;
}

.news-detail-content-menu-item-header>i {
  transition: all 0.3s ease-in-out;
  transform: rotate(-90deg);
}

.news-detail-content-menu-item.active .news-detail-content-menu-item-header>i {
  transform: rotate(0);
}

.news-detail-content-menu-item.active .news-detail-content-menu-item-child {
  max-height: 1000px;
  margin-top: 0;
}

.news-detail-content-menu-item-child>ul {
  padding-left: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  list-style: none;
}

.news-detail-content-menu-item-child>ul>li {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-regular);
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
}

.cmt-container {
  width: 100%;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #EDDFBF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
}

.cmt-title {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-semiBold);
  font-size: 18px;
  font-style: normal;
  line-height: 26px;
}

.cmt-form {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.cmt-input {
  display: flex;
  height: 71px;
  padding: 8px 12px;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  flex: 1;
  border: 1px solid rgba(45, 57, 76, 0.10);
  background: var(--clr-white);
  resize: none;
}

.cmt-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  align-self: stretch;
}

.cmt-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

.cmt-item-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cmt-name {
  color: var(--Green-green-500);
  font-family: var(--font-primary-medium);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
}

.cmt-time {
  color: var(--gray-7);
  font-family: var(--font-primary-regular);
  font-size: 12px;
  font-style: normal;
  line-height: 20px;
}

.cmt-item-text {
  overflow: hidden;
  color: var(--gray-8);
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 72px;
  width: 100%;
}

.cmt-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
}

.other-news {
  background: #F5F5F5;
}

.other-news-title {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-bold);
  font-size: 32px;
  font-style: normal;
  line-height: 40px;
  margin-bottom: 32px;
}

.other-news-carousel .news-item-type-2 {
  margin-bottom: 4px;
}

.other-news-carousel .news-item-type-2-content {
  gap: 8px;
}

.other-news-carousel .owl-dots,
.home-box-4-carousel .owl-dots {
  width: 100%;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.other-news-carousel .owl-dots .owl-dot,
.home-box-4-carousel .owl-dots .owl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #D9D9D9;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: 2px solid var(--Green-green-500);
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}

.other-news-carousel .owl-dots .owl-dot.active,
.home-box-4-carousel .owl-dots .owl-dot.active {
  background-color: var(--Green-green-500);
}

.news-detail-tag {
  color: var(--Yellow-yellow-500);
  font-family: var(--font-primary-medium);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  text-transform: uppercase;
  margin: 0;
}

.recruitment-detail .news-detail-content>.line {
  width: 100%;
  height: 1px;
  background: #C69930;
}

.recruitment-detail-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
}

.recruitment-detail-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.recruitment-detail-item-title {
  margin: 0;
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-bold);
  font-size: 24px;
  font-style: normal;
  line-height: 32px;
}

.recruitment-detail-item>ul {
  margin: 0;
  padding-left: 20px;
}

.recruitment-detail-item>ul> {
  color: var(--gray-9---body-text);
}

.recruitment-detail-description {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-semiBold);
  font-size: 16px;
  font-style: italic;
  line-height: 24px;
  /* 150% */
}

.recruitment-detail-description>a {
  color: var(--Yellow-yellow-500);
  text-decoration-line: underline !important;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.form-file {
  display: flex;
  height: 48px;
  padding: 12px 16px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 48px;
  border: 1px solid #D8D8D8;
  background: var(--White, #FFF);
}

.form-file>span {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-medium);
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
}

.btn-chosen-file {
  display: flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid var(--gray-4---stroke);
  background: #E9E9E9;
  cursor: pointer;
}

.form-apply {
  padding: 24px 16px;
  border-radius: 16px;
  background: #F2F2F3;
}

.form-apply-title {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-bold);
  font-size: 24px;
  font-style: normal;
  line-height: 32px;
}

.title-main-number {
  color: var(--gray-2, #F5F5F5);
  font-family: var(--font-poppins-bold);
  font-size: 104px;
  font-style: normal;
  line-height: 88px;
  text-transform: uppercase;
  margin: 0;
}

.title-main {
  position: relative;
}

.title-main-text {
  color: var(--Yellow-yellow-500);
  font-family: var(--font-primary-bold);
  font-size: 18px;
  font-style: normal;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  white-space: nowrap;
}

.title-main-text::after {
  width: 112px;
  height: 1px;
  background: var(--Yellow-yellow-500);
  content: "";
}

.introduce-box-1-title {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-bold);
  font-size: 32px;
  font-style: normal;
  line-height: 40px;
  letter-spacing: 0.32px;
}

.introduce-box-1-desc {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 32px;
}

.introduce-box-1-desc::before {
  width: 64px;
  height: 1px;
  background: var(--Yellow-yellow-500);
  content: "";
  margin-top: 16px;
}

.introduce-box-1-desc>div {
  flex: 1;
  color: var(--gray-8);
  font-family: var(--font-primary-regular);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  z-index: 10;
}

.btn-see-more,
.btn-less-text {
  margin-top: 32px;
  color: var(--Yellow-yellow-500);
  font-family: var(--font-primary-semiBold);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  cursor: pointer;
}

.btn-less-text {
  margin-top: 24px;
  display: none;
}

.full-text-introduce {
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out
}

.full-text-introduce.show {
  max-height: 10000px;
  margin-top: 24px;
}

.full-text-introduce.show .btn-less-text {
  display: block;
}

.introduce-box-2 {
  height: 450px;
}

.introduce-box-2>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.introduce-box-3 {
  background-color: #F2F2F3;
}

.introduce-box-3-inner,
.home-box-4-inner {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.introduce-box-3-desc {
  color: var(--gray-8);
}

.introduce-box-3-title {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-bold);
  font-size: 28px;
  font-style: normal;
  line-height: 36px;
}

.introduce-box-3-item {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.introduce-box-3-item>div:first-child {
  padding: 16px;
  border-radius: 50%;
  background: var(--clr-white);
}

.introduce-box-3-item>div>img {
  width: 56px !important;
  height: 56px !important;
}

.introduce-box-3-item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.introduce-box-3-item-content-title {
  color: var(--Yellow-yellow-500);
  font-family: var(--font-primary-semiBold);
  font-size: 64px;
  font-style: normal;
  line-height: 72px;
}

.introduce-box-3-item-content-desc {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-semiBold);
  font-size: 18px;
  font-style: normal;
  line-height: 26px;
}

.introduce-box-4 {
  position: relative;
}

.introduce-box-4-bg {
  position: absolute;
  bottom: -80px;
}

.introduce-box-4-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.introduce-box-4-item {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-direction: row;
}

.introduce-box-4-item:nth-child(even) {
  flex-direction: row-reverse;
}

.introduce-box-4-item-content,
.introduce-box-4-item-img {
  flex: 1;
}

.introduce-box-4-item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.introduce-box-4-item-title {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-bold);
  font-size: 32px;
  font-style: normal;
  line-height: 40px;
  margin: 0;
}

.introduce-box-4-item-desc {
  color: var(--gray-9---body-text);
}

.introduce-box-4-inner>.line {
  width: 100%;
  height: 1px;
  background: #E6EFEF;
}

.banner-home-item {
  position: relative;
}

/* .banner-home-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
} */

.banner-home-item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.banner-home-item-content>img {
  width: 375px !important;
}

.banner-home-item-content>p {
  color: var(--Yellow-yellow-500);
  font-family: var(--font-primary-bold);
  font-size: 28px;
  font-style: normal;
  line-height: 40px;
  letter-spacing: 0.28px;
}

.home-box-1 {
  position: relative;
}

.home-box-1-bg {
  position: absolute;
  bottom: -120px;
  left: 0;
}

.home-box-1>.box-inner>.row>div>div {
  position: relative;
}

.home-box-1 .btn-color-yellow {
  margin-top: 32px;
  width: max-content;
}

.home-box-2 {
  background-image: url(../img/box-2-img.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 10;
}

.home-box-2-inner {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
}

.home-box-2-item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
}

.home-box-2-item-title {
  color: var(--gray-9---body-text);
  font-family: var(--font-primary-bold);
  font-size: 20px;
  font-style: normal;
  line-height: 26px;
}

.home-box-2-item-desc {
  color: var(--gray-7);
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 124px;
}

.home-box-2-inner .title-main .title-main-number {
  color: rgba(217, 217, 217, 0.40);
}

.home-box-3-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.home-box-3 .box-inner {
  border-bottom: 1px solid #E6EFEF;
}

.partner-list {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.partner-item {
  width: 126px;
  height: 126px;
  display: flex;
  align-items: center;
}

.partner-item>img {
  width: 100%;
  height: auto;
}

.home-box-4-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-box-4-header>div{
  position: relative;
}

.btn-view-all {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--Yellow-yellow-500) !important;
  font-family: var(--font-primary-semiBold);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
}

.home-box-4-carousel .news-item-type-2.news-item-type-2-first {
  height: auto;
  margin-bottom: 4px;
}

.home-box-4 {
  background-image: url(../img/home-box-4-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-box-4 .box-inner {
  padding-top: 0;
}

.home-box-5 {
  background-image: url(../img/box-home-5-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-box-5-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}

.home-box-5-inner>img {
  width: min(90%, 700px);
}

.home-box-5-title {
  color: var(--gray-9---body-text);
  text-align: center;
  font-family: var(--font-primary-bold);
  font-size: 32px;
  font-style: normal;
  line-height: 40px;
  letter-spacing: 0.32px;
}

.partner-header {
  margin-bottom: 32px;
}

.partner-inner .ecosystem-item {
  margin-bottom: 0;
}

.btn-close-menu-mobile,
.btn-open-menu-mobile,
.overlay-menu-mobile,
.ecosystem-header-title-mobile,
.img-introduce-mobile {
  display: none;
}

.partner-slider{
  display: none;
}

@media(max-width:1024px) {
  .container {
    padding: 0 8px;
  }

  .header-inner>div>div {
    gap: 6px;
  }

  .navigator-menu {
    gap: 16px;
  }

  .header-inner>div {
    gap: 20px;
  }

  .contact-inner {
    gap: 28px;
  }

  .contact-right {
    padding: 16px
  }

  .footer-inner .line {
    height: 280px;
  }

  .footer-last {
    padding-left: 0;
  }

  .footer-inner {
    padding: 32px 0;
  }

  .box-inner {
    padding: 32px 8px !important;
  }

  .ecosystem-item {
    height: 460px;
    padding: 24px;
  }

  .ecosystem-item>a:first-child>img {
    width: 100px;
    height: 100px;
  }

  .news-header {
    padding-top: 32px;
  }

  .news-item-type-2.news-item-type-2-first {
    gap: 32px;
  }

  .breadcrumb-item.active {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
  }

  .breadcrumb-item {
    white-space: nowrap;
  }

  .partner-list {
    gap: 32px;
  }

  .home-box-4-carousel .news-item-type-2.news-item-type-2-first{
    gap: 0;
  }
}

@media(max-width: 768px) {
  .container {
    padding: 0 8px
  }

  .btn-close-menu-mobile,
  .btn-open-menu-mobile,
  .overlay-menu-mobile,
  .img-introduce-mobile {
    display: block;
  }

  .img-introduce-pc {
    display: none;
  }

  .overlay-menu-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
  }

  .menu-navigator {
    position: fixed;
    top: 0;
    left: 0;
    width: min(60%, 350px);
    height: 100%;
    background-color: var(--clr-white);
    z-index: 1001;
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out;
    align-items: flex-start;
    padding: 64px 24px;
  }

  .overlay-menu-mobile.active {
    opacity: 1;
    visibility: visible;
  }

  .menu-navigator.active {
    transform: translateX(0);
  }

  .header-inner>div>div:first-child {
    align-items: flex-start;
  }

  .menu-navigator .navigator-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .btn-close-menu-mobile {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 24px;
    font-weight: 200;
  }

  .btn-close-menu-mobile i {
    font-size: 24px;
    font-weight: 400;
  }

  .header-inner>a>img {
    width: 80px;
  }

  .btn-open-menu-mobile {
    font-size: 20px;
  }

  .header-inner>div>div:last-child {
    gap: 12px;
  }

  .header-inner>div {
    padding: 8px 0;
  }

  .contact-inner {
    padding: 32px 0;
  }

  .contact-left {
    padding: 0;
    width: 100%;
  }

  .banner-page {
    height: 350px;
  }

  .navigator-menu>li>a {
    padding: 0;
  }

  .footer-inner {
    gap: 24px;
    padding: 24px 16px;
  }

  .footer-inner .line {
    display: none;
  }

  .footer-title {
    margin: 0;
  }

  .footer-menu {
    width: 40%;
  }

  .ecosystem-item {
    gap: 32px;
  }

  .ecosystem-header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ecosystem-header-title-mobile {
    display: block;
  }

  .ecosystem-header-title-pc {
    display: none;
  }

  .news-item-type-2.news-item-type-2-first {
    gap: 0;
  }

  .news-item-type-1-img {
    height: 200px;
  }

  .news-item-type-2.news-item-type-2-first,
  .news-item-type-1 {
    height: 480px;
  }

  .news-item-type-1-content {
    height: 100%;
    flex: 1;
    gap: 8px;
  }

  .news-item-type-1-title {
    font-size: 20px;
    line-height: 28px;
  }

  .news-item-type-1-info {
    height: 100%;
    flex: 1;
    align-items: flex-end;
  }

  .row {
    margin: 0 -8px;
  }

  .row>div {
    padding: 0 8px;
  }

  .news-detail-content {
    gap: 24px;
  }

  .cmt-container {
    margin-top: 24px;
    padding-top: 24px;
    gap: 24px;
  }

  .hightlight-news {
    display: none;
  }

  .partner-header {
    margin-bottom: 24px;
  }

  .partner-inner .ecosystem-item {
    margin-bottom: 24px;
  }

  .partner-inner .ecosystem-item {
    gap: 0;
  }

  .img-introduce-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .img-introduce-mobile>img {
    width: 80%;
  }

  .introduce-box-4-item {
    flex-direction: column !important;
    gap: 24px;
  }

  .introduce-box-4-item-content {
    gap: 16px;
  }

  .introduce-box-4-inner {
    gap: 52px;
  }

  .main {
    margin-top: 56px;
  }

  .home-box-1>.box-inner>.row>div>img{
    width: 80%;
    margin: 0 auto;
  }

  .home-box-1>.box-inner>.row>div:last-child{
    margin-top: 24px;
    display: flex;
    justify-content: center;
  }

  .home-box-2-inner,.home-box-3-inner,.home-box-4-inner,.home-box-5-inner{
    gap: 32px;
  }
  
  .partner-list{
    gap: 24px;
  }
}

@media(max-width: 568px) {
  .banner-page {
    height: 250px;
  }


  .breadcrumb-container .container {
    margin-left: 0;
  }

  .news-title,
  .ecosystem-header-title,
  .introduce-box-4-item-title,
  .home-box-5-title,
  .other-news-title {
    font-size: 28px;
    line-height: 36px;
  }

  .contact-title,
  .news-detail-content-title,
  .introduce-box-1-title {
    font-size: 24px;
    line-height: 32px;
  }

  .ecosystem-item-name {
    font-size: 18px;
    line-height: 26px;
  }

  .footer-logo>p,
  .footer-title,
  .news-item-type-2-title,
  .news-item-type-1-title,
  .title-main-text,
  .home-box-2-item-title {
    font-size: 16px;
    line-height: 24px;
  }

  body,
  .info-contact-item>a,
  .form-group>label,
  .btn-color-yellow,
  .ecosystem-item-description,
  .news-item-type-2-desc,
  .news-detail-content-subtitle,
  .news-detail-author,
  .news-detail-time,
  .introduce-box-1-desc>div,
  .ecosystem-item-link  {
    font-size: 14px;
    line-height: 20px;
  }

  .btn-color-yellow {
    height: 40px;
  }

  .form-group>input {
    height: 42px;
    padding: 0 16px;
  }

  .contact-left .info-contact-item:not(:last-child) {
    padding-bottom: 12px;
  }

  .contact-left,
  .contact-inner {
    gap: 24px;
  }

  .contact-inner {
    padding: 24px 0;
  }

  .contact-left-header>img {
    width: 300px;
  }

  .footer-inner {
    padding: 24px 0;
    gap: 24px;
  }

  .list-info-contact {
    gap: 8px;
  }

  .footer-logo>p {
    margin: 0;
  }

  .footer-info,
  .footer-last-item {
    gap: 12px;
  }

  .footer-menu {
    width: 100%;
    gap: 12px;
  }

  .footer-last {
    gap: 20px;
  }

  .footer-last-form {
    height: 40px;
  }

  .ecosystem-item {
    padding: 16px;
  }

  .ecosystem-item>a:not(.ecosystem-item-link) {
    gap: 12px;
  }

  .ecosystem-item-description {
    -webkit-line-clamp: 5;
    height: 100px;
  }

  .ecosystem-item {
    height: 350px;
    margin-bottom: 20px;
    padding: 12px;
  }

  .ecosystem-item>a:first-child>img {
    width: 72px;
    height: 72px;
    border-width: 2px;
  }

  .news-header {
    padding: 16px 0
  }

  .news-menu {
    width: 100%;
    overflow-x: scroll;
    padding: 0;
  }

  .news-menu::-webkit-scrollbar {
    display: none;
  }

  .news-menu-item {
    white-space: nowrap;
  }

  .news-item-type-1-content,
  .news-item-type-2-content {
    padding: 8px
  }

  .news-item-type-1-info,
  .news-item-type-2-info {
    flex-direction: column;
  }

  .news-item-type-1-info .line,
  .news-item-type-2-info .line {
    display: none;
  }

  .news-item-type-2-desc {
    height: 84px;
  }

  .news-item-type-2 {
    gap: 8px;
    margin-bottom: 16px;
  }

  .news-item-type-2-img,
  .news-item-type-1-img {
    height: 160px;
  }

  .news-item-type-2-title {
    height: 46px;
  }

  .news-item-type-1-info {
    justify-content: flex-end;
    align-items: flex-start;
  }

  .news-item-type-1-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 46px;
  }

  .news-item-type-1-content,
  .news-item-type-1-info,
  .news-item-type-2-info {
    gap: 0;
  }

  .news-detail .container {
    padding: 0;
  }

  .news-detail-content-header {
    gap: 8px;
  }

  .news-detail-subheader {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cmt-container {
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
  }

  .cmt-list {
    gap: 24px;
  }

  .cmt-name {
    margin: 0;
  }

  .partner-inner .ecosystem-item,
  .partner-header {
    margin-bottom: 16px;
  }

  .img-introduce-mobile {
    display: none;
  }

  .title-main-number {
    margin: 0;
    font-size: 60px;
    line-height: 60px;
  }

  .introduce-box-1-desc::before {
    display: none;
  }

  .introduce-box-4-inner {
    gap: 32px;
  }

  .introduce-box-4-bg {
    height: 180px;
  }

  .introduce-box-4-bg>img {
    width: 100%;
    height: 100%;
  }

  .introduce-box-4 .container {
    padding: 0;
  }

  .title-main-text::after{
    width: 60px;
    display: none;
  }

  .home-box-2-item{
    gap: 12px;
  }

  .home-box-2-item-title{
    margin: 0;
  }

  .home-box-2-inner, .home-box-3-inner, .home-box-4-inner,.home-box-5-inner{
    gap: 24px;
  }

  .partner-list{
    gap: 8px;
  }

  .home-box-1>.box-inner>.row>div:last-child{
    display: none;
  }

  .introduce-box-1-desc{
    margin-top: 20px;
  }

  .box-inner{
    padding: 24px 8px !important;
  }

  .news-item-type-2.news-item-type-2-first, .news-item-type-1{
    height: 390px;
    margin-bottom: 20px;
  }

  .other-news-title{
    margin-bottom: 24px;
  }
}