@font-face {
    font-family: "Open Sans";
    font-weight: 600;
    src: url(../fonts/OpenSans-SemiBold.ttf);
  }
  @font-face {
    font-family: "Helvetica Neue";
    font-weight: 400;
    src: url("../fonts/HelveticaNeue.ttf");
  }
  @font-face {
    font-family: "Helvetica Neue";
    font-weight: 300;
    src: url("../fonts/HelveticaNeue-Light.ttf");
  }
  @font-face {
    font-family: "Helvetica Neue";
    font-weight: 500;
    src: url("../fonts/HelveticaNeue-Medium.ttf");
  }
  @font-face {
    font-family: "Helvetica Neue";
    font-weight: 700;
    src: url("../fonts/HelveticaNeue-Bold.ttf");
  }
  html {
    font-family: "Helvetica Neue";
    font-size: 18px;
    line-height: calc(32 / 18);
    color: #434343;
    scroll-behavior: smooth;
  }
  @media (max-width: 1440px) {
    html {
      font-size: 16px;
    }
  }
  @media (max-width: 991px) {
    html {
      font-size: 14px;
      line-height: 24px;
    }
  }
  
  body {
    background-color: #fff;
    -webkit-animation-duration: 0.1s;
    -webkit-animation-name: fontfix;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: 0.1s;
    -webkit-tap-highlight-color: transparent;
    margin: 0;
  }
  
  .text-white {
    color: #fff;
  }
  
  .text-primary-1 {
    color: #0b3f7e;
  }
  
  .text-primary-2 {
    color: #009bda;
  }
  
  *,
  ::after,
  ::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  svg {
    height: auto;
  }
  
  ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  a {
    text-decoration: none;
    font-family: inherit;
    display: block;
    width: fit-content;
  }
  a:hover {
    text-decoration: none;
  }
  
  p {
    margin: 0;
  }
  
  h1,
  h2,
  h3 {
    margin: 0;
  }
  
  img {
    width: 100%;
    max-width: 100%;
    display: block;
    image-rendering: -webkit-optimize-contrast;
  }
  
  input {
    outline: none;
  }
  
  .img-resize {
    display: block;
    position: relative;
    height: max-content;
  }
  .img-resize:before {
    padding-bottom: 62.5%;
    /* 16:10 */
    content: "";
    display: block;
  }
  .img-resize img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    margin: auto;
    background-size: cover;
    background-position: center;
  }
  
  .iframe-resize {
    display: block;
    position: relative;
    height: max-content;
  }
  .iframe-resize:before {
    padding-bottom: 56.25%;
    content: "";
    display: block;
  }
  .iframe-resize .iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .show-pc {
    display: block;
  }
  @media (max-width: 767px) {
    .show-pc {
      display: none;
    }
  }
  
  .show-mb {
    display: none;
  }
  @media (max-width: 767px) {
    .show-mb {
      display: block;
    }
  }
  
  .button {
    font-family: "Helvetica Neue";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #ffffff;
    border-radius: 8px;
    padding: 13px 56px 13px 32px;
    position: relative;
    width: fit-content;
    transition: all 1s;
    overflow: hidden;
    z-index: 1;
  }
  .button:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #009bda -81.49%, #0b3f7e 0%);
    border-radius: 8px;
    z-index: -2;
  }
  .button:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, #019cdb 85%, rgba(1, 156, 219, 0.451) 95%, rgba(1, 156, 219, 0.122) 100%);
    transition: all 0.3s;
    border-radius: 8px;
    z-index: -1;
  }
  .button:hover:before {
    width: 120%;
  }
  @media (max-width: 991px) {
    .button {
      font-size: 16px;
      line-height: 19px;
      padding: 10.5px 38px 10.5px 20px;
    }
  }
  @media (max-width: 1440px) {
    .header .button {
      padding: 10px 45px 10px 25px;
      font-size: 16px;
    }
  }
  @media (max-width: 1250px) {
    .header .button {
      padding: 6px 35px 6px 15px;
    }
  }
  .button.button--white {
    color: #0b3f7e;
    background: #fff;
  }
  .button.button--white:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #019CDB -53.76%, #FFFFFF -6.36%);
    border-radius: 8px;
    z-index: -2;
  }
  .button.button--white path {
    fill: #0b3f7e;
  }
  .button.button--white:hover {
    color: #fff;
    background: #019cdb;
  }
  .button.button--white:hover:after {
    background: none;
  }
  .button.button--white:hover path {
    fill: #fff;
  }
  @media (max-width: 575px) {
    .button.w-m100 {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .button.w-m100 .icon {
      position: relative;
      display: inline-flex;
      align-items: center;
      right: 0;
      transform: none;
      margin-left: 9px;
    }
  }
  .button .icon {
    position: absolute;
    display: block;
    width: 15px;
    height: 12px;
    top: 50%;
    transform: translateY(-50%);
    right: 28px;
  }
  @media (max-width: 1440px) {
    .button .icon {
      right: 18px;
    }
  }
  @media (max-width: 1250px) {
    .button .icon {
      right: 12px;
    }
  }
  
  .pointer {
    cursor: pointer;
  }
  
  .w-1408 {
    max-width: 1440px;
    padding: 0 16px;
    margin: 0 auto;
  }
  @media (max-width: 1600px) {
    .w-1408 {
      padding: 0 55px;
    }
  }
  @media (max-width: 767px) {
    .w-1408 {
      padding: 0 16px;
    }
  }
  
  .w-928 {
    max-width: calc(928px + 16px * 2);
    padding: 0 16px;
    margin: 0 auto;
  }
  
  .title-1 {
    font-weight: 700;
    font-size: 38px;
    line-height: 52px;
  }
  @media (max-width: 767px) {
    .title-1 {
      font-size: 22px;
      line-height: 27px;
    }
  }
  
  .title-2 {
    font-weight: 700;
    font-size: 30px;
    line-height: calc(37/30);
  }
  @media (max-width: 991PX) {
    .title-2 {
      font-size: 26px;
    }
  }
  @media (max-width: 767px) {
    .title-2 {
      font-size: 19px;
      line-height: 24px;
    }
  }
  
  .title-3 {
    font-weight: 500;
    font-size: 28px;
    line-height: calc(42/28);
  }
  @media (max-width: 991PX) {
    .title-3 {
      font-size: 23px;
    }
  }
  @media (max-width: 767px) {
    .title-3 {
      font-size: 18px;
      line-height: 24px;
    }
  }
  
  .title-4 {
    font-weight: 500;
    font-size: 26px;
    line-height: 38px;
  }
  
  .headline-1 {
    font-weight: 500;
    font-size: 22px;
    line-height: 34px;
  }
  @media (max-width: 991px) {
    .headline-1 {
      font-size: 17px;
      line-height: 25px;
    }
  }
  @media (max-width: 767px) {
    .headline-1 {
      font-size: 15px;
      line-height: 20px;
    }
  }
  
  .headline-2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 38px;
  }
  
  .headline-3 {
    font-weight: 400;
    font-size: 22px;
    line-height: 34px;
  }
  
  .btn-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
  }
  @media (max-width: 991px) {
    .btn-text {
      font-size: 16px;
      line-height: 20px;
    }
  }
  
  .section-padding-y {
    padding: 160px 0;
  }
  @media (max-width: 991px) {
    .section-padding-y {
      padding: 80px 0;
    }
  }
  @media (max-width: 767px) {
    .section-padding-y {
      padding: 60px 0;
    }
  }
  
  @keyframes customZoomCover {
    0% {
      transform: scale(1.4);
    }
    100% {
      transform: scale(1);
    }
  }
  .swiper-wrapper {
    height: auto;
  }
  
  .icon-complete {
    width: 32px;
    display: block;
  }
  .icon-complete + .text {
    flex: 1;
  }
  @media (max-width: 991px) {
    .icon-complete {
      width: 24px;
    }
  }
  
  .header {
    min-height: 92px;
    padding: 0 32px;
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #64C9F3;
    z-index: 10;
  }
  @media (max-width: 767px) {
    .header {
      min-height: 80px;
      border-top: 2px solid #64C9F3;
      border-bottom: 2px solid #64C9F3;
      padding: 0 16px;
    }
  }
  @media (max-width: 575px) {
    .header {
      min-height: 52px;
    }
  }
  .header .logo {
    max-width: 175px;
    height: auto;
    margin-right: 50px;
  }
  @media (max-width: 1750px) {
    .header .logo {
      max-width: 145px;
    }
  }
  @media (max-width: 1440px) {
    .header .logo {
      max-width: 115px;
    }
  }
  @media (max-width: 767px) {
    .header .logo {
      max-width: 135px;
    }
  }
  @media (max-width: 575px) {
    .header .logo {
      max-width: 139px;
    }
  }
  .header .right {
    min-height: 92px;
  }
  @media (max-width: 767px) {
    .header .right {
      min-height: 80px;
    }
  }
  @media (max-width: 575px) {
    .header .right {
      min-height: 52px;
    }
  }
  
  .nav {
    height: 100%;
    align-items: center;
    min-height: 92px;
  }
  @media (max-width: 767px) {
    .nav {
      min-height: 80px;
    }
  }
  @media (max-width: 575px) {
    .nav {
      min-height: 52px;
    }
  }
  @media (max-width: 1200px) {
    .nav {
      display: none;
    }
  }
  
  .nav-item-wrapper {
    min-height: 92px;
    padding: 0 40px;
  }
  @media (max-width: 1780px) {
    .nav-item-wrapper {
      padding: 0 22.5px;
    }
  }
  @media (max-width: 1490px) {
    .nav-item-wrapper {
      padding: 0 25px;
    }
  }
  @media (max-width: 1390px) {
    .nav-item-wrapper {
      padding: 0 15px;
    }
  }
  @media (max-width: 1300px) {
    .nav-item-wrapper {
      padding: 0 14px;
    }
  }
  @media (max-width: 767px) {
    .nav-item-wrapper {
      min-height: 80px;
    }
  }
  @media (max-width: 575px) {
    .nav-item-wrapper {
      min-height: 52px;
    }
  }
  .nav-item-wrapper:hover .subnav {
    display: flex;
    flex-wrap: wrap;
    flex-wrap: wrap;
    opacity: 1;
    visibility: visible;
    height: auto;
  }
  .nav-item-wrapper:hover ~ .overlay-subnav {
    display: block;
  }
  .nav-item-wrapper:hover .nav-item::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    background: #009BDA;
    border-radius: 2px 2px 0px 0px;
    bottom: 0;
  }
  .nav-item-wrapper.active .nav-item::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    background: #009BDA;
    border-radius: 2px 2px 0px 0px;
    bottom: 0;
  }
  .nav-item-wrapper.active .nav-item::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    background: #009BDA;
    border-radius: 2px 2px 0px 0px;
    bottom: 0;
  }
  
  .nav-item {
    position: relative;
    transition: 0.5s;
    display: flex;
    align-items: center;
    min-height: 92px;
  }
  @media (max-width: 767px) {
    .nav-item {
      min-height: 80px;
    }
  }
  @media (max-width: 575px) {
    .nav-item {
      min-height: 52px;
    }
  }
  @media (max-width: 1490px) {
    .nav-item {
      font-size: 16px;
    }
  }
  
  .header-right-link-other {
    gap: 32px;
    margin-left: 181px;
  }
  @media (max-width: 1750px) {
    .header-right-link-other {
      margin-left: 80px;
      gap: 25px;
    }
  }
  @media (max-width: 1440px) {
    .header-right-link-other {
      margin-left: 50px;
      gap: 20px;
    }
  }
  @media (max-width: 1250px) {
    .header-right-link-other {
      margin-left: 30px;
    }
  }
  @media (max-width: 767px) {
    .header-right-link-other {
      gap: 16px;
    }
    .header-right-link-other .button {
      display: none;
    }
  }
  .header-right-link-other .search {
    order: -1;
  }
  @media (max-width: 767px) {
    .header-right-link-other .search {
      max-width: 17px;
    }
  }
  
  .language a {
    height: fit-content;
  }
  .language .eng {
    padding-left: 16px;
    margin-left: 16px;
    border-left: 1px solid #bababa;
  }
  @media (max-width: 1750px) {
    .language svg {
      width: 25px;
    }
  }
  @media (max-width: 767px) {
    .language {
      position: absolute;
      z-index: 2;
      background: #fff;
      top: 100%;
      right: 56px;
      flex-direction: column;
      max-width: 111px;
      width: 100%;
      border: 1px solid #BABABA;
      opacity: 0;
      visibility: hidden;
      transition: all 0.5s;
    }
    .language.show {
      opacity: 1;
      visibility: visible;
    }
    .language .eng {
      border-top: 1px solid #BABABA;
      border-left: none;
      margin: 0;
    }
    .language .icon {
      display: flex;
      padding: 8px;
      width: 100%;
      justify-content: space-between;
      font-size: 14px;
      line-height: 24px;
      color: #BABABA;
    }
    .language .icon.active {
      color: #434343;
    }
    .language svg {
      width: 24px;
    }
  }
  
  .open-nav-btn {
    width: 35px;
    padding: 0;
  }
  .open-nav-btn .close {
    top: 0;
  }
  @media (max-width: 575px) {
    .open-nav-btn {
      width: 24px;
    }
  }
  .open-nav-btn svg {
    width: 100%;
    transition: 0.3s;
  }
  .open-nav-btn .close {
    opacity: 0;
  }
  .open-nav-btn.show .icon.open {
    opacity: 0;
  }
  .open-nav-btn.show .icon.close {
    opacity: 1;
  }
  
  .mob-nav {
    background: #fff;
    z-index: 10;
    width: 100%;
    left: 0;
    top: calc(100% + 2px);
    padding: 24px 16px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    height: calc(100vh - 80px);
    transition: 0.5s;
    display: none;
  }
  .mob-nav.show {
    opacity: 1;
    pointer-events: all;
  }
  @media (max-width: 767px) {
    .mob-nav {
      display: block;
    }
  }
  @media (max-width: 575px) {
    .mob-nav {
      height: calc(100vh - 52px);
    }
  }
  
  .mob-nav__category {
    padding-bottom: 8px;
    border-bottom: 1px solid #BABABA;
  }
  .mob-nav__category:not(:first-child) {
    margin-top: 16px;
  }
  .mob-nav__category .icon {
    transition: 0.3s;
  }
  .mob-nav__category.show .icon {
    transform: rotate(180deg);
  }
  
  .mob-nav__category-title .icon {
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
  }
  .mob-nav__category-title .icon svg {
    width: 100%;
  }
  
  .mob-nav__category-list {
    margin-top: 8px;
    display: none;
  }
  
  .mob-nav__category-item {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid #EAEAEA;
    border-radius: 8px;
  }
  .mob-nav__category-item:not(:first-child) {
    margin-top: 12px;
  }
  
  @media (max-width: 767px) {
    .language-wrapper {
      margin-left: -8px;
      padding-left: 8px;
      border-left: 1px solid #BABABA;
      height: fit-content;
      align-self: center;
    }
    .language-wrapper .show-mb {
      display: flex;
      gap: 6px;
    }
  }
  
  .language-present .arrow {
    transition: 0.3s;
  }
  .language-present.show .arrow {
    transform: rotate(180deg);
  }
  
  .modal-search {
    width: 100%;
    top: calc(100% + 1px);
    left: 0;
    height: calc(100vh - 92px);
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }
  @media (max-width: 767px) {
    .modal-search {
      height: calc(100vh - 80px);
    }
  }
  @media (max-width: 575px) {
    .modal-search {
      height: calc(100vh - 52px);
    }
  }
  .modal-search.show {
    opacity: 1;
    visibility: visible;
  }
  
  .modal-search,
  .search-container {
    padding-top: 80px;
    z-index: 10;
  }
  @media (max-width: 767px) {
    .modal-search,
  .search-container {
      padding-top: 24px;
    }
  }
  .modal-search .close-modal,
  .search-container .close-modal {
    color: #797979;
    gap: 15px;
  }
  .modal-search .middle,
  .search-container .middle {
    margin: 24px 0;
  }
  @media (max-width: 767px) {
    .modal-search .middle,
  .search-container .middle {
      margin: 16px 0;
    }
  }
  .modal-search .middle svg,
  .search-container .middle svg {
    top: 50%;
    transform: translateY(-50%);
    right: 23px;
  }
  @media (max-width: 767px) {
    .modal-search .middle svg,
  .search-container .middle svg {
      width: 17px;
      right: 20px;
    }
  }
  .modal-search .input-search,
  .search-container .input-search {
    display: block;
    width: 100%;
    height: 72px;
    background: #F7F7F7;
    border-radius: 8px;
    padding: 19px 23px 19px 16px;
    color: #434343;
  }
  @media (max-width: 767px) {
    .modal-search .input-search,
  .search-container .input-search {
      height: 56px;
      font-size: 15px;
      line-height: 20px;
    }
  }
  .modal-search .input-search::placeholder,
  .search-container .input-search::placeholder {
    color: #BABABA;
  }
  .modal-search .bottom,
  .search-container .bottom {
    gap: 24px 16px;
  }
  @media (max-width: 575px) {
    .modal-search .bottom,
  .search-container .bottom {
      flex-direction: column;
      gap: 16px;
    }
  }
  .modal-search .tag-search-item,
  .search-container .tag-search-item {
    border: 1px solid #BABABA;
    border-radius: 8px;
    padding: 8px;
    line-height: 22px;
    color: #BABABA;
  }
  
  body.open-menu {
    overflow: inherit;
  }
  @media (max-width: 767px) {
    body.open-menu {
      overflow: hidden;
    }
  }
  body.open-search {
    overflow: hidden;
  }
  
  .subnav {
    left: 0;
    top: calc(100% + 1px);
    background: #fff;
    width: 100%;
    padding: 80px 160px;
    display: flex;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    height: 0%;
    transition: opacity 0.3s, visibility 0.3s, height 0.3s;
  }
  .subnav:hover {
    display: flex;
  }
  .subnav:hover ~ .overlay-subnav {
    display: block;
  }
  @media (max-width: 1490px) {
    .subnav {
      padding: 80px 60px;
    }
  }
  
  .overlay-subnav {
    position: absolute;
    width: 100%;
    height: calc(100vh - 92px);
    top: 100%;
    left: 0;
    background: #434343;
    opacity: 0.8;
    display: none;
  }
  
  .subnav-link {
    transition: 0.5s;
    width: calc(25% - 12px);
    margin-right: 16px;
    margin-bottom: 16px;
  }
  .subnav-link:nth-child(4n) {
    margin-right: 0;
  }
  .subnav-link:hover {
    color: #009bda;
  }
  
  .footer {
    padding: 60px 0 40px;
    background: linear-gradient(292.23deg, #083B79 9.46%, #0B4C9A 94.57%);
  }
  @media (max-width: 767px) {
    .footer {
      padding: 32px 0px;
    }
  }
  .footer > .w-1408 {
    margin: 0 auto;
  }
  
  .footer-top {
    gap: 32px;
  }
  @media (max-width: 767px) {
    .footer-top {
      flex-direction: column;
      max-width: calc(260/343*100%);
      gap: 8px;
    }
    .footer-top > * {
      margin-right: auto;
    }
  }
  .footer-top .logo {
    max-width: 233px;
    height: auto;
  }
  @media (max-width: 575px) {
    .footer-top .logo {
      max-width: 139px;
    }
  }
  @media (max-width: 575px) {
    .footer-top .site-name .vie {
      font-size: 19px;
      line-height: 24px;
    }
  }
  .footer-top .site-name .eng {
    color: #64C9F3;
  }
  
  .footer-middle {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 60px;
  }
  @media (max-width: 991px) {
    .footer-middle {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px 32px;
    }
  }
  @media (max-width: 767px) {
    .footer-middle {
      gap: 29px 16px;
    }
  }
  
  .footer-link__item {
    margin-top: 16px;
  }
  .footer-link__item a {
    color: #64C9F3;
  }
  @media (max-width: 575px) {
    .footer-link__item a {
      color: #009BDA;
    }
  }
  
  .footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 32px;
  }
  .footer-bottom .right {
    color: #FFFFFF;
    opacity: 0.3;
  }
  @media (max-width: 575px) {
    .footer-bottom {
      flex-direction: column;
    }
    .footer-bottom .social-link {
      width: 32px;
    }
    .footer-bottom .right {
      margin-top: 16px;
    }
  }
  .footer-bottom svg {
    width: 100%;
  }
  .footer-bottom .left {
    gap: 16px;
    margin-right: 30px;
  }
  
  .footer-link__list-wrapper:last-child {
    margin-top: 16px;
  }
  
  .footer-link__item-title {
    font-weight: 500;
    font-size: 22px;
    line-height: 34px;
    color: #FFFFFF;
  }
  @media (max-width: 767px) {
    .footer-link__item-title {
      font-size: 15px;
      line-height: 20px;
    }
  }
  
  .banner picture {
    aspect-ratio: 1920/800;
    object-fit: cover;
    background: #ddd;
  }
  @media (max-width: 767px) {
    .banner picture img {
      aspect-ratio: 375/450;
      background: #ddd;
    }
  }
  .banner .swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
    transition: 0.5s;
    transform-origin: center;
  }
  .banner .swiper-pagination-bullet-active {
    background: #009bda;
    width: 60px;
    border-radius: 999px;
  }
  @media (max-width: 767px) {
    .banner .box-item {
      width: 100%;
    }
    .banner .swiper-pagination {
      bottom: 24px;
      text-align: left;
      padding-left: 12px;
    }
  }
  
  .banner-scale {
    overflow: hidden;
  }
  .banner-scale img {
    aspect-ratio: 1920/800;
    object-fit: cover;
    animation-duration: 1s;
    animation-delay: 0s;
    animation-name: customZoomCover;
  }
  @media (max-width: 767px) {
    .banner-scale img {
      aspect-ratio: 375/450;
    }
  }
  
  .home-section-1 {
    text-align: center;
    margin-top: 80px;
  }
  .home-section-1 > .w-1408 * {
    margin: 0 auto;
  }
  .home-section-1 > .w-1408 .title {
    max-width: 976px;
  }
  .home-section-1 > .w-1408 .desc {
    max-width: 926px;
  }
  @media (max-width: 768px) {
    .home-section-1 {
      margin-top: 32px;
      text-align: left;
    }
  }
  .home-section-1 .title {
    font-weight: 500;
    font-size: 80px;
    line-height: calc(98/80);
    letter-spacing: -0.02em;
    color: #0B3F7E;
  }
  @media (max-width: 1440px) {
    .home-section-1 .title {
      font-size: 60px;
    }
  }
  @media (max-width: 1024px) {
    .home-section-1 .title {
      font-size: 45px;
    }
  }
  @media (max-width: 768px) {
    .home-section-1 .title {
      font-size: 24px;
      line-height: 29px;
    }
  }
  .home-section-1 .desc {
    margin: 24px auto 40px;
  }
  @media (max-width: 768px) {
    .home-section-1 .desc {
      margin: 8px 0 32px;
    }
  }
  .home-section-1 .button {
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  @media (max-width: 768px) {
    .home-section-1 .button {
      margin-left: 0;
    }
  }
  
  .home-section-2 {
    padding: 163px 0 219px;
  }
  @media (max-width: 991px) {
    .home-section-2 {
      padding: 72px 0 92px;
    }
  }
  .home-section-2 .title {
    white-space: pre-line;
  }
  .home-section-2 .bg-vector {
    position: absolute;
    width: calc(817/1920*100%);
    aspect-ratio: 817/750;
    background: url(../image/global-vector-web.png) no-repeat;
    background-size: cover;
    bottom: 0;
    right: 127px;
  }
  @media (max-width: 767px) {
    .home-section-2 .bg-vector {
      background-image: url(../image/global-vector-mobile.png);
      aspect-ratio: unset;
      width: calc(239/375*100%);
      height: 100%;
      right: 0;
    }
  }
  .home-section-2 .content-wrap {
    max-width: 808px;
    position: relative;
    z-index: 1;
  }
  @media (max-width: 1100px) {
    .home-section-2 .content-wrap {
      margin: 0 auto;
    }
  }
  .home-section-2 .desc {
    margin: 8px 0 32px;
  }
  .home-section-2 .count-boxes {
    flex: 1;
  }
  .home-section-2 .number {
    font-weight: 500;
    font-size: 100px;
    line-height: 1.22;
    color: #009BDA;
    position: relative;
    width: fit-content;
    min-width: 235px;
  }
  @media (max-width: 1199px) {
    .home-section-2 .number {
      min-width: inherit;
    }
  }
  @media (max-width: 1024px) {
    .home-section-2 .number {
      font-size: 80px;
    }
  }
  @media (max-width: 575px) {
    .home-section-2 .number {
      font-size: 50px;
      line-height: 61px;
    }
  }
  .home-section-2 .number::after {
    content: "+";
    display: inline-block;
    position: relative;
    margin-left: 8px;
    font-size: inherit;
    bottom: 12px;
  }
  @media (max-width: 575px) {
    .home-section-2 .number::after {
      font-size: 30px;
      line-height: 37px;
      bottom: 6px;
    }
  }
  .home-section-2 .meaning {
    white-space: pre-line;
  }
  
  .home-section-3 {
    background: #F7F7F7;
    overflow: hidden;
  }
  .home-section-3 > .title-wrapper {
    z-index: 2;
    top: 160px;
  }
  @media (max-width: 991px) {
    .home-section-3 > .title-wrapper {
      top: 80px;
    }
  }
  @media (max-width: 767px) {
    .home-section-3 > .title-wrapper {
      top: 24px;
    }
  }
  .home-section-3 .content-wrapper {
    max-width: 568px;
  }
  @media (max-width: 1199px) {
    .home-section-3 .content-wrapper {
      max-width: 500px;
    }
  }
  @media (max-width: 991px) {
    .home-section-3 .content-wrapper {
      max-width: 380px;
    }
  }
  .home-section-3 .swiper-slide {
    padding: 357px 0 210px;
    height: auto;
  }
  .home-section-3 .swiper-slide .title-3 img {
    display: inline-block;
  }
  @media (max-width: 767px) {
    .home-section-3 .swiper-slide .title-3 img {
      margin-top: 8px;
    }
  }
  .home-section-3 .swiper-slide .title-3 .napas247 {
    max-width: 218px;
    transform: translateY(-4px);
  }
  @media (max-width: 767px) {
    .home-section-3 .swiper-slide .title-3 .napas247 {
      max-width: 146px;
    }
  }
  .home-section-3 .swiper-slide .title-3 .vietqr {
    max-width: 112px;
    transform: translateY(-6px);
  }
  @media (max-width: 767px) {
    .home-section-3 .swiper-slide .title-3 .vietqr {
      max-width: 88px;
    }
  }
  @media (max-width: 991px) {
    .home-section-3 .swiper-slide {
      padding: 200px 0 160px;
    }
  }
  @media (max-width: 767px) {
    .home-section-3 .swiper-slide {
      padding: 72px 0 0;
    }
  }
  .home-section-3 .button {
    margin-left: 1px;
  }
  .home-section-3 .pagination-wrapper {
    z-index: 2;
    bottom: 160px;
    position: absolute;
    left: 0;
  }
  @media (max-width: 991px) {
    .home-section-3 .pagination-wrapper {
      bottom: 80px;
    }
  }
  @media (max-width: 767px) {
    .home-section-3 .pagination-wrapper {
      margin: 0;
      bottom: 16px;
    }
  }
  .home-section-3 .swiper-pagination {
    text-align: left;
    position: relative;
    bottom: 0;
  }
  @media (max-width: 767px) {
    .home-section-3 .swiper-pagination {
      margin: 0;
      text-align: center;
    }
  }
  .home-section-3 .swiper-pagination-bullet {
    background: #B3E6F7;
    opacity: 1;
    margin: 0;
    width: 12px;
    height: 12px;
    border-radius: 100vmax;
    transition: 0.5s;
  }
  @media (max-width: 767px) {
    .home-section-3 .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
      background: #fff;
    }
  }
  .home-section-3 .swiper-pagination-bullet:not(:first-child) {
    margin-left: 16px;
  }
  .home-section-3 .swiper-pagination-bullet-active {
    background: #009BDA;
    width: 60px;
  }
  .home-section-3 .slide-item__wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  @media (max-width: 767px) {
    .home-section-3 .slide-item__image {
      flex: 1;
      justify-content: flex-end;
      flex-direction: column;
      display: flex;
    }
  }
  
  .home-section-3__content-sapo {
    margin: 8px 0 40px;
  }
  @media (max-width: 767px) {
    .home-section-3__content-sapo {
      margin: 8px 0 24px;
    }
  }
  
  .home-section-3__content-image {
    z-index: -1;
    object-fit: contain;
    object-position: right bottom;
  }
  
  .home-section-3__content-image-mob {
    margin-top: 24px;
    padding: 0 16px;
    object-fit: cover;
  }
  
  .home-section-4 {
    padding-top: 171px;
  }
  @media (max-width: 991px) {
    .home-section-4 {
      padding-top: 80px;
    }
  }
  @media (max-width: 767px) {
    .home-section-4 {
      padding-top: 60px;
    }
  }
  .home-section-4 .title {
    margin-bottom: 62px;
  }
  @media (max-width: 767px) {
    .home-section-4 .title {
      margin: 0 16px 16px;
    }
  }
  .home-section-4 .boxes {
    gap: 33px;
  }
  @media (max-width: 768px) {
    .home-section-4 .boxes {
      flex-direction: column;
      gap: 16px;
    }
  }
  .home-section-4 .box-item {
    width: calc(100%/3 - 22px);
    border-radius: 8px;
    overflow: hidden;
  }
  .home-section-4 .box-item::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #F8F8F8 2.07%, rgba(244, 248, 255, 0) 50.57%);
    z-index: 1;
  }
  @media (max-width: 768px) {
    .home-section-4 .box-item {
      width: 100%;
      border-radius: 0 !important;
    }
    .home-section-4 .box-item .icon {
      top: 33px;
      right: 22px;
      width: 11px;
      z-index: 3;
    }
    .home-section-4 .box-item .icon path {
      transition: 0.5s;
    }
  }
  @media (max-width: 768px) {
    .home-section-4 .box-item.show .content {
      background: rgba(67, 67, 67, 0.8);
    }
    .home-section-4 .box-item.show .subtitle,
  .home-section-4 .box-item.show .title-3 {
      color: #fff;
    }
    .home-section-4 .box-item.show .service-list {
      opacity: 1;
      visibility: visible;
    }
    .home-section-4 .box-item.show .icon {
      transform: rotate(180deg);
    }
    .home-section-4 .box-item.show .icon path {
      fill: #fff;
    }
  }
  .home-section-4 .box-item:first-child {
    border-radius: 0 8px 8px 0;
  }
  .home-section-4 .box-item:last-child {
    border-radius: 8px 0 0 8px;
  }
  @media (min-width: 768px) {
    .home-section-4 .box-item:hover .content {
      background: rgba(67, 67, 67, 0.8);
    }
    .home-section-4 .box-item:hover .subtitle,
  .home-section-4 .box-item:hover .title-3 {
      color: #fff;
    }
    .home-section-4 .box-item:hover .service-list {
      opacity: 1;
      visibility: visible;
    }
    .home-section-4 .box-item:hover .icon path {
      fill: #fff;
      transform: rotate(180deg);
    }
  }
  .home-section-4 .box-item .title-3,
  .home-section-4 .box-item .subtitle {
    transition: 0.5s;
  }
  @media (max-width: 767px) {
    .home-section-4 .box-item .title-3,
  .home-section-4 .box-item .subtitle {
      padding: 0 16px;
    }
  }
  .home-section-4 .content {
    z-index: 1;
    padding: 40px;
    padding-right: 18px;
    min-height: 750px;
    transition: 0.5s;
  }
  @media (max-width: 1199px) {
    .home-section-4 .content {
      padding: 18px;
      padding-right: 18px;
    }
  }
  @media (max-width: 767px) {
    .home-section-4 .content {
      padding: 20px 0 0px;
    }
  }
  @media (max-width: 575px) {
    .home-section-4 .content {
      min-height: 610px;
      padding: 8px 0 16px;
    }
    .home-section-4 .content .title-3 {
      font-size: 16px;
      line-height: 20px;
    }
  }
  .home-section-4 .service-list {
    opacity: 0;
    visibility: hidden;
    margin-top: 24px;
    transition: 0.5s;
  }
  @media (max-width: 767px) {
    .home-section-4 .service-list {
      padding: 0 8px;
    }
  }
  .home-section-4 .service-item {
    color: #fff;
    line-height: 22px;
  }
  .home-section-4 .service-item:not(:first-child) {
    margin-top: 16px;
  }
  .home-section-4 .service-item a {
    padding: 8px;
    background: rgba(134, 134, 134, 0.7);
    border: 1px solid #FFFFFF;
    width: 100%;
  }
  
  .home-section-5 {
    padding: 160px 0;
  }
  @media (max-width: 991px) {
    .home-section-5 {
      padding: 80px 0;
    }
  }
  .home-section-5 .news-tabs {
    max-width: 90%;
  }
  .home-section-5 .news-tabs__item {
    white-space: nowrap;
    width: fit-content;
  }
  @media (max-width: 1024px) {
    .home-section-5 .news-tabs {
      max-width: 85%;
    }
  }
  @media (max-width: 767px) {
    .home-section-5 {
      padding: 60px 0;
    }
    .home-section-5 .slider-tabs {
      margin-top: -14px;
      margin-right: -16px;
    }
  }
  .home-section-5 .news-tabs {
    margin-top: 16px;
    margin-left: 0;
  }
  @media (max-width: 767px) {
    .home-section-5 .news-tabs {
      max-width: calc(100% + 16px);
      margin-right: -16px;
    }
  }
  .home-section-5 .news-slider {
    margin-top: 32px;
  }
  .home-section-5 .slider-tabs {
    width: calc(100% + 20px);
    margin-left: -10px;
  }
  .home-section-5 .slider-tabs .swiper {
    padding: 0 10px;
  }
  .home-section-5 .slider-tabs .button {
    margin-left: 10px;
  }
  
  .news-slider-container {
    position: relative;
  }
  .news-slider-container .news-slider-btn {
    position: absolute;
    bottom: calc(100% + 32px);
  }
  @media (max-width: 767px) {
    .news-slider-container .news-slider-btn {
      display: none;
    }
  }
  @media (max-width: 991px) {
    .news-slider-container .news-slider-btn {
      width: 32px;
    }
  }
  .news-slider-container .news-slider-btn svg {
    transition: 0.5s;
    border-radius: 100vmax;
    overflow: hidden;
    width: 100%;
  }
  .news-slider-container .news-slider-btn svg rect {
    transition: 0.5s;
  }
  .news-slider-container .news-slider-btn svg path {
    transition: 0.5s;
  }
  .news-slider-container .news-slider-btn:hover svg {
    background: #009bda;
  }
  .news-slider-container .news-slider-btn:hover svg rect {
    opacity: 0;
  }
  .news-slider-container .news-slider-btn:hover svg path {
    fill: #fff;
  }
  .news-slider-container .button-next {
    right: 0;
  }
  .news-slider-container .button-prev {
    right: 56px;
  }
  @media (max-width: 991px) {
    .news-slider-container .button-prev {
      right: 42px;
    }
  }
  .news-slider-container .button {
    margin-top: 25px;
  }
  @media (max-width: 767px) {
    .news-slider-container .button {
      margin-top: 9px;
    }
  }
  
  .news-slider {
    padding-top: 5px !important;
  }
  .news-slider .swiper-wrapper {
    padding-bottom: 15px;
    height: auto;
  }
  @media (max-width: 767px) {
    .news-slider.slide-one .swiper-slide {
      max-width: 100% !important;
    }
  }
  .news-slider .swiper-slide {
    filter: drop-shadow(0px 2px 8px rgba(82, 82, 82, 0.1));
    border-radius: 8px;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: hidden;
  }
  .news-slider .swiper-slide:hover .news-avatar img {
    transform: scale(1.3);
  }
  @media (max-width: 767px) {
    .news-slider .swiper-slide {
      max-width: 230px;
      width: 100%;
    }
  }
  .news-slider .news-avatar {
    width: 100%;
    overflow: hidden;
  }
  .news-slider .news-avatar img {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 448/250;
    transition: 0.5s;
    height: fit-content;
  }
  @media (max-width: 767px) {
    .news-slider .news-avatar img {
      aspect-ratio: 230/200;
    }
  }
  .news-slider .news-text {
    padding: 16px 24px 18px;
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  @media (max-width: 767px) {
    .news-slider .news-text {
      padding: 8px 8px 12px;
    }
  }
  .news-slider .news-title {
    width: fit-content;
    flex: 1;
  }
  .news-slider .sapo {
    flex: 1;
  }
  .news-slider .news-date {
    padding-top: 18px;
    margin-top: 32px;
    border-top: 1px solid #BABABA;
    width: 100%;
    position: relative;
    font-size: 18px;
    line-height: 32px;
    color: #434343;
  }
  @media (max-width: 991px) {
    .news-slider .news-date {
      padding-top: 9px;
      margin-top: 16px;
      font-size: 12px;
      line-height: 14px;
    }
  }
  .news-slider .news-date::after {
    content: "";
    display: block;
    position: absolute;
    width: 22.5px;
    height: 18px;
    background: url(../image/news-category-arrow.png) no-repeat;
    background-size: contain;
    right: 0;
    bottom: 8px;
    opacity: 0;
    transition: 0.5s;
  }
  .news-slider .news-category {
    color: #797979;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
  }
  @media (max-width: 991px) {
    .news-slider .news-category {
      font-size: 12px;
      line-height: 15px;
    }
  }
  
  .swiper-slide:hover .news-date::after {
    opacity: 1;
  }
  @media (max-width: 767px) {
    .swiper-slide:hover .news-date::after {
      display: none;
    }
  }
  
  .news-slider--2 .sapo {
    margin-top: 8px;
  }
  
  .news-slider--3 .news-avatar img {
    aspect-ratio: 1408/500;
  }
  .news-slider--3 .news-avatar::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: #434343;
    mix-blend-mode: multiply;
    opacity: 0.7;
  }
  .news-slider--3 .news-text {
    position: absolute;
    z-index: 1;
    color: #fff;
    bottom: 0;
    padding: 32px 37px;
    max-width: 928px;
  }
  @media (max-width: 575px) {
    .news-slider--3 .news-text {
      padding: 8px;
    }
    .news-slider--3 .news-text .news-title {
      font-size: 14px;
      line-height: 20px;
    }
  }
  
  .news-slider--4 .news-text p:not(.news-date) {
    color: #797979;
  }
  .news-slider--4 .news-text p:first-of-type {
    margin-top: 16px;
  }
  
  .news-tabs__item {
    width: fit-content;
    cursor: pointer;
    transition: 0.5s;
  }
  .news-tabs__item:hover {
    color: #434343;
  }
  .news-tabs__item:not(.active) {
    color: #BABABA;
  }
  
  .slider-tab__item {
    opacity: 0;
    transition: 0.5s;
  }
  .slider-tab__item:not(.active) {
    display: none;
  }
  .slider-tab__item.active {
    display: block;
  }
  .slider-tab__item.show {
    opacity: 1;
  }
  
  @media (max-width: 767px) {
    .about-section-6 .news-slider .swiper-slide {
      max-width: 100%;
      width: 100%;
    }
  }
  
  .box-news-horizon {
    gap: 32px;
  }
  @media (max-width: 767px) {
    .box-news-horizon {
      gap: 16px;
    }
  }
  @media (max-width: 767px) {
    .box-news-horizon {
      flex-direction: column;
    }
  }
  .box-news-horizon .news-avatar {
    max-width: 328px;
    width: 100%;
  }
  @media (max-width: 767px) {
    .box-news-horizon .news-avatar {
      max-width: 100%;
      border-radius: 8px;
      overflow: hidden;
    }
  }
  .box-news-horizon .news-avatar img {
    aspect-ratio: 328/210;
    object-fit: cover;
    background: #ddd;
  }
  .box-news-horizon .box-news-horizon-text {
    flex: 1;
  }
  .box-news-horizon .box-news-horizon-text p {
    margin-top: 16px;
  }
  @media (max-width: 767px) {
    .box-news-horizon .box-news-horizon-text p {
      margin-top: 8px;
    }
  }
  
  .body.search-page {
    padding-bottom: 160px;
  }
  @media (max-width: 991px) {
    .body.search-page {
      padding-bottom: 80px;
    }
  }
  @media (max-width: 767px) {
    .body.search-page {
      padding-bottom: 60px;
    }
    .body.search-page .w-928 {
      display: flex;
      flex-direction: column;
    }
    .body.search-page .middle {
      order: -1;
    }
  }
  .body.search-page .list-news-vertical {
    margin-top: 80px;
  }
  @media (max-width: 767px) {
    .body.search-page .list-news-vertical {
      margin-top: 16px;
    }
  }
  .body.search-page .box-news-horizon {
    padding-bottom: 16px;
    margin-bottom: 32px;
    border-bottom: 1px solid #EAEAEA;
  }
  @media (max-width: 767px) {
    .body.search-page .box-news-horizon {
      margin-bottom: 16px;
    }
  }
  
  .pagination {
    gap: 16px;
    margin: 40 auto 0;
  }
  .pagination .current {
    padding: 8px 16px;
    background: #F7F7F7;
    border-radius: 8px;
  }
  .pagination .total-page::before {
    content: "/";
    display: inline-block;
    margin-right: 3px;
  }
  
  .about-us .banner::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: #434343;
    mix-blend-mode: multiply;
    opacity: 0.7;
  }
  .about-us .banner-content {
    color: #fff;
    font-weight: 700;
    z-index: 1;
    bottom: 60px;
  }
  @media (max-width: 1439px) {
    .about-us .banner-content {
      bottom: 50px;
    }
  }
  @media (max-width: 1200px) {
    .about-us .banner-content {
      bottom: 40px;
    }
  }
  @media (max-width: 768px) {
    .about-us .banner-content {
      bottom: 32px;
    }
  }
  .about-us .banner-content .title {
    font-size: 80px;
    line-height: calc(98/80);
  }
  @media (max-width: 1439px) {
    .about-us .banner-content .title {
      font-size: 70px;
    }
  }
  @media (max-width: 1439px) {
    .about-us .banner-content .title {
      font-size: 60px;
    }
  }
  @media (max-width: 1023px) {
    .about-us .banner-content .title {
      font-size: 22px;
      line-height: 28px;
    }
  }
  .about-us .banner-content .subtitle {
    font-size: 50px;
    line-height: calc(61/50);
  }
  @media (max-width: 1439px) {
    .about-us .banner-content .subtitle {
      font-size: 40px;
    }
  }
  @media (max-width: 1439px) {
    .about-us .banner-content .subtitle {
      font-size: 30px;
    }
  }
  @media (max-width: 1023px) {
    .about-us .banner-content .subtitle {
      font-size: 22px;
      line-height: 26px;
    }
  }
  
  .about-section-1 {
    padding: 60px 0 160px;
  }
  .about-section-1 .sapo {
    max-width: 1048px;
  }
  .about-section-1 .sapo:not(:first-child) {
    margin-top: 16px;
  }
  .about-section-1 .box-list-about-us {
    column-gap: 32px;
  }
  .about-section-1 .box-list-wrapper {
    margin-top: 40px;
  }
  .about-section-1 .box-list-wrapper.short:nth-child(1) {
    max-width: 449px;
    width: 100%;
  }
  .about-section-1 .box-list-wrapper.short:nth-child(2) {
    max-width: 567px;
    width: 100%;
  }
  @media (max-width: 1100px) {
    .about-section-1 .box-list-wrapper.short:nth-child(1), .about-section-1 .box-list-wrapper.short:nth-child(2) {
      max-width: unset;
      flex: 1;
    }
  }
  @media (max-width: 767px) {
    .about-section-1 .box-list-wrapper {
      max-width: 100% !important;
      flex: unset !important;
    }
  }
  
  .box-list-about-us {
    max-width: 1048px;
    width: 100%;
    flex-wrap: wrap;
  }
  .box-list-about-us .box-list-wrapper {
    width: 100%;
  }
  .box-list-about-us .box-list__title {
    display: flex;
    align-items: center;
    padding-bottom: 8px;
    gap: 8px;
    border-bottom: 1px solid #64C9F3;
  }
  @media (max-width: 767px) {
    .box-list-about-us .box-list__title {
      font-size: 15px;
      line-height: 20px;
    }
  }
  .box-list-about-us .list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    margin-top: 8px;
  }
  .box-list-about-us .item {
    position: relative;
    padding-left: 26px;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #434343;
  }
  @media (max-width: 767px) {
    .box-list-about-us .item {
      font-size: 15px;
      line-height: 20px;
    }
  }
  .box-list-about-us .item:nth-child(odd) {
    max-width: 449px;
    width: 100%;
  }
  .box-list-about-us .item:nth-child(even) {
    max-width: 567px;
    width: 100%;
  }
  .box-list-about-us .item::before {
    content: "";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    background: #434343;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 100vmax;
    overflow: hidden;
  }
  
  .about-section-2 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 760px;
    padding: 160px 0;
    color: #fff;
    position: relative;
  }
  .about-section-2::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: #434343;
    opacity: 0.6;
  }
  @media (max-width: 991px) {
    .about-section-2 {
      padding: 80px 0;
    }
  }
  @media (max-width: 768px) {
    .about-section-2 {
      min-height: 540px;
      padding: 24px 0;
      background-position-x: 80%;
    }
  }
  .about-section-2 .content-wrapper {
    position: relative;
    z-index: 1;
  }
  .about-section-2 .content-wrapper * {
    max-width: 688px;
  }
  .about-section-2 .sapo {
    margin: 8px 0 40px;
  }
  @media (max-width: 768px) {
    .about-section-2 .sapo {
      margin: 8px 0 24px;
    }
  }
  
  .about-section-3 .content-wrapper {
    max-width: 1048px;
  }
  .about-section-3 .content-wrapper .title-2 {
    margin-bottom: 8px;
  }
  .about-section-3 .sapo:not(:first-of-type) {
    margin-top: 20px;
  }
  .about-section-3 .boxes-timeline {
    margin-top: 32px;
  }
  @media (max-width: 768px) {
    .about-section-3 .boxes-timeline {
      flex-wrap: wrap;
      gap: 16px;
    }
  }
  
  .boxes-timeline__item {
    border-radius: 8px;
    overflow: hidden;
    width: calc(50% - 16px);
    padding: 119px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: end;
  }
  @media (max-width: 768px) {
    .boxes-timeline__item {
      width: 100%;
      padding: 30px 0 38px;
    }
  }
  .boxes-timeline__item::before {
    content: "";
    position: absolute;
    display: block;
    border-top: 1px solid #FFFFFF;
    bottom: 79px;
    left: 0;
    width: 100%;
    z-index: 1;
  }
  @media (max-width: 768px) {
    .boxes-timeline__item::before {
      bottom: 30px;
    }
  }
  .boxes-timeline__item::after {
    content: "";
    position: absolute;
    display: block;
    bottom: 80px;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 5px;
    height: 5px;
    border-radius: 100vmax;
    background: #fff;
    overflow: hidden;
    z-index: 1;
  }
  @media (max-width: 768px) {
    .boxes-timeline__item::after {
      bottom: 30px;
    }
  }
  .boxes-timeline__item:hover .boxes-image-hover {
    transform: scale(1.2);
  }
  .boxes-timeline__item .boxes-image-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: 0.5s;
  }
  .boxes-timeline__item .box-text {
    position: relative;
    z-index: 1;
    color: #fff;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
  }
  .boxes-timeline__item .box-text svg {
    margin: 0 auto;
  }
  @media (max-width: 767px) {
    .boxes-timeline__item .box-text svg {
      width: 30px;
    }
  }
  .boxes-timeline__item .box-text .text {
    margin-top: 40px;
  }
  @media (max-width: 768px) {
    .boxes-timeline__item .box-text .text {
      margin-top: 20px;
    }
  }
  .boxes-timeline__item.green .overlay {
    background: #A6CE39;
    opacity: 0.8;
  }
  .boxes-timeline__item.blue .overlay {
    background: #0B3F7E;
    opacity: 0.8;
  }
  
  .about-section-4 {
    background: #F7F7F7;
    min-height: 600px;
  }
  @media (max-width: 767px) {
    .about-section-4 {
      min-height: unset;
      padding: 24px 0 32px;
    }
  }
  .about-section-4 .header-section * {
    max-width: 688px;
  }
  .about-section-4 .header-section .sapo {
    margin: 8px 0 40px;
  }
  @media (max-width: 767px) {
    .about-section-4 .header-section .sapo {
      margin: 8px 0 24px;
    }
  }
  .about-section-4 .img-section {
    position: absolute;
    width: calc(944/1920*100%);
    aspect-ratio: 944/600;
    object-fit: cover;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  @media (max-width: 1200px) {
    .about-section-4 .img-section {
      top: unset;
      transform: unset;
      bottom: 0;
      width: calc(1200/1920*100%);
    }
  }
  @media (max-width: 767px) {
    .about-section-4 .img-section {
      position: relative;
      top: 0;
      transform: unset;
      aspect-ratio: unset;
      width: 100%;
    }
  }
  
  .about-section-5 .header-section * {
    max-width: 1048px;
  }
  .about-section-5 .header-section .sapo {
    margin-top: 8px;
  }
  @media (max-width: 1199px) {
    .about-section-5 .header-section .sapo {
      max-width: calc(100% - 200px);
    }
  }
  @media (max-width: 767px) {
    .about-section-5 .header-section .sapo {
      max-width: 100%;
    }
  }
  .about-section-5 .news-slider-container {
    margin-top: 32px;
  }
  @media (max-width: 1100px) {
    .about-section-5 .news-slider-btn {
      display: none;
    }
  }
  
  .about-section-6 {
    overflow: hidden;
  }
  .about-section-6 .section__ctn-partner-content .tab-content {
    display: flex;
  }
  .about-section-6 .list {
    filter: unset;
    flex-direction: row;
  }
  .about-section-6 .section__ctn-partner-content .list {
    row-gap: 64px;
  }
  @media (max-width: 1199px) {
    .about-section-6 .section__ctn-partner-content .list {
      row-gap: 32px;
    }
  }
  @media (max-width: 768px) {
    .about-section-6 .section__ctn-partner-content .list {
      row-gap: 16px;
    }
  }
  .about-section-6 .section__ctn-partner-content .list .item {
    margin-top: 0;
    row-gap: 64px;
  }
  .about-section-6 .news-tabs {
    margin: 16px 0 40px;
    max-width: 90%;
  }
  @media (max-width: 767px) {
    .about-section-6 .news-tabs {
      margin-bottom: 16px;
    }
  }
  
  .box-leader-image {
    overflow: hidden;
    max-width: 256px;
    width: 100%;
    background: #F7F7F7;
    filter: drop-shadow(0px 2px 10px rgba(82, 82, 82, 0.2));
    border-radius: 8px;
    display: flex;
    flex-direction: column;
  }
  .box-leader-image .avatar {
    overflow: hidden;
  }
  .box-leader-image .avatar img {
    aspect-ratio: 1/1;
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
  }
  .box-leader-image .box-text {
    background: #0B3F7E;
    color: #fff;
    padding: 8px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  @media (max-width: 991px) {
    .box-leader-image .box-text {
      padding: 8px;
    }
  }
  .box-leader-image .name {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    border-bottom: 1px solid #009BDA;
    padding-bottom: 8px;
    margin-bottom: 8px;
    flex: 1;
  }
  @media (max-width: 991px) {
    .box-leader-image .name {
      font-size: 14px;
      line-height: 20px;
    }
  }
  .box-leader-image .position::after {
    content: "";
    display: block;
    position: absolute;
    background: url(../image/news-category-arrow.png) no-repeat;
    background-size: contain;
    width: 15px;
    height: 12px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: 0.5s;
  }
  .box-leader-image:hover .avatar img {
    transform: scale(1.2);
  }
  .box-leader-image:hover .position::after {
    opacity: 1;
  }
  
  .section__ctn-about .row {
    justify-content: center;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #EAEAEA;
  }
  @media (max-width: 767px) {
    .section__ctn-about .row {
      padding-bottom: 16px;
      margin-bottom: 16px;
    }
  }
  .section__ctn-about .row .box-leader-image {
    margin-right: 32px;
  }
  @media (max-width: 1500px) {
    .section__ctn-about .row .box-leader-image {
      margin-right: 24px;
    }
  }
  @media (max-width: 767px) {
    .section__ctn-about .row .box-leader-image {
      margin-right: 16px;
      border-bottom: none;
    }
  }
  .section__ctn-about .row .box-leader-image:last-child {
    margin-right: 0;
  }
  @media (max-width: 767px) {
    .section__ctn-about .row {
      flex-wrap: wrap;
    }
    .section__ctn-about .row .box-leader-image {
      max-width: calc(50% - 8px);
    }
    .section__ctn-about .row:last-child {
      justify-content: space-between;
    }
  }
  
  .layout__tab-page-content .map-box img {
    margin-top: calc(60/1408*100%);
  }
  @media (max-width: 767px) {
    .layout__tab-page-content .map-box img {
      margin-top: 16px;
    }
  }
  .layout__tab-page-content .map-box:last-child {
    margin-top: calc(154/1408*100%);
  }
  @media (max-width: 767px) {
    .layout__tab-page-content .map-box:last-child {
      margin-top: 60px;
    }
  }
  
  .detail-intro-body .top {
    aspect-ratio: 1408/535;
    background: url(../image/bg-person-intro-web.png) no-repeat;
    background-size: contain;
    background-position-y: bottom;
  }
  @media (max-width: 767px) {
    .detail-intro-body .top {
      aspect-ratio: 343/201;
      background-image: url(../image/bg-person-intro-mob.png);
    }
  }
  .detail-intro-body .top .box-text {
    top: 0;
    width: calc(688/1408*100%);
    left: calc(120/1408*100%);
    margin-top: calc(260/1408*100%);
  }
  .detail-intro-body .top .box-text .position {
    color: #64C9F3;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
  }
  @media (max-width: 767px) {
    .detail-intro-body .top .box-text .position {
      font-weight: 400;
      font-size: 12px;
      line-height: 14px;
    }
  }
  @media (max-width: 767px) {
    .detail-intro-body .top .box-text {
      width: 40%;
      left: calc(24/343*100%);
      margin-top: 0;
      top: 50%;
      transform: translate(0, -50%);
    }
    .detail-intro-body .top .box-text .name {
      font-size: 18px;
    }
    .detail-intro-body .top .box-text .position {
      font-size: 12px;
      line-height: 14px;
      margin-top: 8px;
    }
  }
  .detail-intro-body .man-avatar {
    aspect-ratio: 448/535;
    width: calc(448/1408*100%);
    right: calc(120/1408*100%);
  }
  @media (max-width: 767px) {
    .detail-intro-body .man-avatar {
      aspect-ratio: 164/201;
      right: 0;
      width: calc(164/343*100%);
    }
  }
  .detail-intro-body .middle {
    max-width: 930px;
  }
  .detail-intro-body .detail-intro-path {
    margin-top: 60px;
  }
  .detail-intro-body .detail-intro-path p:first-of-type {
    margin-top: 8px;
  }
  .detail-intro-body .slider-tabs {
    margin-top: 16px;
    width: 100%;
    margin-left: 0;
  }
  .detail-intro-body .bottom .position {
    font-size: 18px;
    line-height: 32px;
  }
  @media (max-width: 991px) {
    .detail-intro-body .bottom .position {
      font-size: 12px;
      line-height: 14px;
    }
  }
  
  @media (max-width: 1023px) {
    .person-list .swiper-slide {
      max-width: 200px;
    }
  }
  @media (max-width: 767px) {
    .person-list .swiper-slide {
      max-width: 153px;
    }
  }
  .detail-intro-body .swiper {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-left: -16px;
    padding: 20px 16px !important;
  }
  
  /*# sourceMappingURL=styles.css.map */
  video{
    height: auto !important;
  }
  @media (max-width: 991px){
    .section__dvnb-tnd-huongdan.fix-mb .box-list-item .item {
      width: calc(100% / 2 - 11px);
  }
 
  }
 