: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: 18px;
  line-height: 26px;
  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;
}

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;
}

.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;
}

.header-hotline a {
  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;
}

.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;
}

.list-box-item {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.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(30px);
  transition: all 0.5s ease;
}

.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);
}

.no-transition {
  transition: none !important;
}

.box-1 {
  background-image: url('../img/bg-box-1.png');
  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;
}

.box-1.show-content .contact-info {
  transform: translateX(0)
}

.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: 52px;
  font-style: normal;
  line-height: 72px;
  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;
}

.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.png');
  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: 56px;
  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.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.box-3-inner {
  margin-top: 112px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.box-3-right {
  display: flex;
  width: min(100%, 700px);
  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.png');
  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: -8px;
}

.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.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.box-5-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  margin-top: 80px;
  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;
  backdrop-filter: blur(2px);
  border-radius: 50%;
}

.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: 432px;
  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: 432px;
  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.png');
  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.png');
  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.png');
  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.png');
  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.4;
}

.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.png');
  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;
}

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (min-width: 1440px) {
  .container {
    width: 1200px;
    padding: 0;
  }
}

@media (min-width: 1450px) {
  .container {
    width: 1320px;
    padding: 0;
  }
}