:root {
  --font-primary-regular: "be-vietnam-regular";
  --font-primary-thin: "be-vietnam-thin";
  --font-primary-light: "be-vietnam-light";
  --font-primary-medium: "be-vietnam-medium";
  --font-primary-semiBold: "be-vietnam-semiBold";
  --font-primary-bold: "be-vietnam-bold";
  --font-primary-black: "be-vietnam-black";
  --font-dvn-calaire-murphy: "dvn-caliremurrphy";
  --White: #fff;
  --Linear: #F7D285;
}

/* font */

@font-face {
  font-family: "be-vietnam-regular";
  src: url(../font/be-vietnam/BeVietnamPro-Regular.ttf);
}

@font-face {
  font-family: "be-vietnam-light";
  src: url(../font/be-vietnam/BeVietnamPro-Light.ttf);
}

@font-face {
  font-family: "be-vietnam-medium";
  src: url(../font/be-vietnam/BeVietnamPro-Medium.ttf);
}

@font-face {
  font-family: "be-vietnam-semiBold";
  src: url(../font/be-vietnam/BeVietnamPro-SemiBold.ttf);
}

@font-face {
  font-family: "be-vietnam-bold";
  src: url(../font/be-vietnam/BeVietnamPro-Bold.ttf);
}

@font-face {
  font-family: "be-vietnam-black";
  src: url(../font/be-vietnam/BeVietnamPro-Black.ttf);
}

@font-face {
  font-family: "dvn-caliremurrphy";
  src: url(../font/dvn-caliremurrphy/DVN-CalireMurrphy-Flat-mpceeg.ttf);
}

label {
  font-weight: unset !important;
}

body {
  font-family: var(--font-primary-light);
  font-size: 14px;
  line-height: 22px;
  color: var(--White);
}

.text-white {
  color: var(--White) !important;
}

.text-red {
  color: var(--Red-red-500) !important;
}

.sec-56 {
  padding: 56px 0;
}

a {
  text-decoration: none !important;
}

p:not(.editor-content p),
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) {
  margin: 0;
}

p {
  margin: 16px 0;
}

