@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');

@font-face {
  font-family: "Arimo";
  src: url(../fonts/Arimo-Regular.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Arimo";
  src: url(../fonts/Arimo-Bold.ttf) format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Shopee2021";
  src: url(../fonts/shopee2021-bold.ttf) format("truetype");
  font-weight: bold;
  font-style: normal;
}

/* Common title styles */
.section-title {
  width: 1256px;
  padding: 165px 0 30px 0;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1200px) {
  .section-title {
    width: 100%;
    padding: 65rem 0 30rem 0;
    height: auto;
  }
}

* {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

body {
  position: relative;
  margin: 0;
  width: 100%;
  min-width: 1200px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.high-light:hover {
  filter: brightness(1.2);
}

a {
  text-decoration: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #013832;
}

::-webkit-scrollbar-thumb:hover {
  background: #028d7d;
}

.wrap {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1920px;
  overflow: hidden;
  margin: 0 auto;
  background: url("../images/bg-pc-2.png") top center no-repeat #ecebe7;
}

@media (max-width: 1200px) {
  body {
    min-width: unset;
  }

  .wrap {
    height: auto;
    min-height: 100vh;
    overflow: visible;
    background: url("../images/bg-mb-2.png") top center no-repeat #f3ebde;
    background-size: 100% auto;
  }

  .section {
    overflow: visible;
  }
}

.header {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: visible;
  background: url("../images/nen-header.png") top center no-repeat;
  background-size: auto 100%;
}

.header .nav-header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 3.5vw;
}

.header .nav-header li.logo-item {
  position: relative;
  left: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .logo {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 130px;
  height: 130px;
  margin: 0 15px;
  background: none;
  z-index: 10;
}

.header .logo img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  display: block;
}

.header .nav-header li .nav-icon {
  width: auto;
  height: 30px;
  margin-right: 10px;
}

.header .nav-header li a {
  position: relative;
}

.header .nav-header li span {
  position: relative;
  color: #ffffff;
  font-family: 'Philosopher', sans-serif !important;
  font-weight: 700;
  transition: color 0.3s ease;
}

.header .nav-header li a:hover span {
  color: #18376B !important;
  text-shadow: 0 0 10px rgba(24, 55, 107, 0.4);
}

.btn-burger-mb,
.menu-overlay-mb {
  display: none;
}

.header .group-btn {
  display: none;
}

@media (max-width: 1200px) {
  .header {
    height: auto;
    background: none;
    overflow: visible;
    padding: 20rem 0 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .btn-burger-mb {
    position: absolute;
    left: 40rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 84rem;
    height: 84rem;
    border-radius: 50%;
    border: 3rem solid rgba(255, 255, 255, 0.85);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 9rem;
    cursor: pointer;
    outline: none;
    padding: 0;
    box-shadow: 0 4rem 12rem rgba(0, 0, 0, 0.3);
  }

  .btn-burger-mb span {
    display: block;
    width: 40rem;
    height: 4rem;
    background-color: #ffffff;
    border-radius: 2rem;
  }

  .header .nav-header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    left: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    gap: 0;
  }

  .header .nav-header li:not(.logo-item) {
    display: none !important;
  }

  .header .nav-header li.logo-item {
    position: relative;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 0;
    left: 0;
    width: 220rem;
    height: auto;
    margin: 0 auto;
    background: none;
  }

  .header .logo img {
    display: block;
    width: 220rem;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    object-fit: contain;
  }

  .header .group-btn {
    display: none !important;
  }

  .menu-overlay-mb {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 99999;
    background: url("../images/menu-bg-mb-2.png") center top / cover no-repeat #0b1a3d;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 30rem 20rem 35rem 20rem;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .menu-overlay-mb.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .menu-overlay-mb .btn-close-mb {
    position: absolute;
    top: 30rem;
    right: 35rem;
    width: 76rem;
    height: 76rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    border: 3rem solid rgba(255, 255, 255, 0.85);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    outline: none;
    padding: 0;
    box-shadow: 0 4rem 12rem rgba(0, 0, 0, 0.4);
  }

  .menu-overlay-mb .btn-close-mb svg {
    width: 40rem;
    height: 40rem;
    display: block;
    stroke: #ffffff;
  }

  .menu-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    min-height: 100%;
    box-sizing: border-box;
  }

  .menu-mb-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 10rem;
    margin-bottom: 0;
  }

  .menu-mb-logo img {
    width: 190rem;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4rem 15rem rgba(0, 0, 0, 0.6));
  }

  .menu-mb-card {
    width: 90%;
    max-width: 840rem;
    background: url("../images/menu-bg-text.png") center center no-repeat;
    background-size: 100% 100%;
    padding: 75rem 40rem;
    box-sizing: border-box;
    margin: 10rem auto;
    transform: translateY(90rem);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 1020rem;
  }

  .menu-mb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32rem;
  }

  .menu-mb-list li {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menu-mb-list li.menu-dot {
    margin: 0;
  }

  .menu-mb-list li.menu-dot img {
    width: 22rem;
    height: 22rem;
    object-fit: contain;
    display: block;
  }

  .menu-mb-list li a {
    font-family: 'Philosopher', sans-serif !important;
    font-size: 40rem;
    font-weight: 700;
    color: #ffffff !important;
    letter-spacing: 3rem;
    text-shadow: 0 2rem 8rem rgba(0, 0, 0, 0.7);
    transition: color 0.2s ease, transform 0.2s ease;
  }

  .menu-mb-list li a:hover,
  .menu-mb-list li a:active {
    color: #ffd875 !important;
    transform: scale(1.06);
  }

  .menu-mb-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28rem;
    margin-top: 0;
    margin-bottom: 10rem;
    width: 100%;
  }

  .menu-mb-social a {
    font-family: 'Philosopher', sans-serif !important;
    font-size: 34rem;
    font-weight: 700;
    color: #ffffff !important;
    letter-spacing: 2rem;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .menu-mb-social a:hover {
    color: #ffd875 !important;
  }

  .menu-mb-social .divider {
    color: rgba(255, 255, 255, 0.6);
    font-size: 34rem;
  }
}

