/* Inter Regular */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Inter SemiBold */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

/* Inter Bold */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* Inter ExtraBold */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

/* Minion Pro Regular */
@font-face {
  font-family: 'Minion Pro';
  src: url('../fonts/MinionPro-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

/* VNM Sans Std */
@font-face {
  font-family: 'VNM Sans Std';
  src: url('../fonts/VNM-Sans-Std.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

/* VNM Sans Std Medium */
@font-face {
  font-family: 'VNM Sans Std';
  src: url('../fonts/VNM-Sans-Std-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

/* VNM Sans Display Medium */
@font-face {
  font-family: 'VNM Sans Display';
  src: url('../fonts/VNM-Sans-Display-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

/* VNM Sans Display Bold */
@font-face {
  font-family: 'VNM Sans Display';
  src: url('../fonts/VNM-Sans-Display-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

:root {
  --color-blue: #090DB0;
  --color-green: #1BB833;
  --color-orange: #FB9703;
  --color-pink: #DD476C;
  --color-blue-light: #3358FF;

  --font-inter: 'Inter', sans-serif;
  --font-minion: 'Minion Pro', serif;
  --font-vnm-std: 'VNM Sans Std', sans-serif;
  --font-vnm-display: 'VNM Sans Display', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  overflow-x: hidden;
}

@media (max-width: 1365.98px) {
  html {
    font-size: .6944444444vw;
  }
}

/* @media (max-width: 991.98px) {
  html {
    font-size: 10px;
  }
} */

body {
  margin: 0;
  font-family: var(--font-inter);
  font-weight: 400;
  line-height: 1.333;
  font-size: 1.6rem;
  background-color: #FFFFF1;
}

a {
  text-decoration: none;
}

/* Container */
.container-full {
  width: 1335px;
  margin: 0 auto;
}

.container {
  width: 1120px;
  margin: 0 auto;
}

@media (max-width: 1365.98px) {
  .container-full {
    width: calc(100% - 32px);
  }
}

@media (max-width: 1199.98px) {
  .container {
    width: calc(100% - 32px);
  }
}
/* End Container */

.mb-0 {
  margin-bottom: 0 !important;
}

/* Button Download */
.button-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.8rem;
  padding: 0.4rem 0.8rem;
  background-color: #FFFFF1;
  border-radius: 1.6rem;
  font-family: var(--font-vnm-display);
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.095rem;
  color: var(--color-blue);
  cursor: pointer;
}

.button-download svg path {
  fill: var(--color-blue);
}

.type-blue .button-download {
  color: var(--color-blue);
}

.type-blue .button-download svg path {
  fill: var(--color-blue);
}

.type-orange .button-download {
  color: var(--color-orange);
}

.type-orange .button-download svg path {
  fill: var(--color-orange);
}

.type-blue-light .button-download {
  color: var(--color-blue-light);
}

.type-blue-light .button-download svg path {
  fill: var(--color-blue-light);
}

.type-green .button-download {
  color: var(--color-green);
}

.type-green .button-download svg path {
  fill: var(--color-green);
}

.type-pink .button-download {
  color: var(--color-pink);
}

.type-pink .button-download svg path {
  fill: var(--color-pink);
}
/* End Button Download */

/* Button Main */
.button-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.8rem;
  padding: 0.8rem 1.6rem;
  background-color: #FFFFF1;
  border-radius: 3.2rem;
  font-family: var(--font-vnm-display);
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.095rem;
  color: var(--color-blue);
  cursor: pointer;
}

.button-main svg path {
  fill: var(--color-blue);
}

.button-blue {
  background-color: var(--color-blue);
  color: #FFFFF1;
}

.button-blue svg path {
  fill: #FFFFF1;
}

.button-orange {
  background-color: var(--color-orange);
  color: #FFFFF1;
}

.button-orange svg path {
  fill: #FFFFF1;
}

.button-blue-light {
  background-color: var(--color-blue-light);
  color: #FFFFF1;
}

.button-blue-light svg path {
  fill: #FFFFF1;
}

.button-pink {
  background-color: var(--color-pink);
  color: #FFFFF1;
}

.button-pink svg path {
  fill: #FFFFF1;
}

.button-lg {
  padding: 0.8rem 13rem;
}

.button-block {
  display: flex;
}

@media (max-width: 767.98px) {
  .button-main {
    padding: 8px 19px;
    border-radius: 32px;
    gap: 8px;
    font-size: 19px;
  }
}
/* End Button Main */

/* Anchor */
[id*="a"] {
  scroll-margin-top: 80px;
}
/* End Anchor */

/* Header */
.header {
  height: 64px;
  padding: 1.6rem 0;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
}

.header .inner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header .inner-logo img {
  width: 8.9rem;
  height: auto;
  display: block;
}

.header .inner-menu {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.header .inner-links > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.header .inner-links > ul > li {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  position: relative;
}

.header .inner-links > ul > li > a {
  font-family: var(--font-vnm-display);
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.095rem;
  color: #FFFFF1;
}

.header .inner-links > ul > li > .inner-icon {
  width: 0.8rem;
  height: auto;
}

.header .inner-links > ul > li > .inner-sub {
  position: absolute;
  top: calc(100% + 1.5rem);
  left: 0;
  width: auto;
  border-width: 1px;
  border-style: solid;
  background-color: #FFFFF1;
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: all .4s ease;
  display: none;
}

.header .inner-links > ul > li > .inner-sub::before {
  content: "";
  display: block;
  width: 100%;
  height: 1.5rem;
  position: absolute;
  top: -1.5rem;
  left: 0;
}

.header .inner-links > ul > li:hover > .inner-sub {
  display: block;
}

.header .inner-links > ul > li > .inner-sub ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.header .inner-links > ul > li > .inner-sub ul a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  font-family: var(--font-vnm-display);
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.095rem;
}

.header .inner-links > ul > li > .inner-sub ul a svg {
  opacity: 0;
  transform: translate(-1.2rem);
  transition: all .4s ease;
}

.header .inner-links > ul > li > .inner-sub ul a:hover svg {
  opacity: 1;
  transform: none;
}

.header .inner-links > ul > li > .inner-sub ul a span {
  transform: translate(-1.2rem);
  transition: all .4s ease;
}

.header .inner-links > ul > li > .inner-sub ul a span:hover {
  transform: none;
}

.header .inner-lang {
  position: relative;
}

.header .inner-lang .inner-default {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-family: var(--font-vnm-display);
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.095rem;
  color: #FFFFF1;
  cursor: pointer;
}

.header .inner-lang .inner-default img {
  width: 0.8rem;
  height: auto;
}

.header .inner-lang .inner-list {
  position: absolute;
  top: calc(100% + 1.5rem);
  right: 0;
  width: auto;
  border-width: 1px;
  border-style: solid;
  background-color: #FFFFF1;
  padding: 1rem;
  border-radius: 0.8rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.8rem;
  display: none;
}

.header .inner-lang .inner-list::before {
  content: "";
  display: block;
  width: 100%;
  height: 1.5rem;
  position: absolute;
  top: -1.5rem;
  left: 0;
}

.header .inner-lang:hover .inner-list {
  display: block;
}

.header .inner-lang .inner-list a {
  font-family: var(--font-vnm-display);
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.095rem;
  opacity: 0.6;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.header .inner-lang .inner-list a svg {
  opacity: 0;
}

.header .inner-lang .inner-list a.active, .header .inner-lang .inner-list a:hover {
  opacity: 1;
}

.header .inner-lang .inner-list a.active svg, .header .inner-lang .inner-list a:hover svg {
  opacity: 1;
}

.header .inner-contact {
  display: none;
}

.header .inner-menu-mobile {
  display: none;
}

.type-blue .header {
  background-color: var(--color-blue);
}

.type-blue .header .inner-lang .inner-list {
  border-color: var(--color-blue);
}

.type-blue .header .inner-lang .inner-list a {
  color: var(--color-blue);
}

.type-blue .header .inner-links > ul > li > .inner-sub {
  border-color: var(--color-blue);
}

.type-blue .header .inner-links > ul > li > .inner-sub ul a {
  color: var(--color-blue);
}

.type-blue .header .inner-lang .inner-list a svg path {
  fill: var(--color-blue);
}

.type-orange .header {
  background-color: var(--color-orange);
}

.type-orange .header .inner-lang .inner-list {
  border-color: var(--color-orange);
}

.type-orange .header .inner-lang .inner-list a {
  color: var(--color-orange);
}

.type-orange .header .inner-links > ul > li > .inner-sub {
  border-color: var(--color-orange);
}

.type-orange .header .inner-links > ul > li > .inner-sub ul a {
  color: var(--color-orange);
}

.type-orange .header .inner-links > ul > li > .inner-sub ul a svg path {
  fill: var(--color-orange);
}

.type-orange .header .inner-lang .inner-list a svg path {
  fill: var(--color-orange);
}

.type-blue-light .header {
  background-color: var(--color-blue-light);
}

.type-blue-light .header .inner-lang .inner-list {
  border-color: var(--color-blue-light);
}

.type-blue-light .header .inner-lang .inner-list a {
  color: var(--color-blue-light);
}

.type-blue-light .header .inner-links > ul > li > .inner-sub {
  border-color: var(--color-blue-light);
}

.type-blue-light .header .inner-links > ul > li > .inner-sub ul a {
  color: var(--color-blue-light);
}

.type-blue-light .header .inner-links > ul > li > .inner-sub ul a svg path {
  fill: var(--color-blue-light);
}

.type-blue-light .header .inner-lang .inner-list a svg path {
  fill: var(--color-blue-light);
}

.type-green .header {
  background-color: var(--color-green);
}

.type-green .header .inner-lang .inner-list {
  border-color: var(--color-green);
}

.type-green .header .inner-lang .inner-list a {
  color: var(--color-green);
}

.type-green .header .inner-links > ul > li > .inner-sub {
  border-color: var(--color-green);
}

.type-green .header .inner-links > ul > li > .inner-sub ul a {
  color: var(--color-green);
}

.type-green .header .inner-links > ul > li > .inner-sub ul a svg path {
  fill: var(--color-green);
}

.type-green .header .inner-lang .inner-list a svg path {
  fill: var(--color-green);
}

.type-pink .header {
  background-color: var(--color-pink);
}

.type-pink .header .inner-lang .inner-list {
  border-color: var(--color-pink);
}

.type-pink .header .inner-lang .inner-list a {
  color: var(--color-pink);
}

.type-pink .header .inner-links > ul > li > .inner-sub {
  border-color: var(--color-pink);
}

.type-pink .header .inner-links > ul > li > .inner-sub ul a {
  color: var(--color-pink);
}

.type-pink .header .inner-links > ul > li > .inner-sub ul a svg path {
  fill: var(--color-pink);
}

.type-pink .header .inner-lang .inner-list a svg path {
  fill: var(--color-pink);
}

@media (max-width: 991.98px) {
  .header {
    padding: 12px 0;
    height: 60px;
  }

  .header .inner-logo img {
    width: 107px;
  }

  .header .inner-menu {
    display: none;
  }

  .header .inner-menu .inner-links {
    width: 100%;
    padding-bottom: 8px;
    border-bottom: 1px solid #FFFFF1;
  }

  .header .inner-links > ul {
    gap: 8px;
  }

  .header .inner-links > ul > li > a {
    font-size: 32px;
    line-height: 1.2;
  }

  .header .inner-links > ul > li > .inner-icon {
    width: 12px;
    margin-left: 8px;
  }

  .header .inner-links > ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .header .inner-links > ul > li {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  .header .inner-links > ul > li:hover > .inner-sub {
    display: none;
  }

  .header .inner-links > ul > li.open > .inner-sub {
    display: block;
    position: static;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    margin-top: 8px;
  }

  .header .inner-links > ul > li > .inner-sub::before {
    display: none;
  }

  .header .inner-links > ul > li > .inner-sub ul {
    gap: 4px;
  }

  [class*="type"] .header .inner-links > ul > li > .inner-sub ul a {
    color: #FFFFF1;
    font-family: var(--font-vnm-std);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
  }

  [class*="type"] .header .inner-links > ul > li > .inner-sub ul a svg path {
    fill: #FFFFF1;
  }

  .header .inner-menu .inner-button-down {
    flex: 1;
  }

  .header .inner-menu .inner-button-down .button-download {
    width: 268px;
    height: 40px;
    border-radius: 32px;
    font-size: 19px;
    gap: 8px;
  }

  .header .inner-lang .inner-default {
    display: none;
  }

  .header .inner-lang .inner-list {
    position: static;
    display: block;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: 0;
  }

  .header .inner-lang .inner-list::before {
    display: none;
  }

  [class*="type"] .header .inner-lang .inner-list a {
    color: #FFFFF1;
    font-size: 24px;
    opacity: 0.5;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 4px 10px;
  }

  [class*="type"] .header .inner-lang .inner-list a.active {
    opacity: 1;
    border-color: #FFFFF1;
  }

  .header .inner-lang .inner-list a svg {
    display: none;
  }

  .header .inner-contact {
    width: 100%;
    display: block;
    padding-top: 16px;
    border-top: 1px solid #FFFFF1;
    display: grid;
    grid-template-columns: 166fr 182fr;
    gap: 16px 38px;
  }

  .header .inner-contact-title {
    font-family: var(--font-vnm-display);
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 4px;
    color: #FFFFF1;
  }

  .header .inner-contact-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .header .inner-contact-list a {
    font-family: var(--font-vnm-std);
    font-weight: 400;
    font-size: 12px;
    color: #FFFFF1;
    letter-spacing: 0.6px;
  }

  .header .inner-menu-mobile {
    display: inline-block;
    background-color: transparent;
    padding: 0;
    border: 0;
    width: 24px;
    height: 24px;
    cursor: pointer;
  }

  .header .inner-menu-mobile img {
    width: 100%;
    height: 100%;
    display: block;
  }

  .header.show {
    height: 100vh;
    display: block;
  }

  .header.show .inner-menu {
    position: absolute;
    top: 60px;
    left: 1.6rem;
    width: calc(100% - 3.2rem);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    overflow-y: auto;
    max-height: calc(100vh - 70px);
  }

  .header .inner-menu-mobile .icon-close {
    display: none;
  }

  .header.show .inner-menu-mobile .icon-menu {
    display: none;
  }

  .header.show .inner-menu-mobile .icon-close {
    display: block;
  }
}
/* End Header */

/* Section 1 */
.section-1 {
  background-color: var(--color-blue);
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.section-1 .inner-title {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 240px;
  line-height: 0.833;
  color: #FFFFF1;
}

.section-1 .inner-title br {
  display: none;
}

.section-1 .inner-desc {
  margin: 0;
  font-family: var(--font-vnm-std);
  font-weight: 400;
  font-size: 29px;
  color: #FFFFFF;
  line-height: 1;
}

.section-1 .inner-pattern {
  width: 100%;
  height: 549px;
  position: relative;
}

.section-1 .inner-pattern img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  will-change: transform, opacity;
}

.section-1 .inner-pattern img.fade-up {
  opacity: 1;
  transform: translateY(0);
}

.section-1 .inner-pattern .inner-col-1 {
  width: 48.24%;
  position: absolute;
  bottom: 6px;
  left: 0;
}

.section-1 .inner-pattern .inner-col-1 img {
  height: 7px;
  margin-top: 6px;
}

.section-1 .inner-pattern .inner-col-2 {
  width: 46.97%;
  position: absolute;
  bottom: 6px;
  left: 26.44%;
}

.section-1 .inner-pattern .inner-col-2 img {
  height: 20px;
  width: 53.7%;
  margin-top: 19px;
  margin-left: auto;
}

.section-1 .inner-pattern .inner-col-2 img:nth-child(-n+3) {
  width: 100%;
}

.section-1 .inner-pattern .inner-col-3 {
  width: 51.76%;
  position: absolute;
  bottom: 6px;
  left: 48.2%;
}

.section-1 .inner-pattern .inner-col-3 img {
  height: 3px;
  width: 51.3%;
  margin-top: 3px;
  margin-left: auto;
}

.section-1 .inner-pattern .inner-col-3 img:nth-child(-n+14) {
  width: calc(100% + 0.6px);
}

@media (max-width: 1199.98px) {
  .section-1 .inner-title {
    font-size: 230px;
  }
}

@media (max-width: 991.98px) {
  .section-1 .inner-title br {
    display: block;
  }

  .section-1 .inner-title {
    font-size: 140px;
  }
}

@media (max-width: 575.98px) {
  .section-1 .inner-title {
    font-size: 156px;
    margin-bottom: 0;
  }

  .section-1 .inner-desc {
    font-size: 15px;
  }

  .section-1 .inner-pattern {
    margin-top: -29px;
  }
}

@media (max-width: 439.98px) {
  .section-1 .inner-title {
    font-size: 130px;
  }

  .section-1 .inner-pattern {
    margin-top: 0;
  }
}
/* End Section 1 */

/* Section 2 */
.section-2 {
  padding: 5.6rem 0 3.2rem 0;
  background-color: #FFFFF1;
}

.section-2 .inner-title-main {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 7.2rem;
  line-height: 1;
  color: var(--color-blue);
}

.section-2 .inner-wrap {
  display: grid;
  grid-template-columns: 524fr 288fr 266fr;
  gap: 2.4rem;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.section-2 .inner-wrap-1 {
  align-items: flex-start;
}

.section-2 .inner-content {
  color: var(--color-blue);
}

.section-2 .inner-content .inner-justify {
  text-align: justify;
}

.section-2 .type-1 {
  display: inline-flex;
  flex-direction: column;
}

.section-2 .type-1 .inner-text {
  font-family: var(--font-vnm-std);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.333;
}

.section-2 .type-1 .inner-number {
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 14rem;
  line-height: 0.8;
}

.section-2 .type-1-1 .inner-number {
  margin-left: 18%;
}

.section-2 .type-1 .inner-text:first-child {
  opacity: 0;
  margin-bottom: 1.6rem;
}

.section-2 .type-2 {
  text-align: center;
}

.section-2 .type-2 .inner-text:first-child {
  opacity: 1;
}

.section-2 .type-3 .inner-text-1 {
  margin-bottom: 1.8rem;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.28;
}

.section-2 .type-3 .inner-text-2 {
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
}

.section-2 .type-3 .inner-text-2 .inner-number {
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 8.2rem;
  line-height: 0.8;
}

.section-2 .type-3 .inner-text-2 .inner-text-small {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.28;
}

.section-2 .type-4 {
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
}

.section-2 .type-4 .inner-number {
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 8.2rem;
  line-height: 0.8;
}

.section-2 .type-4 .inner-text {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.28;
}

.section-2 .type-5 .inner-text-1 {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.28;
  margin-bottom: 0.8rem;
}

.section-2 .type-5 .inner-text-2 {
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 4rem;
  line-height: 0.9;
}

.section-2 .inner-pattern {
  margin-bottom: 3.2rem;
}

.section-2 .inner-pattern img {
  width: 100%;
  height: auto;
  display: block;
}

.section-2 .inner-mobile {
  display: none;
}

@media (max-width: 767.98px) {
  .section-2 {
    padding: 16px 0 24px 0;
  }

  .section-2 .inner-title-main {
    font-size: 32px;
    margin-bottom: 4px;
  }

  .section-2 .type-1 .inner-text {
    font-size: 16px;
  }

  .section-2 .type-1 .inner-number {
    font-size: 96px;
  }

  .section-2 .type-3 .inner-text-1 {
    font-size: 14px;
  }

  .section-2 .type-3 .inner-text-2 .inner-number {
    font-size: 64px;
  }

  .section-2 .type-3 .inner-text-2 .inner-text-small {
    font-size: 14px;
  }

  .section-2 .type-4 .inner-number {
    font-size: 64px;
  }

  .section-2 .type-4 .inner-text {
    font-size: 14px;
  }

  .section-2 .type-5 .inner-text-1 {
    font-size: 14px;
  }

  .section-2 .type-5 .inner-text-2 {
    font-size: 64px;
  }

  .section-2 .inner-pc {
    display: none;
  }

  .section-2 .inner-mobile {
    display: block;
  }

  .section-2 .inner-wrap-1 {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

  .section-2 .type-1-1 .inner-number {
    margin-left: 0;
  }

  .section-2 .inner-wrap-2,
  .section-2 .inner-wrap-3,
  .section-2 .inner-wrap-4,
  .section-2 .inner-wrap-6,
  .section-2 .inner-wrap-7 {
    grid-template-columns: 1fr;
  }

  .section-2 .inner-wrap-5 {
    grid-template-columns: 225fr 172fr;
    gap: 12px;
  }

  .section-2 .inner-wrap-7 .inner-text-1 br {
    display: none;
  }

  .section-2 .inner-wrap-8 {
    grid-template-columns: 1fr 1fr;
  }

  .section-2 .inner-pattern img {
    height: 49px;
    object-fit: cover;
  }
}

@media (max-width: 575.98px) {
  .section-2 {
    padding-bottom: 40px;
  }

  .section-2 .inner-pattern {
    margin-bottom: 16px;
  }

  .section-2 .inner-wrap-1 .inner-text br {
    display: none;
  }

  .section-2 .inner-wrap-1 .type-1-1 .inner-text {
    text-align: left;
  }

  .section-2 .inner-wrap-5 .inner-content {
    flex-wrap: wrap;
    text-align: center;
  }

  .section-2 .inner-wrap-5 .inner-content .inner-number {
    width: 100%;
  }

  .section-2 .inner-wrap-5 .inner-content .inner-text {
    width: 100%;
  }

  .section-2 .inner-wrap-5 .inner-col:nth-child(1) .inner-content .inner-text {
    text-align: left;
  }

  .section-2 .inner-wrap-6 .inner-content {
    gap: 12px;
  }
}
/* End Section 2 */

/* Footer */
.footer .inner-main {
  background-color: var(--color-blue);
  padding: 8.8rem 0 8rem 0;
}

.footer .inner-wrap {
  display: grid;
  grid-template-columns: 4fr 3fr 5fr;
  gap: 2.4rem
}

.footer .inner-col {
  display: flex;
  flex-direction: column;
  gap: 2.7rem;
}

.footer .inner-logo img {
  width: 19.8rem;
  height: auto;
  display: block;
}

.footer .inner-menu .inner-title {
  margin-bottom: 1rem;
  font-family: var(--font-vnm-display);
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1;
  color: #FFFFF1;
  letter-spacing: 0.12rem;
}

.footer .inner-menu .inner-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer .inner-menu .inner-list a {
  font-family: var(--font-vnm-std);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.08rem;
  color: #FFFFF1;
}

.footer .inner-copyright {
  background-color: #FFFFF1;
  font-family: var(--font-vnm-std);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.07rem;
  text-align: center;
  padding: 1.5rem 0;
}

.type-blue .footer .inner-main {
  background-color: var(--color-blue);
}

.type-blue .footer .inner-copyright {
  color: var(--color-blue);
}

.type-orange .footer .inner-main {
  background-color: var(--color-orange);
}

.type-orange .footer .inner-copyright {
  color: #B16B11;
}

.type-blue-light .footer .inner-main {
  background-color: var(--color-blue-light);
}

.type-blue-light .footer .inner-copyright {
  color: var(--color-blue-light);
}

.type-green .footer .inner-main {
  background-color: var(--color-green);
}

.type-green .footer .inner-copyright {
  color: #006D5A;
}

.type-pink .footer .inner-main {
  background-color: var(--color-pink);
}

.type-pink .footer .inner-copyright {
  color: #B6150C;
}

@media (max-width: 991.98px) {
  .footer .inner-main {
    padding: 24px 0;
  }

  .footer .inner-logo img {
    width: 143px;
  }

  .footer .inner-col {
    gap: 16px;
  }

  .footer .inner-menu .inner-title {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .footer .inner-menu .inner-list a {
    font-size: 12px;
  }

  .footer .inner-copyright {
    font-size: 10px;
    padding: 10px 0;
  }
}

@media (max-width: 767.98px) {
  .footer .inner-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
    position: relative;
  }

  .footer .inner-wrap .inner-col:nth-of-type(1) {
    position: absolute;
    top: 0;
    right: 0;
  }
}
/* End Footer */

/* Section 3 */
.section-3 {
  padding: 6.5rem 0 4rem 0;
}

.section-3 .inner-wrap {
  display: grid;
  grid-template-columns: 365fr 739fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.section-3 .inner-image img {
  width: 100%;
  height: auto;
  display: block;
}

.section-3 .inner-content .inner-title {
  margin-top: 0;
  margin-bottom: 4rem;
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 7.2rem;
  line-height: 1;
  color: var(--color-blue);
}

.section-3 .inner-content .inner-text {
  font-family: var(--font-vnm-std);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.333;
  color: var(--color-blue);
  text-align: justify;
}

.section-3 .inner-content .inner-text-1 {
  margin-bottom: 0.8rem;
}

.section-3 .inner-content .inner-text-2 {
  margin-bottom: 2.4rem;
}

.section-3 .inner-content .inner-text-3 {
  margin-bottom: 0.8rem;
}

.section-3 .inner-content .inner-text-4 {
  font-weight: 700;
}

.section-3 .inner-pattern {
  position: relative;
  top: -33px;
  display: grid;
  grid-template-columns: 381fr 739fr;
  align-items: flex-end;
}

.section-3 .inner-pattern img {
  height: 33px;
  width: 100%;
  display: block;
  object-fit: cover;
}

.section-3 .inner-pattern img:nth-child(1) {
  width: calc(100% + 1px);
}

.section-3 .inner-mobile {
  display: none !important;
}

@media (max-width: 991.98px) {
  .section-3 .inner-content .inner-title {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .section-3 .inner-content .inner-text {
    font-size: 14px;
  }
}

@media (max-width: 767.98px) {
  .section-3 {
    padding: 16px 0 48px 0;
  }

  .section-3 .inner-mobile {
    display: block !important;
  }

  .section-3 .inner-pc {
    display: none !important;
  }

  .section-3 .inner-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .section-3 .inner-pattern {
    margin-bottom: -16px;
    grid-template-columns: 1fr 1fr;
  }

  .section-3 .inner-content .inner-text {
    font-size: 16px;
  }
}
/* End Section 3 */

/* Section 4 */
.section-4 {
  padding-bottom: 1.5rem;
}

.section-4 .inner-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.section-4 .inner-content {
  margin-bottom: 2.4rem;
}

.section-4 .inner-content .inner-title {
  font-family: var(--font-vnm-std);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.333;
  margin-top: 0;
  margin-bottom: 0.8rem;
  color: var(--color-blue);
}

.section-4 .inner-content .inner-text {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.333;
  color: var(--color-blue);
  text-align: justify;
}

.section-4 .inner-content .inner-text p {
  margin-top: 0;
  margin-bottom: 1.2rem;
}

.section-4 .inner-banner {
  position: relative;
}

.section-4 .inner-banner .inner-image {
  position: absolute;
  bottom: 1rem;
  left: calc(50% - 12rem);
  width: 24rem;
  z-index: 1;
}

.section-4 .inner-banner .inner-image img {
  width: 100%;
  height: auto;
  display: block;
}

.section-4 .inner-banner .inner-pattern {
  display: grid;
  grid-template-columns: 381fr 382fr 357fr;
}

.section-4 .inner-banner .inner-pattern img {
  width: 100%;
  height: 51px;
  display: block;
  object-fit: cover;
}

.section-4 .inner-banner .inner-pattern img:nth-child(1) {
  width: calc(100% + 1px);
}

@media (max-width: 991.98px) {
  .section-4 .inner-content .inner-title {
    font-size: 14px;
  }

  .section-4 .inner-content .inner-text p {
    font-size: 12px;
  }
}

@media (max-width: 767.98px) {
  .section-4 {
    padding-bottom: 16px;
  }

  .section-4 .inner-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-4 .inner-content .inner-title {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .section-4 .inner-content .inner-text p {
    margin-bottom: 24px;
  }

  .section-4 .inner-banner {
    margin-top: -50px;
  }

  .section-4 .inner-banner .inner-pattern {
    grid-template-columns: 107fr 107fr 194fr;
  }

  .section-4 .inner-banner .inner-image {
    position: relative;
    width: 140px;
    bottom: -27px;
    left: 66%;
  }
}

@media (max-width: 575.98px) {
  .section-4 .inner-banner .inner-image {
    left: calc(50% + 8vw);
    max-width: 140px;
    width: 36%;
  }
}
/* End Section 4 */

/* Section 5 */
.section-5 {
  padding-bottom: 4rem;
}

.section-5 .inner-title-main {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-family: var(--font-vnm-std);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.333;
  color: var(--color-blue);
}

.section-5 .inner-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.section-5 .inner-content-highlight {
  margin-bottom: 2.4rem;
}

.section-5 .inner-content-highlight .inner-text-1 {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.28;
  color: var(--color-blue);
  margin-bottom: 0.8rem;
  min-height: 3.6rem;
}

.section-5 .inner-content-highlight .inner-text-2 {
  display: flex;
  align-items: flex-end;
  gap: 1.6rem;
  color: var(--color-blue);
  margin-bottom: 0.8rem;
}

.section-5 .inner-content-highlight .inner-text-2 .inner-number {
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 8.2rem;
  line-height: 0.8;
}

.section-5 .inner-content-highlight .inner-text-2 .inner-text-small {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.28;
}

.section-5 .inner-content-highlight .inner-text-3 {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.28;
  color: var(--color-blue);
}

.section-5 .inner-content {
  margin-bottom: 2.4rem;
}

.section-5 .inner-content .inner-title {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.333;
  margin-top: 0;
  margin-bottom: 0.8rem;
  color: var(--color-blue);
}

.section-5 .inner-content .inner-text {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.333;
  color: var(--color-blue);
  text-align: justify;
}

.section-5 .inner-content .inner-text p {
  margin-top: 0;
  margin-bottom: 1.2rem;
}

.section-5 .inner-content .inner-text ul {
  margin-top: 0;
  padding-left: 2rem;
}

.section-5 .inner-banner {
  position: relative;
}

.section-5 .inner-banner .inner-image {
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: calc(100%/3 - 1.2rem);
}

.section-5 .inner-banner .inner-image img {
  width: 27.4rem;
  height: auto;
  display: block;
  margin: 0 auto;
}

.section-5 .inner-banner .inner-pattern img {
  width: 100%;
  height: auto;
  display: block;
}

.section-5 .inner-mobile {
  display: none;
}

@media (max-width: 991.98px) {
  .section-5 .inner-title-main {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .section-5 .inner-content-highlight .inner-text-1 {
    font-size: 12px;
  }

  .section-5 .inner-content-highlight .inner-text-2 .inner-number {
    font-size: 64px;
  }

  .section-5 .inner-content-highlight .inner-text-2 .inner-text-small {
    font-size: 12px;
  }

  .section-5 .inner-content-highlight .inner-text-3 {
    font-size: 12px;
  }

  .section-5 .inner-content .inner-text {
    font-size: 12px;
  }

  .section-5 .inner-content .inner-title {
    font-size: 12px;
  }

  .section-5 .inner-content .inner-title br {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .section-5 {
    padding-bottom: 0;
  }
  
  .section-5 .inner-title-main {
    font-size: 16px;
  }

  .section-5 .inner-content-highlight {
    margin-bottom: 0;
  }

  .section-5 .inner-content-highlight .inner-text-1 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .section-5 .inner-content-highlight .inner-text-2 {
    margin-bottom: 8px;
  }

  .section-5 .inner-content-highlight .inner-text-2 .inner-text-small {
    font-size: 14px;
  }

  .section-5 .inner-content-highlight .inner-text-3 {
    font-size: 14px;
  }

  .section-5 .inner-content .inner-text {
    font-size: 12px;
  }

  .section-5 .inner-content .inner-title {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .section-5 .inner-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }

  .section-5 .inner-line {
    width: 100%;
    height: 1px;
    background-color: var(--color-blue-light);
    margin-top: 8px;
  }

  .section-5 .inner-pc {
    display: none;
  }

  .section-5 .inner-mobile {
    display: block;
  }

  .section-5 .inner-banner-2 {
    position: relative;
    margin-bottom: 35px;
  }

  .section-5 .inner-banner-2 .inner-image {
    width: 173px;
    margin-left: 8%;
  }

  .section-5 .inner-banner-2 .inner-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .section-5 .inner-banner-2 .inner-pattern {
    display: grid;
    grid-template-columns: 194fr 214fr;
  }

  .section-5 .inner-banner-2 .inner-pattern img {
    height: 10px;
    width: 100%;
    display: block;
    object-fit: cover;
    position: relative;
  }

  .section-5 .inner-banner-2 .inner-pattern img:nth-child(2) {
    bottom: 10px;
  }
}

@media (max-width: 575.98px) {
  .section-5 .inner-banner-2 .inner-image {
    width: 40%;
    max-width: 173px;
    margin-left: 10px;
  }
}
/* End Section 5 */

/* Section 6 */
.section-6 {
  background-color: var(--color-blue);
}

.section-6 .inner-main {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: calc(100vh - 64px);
  padding-top: 32px;
  padding-bottom: 32px;
}

.section-6 .inner-content {
  margin-bottom: 80px;
  position: relative;
}

.section-6 .inner-content .inner-title {
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 140px;
  line-height: 1;
  color: #FFFFF1;
  margin: 0;
}

.section-6 .inner-content .inner-title .inner-br-mobi {
  display: none;
}

.section-6 .inner-content .inner-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.section-6 .inner-content .inner-list .inner-item {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.28;
  color: #FFFFFF;
}

.section-6 .inner-pattern {
  display: grid;
}

.section-6 .inner-pattern img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.section-6.type-1 .inner-pattern img {
  height: 18px;
}

.section-6.type-2 .inner-content {
  left: 25.5%;
  width: 74.5%;
}

.section-6.type-2 .inner-pattern {
  grid-template-columns: 290fr 834fr;
}

.section-6.type-2 .inner-pattern img:nth-child(2) {
  height: 35px;
}

.section-6.type-2 .inner-pattern img:nth-child(1) {
  height: 17px;
  margin-top: 35px;
}

.section-6.type-3 .inner-content {
  left: 49%;
  width: 51%;
}

.section-6.type-3 .inner-pattern {
  grid-template-columns: 290fr 258fr 572fr;
}

.section-6.type-3 .inner-pattern img:nth-child(3) {
  height: 52px;
}

.section-6.type-3 .inner-pattern img:nth-child(2) {
  height: 35px;
  margin-top: 52px;
}

.section-6.type-3 .inner-pattern img:nth-child(1) {
  height: 17px;
  margin-top: 87px;
}

.section-6.type-4 .inner-content {
  left: 49%;
  width: 51%;
}

.section-6.type-4 .inner-pattern {
  grid-template-columns: 167fr 190fr 191fr 572fr;
}

.section-6.type-4 .inner-pattern img:nth-child(4) {
  height: 70px;
}

.section-6.type-4 .inner-pattern img:nth-child(3) {
  height: 52px;
  margin-top: 70px;
}

.section-6.type-4 .inner-pattern img:nth-child(2) {
  height: 35px;
  margin-top: 122px;
}

.section-6.type-4 .inner-pattern img:nth-child(1) {
  height: 17px;
  margin-top: 157px;
}

.section-6.type-5 .inner-content {
  left: 51%;
  width: 49%;
}

.section-6.type-5 .inner-pattern {
  grid-template-columns: 143fr 144fr 142fr 143fr 548fr;
}

.section-6.type-5 .inner-pattern img:nth-child(5) {
  height: 87px;
}

.section-6.type-5 .inner-pattern img:nth-child(4) {
  height: 70px;
  margin-top: 87px;
}

.section-6.type-5 .inner-pattern img:nth-child(3) {
  height: 52px;
  margin-top: 157px;
}

.section-6.type-5 .inner-pattern img:nth-child(2) {
  height: 35px;
  margin-top: 209px;
}

.section-6.type-5 .inner-pattern img:nth-child(1) {
  height: 17px;
  margin-top: 244px;
}

.type-orange .section-6 {
  background-color: var(--color-orange);
}

.type-blue-light .section-6 {
  background-color: var(--color-blue-light);
}

.type-green .section-6 {
  background-color: var(--color-green);
}

.type-pink .section-6 {
  background-color: var(--color-pink);
}

@media (max-width: 991.98px) {
  .section-6 .inner-main {
    min-height: calc(100vh - 60px);
  }

  .section-6 .inner-content .inner-title {
    font-size: 100px;
  }
}

@media (max-width: 767.98px) {
  .section-6 .inner-content {
    margin-bottom: 40px;
  }

  .section-6 .inner-content .inner-title {
    font-size: 64px;
  }
}

@media (max-width: 575.98px) {
  .section-6.type-2 .inner-content {
    left: 0;
    width: 100%;
  }

  .section-6.type-2 .inner-pattern {
    grid-template-columns: 1fr 1fr;
  }

  .section-6.type-3 .inner-content {
    left: 50%;
    width: 50%;
  }

  .section-6.type-3 .inner-pattern {
    grid-template-columns: 100fr 100fr 200fr;
  }

  .section-6.type-4 .inner-content {
    left: 40.5%;
    width: 59.5%;
  }

  .section-6.type-4 .inner-pattern {
    grid-template-columns: 50fr 50fr 50fr 220fr;
  }

  .section-6.type-5 .inner-content {
    left: 47.62%;
    width: 52.38%;
  }

  .section-6.type-5 .inner-pattern {
    grid-template-columns: 50fr 50fr 50fr 50fr 220fr;
  }

  .section-6 .inner-content .inner-title .inner-br-mobi {
    display: block;
  }
}
/* End Section 6 */

/* Section 7 */
.section-7 {
  padding: 5.6rem 0 6.4rem 0;
}

.section-7 .inner-title-1 {
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 7.2rem;
  line-height: 1;
  color: var(--color-blue);
  margin-bottom: 0.8rem;
}

.section-7 .inner-title-2 {
  font-family: var(--font-vnm-display);
  font-weight: 500;
  font-size: 24rem;
  line-height: 0.875;
  color: var(--color-blue);
  margin-bottom: 4rem;
}

.section-7 .inner-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}

.section-7 .inner-content .inner-title {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.28;
  color: var(--color-blue);
  margin-bottom: 0.8rem;
}

.section-7 .inner-content ul {
  margin: 0;
  padding-left: 2rem;
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.333;
  color: var(--color-blue);
  text-align: justify;
}

.section-7 .inner-pattern-1 {
  margin-top: 1.6rem;
  margin-bottom: 2.4rem;
}

.section-7 .inner-pattern-1 img {
  width: 100%;
  height: auto;
  display: block;
}

.section-7 .inner-mobile {
  display: none;
}

.section-7 .inner-button {
  margin-top: 2.4rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.section-7 .inner-banner {
  position: relative;
  margin-top: -5.6rem;
}

.section-7 .inner-banner .inner-image {
  position: relative;
  z-index: 1;
}

.section-7 .inner-banner .inner-image img {
  width: 21.9rem;
  height: auto;
  display: block;
  margin-left: 5.98%;
}

.section-7 .inner-banner .inner-pattern {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 381fr 382fr 357fr;
  align-items: flex-end;
}

.section-7 .inner-banner .inner-pattern img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1199.98px) {
  .section-7 .inner-banner .inner-pattern img:nth-of-type(1) {
    margin-left: 1px;
  }
}

@media (max-width: 991.98px) {
  .section-7 {
    padding: 16px 0 90px 0;
  }

  .section-7 .inner-mobile {
    display: block;
  }

  .section-7 .inner-title-1 {
    font-size: 32px;
    margin-bottom: 0;
  }

  .section-7 .inner-title-2 {
    font-size: 96px;
    list-style: 1;
    margin-bottom: 16px;
  }

  .section-7 .inner-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-7 .inner-content .inner-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .section-7 .inner-content ul {
    font-size: 12px;
    padding-left: 20px;
  }

  .section-7 .inner-pattern-1 {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .section-7 .inner-button {
    margin-top: 40px;
  }

  .section-7 .inner-banner {
    margin-top: 32px;
  }

  .section-7 .inner-banner .inner-image img {
    width: 30%;
  }

  .section-7 .inner-banner .inner-pattern {
    grid-template-columns: 194fr 214fr;
    bottom: -34px;
  }

  .section-7 .inner-banner .inner-pattern img {
    height: 266px;
    object-fit: cover;
    object-position: bottom;
  }

  .section-7 .inner-banner .inner-pattern img:nth-of-type(3) {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .section-7 .inner-banner .inner-image img {
    width: 38%;
  }

  .section-7 .inner-banner .inner-pattern img {
    height: 180px;
  }
}
/* End Section 7 */

/* Section 8 */
.section-8 {
  padding: 5.6rem 0 6.4rem 0;
}

.section-8 .inner-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 54.8rem;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .section-8 {
    padding: 32px 0 56px 0;
  }

  .section-8 .inner-wrap {
    min-width: 234px;
  }
}
/* End Section 8 */

/* Section 9 */
.section-9 {
  padding: 5.6rem 0 6.4rem 0;
}

.section-9 .inner-title-main {
  margin-top: 0;
  margin-bottom: 1.6rem;
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 7.2rem;
  line-height: 1;
  color: var(--color-pink);
}

.section-9 .inner-title-sub {
  margin-top: 0;
  margin-bottom: 4rem;
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  color: var(--color-pink);
}

.section-9 .inner-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 2.4rem;
}

.section-9 .inner-item .inner-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.section-9 .inner-item .inner-head .inner-title {
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 4rem;
  line-height: 0.9;
  color: var(--color-pink);
}

.section-9 .inner-item .inner-head .inner-icon img {
  display: block;
  object-fit: contain;
}

.section-9 .inner-item .inner-item-pattern {
  margin-bottom: 1.6rem;
}

.section-9 .inner-item .inner-item-pattern img {
  display: block;
  width: 100%;
  height: auto;
}

.section-9 .inner-item .inner-body {
  color: var(--color-pink);
  font-family: var(--font-inter);
}

.section-9 .inner-item .inner-body ul {
  margin: 0;
  padding-left: 1.8rem;
  list-style: disc;
}

.section-9 .inner-item .inner-body ul ul {
  margin: 0.8rem 0;
}

.section-9 .inner-item .inner-body ul li {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.333;
}

.section-9 .inner-item .inner-body a {
  color: var(--color-pink);
}

.section-9 .inner-item .inner-timeline {
  margin: 0.8rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.section-9 .inner-item .inner-timeline .inner-timeline-pattern {
  width: 100%;
  height: 7px;
  display: block;
  object-fit: cover;
  margin-bottom: 8px;
}

.section-9 .inner-item .inner-timeline .inner-timeline-title {
  margin-bottom: 0.8rem;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.333;
}

.section-9 .inner-item .inner-timeline .inner-timeline-desc {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.333;
}

.section-9 .inner-item .inner-timeline .inner-timeline-banner {
  display: none;
}

.section-9 .inner-button {
  margin-top: 8rem;
  text-align: center;
}

.section-9 .inner-banner {
  position: relative;
  margin-top: 2.4rem;
}

.section-9 .inner-banner .inner-image {
  width: 50%;
  position: relative;
  z-index: 1;
}

.section-9 .inner-banner .inner-image img {
  display: block;
  width: 319px;
  height: auto;
  margin: 0 auto;
}

.section-9 .inner-banner .inner-pattern {
  display: grid;
  grid-template-columns: 548fr 572fr;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.section-9 .inner-banner .inner-pattern img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.section-9 .inner-banner .inner-pattern img:nth-child(2) {
  height: 70px;
}

.section-9 .inner-banner .inner-pattern img:nth-child(1) {
  height: 42px;
  margin-top: 70px;
}

@media (max-width: 991.98px) {
  .section-9 {
    padding: 16px 0 56px 0;
  }

  .section-9 .inner-title-main {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .section-9 .inner-title-main br {
    display: none;
  }

  .section-9 .inner-title-sub {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .section-9 .inner-wrap {
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .section-9 .inner-item .inner-head {
    margin-bottom: 8px;
  }

  .section-9 .inner-item .inner-head .inner-title {
    font-size: 32px;
  }

  .section-9 .inner-item .inner-head .inner-icon img {
    height: 40px !important;
    width: auto !important;
  }

  .section-9 .inner-item .inner-item-pattern {
    margin-bottom: 8px;
  }

  .section-9 .inner-item .inner-item-pattern img {
    height: 14px;
    object-fit: cover;
  }

  .section-9 .inner-item .inner-body ul {
    padding-left: 18px;
  }

  .section-9 .inner-item .inner-body ul li {
    font-size: 12px;
  }

  .section-9 .inner-item .inner-timeline .inner-timeline-title {
    font-size: 12px;
  }

  .section-9 .inner-item .inner-timeline .inner-timeline-desc {
    font-size: 12px;
  }

  .section-9 .inner-item .inner-timeline {
    gap: 16px 20px;
    margin: 8px 0 16px 0;
  }

  .section-9 .inner-button {
    margin-top: 40px;
  }

  .section-9 .inner-banner {
    margin-top: 40px;
  }

  .section-9 .inner-banner .inner-image {
    padding-bottom: 15px;
  }

  .section-9 .inner-banner .inner-image img {
    width: 80%;
  }
}

@media (max-width: 575.98px) {
  .section-9 .inner-item .inner-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-9 .inner-item .inner-timeline .inner-timeline-item:nth-of-type(1) {
    order: 0;
  }

  .section-9 .inner-item .inner-timeline .inner-timeline-item:nth-of-type(3) {
    order: 1;
  }

  .section-9 .inner-item .inner-timeline .inner-timeline-item:nth-of-type(2) {
    order: 2;
  }

  .section-9 .inner-item .inner-timeline .inner-timeline-banner {
    display: block;
    padding-top: 10px;
    order: 3;
  }

  .section-9 .inner-item .inner-timeline .inner-timeline-banner img {
    width: 100%;
    height: auto;
    display: block;
  }
}
/* End Section 9 */

/* Section 10 */
.section-10 {
  padding: 5.6rem 0 6.4rem 0;
}

.section-10 .inner-title-main {
  margin-top: 0;
  margin-bottom: 4rem;
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 14rem;
  line-height: 1;
  color: var(--color-blue);
}

.section-10 .inner-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 7.2rem;
}

.section-10 .inner-wrap {
  display: grid;
  grid-template-columns: 270fr 834fr;
  gap: 1.6rem;
}

.section-10 .inner-wrap .inner-title {
  font-family: var(--font-vnm-std);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.333;
  color: var(--color-blue);
}

.section-10 .inner-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 2.4rem;
}

.section-10 .inner-item .inner-name {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.28;
  color: var(--color-blue);
  margin-bottom: 0.8rem;
}

.section-10 .inner-item .inner-pattern {
  width: calc(100% + 2.45rem);
  height: 10px;
  display: block;
  object-fit: none;
  margin-bottom: 1.6rem;
}

.section-10 .inner-item:nth-child(3n) .inner-pattern {
  width: 100%;
}

.section-10 .inner-item .inner-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.333;
  color: var(--color-blue);
  word-break: break-all;
}

.section-10 .inner-item .inner-info a {
  color: var(--color-blue);
}

.section-10 .inner-item .inner-banner img {
  width: 11.2rem;
  height: auto;
  display: block;
  margin: 0 auto;
}

.section-10 .inner-pattern-1 {
  display: none;
}

.section-10 .inner-mobile {
  display: none;
}

@media (max-width: 991.98px) {
  .section-10 {
    padding: 16px 0 32px 0;
  }

  .section-10 .inner-title-main {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .section-10 .inner-list-wrap {
    gap: 24px;
  }

  .section-10 .inner-wrap {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section-10 .inner-wrap .inner-title {
    font-size: 16px;
  }

  .section-10 .inner-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
  }

  .section-10 .inner-item .inner-name {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .section-10 .inner-item .inner-name br {
    display: none;
  }

  .section-10 .inner-item .inner-pattern {
    display: none;
  }

  .section-10 .inner-item .inner-info {
    font-size: 12px;
    gap: 8px;
  }

  .section-10 .inner-item .inner-info .inner-address br {
    display: none;
  }

  .section-10 .inner-pattern-1 {
    display: block;
  }

  .section-10 .inner-pattern-1 img {
    width: 100%;
    height: 10px;
    object-fit: cover;
  }

  .section-10 .inner-pattern-3 {
    width: 100%;
    height: 1px;
    background-color: var(--color-blue-light);
    margin-bottom: 8px;
  }

  .section-10 .inner-item:nth-child(2n + 1) .inner-pattern-3 {
    width: calc(100% + 22px);
  }

  .section-10 .inner-mobile {
    display: block;
  }

  .section-10 .inner-pc {
    display: none;
  }

  .section-10 .inner-banner-2 img {
    width: 96px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto 0 auto;
  }

  .section-10 .inner-banner-3 img {
    width: 148px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .section-10 .inner-banner-4 img {
    width: 143px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}
/* End Section 10 */

/* Section 11 */
.section-11 {
  padding: 5.6rem 0;
  color: #006D5A;
}

.section-11 .inner-title-main {
  margin-top: 0;
  margin-bottom: 4rem;
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 7.2rem;
  line-height: 1;
}

.section-11 .inner-wrap-1 {
  display: grid;
  grid-template-columns: 453fr 548fr;
  gap: 12rem;
  margin-bottom: 1.6rem;
}

.section-11 .inner-item-1 .inner-title {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.28;
  margin-bottom: 0.8rem;
  margin-top: 2.4rem;
}

.section-11 .inner-item-1 .inner-title:first-of-type {
  margin-top: 0;
}

.section-11 .inner-item-1 .inner-desc {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.28;
  text-align: justify;
}

.section-11 .inner-item-1 .inner-desc ul {
  margin: 0;
  padding-left: 1.8rem;
}

.section-11 .inner-item-1 .inner-text-hl {
  text-align: justify;
  font-family: var(--font-vnm-std);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.333;
}

.section-11 .inner-pattern img {
  width: 100%;
  height: auto;
  display: block;
}

.section-11 .inner-wrap-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  margin-top: 3.2rem;
  margin-bottom: 0.6rem;
}

.section-11 .inner-item-2 .inner-title {
  margin-bottom: 0.6rem;
  text-align: justify;
  font-family: var(--font-vnm-std);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.333;
}

.section-11 .inner-item-2 .inner-text {
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
}

.section-11 .inner-item-2 .inner-text .inner-number {
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 14rem;
  line-height: 1;
}

.section-11 .inner-item-2 .inner-text .inner-text-small {
  font-family: var(--font-vnm-std);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.333;
  padding-bottom: 1.6rem;
}

.section-11 .inner-wrap-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  margin-top: 3.2rem;
}

.section-11 .inner-banner {
  position: relative;
  margin-top: -4rem;
}

.section-11 .inner-banner .inner-image {
  width: calc(100%/3 - 1.2rem);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.section-11 .inner-banner .inner-image img {
  width: 100%;
  height: auto;
  display: block;
}

.section-11 .inner-banner .inner-pattern {
  display: grid;
  grid-template-columns: 381fr 382fr 357fr;
  align-items: flex-end;
}

.section-11 .inner-banner .inner-pattern img {
  height: 120px;
}

.section-11 .inner-banner .inner-pattern img:nth-of-type(1) {
  margin-left: 1px;
}

.section-11 .inner-banner .inner-pattern img:nth-of-type(3) {
  margin-left: -1px;
}

.section-11 .inner-mobile {
  display: none !important;
}

@media (max-width: 1365.98px) {
  .section-11 .inner-banner .inner-image {
    width: calc(100% / 3 - 12rem);
  }
}

@media (max-width: 991.98px) {
  .section-11 {
    padding: 16px 0 32px 0;
  }

  .section-11 .inner-title-main {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .section-11 .inner-wrap-1 {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 16px;
  }

  .section-11 .inner-item-1 .inner-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .section-11 .inner-item-1 .inner-desc {
    font-size: 12px;
  }

  .section-11 .inner-item-1 .inner-desc ul {
    padding-left: 18px;
  }

  .section-11 .inner-item-1 .inner-text-hl {
    font-size: 16px;
  }

  .section-11 .inner-wrap-2 {
    margin-top: 16px;
    margin-bottom: 16px;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
  }

  .section-11 .inner-item-2 .inner-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .section-11 .inner-item-2 .inner-text .inner-number {
    font-size: 72px;
  }

  .section-11 .inner-item-2 .inner-text .inner-text-small {
    font-size: 16px;
  }

  .section-11 .inner-mobile {
    display: block !important;
  }

  .section-11 .inner-banner-2 {
    padding-left: 20px;
  }

  .section-11 .inner-banner-2 img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 186px;
  }

  .section-11 .inner-wrap-2 .inner-item-2:nth-of-type(3),
  .section-11 .inner-wrap-2 .inner-item-2:nth-of-type(4) {
    border-top: 1px solid var(--color-green);
    padding-top: 16px;
  }

  .section-11 .inner-wrap-2 .inner-item-2:nth-of-type(4) {
    margin-left: -20px;
  }

  .section-11 .inner-wrap-3 {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .section-11 .inner-wrap-3 .inner-line {
    width: 100%;
    height: 1px;
    background-color: var(--color-green);
    margin-top: 16px;
  }

  .section-11 .inner-banner {
    margin-top: 0;
  }

  .section-11 .inner-banner .inner-image {
    position: relative;
    margin-left: auto;
    margin-bottom: -120px;
  }
}

@media (max-width: 767.98px) {
  .section-11 .inner-banner .inner-pattern {
    grid-template-columns: 194fr 204fr;
  }

  .section-11 .inner-banner .inner-pattern img:nth-of-type(3) {
    display: none;
  }

  .section-11 .inner-banner .inner-pattern img {
    height: 98px;
    object-fit: cover;
    object-position: bottom;
  }

  .section-11 .inner-banner .inner-image {
    margin-bottom: -98px;
    width: 50%;
  }
}
/* End Section 11 */

/* Section 12 */
.section-12 {
  padding-bottom: 5.6rem;
  color: #006D5A;
}

.section-12 .inner-title-main {
  margin-top: 0;
  margin-bottom: 4rem;
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 7.2rem;
  line-height: 1;
}

.section-12 .inner-title-sub-1 {
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 4rem;
  line-height: 0.9;
  margin-bottom: 0.8rem;
}

.section-12 .inner-title-sub-2 {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.28;
  margin-bottom: 0.8rem;
}

.section-12 .inner-head {
  margin-bottom: 0.8rem;
}

.section-12 .inner-desc {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.333;
  margin-bottom: 0.8rem;
}

.section-12 .inner-desc ul {
  margin: 0;
  padding-left: 1.8rem;
}

.section-12 .inner-banner .inner-image {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes fadeOverlay {
  0% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}

.section-12 .inner-banner .inner-image.inner-border {
  padding: 0.6rem 0.8rem;
  background-color: #C4C4C4;
}

.section-12 .inner-banner .inner-pattern {
  width: 100%;
  height: 20px;
  display: block;
  object-fit: cover;
}

.section-12 .inner-list-box {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.section-12 .inner-box-2 .inner-wrap-1 {
  display: grid;
  grid-template-columns: 358fr 740fr;
  gap: 2.4rem;
  margin-bottom: 2.4rem;
}

.section-12 .inner-box-2 .inner-wrap-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
}

.section-12 .inner-box-2 .inner-wrap-1 .inner-image {
  aspect-ratio: 340/241;
  object-fit: cover;
}

.section-12 .inner-box-2 .inner-wrap-3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
}

.section-12 .inner-box-2 .inner-wrap-3 .inner-image {
  aspect-ratio: 548/388;
  object-fit: cover;
}

.section-12 .inner-box-3 .inner-wrap-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
}

.section-12 .inner-box-3 .inner-wrap-1 .inner-head {
  display: grid;
  align-content: flex-end;
  margin-bottom: 0;
  margin-top: 0.8rem;
}

.section-12 .inner-box-3 .inner-wrap-1 .inner-image {
  aspect-ratio: 548/388;
  object-fit: cover;
}

.section-12 .inner-box-4 .inner-wrap-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  margin-bottom: 2.4rem;
}

.section-12 .inner-box-4 .inner-wrap-1 .inner-image {
  aspect-ratio: 548/452;
  object-fit: cover;
}

.section-12 .inner-box-4 .inner-wrap-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
}

.section-12 .inner-box-4 .inner-wrap-2 .inner-head {
  display: grid;
  align-content: flex-end;
  margin-bottom: 0;
  margin-top: 0.8rem;
}

.section-12 .inner-box-4 .inner-wrap-2 .inner-image {
  aspect-ratio: 548/477;
  object-fit: contain;
}

.section-12 .inner-box-4 .inner-wrap-2 .inner-item:nth-child(1) .inner-image {
  background-color: #F3F7F6;
}

.section-12 .inner-box-4 .inner-wrap-2 .inner-item:nth-child(2) .inner-image {
  background-color: #60AB58;
}

.section-12 .inner-box-6 .inner-wrap-1 {
  margin-bottom: 4rem;
}

.section-12 .inner-box-6 .inner-wrap-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
}

.section-12 .inner-box-6 .inner-wrap-2 .inner-image {
  aspect-ratio: 548/406;
  object-fit: cover;
}

.section-12 .inner-box-7 .inner-wrap-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  margin-bottom: 2.4rem;
}

.section-12 .inner-box-7 .inner-wrap-1 .inner-image {
  aspect-ratio: 548/440;
  object-fit: cover;
}

.section-12 .inner-box-7 .inner-wrap-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
}

.section-12 .inner-box-7 .inner-wrap-2 .inner-head {
  display: grid;
  align-content: flex-end;
  margin-bottom: 0;
  margin-top: 0.8rem;
}

.section-12 .inner-box-7 .inner-wrap-2 .inner-image {
  aspect-ratio: 548/392;
  object-fit: cover;
}

.section-12 .inner-box-8 .inner-wrap-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  margin-bottom: 2.4rem;
}

.section-12 .inner-box-8 .inner-wrap-1 .inner-head {
  display: grid;
  align-content: flex-end;
  margin-bottom: 0;
  margin-top: 0.8rem;
}

.section-12 .inner-box-8 .inner-wrap-1 .inner-image {
  aspect-ratio: 548/392;
  object-fit: cover;
}

.section-12 .inner-box-8 .inner-wrap-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
}

.section-12 .inner-box-8 .inner-wrap-2 .inner-image {
  aspect-ratio: 548/496;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .section-12 {
    padding-bottom: 32px;
  }

  .section-12 .inner-title-main {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .section-12 .inner-title-sub-1 {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .section-12 .inner-title-sub-2 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .section-12 .inner-desc {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .section-12 .inner-list-box {
    gap: 16px;
  }

  .section-12 .inner-box-2 .inner-wrap-1 {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .section-12 .inner-banner .inner-image.inner-border {
    padding: 6px 8px;
  }

  .section-12 .inner-box-2 .inner-wrap-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-12 .inner-box-2 .inner-wrap-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-12 .inner-box-3 .inner-wrap-1 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-12 .inner-box-4 .inner-wrap-1 {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .section-12 .inner-box-4 .inner-wrap-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-12 .inner-box-6 .inner-wrap-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-12 .inner-box-7 .inner-wrap-1 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-12 .inner-box-7 .inner-wrap-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-12 .inner-box-8 .inner-wrap-1 {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .section-12 .inner-box-8 .inner-wrap-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
/* End Section 12 */

/* Section 13 */
.section-13 {
  padding-bottom: 7.4rem;
  color: #006D5A;
}

.section-13 .inner-title-main {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 7.2rem;
  line-height: 1;
}

.section-13 .inner-title-sub-1 {
  margin-top: 0;
  margin-bottom: 3.2rem;
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 4rem;
  line-height: 0.9;
  color: var(--color-green);
}

.section-13 .inner-title-sub-2 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 4rem;
  line-height: 0.9;
}

.section-13 .inner-text-1, .section-13 .inner-text-3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: var(--font-vnm-std);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.333;
}

.section-13 .inner-text-2 {
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
}

.section-13 .inner-text-2 .inner-number {
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 14rem;
  line-height: 1;
}

.section-13 .inner-text-2 .inner-text-small {
  margin-top: 0;
  margin-bottom: 0;
  font-family: var(--font-vnm-std);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.333;
  padding-bottom: 1.6rem;
}

.section-13 .inner-text-4 {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.28;
}

.section-13 .inner-text-5 {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.333;
  text-align: justify;
  margin-bottom: 0.8rem;
}

.section-13 .inner-text-5 ul {
  margin: 0;
  padding-left: 1.8rem;
}

.section-13 .inner-text-6 {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.28;
  margin-bottom: 0.8rem;
}

.section-13 .inner-pattern {
  display: block;
  width: 100%;
  height: 7px;
  object-fit: cover;
}

.section-13 .inner-pattern img {
  display: block;
  width: 100%;
  height: 7px;
  object-fit: cover;
}

.section-13 .inner-banner {
  position: relative;
}

.section-13 .inner-banner .inner-image {
  display: block;
  width: 100%;
  height: auto;
}

.section-13 .inner-pattern-2 {
  display: block;
  width: 100%;
  height: 20px;
  object-fit: cover;
}

.section-13 .inner-pattern-2 img {
  display: block;
  width: 100%;
  height: 20px;
  object-fit: cover;
}

.section-13 .inner-box-1 .inner-head {
  position: relative;
}

.section-13 .inner-box-1 .inner-head .inner-banner-1 {
  width: 28.3rem;
  position: absolute;
  top: 0;
  right: 10rem;
}

.section-13 .inner-box-1 .inner-head .inner-banner-1 img {
  display: block;
  width: 100%;
  height: auto;
}

.section-13 .inner-box-1 .inner-wrap-1 {
  display: grid;
  grid-template-columns: 453fr 548fr;
  gap: 11.9rem;
  margin-bottom: 0.8rem;
}

.section-13 .inner-box-1 .inner-wrap-2 {
  margin-top: 2.4rem;
}

.section-13 .inner-box-2 {
  margin-top: 4rem;
}

.section-13 .inner-box-2 .inner-wrap-2 {
  display: grid;
  grid-template-columns: 453fr 547fr;
  gap: 12rem;
  margin-top: 2.4rem;
}

.section-13 .inner-box-2 .inner-wrap-3 {
  display: grid;
  grid-template-columns: 453fr 547fr;
  gap: 12rem;
  margin-top: 1.4rem;
  margin-bottom: 1.6rem;
}

.section-13 .inner-box-2 .inner-wrap-3 .inner-text-2 .inner-image {
  width: 11.4rem;
  height: auto;
  display: block;
  margin-left: 4.6rem;
  margin-top: -0.5rem;
}

.section-13 .inner-box-2 .inner-wrap-3 .inner-text-4 {
  margin-top: 2rem;
}

.section-13 .inner-box-3 {
  margin-top: 4rem;
}

.section-13 .inner-box-3 .inner-wrap-1 {
  margin-top: 2.4rem;
  margin-bottom: 0.6rem;
  display: grid;
  grid-template-columns: 286fr 156fr 453fr;
  gap: 11.2rem;
}

.section-13 .inner-box-4 {
  margin-top: 2.4rem;
}

.section-13 .inner-box-4 .inner-wrap-1 {
  margin-top: 2.4rem;
  margin-bottom: 1.6rem;
  display: grid;
  grid-template-columns: 643fr 405fr;
  gap: 7.2rem;
}

.section-13 .inner-box-4 .inner-wrap-1 .inner-item .inner-image {
  width: 31rem;
  height: auto;
  display: block;
  margin-top: -5rem;
}

.section-13 .inner-box-4 .inner-wrap-2 {
  margin: 2.4rem 0;
}

.section-13 .inner-box-5 {
  margin-top: 2.4rem;
}

.section-13 .inner-box-5 .inner-text-1 {
  margin-bottom: 0.8rem;
}

.section-13 .inner-box-5 .inner-wrap-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}

.section-13 .inner-box-6 {
  margin-top: 3.2rem;
}

.section-13 .inner-box-6 .inner-text-1 {
  margin-bottom: 0.8rem;
}

.section-13 .inner-box-6 .inner-wrap-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
  margin-bottom: 2.4rem;
}

.section-13 .inner-box-6 .inner-wrap-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
  margin-bottom: 2.4rem;
}

.section-13 .inner-box-6 .inner-wrap-2 .inner-head {
  margin-bottom: 0.8rem;
  display: grid;
  align-content: flex-end;
}

.section-13 .inner-box-6 .inner-wrap-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  align-items: flex-end;
}

.section-13 .inner-box-7 {
  margin-top: 3.2rem;
}

.section-13 .inner-box-7 .inner-text-1 {
  margin-bottom: 0.8rem;
}

.section-13 .inner-box-7 .inner-wrap-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}

.section-13 .inner-box-8 {
  margin-top: 4rem;
}

.section-13 .inner-box-8 .inner-wrap-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
  align-items: flex-end;
}

.section-13 .inner-box-8 .inner-wrap-1 .inner-item:nth-of-type(1) .inner-text-2 {
  justify-content: center;
  margin-bottom: 1.4rem;
}

.section-13 .inner-box-8 .inner-wrap-1 .inner-item:nth-of-type(2) .inner-text-6 {
  margin-top: 2.4rem;
}

.section-13 .inner-box-8 .inner-wrap-1 .inner-item:nth-of-type(2) .inner-text-6:nth-of-type(1) {
  margin-top: 0;
}

.section-13 .inner-box-9 {
  margin-top: 4rem;
}

.section-13 .inner-box-9 .inner-wrap-2 {
  margin-top: 2.4rem;
}

.section-13 .inner-box-9 .inner-wrap-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}

.section-13 .inner-box-9 .inner-wrap-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
  margin-top: 2.4rem;
}

.section-13 .inner-box-9 .inner-wrap-5 {
  margin-top: 2.4rem;
}

.section-13 .inner-box-9 .inner-wrap-6 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}

.section-13 .inner-box-9 .inner-wrap-7 {
  margin-top: 2.4rem;
}

.section-13 .inner-box-9 .inner-wrap-8 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
  margin-top: 2.4rem;
}

.section-13 .inner-box-9 .inner-wrap-9 {
  margin-top: 2.4rem;
}

.section-13 .inner-box-9 .inner-wrap-9 .inner-text-1 {
  margin-bottom: 0.8rem;
}

.section-13 .inner-box-9 .inner-wrap-10 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
  margin-top: 2.4rem;
}

.section-13 .inner-box-9 .inner-wrap-11 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
  margin-top: 2.4rem;
}

.section-13 .inner-box-9 .inner-wrap-12 {
  margin-top: 2.4rem;
}

.section-13 .inner-box-9 .inner-wrap-13 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}

.section-13 .inner-box-9 .inner-wrap-13 .inner-item:nth-of-type(1) .inner-pattern {
  margin-bottom: 0.8rem;
}

.section-13 .inner-box-9 .inner-wrap-13 .inner-item:nth-of-type(1) .inner-text-2 .inner-image {
  width: 15.6rem;
  height: auto;
  display: block;
  margin-left: 10rem;
}

.section-13 .inner-box-9 .inner-wrap-13 .inner-item:nth-of-type(1) .inner-text-2 sup {
  font-size: 1.1rem;
}

.section-13 .inner-mobile {
  display: none !important;
}

@media (max-width: 991.98px) {
  .section-13 .inner-mobile {
    display: block !important;
  }

  .section-13 .inner-pc {
    display: none !important;
  }

  .section-13 {
    padding-bottom: 56px;
  }

  .section-13 .inner-title-main {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .section-13 .inner-title-sub-1 {
    font-size: 16px;
    font-family: var(--font-vnm-std);
    font-weight: 400;
    margin-bottom: 8px;
  }

  .section-13 .inner-title-sub-2 {
    font-size: 16px;
    font-family: var(--font-vnm-std);
    font-weight: 400;
    margin-bottom: 8px;
  }

  .section-13 .inner-box-7 .inner-text-1 {
    margin-bottom: 8px;
  }

  .section-13 .inner-text-1, .section-13 .inner-text-3 {
    font-size: 14px;
    font-family: var(--font-inter);
    font-weight: 600;
  }

  .section-13 .inner-text-2 .inner-number {
    font-size: 64px;
  }

  .section-13 .inner-text-2 .inner-text-small {
    font-size: 14px;
    font-family: var(--font-inter);
    font-weight: 600;
    padding-bottom: 6px;
  }

  .section-13 .inner-box-1 .inner-head .inner-banner-1 {
    display: none;
  }

  .section-13 .inner-text-4 {
    font-size: 14px;
  }

  .section-13 .inner-text-5 {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .section-13 .inner-text-5 ul {
    padding-left: 18px;
  }

  .section-13 .inner-text-6 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .section-13 .inner-box-6 .inner-wrap-3 {
    grid-template-columns: 1fr;
  }

  .section-13 .inner-box-1 .inner-wrap-1 {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .section-13 .inner-box-1 .inner-wrap-1 .inner-item:nth-of-type(1) .inner-content .inner-text-3 {
    max-width: 220px;
    text-align: justify;
  }

  .section-13 .inner-box-1 .inner-wrap-1 .inner-item:nth-of-type(1) .inner-pattern {
    margin-top: 16px;
  }

  .section-13 .inner-box-1 .inner-wrap-1 .inner-banner-2 {
    width: 33%;
    max-width: 170px;
    position: absolute;
    bottom: 20px;
    left: 240px;
  }

  .section-13 .inner-box-1 .inner-wrap-1 .inner-banner-2 img {
    width: 100%;
    height: auto;
    display: block;
  }

  .section-13 .inner-box-1 .inner-wrap-2 {
    margin-top: 16px;
  }

  .section-13 .inner-box-1 .inner-wrap-2 .inner-text-2 {
    flex-wrap: wrap;
  }

  .section-13 .inner-box-1 .inner-wrap-2 .inner-text-2 .inner-text-small {
    width: 100%;
  }

  .section-13 .inner-box-2 {
    margin-top: 16px;
  }

  .section-13 .inner-box-2 .inner-wrap-2 {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
  }

  .section-13 .inner-box-2 .inner-wrap-3 {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .section-13 .inner-box-3 .inner-wrap-1 {
    grid-template-columns: 230fr 140fr;
    gap: 30px;
  }

  .section-13 .inner-box-3 .inner-wrap-1 .inner-item:nth-child(3) {
    grid-column: span 2;
  }

  .section-13 .inner-box-4 {
    margin-top: 16px;
  }

  .section-13 .inner-box-5 {
    margin-top: 16px;
  }

  .section-13 .inner-box-5 .inner-wrap-1 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-13 .inner-box-6 {
    margin-top: 16px;
  }

  .section-13 .inner-box-6 .inner-wrap-1 {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .section-13 .inner-box-6 .inner-wrap-2 {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .section-13 .inner-box-7 {
    margin-top: 16px;
  }

  .section-13 .inner-box-7 .inner-wrap-1 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-13 .inner-box-8 {
    margin-top: 16px;
  }

  .section-13 .inner-box-8 .inner-wrap-1 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-13 .inner-box-8 .inner-wrap-1 .inner-item:nth-of-type(1) .inner-text-2 {
    justify-content: flex-start;
    margin-left: 5.2rem;
  }

  .section-13 .inner-box-9 {
    margin-top: 16px;
  }

  .section-13 .inner-box-9 .inner-wrap-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-13 .inner-box-9 .inner-wrap-4 {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
  }

  .section-13 .inner-box-9 .inner-wrap-5 {
    margin-top: 16px;
  }

  .section-13 .inner-box-9 .inner-wrap-6 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-13 .inner-box-9 .inner-wrap-8 {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
  }

  .section-13 .inner-box-9 .inner-wrap-9 {
    margin-top: 16px;
  }

  .section-13 .inner-box-9 .inner-wrap-10 {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
  }

  .section-13 .inner-box-9 .inner-wrap-11 {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
  }

  .section-13 .inner-box-9 .inner-wrap-12 {
    margin-top: 16px;
  }

  .section-13 .inner-box-9 .inner-wrap-13 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-13 .inner-box-9 .inner-wrap-13 .inner-pattern {
    margin: 8px 0;
  }

  .section-13 .inner-box-9 .inner-wrap-13 .inner-item:nth-of-type(1) .inner-pattern {
    margin-bottom: 8px;
  }

  .section-13 .inner-box-9 .inner-wrap-13 .inner-item:nth-of-type(1) .inner-text-2 .inner-image {
    width: 70px;
  }

  .section-13 .inner-box-9 .inner-wrap-13 .inner-text-1 {
    font-weight: 400;
  }

  .section-13 .inner-box-9 .inner-wrap-13 .inner-text-small {
    font-weight: 400;
  }

  .section-13 .inner-box-2 .inner-wrap-3 .inner-text-2 .inner-image {
    width: 65px;
    margin-left: 10.6rem;
  }

  .section-13 .inner-box-4 .inner-wrap-1 {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .section-13 .inner-box-4 .inner-wrap-1 .inner-item .inner-image {
    width: 150px;
  }

  .section-13 .inner-box-8 .inner-wrap-1 .inner-item:nth-child(1) {
    position: relative;
  }

  .section-13 .inner-box-8 .inner-wrap-1 .inner-banner-35 {
    height: 64px;
    position: absolute;
    top: 20px;
    left: 150px;
  }

  .section-13 .inner-box-8 .inner-wrap-1 .inner-banner-35 img {
    height: 100%;
    width: auto;
    display: block;
  }

  .section-13 .inner-box-4 .inner-wrap-2 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}
/* End Section 13 */

/* Section 14 */
.section-14 {
  padding: 5.6rem 0;
}

.section-14 .inner-title-main {
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 7.2rem;
  line-height: 1;
  color: var(--color-blue);
  margin-top: 0;
  margin-bottom: 4rem;
}

.section-14 .inner-wrap {
  display: grid;
  grid-template-columns: 357fr 382fr 382fr;
  gap: 1.6rem 0;
}

.section-14 .inner-pattern img {
  display: block;
  width: 100%;
  height: 32px;
  object-fit: cover;
}

.section-14 .inner-list {
  padding-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}

.section-14 .inner-text-1 {
  font-family: var(--font-vnm-std);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.333;
  margin-bottom: 0.8rem;
  color: var(--color-blue);
}

.section-14 .inner-title {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.28;
  margin-bottom: 0.8rem;
  color: var(--color-blue);
}

.section-14 .inner-desc {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.333;
  color: var(--color-blue);
  text-align: justify;
}

.section-14 .inner-desc ul {
  margin: 0;
  padding-left: 1.8rem;
}

.section-14 .inner-image {
  width: 100%;
  aspect-ratio: 147/72;
  padding-right: 1.6rem;
  margin-bottom: 0.8rem;
}

.section-14 .inner-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.section-14 .inner-item .inner-image {
  margin-top: 2.4rem;
}

.section-14 .inner-item .inner-image:nth-of-type(1) {
  margin-top: 0;
}

.section-14 .inner-item .inner-title {
  margin-top: 1.6rem;
}

.section-14 .inner-item .inner-title:nth-of-type(1) {
  margin-top: 0;
}

.section-14 .inner-wrap .inner-box:nth-child(3n-2) {
  padding-top: 64px;
}

.section-14 .inner-wrap .inner-box:nth-child(3n-1) {
  padding-top: 32px;
}

.section-14 .inner-wrap .inner-box:nth-child(3n-1) .inner-list {
  padding-left: 2.4rem;
}

.section-14 .inner-wrap .inner-box:nth-child(3n) .inner-list {
  padding-left: 2.4rem;
}

.section-14 .inner-wrap .inner-box.inner-box-bottom-1 {
  padding-top: 32px;
}

.section-14 .inner-wrap .inner-box.inner-box-bottom-2 {
  grid-column: span 2;
  padding-top: 0;
  position: relative;
}

.section-14 .inner-wrap .inner-box-bottom-2 .inner-list {
  padding: 0 !important;
  grid-template-columns: 1fr;
}

.section-14 .inner-wrap .inner-box-bottom-2 .inner-banner {
  position: absolute;
  height: 23.7rem;
  bottom: 32px;
  left: 0;
  width: 100%;
}

.section-14 .inner-wrap .inner-box-bottom-2 .inner-banner img {
  height: 100%;
  width: auto;
  display: block;
  margin: 0 auto;
}

.section-14 .inner-pattern-2 {
  display: none;
}

.section-14 .inner-mobile {
  display: none;
}

@media (max-width: 991.98px) {
  .section-14 {
    padding: 16px 0 0 0;
  }

  .section-14 .inner-title-main {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .section-14 .inner-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-14 .inner-wrap .inner-box {
    padding-top: 0 !important;
  }

  .section-14 .inner-wrap .inner-box .inner-list {
    padding-left: 0 !important;
    padding-top: 0;
    gap: 0;
  }

  .section-14 .inner-wrap .inner-box .inner-list .inner-item {
    margin-bottom: 26px;
  }

  .section-14 .inner-wrap .inner-box .inner-list .inner-item:nth-child(1) {
    margin-top: 30px;
  }

  .section-14 .inner-wrap .inner-box .inner-list .inner-item:nth-child(2) {
    padding-left: 10px;
  }

  .section-14 .inner-wrap .inner-box .inner-list .inner-item:nth-child(2) .inner-pattern-2 {
    margin-left: -10px;
  }

  .section-14 .inner-wrap .inner-box .inner-pattern {
    display: none;
  }

  .section-14 .inner-text-1 {
    font-size: 18px;
    margin-bottom: 8px;
    margin-top: 16px;
  }

  .section-14 .inner-item .inner-image {
    margin-top: 0;
    margin-bottom: 8px;
    padding-right: 0;
  }

  .section-14 .inner-image {
    max-width: 150px;
  }

  .section-14 .inner-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .section-14 .inner-desc {
    font-size: 12px;
  }

  .section-14 .inner-desc ul {
    padding-left: 18px;
  }

  .section-14 .inner-wrap .inner-box.inner-box-bottom-2 {
    grid-column: span 1;
    bottom: 32px;
  }

  .section-14 .inner-wrap .inner-box:nth-child(3) {
    order: 0;
  }

  .section-14 .inner-wrap .inner-box:nth-child(2) {
    order: 1;
  }

  .section-14 .inner-wrap .inner-box:nth-child(1) {
    order: 2;
  }

  .section-14 .inner-wrap .inner-box:nth-child(6) {
    order: 3;
  }

  .section-14 .inner-wrap .inner-box:nth-child(5) {
    order: 4;
  }

  .section-14 .inner-wrap .inner-box:nth-child(4) {
    order: 5;
  }

  .section-14 .inner-wrap .inner-box:nth-child(7) {
    order: 6;
  }

  .section-14 .inner-wrap .inner-box:nth-child(8) {
    order: 7;
    display: none;
  }

  .section-14 .inner-wrap .inner-box:nth-child(9) {
    order: 8;
    display: none;
  }

  .section-14 .inner-wrap .inner-box:nth-child(10) {
    display: none;
  }

  .section-14 .inner-wrap .inner-box:nth-child(11) {
    order: 10;
  }

  .section-14 .inner-wrap .inner-box-bottom-2 .inner-list {
    align-items: flex-end;
  }

  .section-14 .inner-wrap .inner-box-bottom-2 .inner-list .inner-item {
    margin: 0;
  }

  .section-14 .inner-wrap .inner-box-bottom-2 .inner-list .inner-item:nth-child(2) {
    position: relative;
    bottom: 30px;
  }

  .section-14 .inner-wrap .inner-box-bottom-2 .inner-banner {
    position: relative;
    bottom: -10px;
  }

  .section-14 .inner-pattern-2 {
    display: block;
  }

  .section-14 .inner-pattern-2 img {
    width: 100%;
    height: 30px;
    display: block;
  }

  .section-14 .inner-wrap .inner-box .inner-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .section-14 .inner-pc {
    display: none;
  }

  .section-14 .inner-mobile {
    display: block;
  }
}

@media (max-width: 575.98px) {
  .section-14 .inner-wrap .inner-box-bottom-2 {
    margin-top: -80px;
  }

  .section-14 .inner-wrap .inner-box-bottom-2 .inner-banner {
    height: auto;
  }

  .section-14 .inner-wrap .inner-box-bottom-2 .inner-banner img {
    width: 100%;
    height: auto;
  }
}
/* End Section 14 */

/* Section 15 */
.section-15 {
  padding-bottom: 5.6rem;
  color: var(--color-blue);
}

.section-15 .inner-title-main {
  margin-top: 0;
  margin-bottom: 4rem;
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 7.2rem;
  line-height: 1;
}

.section-15 .inner-title-sub-1 {
  margin-top: 0;
  margin-bottom: 1.6rem;
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 4rem;
  line-height: 0.9;
}

.section-15 .inner-pattern {
  margin-bottom: 2.4rem;
}

.section-15 .inner-pattern img {
  display: block;
  width: 100%;
  height: 11px;
  object-fit: cover;
}

.section-15 .inner-text-1 {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.28;
  margin-bottom: 0.8rem;
}

.section-15 .inner-text-2 {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.333;
  text-align: justify;
}

.section-15 .inner-text-2 ul {
  margin: 0;
  padding-left: 1.8rem;
}

.section-15 .inner-text-3 {
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
}

.section-15 .inner-text-3 .inner-number {
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 14rem;
  line-height: 1;
}

.section-15 .inner-text-3 .inner-text-small {
  font-family: var(--font-vnm-std);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.333;
  padding-bottom: 2.6rem;
}

.section-15 .inner-wrap-2 {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2.4rem;
}

.section-15 .inner-title-sub-2 {
  font-family: var(--font-vnm-std);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.333;
}

.section-15 .inner-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.section-15 .inner-list-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}

.section-15 .inner-list-3 {
  display: grid;
  gap: 2.4rem;
}

.section-15 .inner-list-3 .inner-item:not(:last-child) {
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--color-blue-light);
}

.section-15 .inner-line {
  border-bottom: 1px solid var(--color-blue-light);
  padding-bottom: 2.4rem;
  margin-bottom: 2.4rem;
}

.section-15 .inner-box-1 {
  position: relative;
}

.section-15 .inner-box-1 .inner-banner {
  position: absolute;
  right: 0;
  bottom: -9rem;
}

.section-15 .inner-box-1 .inner-banner img {
  height: 22.4rem;
  width: auto;
  display: block;
}

.section-15 .inner-box-2 .inner-wrap-1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.section-15 .inner-box-3 {
  margin-top: 4rem;
}

.section-15 .inner-box-4 {
  margin-top: 5.6rem;
}

.section-15 .inner-box-5 {
  margin-top: 5.6rem;
}

.section-15 .inner-box-6 {
  margin-top: 3.6rem;
}

.section-15 .inner-box-6 .inner-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.section-15 .inner-mobile {
  display: none;
}

@media (max-width: 991.98px) {
  .section-15 {
    padding-bottom: 32px;
  }

  .section-15 .inner-pc {
    display: none;
  }

  .section-15 .inner-mobile {
    display: block;
  }

  .section-15 .inner-title-main {
    font-size: 32px;
    margin-bottom: 4px;
  }

  .section-15 .inner-title-sub-1 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .section-15 .inner-pattern {
    margin-bottom: 8px;
  }

  .section-15 .inner-box-2 .inner-wrap-1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section-15 .inner-text-1 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .section-15 .inner-text-2 {
    font-size: 12px;
  }

  .section-15 .inner-text-2 ul {
    padding-left: 18px;
  }

  .section-15 .inner-wrap-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-15 .inner-title-sub-2 {
    font-size: 16px;
  }

  .section-15 .inner-title-sub-2 br {
    display: none;
  }

  .section-15 .inner-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section-15 .inner-banner-2 {
    text-align: center;
  }
  
  .section-15 .inner-banner-2 img {
    width: 100%;
    max-width: 161px;
    height: auto;
  }

  .section-15 .inner-list-3 .inner-title-sub-2 {
    font-size: 12px;
    font-family: var(--font-inter);
  }

  .section-15 .inner-box-3 {
    margin-top: 24px;
  }

  .section-15 .inner-box-4 {
    margin-top: 24px;
  }

  .section-15 .inner-box-5 {
    margin-top: 24px;
  }

  .section-15 .inner-text-3 .inner-number {
    font-size: 64px;
  }

  .section-15 .inner-text-3 .inner-text-small {
    font-size: 16px;
  }

  .section-15 .inner-box-6 {
    margin-top: 24px;
  }
}
/* End Section 15 */

/* Section 16 */
.section-16 {
  padding-bottom: 5.6rem;
  color: var(--color-blue);
}

.section-16 .inner-title-main {
  margin-top: 0;
  margin-bottom: 4rem;
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 7.2rem;
  line-height: 1;
}

.section-16 .inner-box-1 .inner-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem 21.4rem;
}

.section-16 .inner-box-1 .inner-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-16 .inner-box-1 .inner-item .inner-title {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.28;
  margin-bottom: 0.8rem;
}

.section-16 .inner-chart .inner-list {
  margin-right: 2.1rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4.8rem;
  text-align: center;
}

.section-16 .inner-chart .inner-cols .inner-list .inner-pattern {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  overflow: hidden;
}

.section-16 .inner-chart .inner-cols .inner-list .inner-pattern img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-16 .inner-chart .inner-cols .inner-list .inner-pattern img.fade-up-active {
  opacity: 1;
  transform: translateY(0);
}

.section-16 .inner-chart .inner-cols .inner-list:nth-of-type(1) .inner-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.section-16 .inner-chart .inner-list .inner-number {
  margin-bottom: 0.8rem;
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.333;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-16 .inner-chart .inner-list .inner-col-down {
  margin-bottom: 2.4rem;
}

.section-16 .inner-chart .inner-list .inner-col-down .inner-number {
  margin-top: 0.8rem;
  margin-bottom: 0;
}

.section-16 .inner-chart .inner-list .inner-number.fade-up-active {
  opacity: 1;
  transform: translateY(0);
}

.section-16 .inner-chart .inner-line {
  width: 100%;
  height: 1px;
  background-color: var(--color-blue-light);
}

.section-16 .inner-chart .inner-years {
  margin-top: 0.8rem;
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.333;
}

.section-16 .inner-chart .inner-years .inner-col {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-16 .inner-chart .inner-years .inner-col.fade-up-active {
  opacity: 1;
  transform: translateY(0);
}

.section-16 .inner-box-2 {
  margin-top: 4.8rem;
}

.section-16 .inner-box-2 table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.section-16 .inner-box-2 th, .section-16 .inner-box-2 td {
  border: 0;
  padding: 0;
}

.section-16 .inner-box-2 .inner-pattern img {
  display: block;
  width: 100%;
  height: 1.1rem;
  object-fit: cover;
}

.section-16 .inner-box-2 thead th {
  width: 8%;
}

.section-16 .inner-box-2 thead th:nth-child(1) {
  width: 60%;
}

.section-16 .inner-box-2 thead th span {
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.28;
  display: block;
  padding: 0 5px;
}

.section-16 .inner-box-2 tbody tr td {
  padding: 16px 5px 0 5px;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.333;
}

.section-16 .inner-box-2 tbody tr td .inner-title {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.28;
}

.section-16 .inner-box-2 .inner-line {
  border-bottom: 1px solid var(--color-blue-light);
}

@media (max-width: 991.98px) {
  .section-16 .inner-title-main {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .section-16 .inner-title-main br {
    display: none;
  }

  .section-16 .inner-box-1 .inner-wrap {
    gap: 32px;
  }

  .section-16 .inner-box-1 .inner-item .inner-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .section-16 .inner-chart .inner-list .inner-number {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .section-16 .inner-chart .inner-years {
    font-size: 12px;
    margin-top: 8px;
  }

  .section-16 .inner-box-2 thead th span {
    font-size: 14px;
  }

  .section-16 .inner-box-2 tbody tr td .inner-title {
    font-size: 14px;
  }

  .section-16 .inner-box-2 tbody tr td {
    font-size: 12px;
  }
}

@media (max-width: 767.98px) {
  .section-16 .inner-box-1 .inner-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-16 .inner-chart .inner-list {
    gap: 10rem;
  }

  .section-16 .inner-box-2 thead th:nth-child(1) {
    width: 40%;
  }
}
/* End Section 16 */

/* Section 17 */
.section-17 {
  padding-bottom: 5.6rem;
  color: var(--color-blue);
}

.section-17 .inner-title-main {
  margin-top: 0;
  margin-bottom: 4rem;
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 7.2rem;
  line-height: 1;
  display: flex;
  gap: 8px;
}

.section-17 .inner-title-main .inner-sup {
  font-family: var(--font-inter);
  font-size: 10px;
  font-weight: 400;
  font-style: italic;
}

.section-17 .inner-wrap {
  display: grid;
  grid-template-columns: 572fr 548fr;
  justify-content: flex-end;
}

.section-17 .inner-col-1 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.section-17 .inner-col-1 .inner-list {
  margin-bottom: 0.8rem;
}

.section-17 .inner-col-1 .inner-list-1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  gap: 6.6rem;
}

.section-17 .inner-col-1 .inner-list-2 {
  display: flex;
  gap: 2rem;
}

.section-17 .inner-col-1 .inner-list-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
}

.section-17 .inner-col-1 .inner-pattern {
  margin-bottom: 0.8rem;
}

.section-17 .inner-col-1 .inner-pattern img {
  display: block;
  width: 100%;
  height: auto;
}

.section-17 .inner-item .inner-tag {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.333;
}

.section-17 .inner-item .inner-name {
  font-family: var(--font-vnm-std);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.333;
  margin-bottom: 0.4rem;
}

.section-17 .inner-item .inner-button {
  height: 2.4rem;
  border: 0;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--color-blue-light);
  cursor: pointer;
  padding: 0;
}

.section-17 .inner-item .inner-button img {
  height: 1.2rem;
  width: auto;
  display: block;
}

.section-17 .inner-note {
  font-family: var(--font-inter);
  font-weight: 400;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.4;
}

.section-17 .inner-col-2 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 4.5rem;
}

.section-17 .inner-col-2 .inner-image {
  position: relative;
  z-index: 1;
}

.section-17 .inner-col-2 .inner-image img {
  width: 100%;
  height: auto;
  display: block;
}

.section-17 .inner-col-2 .inner-pattern {
  position: absolute;
  bottom: 4.5rem;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8.5rem;
}

.section-17 .inner-col-2 .inner-pattern img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 991.98px) {
  .section-17 {
    padding-bottom: 32px;
  }

  .section-17 .inner-title-main {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .section-17 .inner-wrap {
    grid-template-columns: 1fr;
  }

  .section-17 .inner-col-1 {
    order: 1;
  }

  .section-17 .inner-col-2 {
    padding-bottom: 18px;
  }

  .section-17 .inner-item .inner-tag {
    font-size: 12px;
  }

  .section-17 .inner-item .inner-name {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .section-17 .inner-item .inner-button {
    font-size: 10px;
    height: 24px;
  }

  .section-17 .inner-item .inner-button img {
    height: 12px;
  }

  .section-17 .inner-col-1 .inner-list-1 {
    gap: 22px;
  }

  .section-17 .inner-col-1 .inner-list-2 {
    justify-content: space-between;
  }

  .section-17 .inner-note {
    font-size: 10px;
  }
}
/* End Section 17 */

/* Section 18 */
.section-18 {
  padding-bottom: 6.4rem;
  color: var(--color-blue);
}

.section-18 .inner-title-main {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 7.2rem;
  line-height: 1;
}

.section-18 .inner-desc {
  margin-bottom: 5.6rem;
  max-width: 45.3rem;
  font-family: var(--font-inter);
  font-weight: 400;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.4;
}

.section-18 .inner-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6.4rem 2rem;
}

.section-18 .inner-item {
  display: grid;
  grid-template-columns: 286fr 262fr;
  align-items: flex-end;
}

.section-18 .inner-item .inner-avatar {
  position: relative;
}

.section-18 .inner-item .inner-avatar .inner-image {
  position: relative;
  z-index: 1;
}

.section-18 .inner-item .inner-avatar .inner-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 286/283;
  object-fit: contain;
  object-position: bottom;
  display: block;
}

.section-18 .inner-item .inner-avatar .inner-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.section-18 .inner-item .inner-avatar .inner-pattern img {
  width: 100%;
  height: 43px;
  display: block;
  object-fit: cover;
  object-position: bottom;
}

.section-18 .inner-item .inner-info {
  padding-bottom: 43px;
  position: relative;
}

.section-18 .inner-item .inner-info .inner-content {
  margin-bottom: 0.8rem;
}

.section-18 .inner-item .inner-info .inner-content .inner-tag {
  font-family: var(--font-vnm-std);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.333;
}

.section-18 .inner-item .inner-info .inner-content .inner-name {
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 4rem;
  line-height: 0.9;
  margin-bottom: 0.4rem;
}

.section-18 .inner-item .inner-info .inner-content .inner-position {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.28;
  margin-bottom: 0.8rem;
}

.section-18 .inner-item .inner-info .inner-content .inner-button {
  height: 2.4rem;
  border: 0;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--color-blue-light);
  cursor: pointer;
  padding: 0;
}

.section-18 .inner-item .inner-info .inner-content .inner-button img {
  height: 1.2rem;
  width: auto;
  display: block;
}

.section-18 .inner-item .inner-info .inner-pattern img {
  width: 100%;
  height: 43px;
  display: block;
  object-fit: cover;
  object-position: bottom;
}

.section-18 .inner-item .inner-info .inner-banner {
  position: absolute;
  bottom: 4.3rem;
  right: 8.3rem;
}

.section-18 .inner-item .inner-info .inner-banner img {
  width: 35.9rem;
  height: auto;
  display: block;
}

.section-18 .inner-item-2 {
  grid-column: span 2;
  grid-template-columns: 286fr 834fr;
}

.section-18 .inner-button-download {
  margin-top: 8rem;
  text-align: center;
}

.section-18 .inner-mobile {
  display: none !important;
}

@media (max-width: 991.98px) {
  .section-18 {
    padding-bottom: 62px;
  }

  .section-18 .inner-title-main {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .section-18 .inner-desc {
    font-size: 10px;
    margin-bottom: 8px;
    max-width: 100%;
  }

  .section-18 .inner-wrap {
    grid-template-columns: 1fr;
  }

  .section-18 .inner-item-2 {
    grid-column: span 1;
    grid-template-columns: 286fr 262fr;
  }

  .section-18 .inner-item .inner-info .inner-banner {
    display: none;
  }

  .section-18 .inner-item .inner-info .inner-content .inner-tag {
    font-size: 16px;
  }

  .section-18 .inner-item .inner-info .inner-content .inner-name {
    font-size: 32px;
    margin-bottom: 4px;
  }

  .section-18 .inner-item .inner-info .inner-content .inner-position {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .section-18 .inner-item .inner-info .inner-content .inner-button {
    height: 24px;
    font-size: 10px;
  }

  .section-18 .inner-item .inner-info .inner-content .inner-button img {
    height: 12px;
  }

  .section-18 .inner-button-download {
    margin-top: 40px;
  }

  .section-18 .inner-pc {
    display: none !important;
  }

  .section-18 .inner-mobile {
    display: block !important;
  }
}

@media (max-width: 575.98px) {
  .section-18 .inner-item .inner-avatar .inner-pattern img {
    height: 27px;
  }

  .section-18 .inner-item .inner-info {
    padding-bottom: 27px;
  }

  .section-18 .inner-item .inner-info .inner-pattern img {
    height: 27px;
  }
}
/* End Section 18 */

/* Section 19 */
.section-19 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  opacity: 0;
  z-index: -999;
  pointer-events: none;
  transition: opacity .1s ease;
}

.section-19.show {
  opacity: 1;
  z-index: 999;
  pointer-events: auto;
}

.section-19 .inner-modal {
  position: relative;
  z-index: 1;
  width: 97.9rem;
  height: 68rem;
  background-color: #FFFFF1;
  padding: 36px 8px 8px 8px;
  transform: translateY(20%);
  transition: transform .6s ease;
}

.section-19.show .inner-modal {
  transform: none;
}

.section-19 .inner-modal .button-close {
  border: 0;
  outline: none;
  padding: 0;
  background-color: transparent;
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  cursor: pointer;
}

.section-19 .inner-modal .button-close img {
  display: block;
  width: 24px;
  height: 24px;
  transition: all 0.3s;
}

.section-19 .inner-modal .button-close .inner-blue {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.section-19 .inner-modal .button-close:hover .inner-white {
  opacity: 0;
}

.section-19 .inner-modal .button-close:hover .inner-blue {
  opacity: 1;
}

.section-19 .inner-modal .inner-main {
  max-height: 100%;
  overflow-y: auto;
  padding: 0 1.6rem 1.6rem 1.6rem;
}

.section-19 .inner-modal .inner-main::-webkit-scrollbar {
  width: 3px;
}

.section-19 .inner-modal .inner-main::-webkit-scrollbar-track {
  background: transparent;
  background-image: linear-gradient(to right, var(--color-blue-light) 1px, transparent 1px);
  background-repeat: repeat-y;
  background-size: 3px 4px;
  background-position: left 1px top;
}

.section-19 .inner-modal .inner-main::-webkit-scrollbar-thumb {
  background-color: var(--color-blue);
  border-radius: 3px;
}

.section-19 .inner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000b3;
}

.section-19 .inner-wrap-1 {
  display: grid;
  grid-template-columns: 294fr 636fr;
  align-items: flex-end;
}

.section-19 .inner-wrap-1 .inner-avatar {
  position: relative;
}

.section-19 .inner-wrap-1 .inner-avatar .inner-image {
  position: relative;
  z-index: 1;
  padding: 0 3.2rem 0 0.8rem;
}

.section-19 .inner-wrap-1 .inner-avatar .inner-image img {
  width: 100%;
  height: auto;
  display: block;
}

.section-19 .inner-wrap-1 .inner-avatar .inner-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.section-19 .inner-wrap-1 .inner-avatar .inner-pattern img {
  display: block;
  width: 100%;
  height: 43px;
  object-fit: cover;
  object-position: bottom;
}

.section-19 .inner-wrap-1 .inner-info {
  padding-bottom: 43px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 43rem;
}

.section-19 .inner-wrap-1 .inner-info .inner-content {
  margin-bottom: 3.4rem;
  padding-left: 2.4rem;
}

.section-19 .inner-wrap-1 .inner-info .inner-content .inner-tag {
  font-family: var(--font-vnm-std);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.333;
  margin-bottom: 0.4rem;
}

.section-19 .inner-wrap-1 .inner-info .inner-content .inner-name {
  font-family: var(--font-vnm-display);
  font-weight: 700;
  font-size: 14rem;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.section-19 .inner-wrap-1 .inner-info .inner-content .inner-position {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.28;
}

.section-19 .inner-wrap-1 .inner-info .inner-pattern img {
  display: block;
  width: 100%;
  height: 43px;
  object-fit: cover;
  object-position: bottom;
}

.section-19 .inner-wrap-2 {
  display: grid;
  grid-template-columns: 294fr 636fr;
  align-items: flex-end;
  margin-top: -2.7rem;
}

.section-19 .inner-wrap-2 .inner-col-2 {
  padding-left: 2.4rem;
}

.section-19 .inner-wrap-2 .inner-pattern {
  margin-top: 1.6rem;
  margin-bottom: 0.8rem;
}

.section-19 .inner-wrap-2 .inner-pattern img {
  display: block;
  width: 100%;
  height: auto;
}

.section-19 .inner-wrap-2 .inner-box .inner-title {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.28;
  margin-bottom: 0.8rem;
}

.section-19 .inner-wrap-2 .inner-box .inner-desc {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.333;
}

.section-19 .inner-wrap-2 .inner-box .inner-desc ul {
  margin: 0;
  padding-left: 1.8rem;
}

@media (max-width: 991.98px) {
  .section-19 .inner-modal {
    width: calc(100vw - 32px);
    height: calc(100vh - 64px);
  }

  .section-19 .inner-wrap-1 .inner-info .inner-content .inner-tag {
    font-size: 16px;
  }

  .section-19 .inner-wrap-1 .inner-info .inner-content .inner-name {
    font-size: 52px;
    margin-bottom: 4px;
  }

  .section-19 .inner-wrap-1 .inner-info .inner-content .inner-position {
    font-size: 14px;
  }

  .section-19 .inner-wrap-2 .inner-box .inner-desc {
    font-size: 12px;
  }

  .section-19 .inner-wrap-2 .inner-box .inner-desc ul {
    padding-left: 18px;
  }

  .section-19 .inner-wrap-2 .inner-box .inner-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .section-19 .inner-wrap-2 .inner-pattern {
    margin-top: 8px;
    margin-bottom: 8px;
  }
}

@media (max-width: 767.98px) {
  .section-19 .inner-wrap-1 {
    grid-template-columns: 149fr 190fr;
  }

  .section-19 .inner-wrap-1 .inner-info {
    padding-bottom: 40px;
  }

  .section-19 .inner-wrap-1 .inner-avatar .inner-pattern img {
    height: 40px;
  }

  .section-19 .inner-wrap-1 .inner-info .inner-pattern img {
    height: 40px;
  }

  .section-19 .inner-wrap-1 .inner-avatar .inner-image {
    padding: 0;
  }

  .section-19 .inner-wrap-1 .inner-info .inner-content {
    padding-left: 0;
  }

  .section-19 .inner-wrap-2 {
    margin-top: 8px;
    grid-template-columns: 1fr;
  }

  .section-19 .inner-wrap-2 .inner-col-2 {
    padding-left: 0;
  }

  .section-19 .inner-wrap-1 .inner-info .inner-content .inner-name br {
    display: none;
  }
}
/* End Section 19 */

/* pattern */
[pattern] {
  display: block;
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0;
  will-change: transform, opacity;
}

[pattern].animate {
  animation-name: stretchIn;
  animation-fill-mode: forwards;
  opacity: 1;
}

@keyframes stretchIn {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
/* End pattern */

/* effect-image */
.effect-image {
  position: relative;
  overflow: hidden; /* quan trọng để giới hạn hiệu ứng */
}

.effect-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  opacity: 0.8;
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 1.5s ease-out;
  pointer-events: none;
}

.effect-image.animate::after {
  transform: scaleY(0);
}
/* End effect-image */

/* aos */
[data-aos=fade-down].fade-short {
  transform: translate3d(0, -10px, 0);
}
/* End aos */