.main-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.header-container {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-right {
  display: inline-flex;
  align-items: center;
  gap: 32px;
}

.header-hotline {
  display: flex;
  align-items: center;
  gap: 8px;
  display: none;
}

.header-hotline div {
  color: #FFF;
  font-family: var(--font-primary-bold);
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
}

.btn-contact {
  display: flex;
  height: 40px;
  padding: 0 16px;
  align-items: center;
  gap: 8px;
  border-radius: 40px;
  border: 1px solid #ECEAE8;
  color: #FFF;
  font-family: var(--font-primary-bold);
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  cursor: pointer;
}

.header-menu {
  position: relative;
}

.header-menu-header {
  cursor: pointer;
  width: 64px;
}

.header-menu-header svg {
  display: none;
}

body:has(.header-menu-page.active) .header-menu-header img {
  display: none;
}

body:has(.header-menu-page.active) .header-menu-header svg {
  display: flex;
}

.btn-close svg {
  width: 16px;
  height: 16px;
}

.header-menu-popup {
  position: absolute;
  top: 100%;
  right: 0;
  width: max-content;
  background-color: #fff;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.5s ease;
}

.header-menu:hover .header-menu-popup {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.header-menu-popup a {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #000;
  font-family: var(--font-primary-bold);
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  width: 100%;
  text-align: end;
  transition: all 0.5s ease;
}

.list-box {
  display: flex;
  flex-direction: column;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  position: fixed;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  z-index: 90;
  width: 90px;
}

.list-box-item {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  width: 60px;
}

.list-box-item>.title {
  color: #FFF;
  font-family: var(--font-primary-black);
  font-size: 12px;
  font-style: normal;
  line-height: 20px;
  text-transform: uppercase;
  opacity: 0;
  transform: translatex(100px);
  transition: all 0.7s ease;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.list-box-item.active>.title,
.list-box-item:hover>.title {
  opacity: 1;
  transform: translatex(0px);
}

.list-box-item-img {
  position: relative;
}

.list-box-item-img>img {
  transition: all 0.5s ease;
  opacity: 0.7;
}

.list-box-item:hover .list-box-item-img>img {
  opacity: 1;
}

.list-box-item.active .list-box-item-img>img:last-child {
  opacity: 1 !important;
}

.list-box-item.active .list-box-item-img>img:first-child {
  opacity: 0 !important;
}

.list-box-item-img>img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0 !important;
}

.box-container {
  width: 100%;
  height: 100%;
  background-color: #0D3179;
  transform: translate3d(0, 100%, 0);
  position: absolute;
  left: 0;
  top: 0;
  transition: transform 0.8s ease;
}

.box-active {
  transform: translate3d(0, 0, 0);
  z-index: 2;
}

.no-transition {
  transition: none !important;
}

.box-1 {
  background-image: url('../img/bg-box-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-info {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  padding: 0 60px;
  position: absolute;
  left: 0;
  bottom: 20px;
  transform: translateX(-100px);
  transition: all 2s ease;
  opacity: 0;
}

.box-1.show-content .contact-info {
  transform: translateX(0);
  opacity: 1;
}

.contact-info>.title {
  color: var(--White);
  text-align: center;
  font-family: var(--font-primary-medium);
  font-size: 12px;
  font-style: normal;
  line-height: 27px;
  text-transform: uppercase;
}

.contact-info>.line {
  width: 68px;
  height: 1px;
  background: #E9E9E9;
}

.icon-scroll-down {
  position: absolute;
  bottom: 20px;
  right: 32px;
  cursor: pointer;
}

.box-1-text {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.box-1-text-first,
.box-1-text-second {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.box-1-text-first {
  transform: translateX(-100px);
  opacity: 0;
  transition: all 2s ease;
}

.box-1-text-second {
  transform: translateX(100px);
  opacity: 0;
  transition: all 2s ease;
}

.box-1.show-content .box-1-text-first,
.box-1.show-content .box-1-text-second {
  transform: translateX(0);
  opacity: 1;
}

.base-title {
  text-align: center;
  font-family: var(--font-primary-black);
  font-size: 48px;
  font-style: normal;
  line-height: 70px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ECEAE8 2.02%, #EDEFE0 19.56%, #EFF5D7 37.11%, #E4F1DC 51.43%, #CCEAEA 62.97%, #CCEAEA 74.06%, #D8EAF4 85.59%, #DCEAF8 98.07%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 4px;
}

.title-style {
  font-family: var(--font-dvn-calaire-murphy);
  color: var(--White);
  text-align: center;
  font-size: 60px;
  font-style: normal;
  line-height: 90px;
  letter-spacing: -1.2px;
}

.box-2 {
  background-image: url('../img/bg-box-2.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.box-2-inner {
  margin-top: 112px;
  display: flex;
  align-items: flex-start;
}

.box-2-left {
  width: min(100%, 700px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  transform: translateX(-150px);
  opacity: 0;
  transition: all 2s ease;
}

.box-2.show-content .box-2-left {
  transform: translateX(0);
  opacity: 1;
}

.box-2-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: -8px;
  width: 280px;
}

.box-2-header .title-style,
.box-3-header .title-style,
.box-4-header .title-style {
  font-size: 48px;
  line-height: 68px;
  background: linear-gradient(90deg, #31E0FF 0%, #FF5FDE 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 8px;
}

.box-2-header .base-title,
.box-3-header .base-title {
  text-align: end;
  width: 100%;
  margin-top: -8px;
}

.box-2-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.box-2-content-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.box-2-content-list>.item:not(:last-child) {
  border-bottom: 1px solid #eceae844;
  padding-bottom: 8px;
}

.box-2-content-list>.item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.box-2-content-list>.item>.title {
  min-width: 172px;
}

.box-2-content-list>.item>.desc {
  flex: 1;
}

.box-3 {
  background-image: url('../img/bg-box-3.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.box-3 .container {
  position: relative;
  z-index: 10;
}

.box-3::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(9, 43, 88, 0.70) 0%, rgba(9, 43, 88, 0.00) 25.1%);
}

.box-3-inner {
  margin-top: 112px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.box-3-right {
  display: flex;
  width: min(100%, 750px);
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
  transform: translateX(200px);
  opacity: 0;
  transition: all 2s ease;
}

.box-3.show-content .box-3-right {
  transform: translateX(0);
  opacity: 1;
}

.box-3-header {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: -8px;
}

.box-3-decs {
  text-align: end;
}

.box-3-right .items {
  display: flex;
  width: 420px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.box-3-right .items .item:not(:last-child) {
  border-bottom: 1px solid #eceae844;
  padding-bottom: 8px;
}

.box-3-right .items .item {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.box-3-right .items .item .item-left {
  display: flex;
  width: 52px;
  height: 52px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 32px;
  background: linear-gradient(90deg, #ECEAE8 2.02%, #EDEFE0 19.56%, #EFF5D7 37.11%, #E4F1DC 51.43%, #CCEAEA 62.97%, #CCEAEA 74.06%, #D8EAF4 85.59%, #DCEAF8 98.07%);
  color: #092B58;
  text-align: center;
  font-family: var(--font-primary-black);
  font-size: 22px;
  font-style: normal;
  line-height: 16px;
}

.box-3-right .items .item .item-left .until {
  font-family: var(--font-primary-regular);
  font-size: 16px;
  font-style: normal;
  line-height: 20px;
}

.box-3-right .items .item .item-right {
  color: var(--White);
  font-family: var(--font-primary-semiBold);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
}

.box-4 {
  background-image: url('../img/bg-box-4.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.box-4-inner {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start
}

.box-4-left {
  display: flex;
  width: 533px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  transform: translateX(-200px);
  opacity: 0;
  transition: all 2s ease;
}

.box-4.show-content .box-4-left {
  transform: translateX(0);
  opacity: 1;
}

.box-4-slider {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(200px);
  opacity: 0;
  transition: all 2s ease;
  right: 0;
  width: 52%;
}

.box-4.show-content .box-4-slider {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

.box-4-swiper .swiper-slide {
  width: 633px;
}

.box-4-swiper .swiper-slide .box-4-item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 32px;
}

.box-4-swiper .swiper-slide .box-4-item .box-4-item-img {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

.box-4-swiper .swiper-slide .box-4-item .box-4-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-4-swiper .swiper-slide .box-4-item .box-4-item-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1s ease;
}

.box-4-swiper .swiper-slide.swiper-slide-active .box-4-item .box-4-item-content {
  opacity: 1;
  transform: translateX(0);
}

.box-4-swiper .swiper-slide .box-4-item .box-4-item-content .number {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  font-family: var(--font-primary-black);
  font-size: 64px;
  font-style: normal;
  line-height: 72px;
  color: transparent;
}

.box-4-swiper .swiper-slide .box-4-item .box-4-item-content .title {
  color: var(--White);
  font-family: var(--font-primary-bold);
  font-size: 24px;
  font-style: normal;
  line-height: 32px;
  text-transform: uppercase;
  width: 240px;
}

.box-4-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.box-4-header .base-title {
  margin-top: -12px;
}

.color-B1B8E7 {
  color: #B1B8E7;
  font-family: var(--font-primary-bold);
}

.box-4-desc {
  color: var(--White);
  font-family: var(--font-primary-semiBold);
  font-size: 18px;
  font-style: normal;
  line-height: 24px;
  text-transform: uppercase;
}

.box-4-actions {
  position: absolute;
  left: 0;
  bottom: 80px;
  width: 100%;
}

.box-4-actions::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  z-index: -1;
}

.box-4-actions>.container {
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.box-5 {
  background-image: url('../img/bg-box-5.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.box-5-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  margin-top: 120px;
  align-items: center;
  justify-content: center;
}

.box-5-inner .base-title {
  transform: translateY(-200px);
  opacity: 0;
  transition: all 2s ease;
}

.box-5.show-content .box-5-inner .base-title {
  transform: translateX(0);
  opacity: 1;
}

.box-5-item {
  display: flex;
  flex-direction: column;
}

.box-5-item-img {
  border-radius: 16px;
  overflow: hidden;
}

.box-5-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-5-item-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  transition: all 0.5s ease;
}

.box-5-slider {
  transform: translateY(200px);
  opacity: 0;
  transition: all 2s ease;
}

.box-5.show-content .box-5-slider {
  transform: translateY(0);
  opacity: 1;
}

.box-5-slider .owl-item.active.center .box-5-item .box-5-item-content {
  opacity: 1;
}

.box-5-item-number {
  position: relative;
  margin-left: 24px;
  margin-top: -40px;
  border-radius: 50%;
  display: none;
}

.box-5-item-number>img {
  width: 80px !important;
}

.box-5-item-number>div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: var(--White);
  font-family: var(--font-primary-black);
  font-size: 32px;
  font-style: normal;
  line-height: 72px;
}

.box-5-item-text {
  display: flex;
  flex: 1;
  padding: 16px 0 8px 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.box-5-item-text .base-title {
  font-size: 24px;
  line-height: 32px;
  text-align: start;
}

.box-5-item-second {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.box-5-slider .owl-nav {
  display: block !important;
}

.box-5-slider .owl-nav .owl-prev,
.box-5-slider .owl-nav .owl-next {
  position: absolute;
  top: 40%;
  left: 10%;
  z-index: 100;
}

.box-5-slider::after {
  content: '';
  width: 300px;
  height: 450px;
  border-radius: 0;
  background: linear-gradient(90deg, #0D3179 0%, rgba(221, 221, 221, 0.00) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.box-5-slider::before {
  content: '';
  width: 300px;
  height: 450px;
  border-radius: 0;
  background: linear-gradient(270deg, #0D3179 0%, rgba(221, 221, 221, 0.00) 100%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}

.box-5-slider .owl-nav .owl-next {
  left: auto;
  right: 10%;
}

.box-5-item-second .sub-title {
  font-family: var(--font-primary-medium);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  background: linear-gradient(90deg, #F7D285 0%, #EBFFD4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.box-5 .marquee {
  transform: translateY(40px);
}

.box-6 {
  background-image: url('../img/bg-box-6.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.box-6-inner {
  width: 100%;
  margin-top: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
}

.box-6-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: scaleX(1.6);
  opacity: 0;
  transition: all 2s ease;
}

.box-6.show-content .box-6-header {
  transform: scaleX(1);
  opacity: 1;
}

.box-6-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.box-6-right-tag {
  display: flex;
  height: 44px;
  align-items: center;
  gap: 8px;
  width: max-content;
  border-radius: 40px;
  opacity: 0.5;
  position: relative;
  cursor: pointer;
}

.box-6-right-tag.active {
  opacity: 1;
}

.box-6-right-tag::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-radius: 40px;
  background: #ECEAE8;
  transition: all 0.5s ease;
}

.box-6-right-tag::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-radius: 40px;
  background: linear-gradient(90deg, #31E0FF 0%, #FF5FDE 100%);
  opacity: 0;
  transition: all 0.5s ease;
}

.box-6-right-tag:hover::after,
.box-6-right-tag.active::after {
  opacity: 0;
}

.box-6-right-tag:hover::before,
.box-6-right-tag.active::before {
  opacity: 1;
}

.box-6-right-tag>div {
  width: 100%;
  height: 100%;
  padding: 0 16px;
  border-radius: 40px;
  background-color: #0D3179;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.box-6-right-tag>div>span {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-primary-bold);
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.box-6-right-tag:hover>div>span,
.box-6-right-tag.active>div>span {
  background: linear-gradient(90deg, #31E0FF 0%, #FF5FDE 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.box-6-content {
  transform: translateY(200px);
  opacity: 0;
  transition: all 2s ease;
}

.box-6.show-content .box-6-content {
  transform: translateX(0);
  opacity: 1;
}

.box-6-content-item {
  display: flex;
  width: 100%;
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.box-6-content-item.active {
  display: block;
  height: auto;
  opacity: 1;
}

.box-6-content-item.active#image {
  display: flex;
}

.box-6-content-item#image {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.box-6-content-item .image-item {
  width: calc(32%);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.box-6-content-item .image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.box-6-content-item .image-item:hover img {
  transform: scale(1.05);
}

.video-item,
.doc-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.doc-item {
  height: 500px;
}

.video-item>.title {
  font-family: var(--font-primary-bold);
  font-size: 22px;
  font-style: normal;
  line-height: 30px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ECEAE8 2.02%, #EDEFE0 19.56%, #EFF5D7 37.11%, #E4F1DC 51.43%, #CCEAEA 62.97%, #CCEAEA 74.06%, #D8EAF4 85.59%, #DCEAF8 98.07%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  top: 120px;
  padding: 0 32px;
  text-align: center;
}

.video-item>img,
.doc-item>a>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.video-item:hover>img,
.doc-item:hover>a>img {
  transform: scale(1.05);
}

.video-item .btn-play {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.box-7 {
  background-image: url('../img/bg-box-7.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.box-7-inner {
  width: 100%;
  margin-top: 112px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.box-7-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  transform: translateX(-200px);
  opacity: 0;
  transition: all 2s ease;
}

.box-7-content {
  transform: translateX(200px);
  opacity: 0;
  transition: all 2s ease;
}

.box-7.show-content .box-7-header,
.box-7.show-content .box-7-content {
  transform: translateX(0);
  opacity: 1;
}

.box-7-header-second {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.box-7-header-second>.desc {
  width: min(100%, 827px);
}

.box-7-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.box-7-action {
  cursor: pointer;
}

.box-7-content {
  border-top: 1px solid #eceae860;
  width: 100%;
}

.box-7-item {
  padding-top: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.box-7-item-img {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
}

.box-7-item-img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.box-7-item:hover .box-7-item-img>img {
  transform: scale(1.05);
}

.box-7-item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0
}

.box-7-item-content .title {
  color: var(--White);
  font-family: var(--font-primary-medium);
  font-size: 18px;
  font-style: normal;
  line-height: 26px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 52px;
}

.box-7-item-content .desc {
  color: var(--White);
  font-family: var(--font-primary-regular);
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
  opacity: 0.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 52px;
}

.box-7-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: -30px;
  width: 1px;
  height: 100%;
  background-color: #eceae860;
}

.box-8 {
  background-image: url('../img/bg-box-8.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.box-8-inner {
  display: flex;
  flex-direction: column;
  gap: 124px;
  margin-top: 132px;
  align-items: center;
}


.box-8 .base-title {
  transform: translateY(-100px);
  opacity: 0;
  transition: all 2s ease;
}

.box-8.show-content .base-title {
  transform: translateY(0);
  opacity: 1;
}

.box-8-items {
  width: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  opacity: 0;
  transition: all 2s ease;
  transform: translateY(100px);
}

.box-8.show-content .box-8-items {
  opacity: 1;
  transform: translateY(0px);
}

.box-9 {
  background-image: url('../img/bg-box-9.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.box-9-inner {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.box-9-left {
  display: flex;
  width: 645px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  transform: translateX(-200px);
  opacity: 0;
  transition: all 2s ease;
}

.box-9 .base-title {
  font-size: 32px;
  line-height: 40px;
  text-align: start;
}

.box-9-left .base-title {
  width: min(100%, 400px);
}

.box-9-left .sub-title {
  font-family: var(--font-primary-semiBold);
  font-size: 18px;
  font-style: normal;
  line-height: 24px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #31E0FF 0%, #FF5FDE 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.box-9-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.box-9-info .box-9-info-item {
  display: flex;
  width: min(100%, 400px);
  align-items: flex-start;
  gap: 8px;
}

.box-9-info .box-9-info-item .value,
.box-9-info .box-9-info-item .value a {
  color: var(--White) !important;
  font-family: var(--font-primary-regular);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
}

.box-9-follow {
  display: flex;
  align-items: center;
  gap: 16px;
}

.box-9-follow .title {
  color: var(--White);
  text-align: center;
  font-family: var(--font-primary-medium);
  font-size: 12px;
  font-style: normal;
  line-height: 28px;
  text-transform: uppercase;
}

.box-9-follow .line {
  width: 68px;
  height: 1px;
  background-color: var(--White);
}

.box-9-follow .list-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.box-9-right {
  display: flex;
  width: 532px;
  padding: 40px 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 31px;
  border-radius: 16px;
  border: 1px solid var(--Linear, #F7D285);
  background: rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(2px);
  transform: translateX(200px);
  opacity: 0;
  transition: all 2s ease;
}

.box-9.show-content .box-9-right,
.box-9.show-content .box-9-left {
  transform: translateX(0px);
  opacity: 1;
}

.box-9-right .form-contact .row {
  margin: 0 -8px;
}

.box-9-right .form-contact .row>* {
  padding: 0 8px;
}

.box-9-right .form-contact .form-item {
  margin-bottom: 32px;
}

.box-9-right .form-contact .form-item .form-control {
  display: flex;
  height: 48px;
  padding: 12px 16px;
  align-items: center;
  align-self: stretch;
  border-radius: 48px;
  border: 1px solid #ECEAE8;
  background: rgba(0, 0, 0, 0.15);
  background: transparent;
  outline: none;
  color: var(--White);
  box-sizing: none;
}

.box-9-right .form-contact .form-item .form-control::placeholder {
  color: var(--White);
}

.btn-color-blue {
  width: 100%;
  display: flex;
  height: 48px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 40px;
  background: var(--gradient, linear-gradient(45deg, #09F 14.65%, #009 85.36%));
  border: none;
}

.btn-color-blue>div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #FFF;
  font-family: var(--font-primary-bold);
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.1;
  height: 80px;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  animation: scrollText 20s linear infinite;
}

.marquee-content span {
  padding-right: 50px;
  font-size: 30px;
  white-space: nowrap;
}

.header-menu-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/bg-menu.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 2s ease;
}

.header-menu-page.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header-menu-logo {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.3);
  opacity: 0;
  left: 40%;
  transition: all 2s ease;
}

.header-menu-page.active .header-menu-logo {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.header-menu-list {
  display: inline-flex;
  padding: 16px 0 16px 64px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(200px);
  opacity: 0;
  right: 60px;
  border-left: 1px solid #ECEAE8;
  transition: all 2s ease;
}

.header-menu-page.active .header-menu-list {
  transform: translateY(-50%) translateX(0px);
  opacity: 1;
}

.header-menu-list-item {
  display: flex;
  padding: 8px 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  background: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: var(--font-primary-bold);
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  text-transform: uppercase;
}

.header-menu-list-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: transparent;
  transition: all 0.3s ease;
}

.header-menu-list-item:hover::after,
.header-menu-list-item.active::after {
  width: 100%;
  background: linear-gradient(90deg, #31E0FF 0%, #FF5FDE 100%);
}

.header-menu-list-item:hover,
.header-menu-list-item.active {
  background: linear-gradient(90deg, #31E0FF 0%, #FF5FDE 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-video .modal-dialog {
  width: min(95%, 1000px) !important;
  height: 600px;
}

.modal-video .modal-content {
  width: 100%;
  height: 100%;
}

.modal-video .modal-body {
  width: 100%;
  height: 100%;
  padding: 24px;
}

.modal-video .modal-close {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 40px;
  font-family: var(--font-primary-semiBold);
  color: #000;
  transform: rotate(45deg);
  cursor: pointer;
  z-index: 10;
}

.news-detail-page .header-container {
  position: relative;
}

.news-detail-page .main-container {
  margin-top: -84px;
  overflow-x: hidden;
  height: auto;
  overflow-y: scroll;
}

.news-detail-page .main-container .box-container {
  position: relative;
  top: unset;
  left: unset;
  transform: unset;
}

.news-detail-page .box-9-left,
.news-detail-page .box-9-right {
  transform: translate(0);
  opacity: 1;
}

.other-news-container {
  display: flex;
  padding: 56px 0;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  background: #F3F3F3;
}

.other-news-header {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.other-news-header .title {
  color: #092B58;
  text-align: center;
  font-family: var(--font-primary-bold);
  font-size: 32px;
  font-style: normal;
  line-height: 40px;
  text-transform: uppercase;
}

.other-news-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.other-news-action {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
}

.other-news-content .box-7-item {
  padding-top: 0;
}

.other-news-content .box-7-item::after {
  background: #D8D8D8;
}

.other-news-content .box-7-item .box-7-item-content .title {
  color: #262626;
}

.other-news-content .box-7-item .box-7-item-content .desc {
  color: #262626;
}

.news-detail-inner {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 40px 0;
}

.news-detail-feature {
  display: flex;
  width: 300px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  position: sticky;
  top: 20px;
}

.news-detail-feature .title {
  color: #262626;
  font-family: var(--font-primary-bold);
  font-size: 24px;
  font-style: normal;
  line-height: 32px;
}

.news-detail-feature-item {
  display: flex;
  padding: 8px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid rgba(216, 216, 216, 0.50);
  cursor: pointer;
}

.news-detail-feature-item-img {
  width: 100%;
  height: 198px;
  border-radius: 8px;
  overflow: hidden;
}

.news-detail-feature-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.news-detail-feature-item:hover .news-detail-feature-item-img img {
  transform: scale(1.05);
}

.news-detail-feature-item-title {
  display: flex;
  padding: 0 8px;
  margin: 16px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
  overflow: hidden;
  color: #262626;
  font-family: var(--font-primary-semiBold);
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 52px;
}

.news-detail-share {
  display: flex;
  padding: 24px 10px 16px 10px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 44px;
  border-radius: 45px;
  background: rgba(246, 246, 246, 0.50);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.10);
  margin-left: -30px;
  position: sticky;
  top: 20px;
}

.news-detail-share .title,
.news-detail-share-mobile .title {
  transform: rotate(90deg);
  color: #494D59;
  white-space: nowrap;
  height: 50px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 20px;
}

.news-detail-share-mobile .title {
  transform: unset;
}

.news-detail-post {
  width: calc(100% - 390px);
}

.breadcrumb {
  padding: 0;
  margin: 0;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.breadcrumb>li+li:before {
  display: none;
}

.breadcrumb>li {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

.breadcrumb>li>a,
.breadcrumb>li>span {
  color: #041AB2;
  font-family: var(--font-primary-regular);
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
}

.breadcrumb>li>a {
  white-space: nowrap;
}

.breadcrumb>li>span {
  color: #8C8C8C;
  display: -webkit-box;
  flex: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 22px;
}

.news-detail-post-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.news-detail-post-header>.title {
  color: #090C13;
  font-family: var(--font-primary-semiBold);
  font-size: 28px;
  font-style: normal;
  line-height: 36px;
}

.news-detail-post-header .time {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  color: #494D59;
  font-family: var(--font-primary-regular);
  font-size: 14px;
  font-style: normal;
  line-height: 24px;
}

.news-detail-post-content {
  color: #262626;
  margin-top: 24px;
}

.news-detail-post-content img {
  max-width: 100% !important;
  height: auto !important;
}

.news-detail-share-mobile,
.box-8-mobile,
.box-3-left {
  display: none;
}


@keyframes scrollText {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (min-width: 1440px) {
  .container {
    width: 1200px;
    padding: 0;
  }
}

@media (min-width: 1450px) {
  .box-container .container {
    width: 1320px;
    padding: 0;
  }
}

@media (max-width: 1440px) {
  .box-7-item-img {
    height: 220px;
  }

  .box-3-right{
    gap: 12px;
  }

  .box-5-inner{
    margin-top: 80px;
    gap: 24px;
  }
}

@media (max-width: 1025px) {
  .header-container {
    top: 16px;
    padding: 0 32px;
  }

  .header-left img {
    width: 120px;
    height: auto;
  }

  .box-5-item-number {
    margin-left: 4px;
    margin-top: -25px;
  }

  .box-5-item-number img {
    width: 60px !important;
    height: 60px;
  }

  .box-5-item-number>div {
    font-size: 24px;
    line-height: 32px;
  }

  .box-5-item-text {
    padding: 8px;
  }

  .box-5-item-second {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
  }

  .box-5-slider::after,
  .box-5-slider::before {
    width: 120px;
    height: 360px;
  }

  .box-5-slider .owl-nav .owl-prev,
  .box-5-slider .owl-nav .owl-next {
    top: 34%;
  }

  .box-5-inner {
    gap: 32px;
    margin-top: 80px;
  }

  .box-1-text {
    width: max-content;
  }

  .base-title {
    font-size: 36px !important;
    line-height: 52px !important;
  }

  .title-style,
  .box-2-header .title-style,
  .box-3-header .title-style,
  .box-4-header .title-style {
    font-size: 36px !important;
    line-height: 46px !important;
  }

  .contact-info {
    padding: 0 32px;
  }

  .header-right {
    gap: 24px;
  }

  .box-2-header {
    width: 200px;
  }

  .list-box {
    display: none;
  }

  .container {
    padding: 0;
  }

  .box-4-actions {
    bottom: 32px;
  }

  .box-4-left {
    width: 40vw;
  }

  .box-4-swiper .swiper-slide {
    width: 420px;
  }

  .box-4-swiper .swiper-slide .box-4-item .box-4-item-img {
    height: 280px;
  }

  .box-4-swiper .swiper-slide .box-4-item {
    gap: 24px;
  }

  .video-item .btn-play img {
    width: 52px;
    height: 52px;
  }

  .video-item>.title {
    top: 70px;
  }

  .box-7-item::after {
    right: -20px;
  }

  .box-7-item-img {
    height: 200px;
    border-radius: 8px;
  }

  .box-7-inner,
  .box-8-inner {
    margin-top: 120px;
    gap: 42px;
  }

  .box-3-right {
    gap: 24px;
  }

  .box-5-item-text .base-title {
    font-size: 24px !important;
    line-height: 32px !important;
  }

  .main-container {
    height: auto;
    overflow-x: hidden;
  }

  .box-container,
  .box-1-text {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    height: auto;
    min-height: 100vh;
  }

  .box-1 {
    height: 450px;
  }

  .box-1-text {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 32px;
    bottom: unset;
  }

  .news-detail-feature {
    width: 250px;
  }

  .news-detail-share {
    margin: 0;
  }

  .header-menu-list {
    padding: 16px 0 16px 32px;
  }

  .header-menu-logo img {
    width: 360px;
  }

  .box-2-inner,
  .box-3-inner,
  .box-6-inner {
    margin: 112px 0;
  }

  .box-5-inner,
  .box-7-inner,
  .box-8-inner {
    margin: 0;
    padding: 112px 0;
  }
}

@media (max-width: 768px) {

  .news-detail-inner,
  .other-news-container {
    padding: 32px 0;
    gap: 20px;
  }

  .news-detail-feature {
    width: 200px;
    gap: 16px;
  }

  .news-detail-feature-item-img {
    height: 120px;
  }

  .news-detail-feature-item-title {
    margin: 8px 0;
  }

  .news-detail-post {
    width: calc(100% - 240px);
  }

  .other-news-header {
    margin-bottom: 20px;
  }

  .box-7-item::after {
    right: -10px;
  }

  .box-9-inner {
    flex-direction: column;
    height: auto;
    gap: 24px;
    padding: 32px 0;
    z-index: 10;
  }

  .box-9-right {
    width: min(100%, 650px);
    gap: 20px;
  }

  .form-contact,
  .box-9-info .box-9-info-item .value,
  .box-9-info .box-9-info-item .value a,
  .box-9-info .box-9-info-item {
    width: 100%;
  }

  .marquee-content img[alt="box-2-img"] {
    height: 50px;
  }

  .marquee {
    height: 50px;
  }

  .box-9-left {
    width: min(100%, 650px);
    gap: 16px;
  }

  .box-9-left .base-title,
  .box-9-left .sub-title {
    width: 100%;
  }

  .base-title {
    font-size: 32px !important;
    line-height: 40px !important;
  }

  .box-9-right {
    padding: 24px;
  }

  .box-9-right .form-contact .form-item {
    margin-bottom: 20px;
  }

  .header-menu-logo {
    display: none;
  }

  .header-menu-list {
    position: relative;
    transform: unset !important;
    top: unset;
    right: unset;
    left: unset;
    padding: 56px;
    align-items: flex-end;
    width: 100%;
    border: none;
    height: 500px;
    overflow: scroll;
    flex-wrap: wrap;
    flex-direction: row;
  }

  .header-menu-list-item {
    width: calc(50% - 32px);
  }

  .header-menu-list-item:hover::after,
  .header-menu-list-item.active::after {
    display: none;
  }

  .box-2-inner,
  .box-3-inner,
  .box-6-inner {
    margin: 80px 0;
  }

  .box-5-inner,
  .box-7-inner,
  .box-8-inner {
    padding: 80px 0;
  }

  .box-6-inner {
    gap: 32px;
  }

  .box-6-content-item .image-item {
    width: calc(50% - 12px);
  }

  .box-5-slider::after,
  .box-5-slider::before {
    display: none;
  }

  .box-3 {
    background-image: unset;
  }

  .box-3-inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
    padding: 0;
    margin: 0;
  }

  .box-3-left {
    display: block;
    width: 100%;
    height: 350px;
    transform: translateX(-200px);
    opacity: 0;
    transition: all 2s ease;
  }

  .box-3-left>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
  }

  .box-3.show-content .box-3-left {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 512px) {

  .box-4-swiper .swiper-slide .box-4-item .box-4-item-content .number {
    font-size: 52px !important;
    line-height: 60px !important;
  }

  .box-9-left .base-title {
    font-size: 28px !important;
    line-height: 36px !important;
  }

  .base-title,
  .other-news-header .title {
    font-size: 24px !important;
    line-height: 32px !important;
  }

  .news-detail-post-header>.title,
  .box-5-item-text .base-title,
  .box-4-swiper .swiper-slide .box-4-item .box-4-item-content .title {
    font-size: 20px !important;
    line-height: 28px !important;
  }

  .box-9-left .sub-title,
  .box-7-item-content .title,
  .box-4-desc {
    font-size: 16px;
    line-height: 24px;
  }

  body,
  .box-9-info .box-9-info-item .value,
  .box-9-info .box-9-info-item .value a,
  .box-7-item-content .desc,
  .box-5-item-second .sub-title,
  .box-3-right .items .item .item-right,
  .header-menu-list-item {
    font-size: 14px;
    line-height: 22px;
  }

  .btn-contact {
    font-size: 12px;
    line-height: 20px;
  }

  .container {
    padding: 0 15px;
  }

  .news-detail-feature {
    display: none;
  }

  .news-detail-post {
    width: 100%;
  }

  .news-detail-share {
    display: none;
  }

  .news-detail-share-mobile {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .news-detail-share-mobile .title {
    height: auto;
  }

  .news-detail-inner,
  .other-news-container {
    padding: 24px 0
  }

  .news-detail-post-header {
    gap: 8px;
  }

  .news-detail-share-mobile>a {
    width: 20px;
    height: 20px;
  }

  .box-9::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(0 0 0 / 34%) 0%, rgba(0, 0, 0, 0.50) 100%);
    z-index: 1;
  }

  .box-9-inner {
    position: relative;
    z-index: 10;
    padding: 40px 0;
  }

  .box-9-inner {
    gap: 16px;
  }

  .box-9-right {
    padding: 16px;
    backdrop-filter: blur(18px);
  }

  .box-9-left {
    gap: 8px;
  }

  .other-news-container .container {
    width: 100%;
  }

  .other-news-actions {
    gap: 12px;
  }

  .other-news-action {
    width: 36px;
    height: 36px;
  }

  .other-news-header {
    margin-bottom: 16px;
  }

  .other-news-action img {
    width: 100%;
    height: 100%;
  }

  .box-7-item-content .title {
    height: 48px;
  }

  .box-7-item-content .desc {
    height: 44px;
  }

  .box-7-item-content {
    padding: 8px 0;
    gap: 8px;
  }

  .header-container {
    top: 0;
    padding: 8px 15px;
    background: #0D3179;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  }

  .header-hotline div {
    display: none;
  }

  .header-right {
    gap: 16px;
  }

  .header-hotline img {
    width: 32px;
    height: 32px;
  }

  .header-left img {
    width: 80px;
  }

  .header-menu-header {
    width: 48px;
  }

  .header-menu-header img {
    width: 48px;
    height: 48px;
  }

  .btn-contact {
    padding: 0 8px;
    gap: 4px;
    height: 36px;
  }

  .btn-contact img {
    width: 20px;
    height: 20px;
  }

  .banner-container {
    height: 250px;
  }

  .banner-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .box-7-item::after {
    display: none;
  }

  .box-7-item-img {
    height: 250px;
  }

  .header-menu-list {
    padding: 32px 16px;
    gap: 32px;
    height: auto;
  }

  .header-menu-list-item {
    width: calc(50% - 16px);
  }

  body:has(.header-menu-page.active) {
    overflow: hidden;
  }

  .box-5-item-number {
    display: none;
  }

  .box-2-inner,
  .box-3-inner,
  .box-6-inner {
    margin: 40px 0;
  }

  .box-5-inner,
  .box-7-inner,
  .box-8-inner {
    padding: 40px 0;
  }

  .box-5 .marquee {
    transform: translateY(16px);
  }

  .box-5-item-text {
    gap: 8px;
  }

  .box-5-inner,
  .box-7-inner {
    gap: 24px;
  }

  .box-5-slider .owl-nav .owl-prev,
  .box-5-slider .owl-nav .owl-next {
    top: 20%;
    left: 2%;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    backdrop-filter: blur(20px);
  }

  .box-5-slider .owl-nav .owl-prev img,
  .box-5-slider .owl-nav .owl-next img {
    width: 100%;
    height: 100%;
  }

  .box-5-slider .owl-nav .owl-next {
    left: unset;
    right: 2%;
  }

  .box-container,
  .box-1-text {
    min-height: 50vh;
  }

  .box-7-header-second {
    gap: 12px
  }

  .box-7-actions {
    gap: 8px;
  }

  .box-7-action {
    width: 36px;
    height: 36px;
  }

  .box-7-action img {
    width: 100%;
    height: 100%;
  }

  .box-8-mobile {
    display: block;
    width: 100%;
    padding: 0 15px;
  }

  .box-8-items {
    display: none;
  }

  .box-4-slider {
    position: relative;
    width: 100%;
    transform: unset !important;
    padding: 0 15px;
  }

  .box-4-swiper .swiper-slide .box-4-item {
    gap: 12px;
  }

  .box-4-left {
    width: 100%;
  }

  .box-4-inner {
    height: auto;
  }

  .box-4 {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px 0 68px 0;
  }

  .box-4-actions {
    bottom: 16px;
  }

  .box-4-actions>.container {
    padding: 0;
    gap: 16px;
  }

  .box-4.show-content .box-4-left {
    gap: 20px;
  }

  .box-4-swiper .swiper-slide .box-4-item .box-4-item-content {
    gap: 16px;
  }

  .box-1 {
    height: 100vh;
  }

  .box-1::after,
  .box-2::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  }

  .box-2 .container {
    z-index: 10;
    position: relative;
  }

  .box-1-text,
  .contact-info,
  .icon-scroll-down {
    z-index: 10;
  }

  .contact-info {
    padding: 0 15px
  }

  .icon-scroll-down img {
    width: 36px;
    height: 36px;
  }

  .box-2-content-list>.item>.title {
    min-width: 100px;
    width: 100px;
  }

  .box-3-right {
    gap: 24px;
  }

  .box-3-right .items {
    width: 100%;
  }

  .box-3-right .items .item {
    gap: 16px;
  }

  .box-8 .base-title {
    transform: unset !important;
    opacity: 1;
  }

  .contact-info,
  .box-1-text-first,
  .box-1-text-second,
  .box-2-left,
  .box-3-right,
  .box-4-left,
  .box-4-slider,
  .box-5-inner .base-title,
  .box-5-slider,
  .box-6-header,
  .box-6-content,
  .box-7-header,
  .box-7-content,
  .box-8 .base-title,
  .box-8-items,
  .box-9-left,
  .box-9-right,
  .header-menu-page,
  .header-menu-logo,
  .header-menu-list {
    transition: all 1s ease;
  }


  .box-1-text-first .base-title,
  .box-1-text-second .base-title {
    font-size: 20px !important;
    line-height: 28px !important;
  }

  .box-1-text-first .title-style,
  .box-1-text-second .title-style {
    font-size: 32px !important;
    line-height: 40px !important;
  }

  .box-1{
    background-position: top left -88px;
  }
}