.nav-right {
  position: fixed;
  top: 120px;
  right: 0;
  z-index: 99;
  width: 120px;
}

.nav-right-inner {
  position: relative;
  width: 100%;
}

.nav-right img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-right .nav-right-link {
  position: absolute;
  display: block;
  z-index: 10;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.nav-right .nav-right-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.nav-right .to-top {
  cursor: pointer;
}

@media (max-width: 1200px) {
  .nav-right {
display: block;
top: -64rem;
        right: -8px;
        width: 241rem;
        height: 473rem;
        overflow: hidden;
        z-index: 999;
  }

  .nav-right .nav-right-top {
    left: 15% !important;
    width: 70% !important;
  }

  .nav-right .nav-right-bottom {
    display: none !important;
  }
}

.section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.section-1 {
  height: 787px;
}

.section-1 .play-btn {
  position: absolute;
  top: 191px;
  left: 53%;
  transform: translateX(-50%);
  width: 95px;
  height: 95px;
}

.section-1 .group-btn {
  position: absolute;
  top: 588px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: 1200px;
  height: auto;
  background: none !important;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.section-1 .group-btn .btn-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.section-1 .group-btn .btn-col.col-dangky,
.section-1 .group-btn .btn-col.col-napthe {
  height: 116px;
  justify-content: center;
}

.section-1 .group-btn .btn-item {
  display: block;
  position: relative;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.section-1 .group-btn .btn-item:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}

.section-1 .group-btn .btn-col.col-dangky .btn-item img,
.section-1 .group-btn .btn-col.col-napthe .btn-item img {
  width: 148px;
  height: 116px;
  object-fit: contain;
  display: block;
}

.section-1 .group-btn .btn-col.col-ios-apk .btn-item img,
.section-1 .group-btn .btn-col.col-android-pc .btn-item img {
  width: 195px;
  height: 56px;
  object-fit: contain;
  display: block;
}

@media (max-width: 1200px) {
  .section-1 {
    height: 1939rem;
  }

  .section-1 .play-btn {
    display: none;
  }

  .section-1 .group-btn {
    position: absolute;
    top: 1425rem;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 720rem;
    height: auto;
    background: none !important;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16rem 20rem;
    z-index: 10;
  }

  .section-1 .group-btn .btn-col {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
  }

  .section-1 .group-btn .btn-col.col-ios-apk {
    order: 1;
    width: calc(50% - 10rem);
    max-width: 320rem;
    flex-direction: column;
    gap: 12rem;
  }

  .section-1 .group-btn .btn-col.col-android-pc {
    order: 2;
    width: calc(50% - 10rem);
    max-width: 320rem;
    flex-direction: column;
    gap: 12rem;
  }

  .section-1 .group-btn .btn-col.col-dangky {
    order: 3;
    width: calc(50% - 10rem);
    max-width: 320rem;
    height: auto;
  }

  .section-1 .group-btn .btn-col.col-napthe {
    order: 4;
    width: calc(50% - 10rem);
    max-width: 320rem;
    height: auto;
  }

  .section-1 .group-btn .btn-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .section-1 .group-btn .btn-col.col-ios-apk .btn-item img,
  .section-1 .group-btn .btn-col.col-android-pc .btn-item img {
    width: 100%;
    max-width: 300rem;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .section-1 .group-btn .btn-col.col-dangky .btn-item img,
  .section-1 .group-btn .btn-col.col-napthe .btn-item img {
    width: 100%;
    max-width: 300rem;
    height: auto;
    object-fit: contain;
    display: block;
  }
}

.section-2 {
  height: 1122px;
  padding-top: 80px;
}

.section-2 .news-cont {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
  width: 85%;
  height: 560px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 5px 20px;

  overflow: hidden;
}

.section-2 .news-cont::before {
  display: none;
}

.section-2 .news-slide-cont {
  position: relative;
  width: 100%;
  height: 550px;
  min-width: 0;
}

.section-2 .news-slide-cont .news-slide {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
}

.section-2 .news-slide-cont .news-slide li {
  width: 100%;
  height: 100%;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s ease-in-out;
}

.section-2 .news-slide-cont .news-slide li.curr {
  visibility: visible;
  opacity: 1;
}

.section-2 .news-slide-cont .news-slide li img {
  height: 100%;
  object-fit: fill;
}

.section-2 .news-slide-cont .news-pagination {
  position: absolute;
  bottom: 32px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  display: none;
}

.section-2 .news-slide-cont .news-pagination li {
  display: block;
  width: 26px;
  height: 26px;
  background: #ffffff;
  border-radius: 13px;
  transition: all 0.6s ease-in-out;
  cursor: pointer;
}

.section-2 .news-slide-cont .news-pagination li.curr {
  width: 100px;
  background: #ffcf00;
}

.section-2 .news-slide-cont .news-pagination li:hover {
  background: #ffcf00;
}

.section-2 .news-list-cont {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.section-2 .news-tabs {
  margin-bottom: 15px;
}

.section-2 .news-tabs .nav-item {
  _background: #ffa72a;
  height: 49px;
  width: 24%;
  border-radius: 25px;
  font-family: 'Philosopher', sans-serif !important;
  font-weight: bold;
  font-size: 19px;
  text-transform: uppercase !important;
  text-align: center;
  line-height: 49px;
  padding: 0;
  color: #002258;
  _background: linear-gradient(187deg, #d4c065, #c4913b, #b76b1c);
}

.section-2 .news-tabs .nav-item.active {
  background: 0;
  color: #002258;
  _text-shadow: 0 0 10px #fd0013;
  _background: linear-gradient(187deg, #d4c065, #c4913b, #b76b1c);
}

.section-2 .news-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  height: 400px;
  overflow-y: auto;
}

/* Custom scrollbar for news-list */
.section-2 .news-list::-webkit-scrollbar {
  width: 8px;
}

.section-2 .news-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 6px;
}

.section-2 .news-list::-webkit-scrollbar-thumb {
  background: #995B04;
  border-radius: 6px;
}

.section-2 .news-list::-webkit-scrollbar-thumb:hover {
  background: #7a4a03;
}

.section-2 .news-list li {
  width: 100%;
  height: 52px;
}

.section-2 .news-list li:hover,
.section-2 .news-list li:first-of-type {}

.section-2 .news-list li a {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: Arimo;
  color: #000000 !important;
  font-size: 18px;
  font-weight: bold;
  border-bottom: none;
  padding: 0 14px 0 25px;
}

.section-2 .news-list li .news-item-date {
  _width: 100%;
  text-align: left;
  margin-bottom: 4px;
  color: #777777 !important;
  font-family: 'Philosopher', sans-serif !important;
  font-size: 18px;
  font-weight: normal;
}

.section-2 .news-list li .news-item-title {
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.section-2 .news-all {
  display: none;
}

.section-2 .search-group {
  margin-top: 0;
  margin-bottom: 20px;
  height: 48px;
}

.section-2 .search-group input {
  background: transparent;
  border: 1px solid #0046D0;
  border-radius: 8px 0 0 8px !important;
  box-shadow: none;
  outline: none;
  padding: 0 24px;
  color: #666666;
  height: 48px;
  font-size: 15px;
}

.section-2 .search-group input::placeholder {
  color: #888888;
  opacity: 1;
}

.section-2 .search-group .btn {
  width: 54px;
  height: 48px;
  background: transparent;
  border: 1px solid #0046D0;
  border-left: none;
  border-radius: 0 8px 8px 0 !important;
  color: #0046D0;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-2 .search-group .btn i,
.section-2 .search-group .btn svg {
  color: #0046D0;
  stroke: #0046D0;
}

.section-2 .quick-links-cont {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.section-2 .quick-links-cont .quick-link-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-2 .quick-links-cont .quick-link-item a {
  display: block;
  width: 100%;
  text-align: center;
}

.section-2 .quick-links-cont .quick-link-item img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  transition: transform 0.3s ease;
}

.section-2 .quick-links-cont .quick-link-item a:hover img {
  transform: scale(1.04);
}

.section-2-2 {
  position: relative;
  width: 100%;
  padding-bottom: 60px;
}

.section-2-2 .gioi-thieu-cont {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.section-2-2 .gioi-thieu-text,
.section-2-2 .gioi-thieu-text p {
  font-family: 'Philosopher', sans-serif !important;
  width: 100%;
  font-size: 16px;
  line-height: 1.8;
  color: #002258;
  text-align: justify;
  background: transparent;
  backdrop-filter: none;
  padding: 10px 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.section-2-2 .gioi-thieu-img {
  width: 100%;
  text-align: center;
}

.section-2-2 .gioi-thieu-img picture {
  display: inline-block;
  max-width: 100%;
}

.section-2-2 .gioi-thieu-img img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
  .section-2 {
    height: auto;
    padding-top: 0;
    padding-bottom: 50rem;
  }

  .section-2 .news-cont {
    left: 50%;
    transform: translateX(-50%);
    grid-template-columns: 1fr;
    gap: 65rem;
    width: 1015rem;
    height: auto;
    _background: linear-gradient(135deg, #8B4513, #A0522D, #CD853F);
    padding: 30rem;
    border-radius: 10rem;
  }

  .section-2 .news-slide-cont {
    height: 560rem;
  }

  .section-2 .news-slide-cont .news-slide li img {
    width: 100%;
  }

  .section-2 .news-slide-cont .news-pagination {
    position: absolute;
    bottom: 42rem;
    gap: 30rem;
  }

  .section-2 .news-slide-cont .news-pagination li {
    width: 26rem;
    height: 26rem;
    border-radius: 13rem;
  }

  .section-2 .news-slide-cont .news-pagination li.curr {
    width: 100rem;
  }

  .section-2 .news-list-cont {
    flex-direction: column-reverse;
  }

  .section-2 .news-tabs {
    margin-bottom: 60rem;
    _background: #a6582f;
    padding: 5px 0px;
  }

  .section-2 .news-tabs .nav-item {
    _background: #a6582f;
    height: 49rem;
    width: 22.5%;
    border-radius: 25rem;
    font-size: 24rem;
    line-height: 49rem;
  }

  .section-2 .news-tabs .nav-item.active {
    _text-shadow: 0 0 10rem #fd0013;
  }

  

  .section-2 .news-list {
    width: 100%;
    height: 588rem;
    margin-bottom: 30rem;
  }

  .section-2 .news-list li {
    height: 96rem;
  }

  .section-2 .news-list li a {
    font-size: 32rem;
    border-bottom: 1rem solid #ebebeb;
    padding: 0 14rem 0 25rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .section-2 .news-list li .news-item-title {
    flex-grow: 1;
    max-width: 60vw;
    order: 1;
  }

  .section-2 .news-list li .news-item-date {
    width: auto;
    margin-bottom: 0;
    order: 2;
    text-align: right;
  }

  .section-2 .news-all {
    display: none;
  }

  .section-2 .search-group {
    position: relative;
    top: 0;
    height: 95rem;
    margin-bottom: 80rem;
  }

  .section-2 .search-group input {
    padding: 0 26rem;
    border: 1rem solid #0046D0;
    border-radius: 12rem 0 0 12rem !important;
    font-size: 28rem;
    background: transparent;
    color: #666666;
  }

  .section-2 .search-group input::placeholder {
    color: #888888;
    opacity: 1;
  }

  .section-2 .search-group .btn {
    width: 95rem;
    font-size: 50rem;
    background: transparent;
    border: 1rem solid #0046D0;
    border-left: none;
    border-radius: 0 12rem 12rem 0 !important;
    color: #0046D0;
  }

  .section-2 .quick-links-cont {
    width: 90%;
    grid-template-columns: repeat(2, 1fr);
    gap: 15rem;
    margin-top: 30rem;
  }

  .section-2-2 .gioi-thieu-cont {
    width: 90%;
    grid-template-columns: 1fr;
    gap: 25rem;
  }

  .section-2-2 .gioi-thieu-text,
  .section-2-2 .gioi-thieu-text p {
    font-family: 'Philosopher', sans-serif !important;
    font-size: 26rem;
    line-height: 1.7;
    padding: 15rem 10rem;
    text-align: justify;
  }
}

.section-3 {
  height: auto;
  min-height: 800px;
  padding-bottom: 60px;
}

.section-3 .role-box-3col {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1150px;
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  gap: 20px;
  align-items: center;
  margin-top: 10px;
}

.section-3 .role-sel-left {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.section-3 .role-sel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.section-3 .role-sel-list .sel-item {
  width: 140px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
}

/* Curved arc layout: top & bottom items shifted right towards character */
.section-3 .role-sel-list .sel-item:nth-child(1) {
  transform: translateX(40px);
}

.section-3 .role-sel-list .sel-item:nth-child(2) {
  transform: translateX(0);
}

.section-3 .role-sel-list .sel-item:nth-child(3) {
  transform: translateX(40px);
}

.section-3 .role-sel-list .sel-item:nth-child(1):hover,
.section-3 .role-sel-list .sel-item:nth-child(1).active {
  opacity: 1;
  transform: translateX(40px) scale(1.05);
}

.section-3 .role-sel-list .sel-item:nth-child(2):hover,
.section-3 .role-sel-list .sel-item:nth-child(2).active {
  opacity: 1;
  transform: translateX(0) scale(1.05);
}

.section-3 .role-sel-list .sel-item:nth-child(3):hover,
.section-3 .role-sel-list .sel-item:nth-child(3).active {
  opacity: 1;
  transform: translateX(40px) scale(1.05);
}

.section-3 .role-sel-list .sel-item img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  display: block;
  transition: all 0.3s ease;
}

.section-3 .role-sel-list .sel-item.active img {
  width: 160px;
  height: 160px;
  max-width: none;
  max-height: none;
}

.section-3 .role-img-center {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  width: 100%;
  height: 650px;
  position: relative;
}

.section-3 .role-img-center img {
  max-width: 100%;
  height: 630px;
  max-height: 630px;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.25));
  transition: opacity 0.25s ease;
}

.section-3 .role-info-right {
  background: transparent;
  backdrop-filter: none;
  padding: 5px;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.section-3 .role-info-right .role-title {
  font-family: 'Philosopher', sans-serif !important;
  font-size: 36px;
  font-weight: bold;
  color: #002258;
  margin-bottom: 14px;
  border-bottom: none;
  padding-bottom: 0;
  display: inline-block;
}

.section-3 .role-info-right .role-desc {
  font-family: 'Philosopher', sans-serif !important;
  font-size: 15px;
  line-height: 1.7;
  color: #002258;
  text-align: justify;
  margin: 0;
}

.section-3 .title {
  /* Inherit from section-title class */
}

.section-3 .role-box {
  position: relative;
  width: 100%;
  height: 867px;
  margin: 0 auto;
  overflow: hidden;
}

.section-3 .role-tab {
  position: absolute;
  width: 1920px;
  height: 116px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0 170px;
  background: url(../home2/role/bg.png) no-repeat;
  background-size: 100% 100%;
  box-sizing: border-box;
  justify-content: center;
}

.section-3 .role-tab li {
  position: relative;
  width: 132px;
  height: 100%;
  opacity: 0.8;
  transition: opacity 0.7s 0s ease;
  -webkit-transition: opacity 0.7s 0s ease;
  -ms-transition: opacity 0.7s 0s ease;
  cursor: pointer;
}

.section-3 .role-tab li div {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.section-3 .role-tab li::before {
  position: absolute;
  left: -11px;
  bottom: 0;
  overflow: visible;
  content: "";
  display: block;
  background: url(../home2/role/role-split.png) no-repeat;
  background-size: 100% 100%;
  width: 22px;
  height: 114px;
  z-index: 1;
}

.section-3 .role-tab li:last-of-type::after {
  position: absolute;
  right: -11px;
  bottom: 0;
  overflow: visible;
  content: "";
  display: block;
  background: url(../home2/role/role-split.png) no-repeat;
  background-size: 100% 100%;
  width: 22px;
  height: 114px;
  z-index: 1;
}

.section-3 .role-tab li img {
  display: none;
}

.section-3 .role-tab li p {
  font-family: "Arimo";
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  margin: 0;
  padding: 0 25px;
  box-sizing: border-box;
  color: #fffeed;

}

.section-3 .role-tab li.curr,
.section-3 .role-tab li:hover {
  opacity: 1;
}

.section-3 .role-tab li.curr div,
.section-3 .role-tab li:hover div {
  height: 209px;
  background: url(../home2/role/role-active.png) no-repeat;
  background-size: 100% 100%;
}

.section-3 .role-tab li.curr img,
.section-3 .role-tab li:hover img {
  display: block;
  width: 96px;
  height: auto;
}

.section-3 .role-list {
  position: relative;
  width: 1580px;
  height: 676px;
  overflow: visible;
  list-style: none;
  padding: 0;
  left: 52%;
  transform: translateX(-50%);
  margin: 45px auto;
}

.section-3 .role-list li {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  height: 66%;
  width: 60%;
  transition: all 0.7s 0s ease;
  -webkit-transition: all 0.7s 0s ease;
  -ms-transition: all 0.7s 0s ease;
}

.section-3 .role-list li .role-video {
  position: absolute;
  top: 21px;
  left: 249px;
  width: 78%;
  height: 95%;
  z-index: 1;
}

.section-3 .role-list li .role-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-3 .role-list li .role-img {
  position: absolute;
  top: -138px;
  left: 650px;
  display: flex;
  width: 772px;
  height: 170%;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.section-3 .role-list li .role-img img {
  max-height: 100%;
}

.section-3 .role-list li .role-info {
  position: relative;
  width: 250px;
  height: 100%;
  padding: 10px 28px;
  box-sizing: border-box;
  background: url(../home/phai-bg-left.png) no-repeat;
  background-size: 100% 100%;
  z-index: 2;
}

.section-3 .role-list li .role-label {
  width: 100%;
  height: 56px;
  font-family: "Arimo";
  font-weight: bold;
  font-size: 12px;
  box-sizing: border-box;
  text-align: center;
  margin: 18px auto 0;
}

.section-3 .role-list li .role-label span {
  display: block;
  background: -webkit-linear-gradient(#e2b26a, #fffeec);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-3 .role-list li .role-name {
  position: relative;
  text-align: center;
  height: 135px;
  margin-top: 35px;
}

.section-3 .role-list li .role-name img {
  max-height: 100%;
}

/* .section-3 .role-list li .role-name::before {
  position: absolute;
  content: "";
  width: 78px;
  height: 94px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../home2/role/left.png) no-repeat;
  background-size: 100% 100%;
}
.section-3 .role-list li .role-name::after {
  position: absolute;
  content: "";
  width: 78px;
  height: 94px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../home2/role/right.png) no-repeat;
  background-size: 100% 100%;
} */
.section-3 .role-list li .role-des {
  position: relative;
  margin-top: 30px;
  font-family: "Arimo";
  font-size: 12px;
  line-height: 15px;
  color: #f5e5c1;
  box-sizing: border-box;
}

/* .section-3 .role-list li .role-des::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  width: 1px;
  height: 267px;
  background: linear-gradient(to bottom, #f5e5c1, transparent);
  background-size: 100% 100%;
} */
.section-3 .role-list li .role-play {
  position: absolute;
  bottom: 110px;
  left: 86px;
  display: flex;
  align-items: center;
  gap: 17px;
  font-family: Arimo;
  font-size: 13px;
  line-height: 29px;
  font-weight: bold;
  color: #f9eed0;
  text-transform: uppercase;
}

.section-3 .role-list li .role-play img {
  width: 95px;
}

.section-3 .role-list li.curr {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 1200px) {
  .section-3 {
    height: auto;
    padding-bottom: 50rem;
  }

  .section-3 .role-box-3col {
    width: 90%;
    grid-template-columns: 1fr;
    gap: 25rem;
  }

  .section-3 .role-sel-left {
    justify-content: center;
  }

  .section-3 .role-sel-list {
    flex-direction: row;
    justify-content: center;
    gap: 15rem;
    flex-wrap: wrap;
  }

  .section-3 .role-sel-list .sel-item {
    width: 280rem;
    height: auto;
    transform: none !important;
    opacity: 0.7;
  }

  .section-3 .role-sel-list .sel-item.active,
  .section-3 .role-sel-list .sel-item:hover {
    opacity: 1;
    transform: scale(1.05) !important;
  }

  .section-3 .role-sel-list .sel-item img {
    width: 100%;
    height: auto;
  }

  .section-3 .role-img-center img {
    max-width: 85%;
    max-height: 700rem;
    height: auto;
  }

  .section-3 .role-info-right {
    text-align: center;
    padding: 10rem 20rem;
  }

  .section-3 .role-info-right .role-title {
    font-size: 54rem;
    margin-bottom: 18rem;
    border-bottom: none;
    padding-bottom: 0;
  }

  .section-3 .role-info-right .role-desc {
    font-size: 26rem;
    line-height: 1.7;
    text-align: justify;
  }

  .section-3 .role-tab {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 290rem;
    background: url(../home/role/bg-mb.jpg) no-repeat;
    background-size: 100% 100%;
    padding: 0;
    gap: 0;
  }

  .section-3 .role-tab li {
    width: 154rem;
    height: 156rem;
  }

  .section-3 .role-tab li div {
    gap: 12rem;
    float: left;
  }

  .section-3 .role-tab li::before {
    left: -13rem;
    width: 26rem;
    height: 173rem;
  }

  .section-3 .role-tab li:last-of-type::after {
    position: absolute;
    right: -13rem;
    width: 26rem;
    height: 173rem;
  }

  .section-3 .role-tab li p {
    font-size: 31rem;
    line-height: 37rem;
    padding: 0 40rem;
  }

  .section-3 .role-tab li.curr div,
  .section-3 .role-tab li:hover div {
    height: 279rem;
  }

  .section-3 .role-tab li.curr img,
  .section-3 .role-tab li:hover img {
    width: 128rem;
  }

  .section-3 .role-list {
    width: 100%;
    height: 1100rem;
  }

  .section-3 .role-list li {
    width: 100%;
    height: 100%;
  }

  .section-3 .role-list li .role-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none;
    /* Ẩn video trên mobile */
  }

  .section-3 .role-list li .role-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .section-3 .role-list li .role-img {
    position: absolute;
    top: 124rem;
    left: 50%;
    transform: translateX(-50%);
    height: 724rem;
    z-index: 2;
  }

  .section-3 .role-list li .role-img img {
    max-height: 724rem;
  }

  .section-3 .role-list li .role-info {
    padding: 0 128rem;
    width: 100%;
    height: 100%;
    background: url(../home2/role/phai-bg-left.png) no-repeat;
    background-size: 100% 100%;
    z-index: 2;
    /* Điều chỉnh layout khi video bị ẩn */
    position: relative;
    top: 0;
    left: 0;
  }

  .section-3 .role-list li .role-name {
    height: 103rem;
  }

  .section-3 .role-list li .role-name::before,
  .section-3 .role-list li .role-name::after {
    width: 78rem;
    height: 102rem;
  }

  .section-3 .role-list li .role-label {
    height: 72rem;
    font-size: 36rem;
    line-height: 72rem;
    margin-top: 600rem;
    padding: 0;
  }

  .section-3 .role-list li .role-des {
    padding: 0 37rem;
    margin: 7rem 0 0;
    font-size: 36rem;
    line-height: 43rem;
  }

  .section-3 .role-list li .role-des::before {
    width: 1rem;
    height: 267rem;
  }

  .section-3 .role-list li .role-play {
    bottom: 435rem;
    left: 50%;
    transform: translateX(-50%);
    gap: 18rem;
    font-family: Arimo;
    font-size: 36rem;
    line-height: 42rem;
  }

  .section-3 .role-list li .role-play img {
    width: 117rem;
  }
}

.section-4 {
  height: 980px;
}

.section-4 .title {
  /* Inherit from section-title class */
}

.section-4 .slide-cont {
  width: 100%;
  height: 618px;
  margin-top: 52px;
}

.section-4 .slide-cont .slide-box {
  position: relative;
  height: 100%;
  width: 1080px;
  margin: 0 auto;
}

.section-4 .slide-cont .slide-box .slide-item {
  padding: 19px 23px;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-4 .slide-cont .slide-box .slide-item img {
  width: 100%;
}

.section-4 .slide-cont .slide-box .slide-item::before {
  display: none;
}

.section-4 .slide-cont .slide-box .item-active {
  visibility: visible;
  opacity: 0.8;
}

.section-4 .slide-cont .slide-box .item-prev {
  transform: translateX(-90%) scale(1);
  -moz-transform: translateX(-90%) scale(1);
  -webkit-transform: translateX(-90%) scale(1);
  -o-transform: translateX(-90%) scale(1);
}

.section-4 .slide-cont .slide-box .item-next,
.section-4 .slide-cont .slide-box .item-prev {
  visibility: visible;
  z-index: 1;
  opacity: 0;
}

.section-4 .slide-cont .slide-box .item-next {
  transform: translateX(90%) scale(1);
  -moz-transform: translateX(90%) scale(1);
  -webkit-transform: translateX(90%) scale(1);
  -o-transform: translateX(90%) scale(1);
}

.section-4 .slide-cont .slide-box .item-center {
  transform: translate(0);
  -moz-transform: translate(0);
  -webkit-transform: translate(0);
  -o-transform: translate(0);
  z-index: 2;
  opacity: 1;
}

.section-4 .slide-cont .slide-box .item-center::before {
  visibility: visible;
  opacity: 0.8;
}

.section-4 .slide-cont .prev,
.section-4 .slide-cont .next {
  position: absolute;
  width: 104px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.section-4 .slide-cont .prev {
  left: -174px;
}

.section-4 .slide-cont .next {
  right: -174px;
}

.section-4 .slide-pagination {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.section-4 .slide-pagination li {
  display: block;
  width: 26px;
  height: 26px;
  background: url(../home/slider-dot.png) no-repeat center center;
  background-size: contain;
  border-radius: 0;
  transition: all 0.6s ease-in-out;
  cursor: pointer;
}

.section-4 .slide-pagination li.active {
  width: 100px;
  background: url(../home/slider-active.png) no-repeat center center;
  background-size: contain;
}

.section-4 .slide-pagination li:hover {
  background: url(../home/slider-active.png) no-repeat center center;
  background-size: contain;
}

@media (max-width: 1200px) {
  .section-4 {
    height: auto;
    padding-bottom: 60rem;
  }

  .section-4 .title {
    /* Inherit from section-title class */
  }

  .section-4 .slide-cont {
    width: 100%;
    height: 552rem;
    margin-top: 130rem;
  }

  .section-4 .slide-cont .slide-box {
    width: 963rem;
  }

  .section-4 .slide-cont .slide-box .slide-item {
    padding: 20rem;
  }

  .section-4 .slide-cont .slide-box .slide-item::before {
    display: none;
  }

  .section-4 .slide-cont .slide-box .item-prev {
    transform: translateX(-102%) scale(1);
    -moz-transform: translateX(-102%) scale(1);
    -webkit-transform: translateX(-102%) scale(1);
    -o-transform: translateX(-102%) scale(1);
  }

  .section-4 .slide-cont .slide-box .item-next {
    transform: translateX(102%) scale(1);
    -moz-transform: translateX(102%) scale(1);
    -webkit-transform: translateX(102%) scale(1);
    -o-transform: translateX(102%) scale(1);
  }

  .section-4 .slide-cont .prev,
  .section-4 .slide-cont .next {
    width: 93rem;
    height: 93rem;
  }

  .section-4 .slide-cont .prev {
    left: -25rem;
  }

  .section-4 .slide-cont .next {
    right: -25rem;
  }

  .section-4 .slide-pagination {
    gap: 30rem;
    margin: 60rem 0 0;
  }

  .section-4 .slide-pagination li {
    width: 24rem;
    height: 24rem;
    border-radius: 0;
    background: url(../home/slider-dot.png) no-repeat center center;
    background-size: contain;
  }

  .section-4 .slide-pagination li.active {
    width: 95rem;
    background: url(../home/slider-active.png) no-repeat center center;
    background-size: contain;
  }
}

.footer {
  height: 255px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  color: #FFFFFF;
  font-family: 'Philosopher', sans-serif !important;
  background: url("../images/sub-footer.png") center center no-repeat;
  background-size: 100% 100%;
}

.footer .logo {
  width: 372px;
}

.footer .footer-col {
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.footer .group-link {
  display: flex;
  gap: 50px;
}

.footer .group-link a {
  font-family: 'Philosopher', sans-serif !important;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fdfae0;
}

.footer .text p {
  font-family: 'Philosopher', sans-serif !important;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  margin: 0;
}

.footer .text p:first-of-type {
  margin: 26px 0;
}

@media (max-width: 1200px) {
  .footer {
    height: auto;
    min-height: 362rem;
    padding: 40rem 20px;
    color: #000000;
  }

  .footer .logo {
    display: none;
    width: 396rem;
  }

  .footer .group-link {
    gap: 65rem;
  }

  .footer .group-link a {
    font-size: 20rem;
    line-height: 24rem;
    color: #000000;
  }

  .footer .text p {
    color: #000000;
    text-align: center;
    font-size: 20rem;
    line-height: 28rem;
  }

  .footer .text p:first-of-type {
    color: #000000;
    text-align: center;
    margin: 36rem 0;
  }
}

.entry-content p {
  font-size: 16px;
}

.entry-content h1 {
  font-size: 26px;
}

.entry-content h2 {
  font-size: 24px;
}

.entry-content h3 {
  font-size: 22px;
}

.entry-content h4 {
  font-size: 20px;
}

.entry-content span {
  font-size: 16px;
}

.entry-content {
  padding: 0 14px;
  text-align: justify;
}

/* Ẩn video trên thiết bị mobile */
@media (max-width: 1200px) {

  .section-1 .video-bg,
  .section-3 .role-video,
  .section-3 .role-video video {
    display: none !important;
  }

  /* Ẩn video trong tất cả các section khác trên mobile */
  video {
    display: none !important;
  }

  /* Điều chỉnh layout khi video bị ẩn */
  .section-3 .role-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .section-3 .role-list li .role-info {
    order: 1;
    margin-bottom: 30rem;
  }

  .section-3 .role-list li .role-img {
    order: 2;
    margin-bottom: 30rem;
  }

  .section-3 .role-list li .role-des {
    color: #3b3b3b;
  }

  .section-3 .role-list li .role-label span {
    display: block;
    background: -webkit-linear-gradient(#e2b26a, #333333);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}