/* Reset */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Variables */
:root {
  --color-blue: #0047A0;
  --color-dark-blue: #202C57;
  --color-red: #CD2E3A;
  --color-black: #1A1A1A;
  --color-white: #FFFFFF;
  --color-gray: #F4F4F4;
  --color-gradient: linear-gradient(90deg, #0047A0 0%, #202C57 100%);
}

/* Fonts */
@font-face {
  font-family: 'SFUFuturaMedium';
  src: url('../libs/webfonts/SFUFuturaMedium.TTF') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'SFUFuturaBold';
  src: url('../libs/webfonts/SFUFuturaBold.TTF') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'SFUFuturaBook';
  src: url('../libs/webfonts/SFUFuturaBook.TTF') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'SFUFuturaHeavy';
  src: url('../libs/webfonts/SFUFuturaHeavy.TTF') format('truetype');
  font-weight: bold;
  font-style: normal;
}

/* Global */
body {
  font-family: 'SFUFuturaBook', sans-serif;
  font-size: 16px;
  line-height: 20px;
  display: block;
  color: var(--color-black);
}

[id^="section-service-"] {
  scroll-margin-top: 150px;
  /* cách top 100px */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.title-section span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-blue);
  text-transform: uppercase;
}

.title-section label {
  color: var(--color-red);
  text-align: center;
  margin-bottom: 2.5rem;
  display: block;
}


.title-heading {
  font-family: 'SFUFuturaBold', sans-serif;
  font-size: 2rem;
  line-height: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--color-dark-blue);
}

.limit-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.limit-text-1 {
  -webkit-line-clamp: 1;
}

.limit-text-2 {
  -webkit-line-clamp: 2;
}

.limit-text-3 {
  -webkit-line-clamp: 3;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.flex {
  display: flex;
}

.block {
  display: block;
}

.grid {
  display: grid;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

/* BACKGROUND */
.bg-01 {
  background-image: url('../images/background-01.jpg');
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
  background-repeat: no-repeat;
}

.bg-02 {
  background-image: url('../images/background-02.png');
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
  background-repeat: no-repeat;
}

.bg-03 {
  background-image: url('../images/background-04.png');
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
  background-repeat: no-repeat;
}

.bg-04 {
  background-image: url('../images/background-03.jpg');
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
  background-repeat: no-repeat;
}

/* Header */
.header {
  background: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  /* padding: 1rem 0; */
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 48px;
}

.nav {
  display: flex;
  align-items: center;
}

.nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav ul li {
  margin: 0 .5rem;
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
}

.nav ul li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-blue);
  transition: width 0.2s;
}

.nav ul li:last-child {
  margin-right: 0rem;
}

.nav ul li a {
  text-decoration: none;
  color: var(--color-black);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.2s;
  cursor: pointer;
}

.nav ul li.current-menu-item::after,
.nav ul li.current-menu-parent::after,
.nav ul li:hover::after {
  width: 100%;
}

.nav ul li.current-menu-item>a,
.nav ul li.current-menu-parent>a,
.nav ul li:hover>a {
  color: #0056b3;
  font-weight: 600;
}

.nav ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: block;
  min-width: 200px;
  height: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}

.nav ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav ul.sub-menu li {
  height: auto;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
  padding: 0.2rem;
}

.nav ul.sub-menu li a {
  font-size: 14px;
}

.nav ul.sub-menu li:not(:last-child) {
  border-bottom: 2px solid var(--color-blue);
}

.nav ul.sub-menu li::after,
.cv-now::after {
  display: none;
}


.language {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--color-black);
  padding: 4px;
  border-radius: 40px;
  margin-left: 1.2rem;
  width: fit-content;
}

.language img {
  height: 24px;
}

.language select {
  border: none;
  outline: none;
  box-shadow: none;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  background: transparent;
}

/* Banner */
.hero-swiper .swiper-wrapper {
  height: auto !important;
}

.hero-slide {
  height: 530px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  padding-bottom: 3rem;
}

/* .hero-slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0), #000);
} */

.hero-slide a {
  display: block;
  height: 100%;
  z-index: 1;
  position: relative;
  width: 100%;
}

.hero-content {
  width: 50%;
  color: var(--color-white);
  text-align: center;
  line-height: 2rem;
  position: relative;
  z-index: 2;
}

.hero-swiper .swiper-pagination-bullet {
  background: var(--color-white);
  opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: transparent;
  border: 1px solid var(--color-white);
  height: 10px;
  width: 10px;
}

.hero-swiper .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Recruitment */
.form-recruitment .group-form {
  background: #abb8c359;
}

.form-recruitment .title {
  background: var(--color-gradient);
  padding: 1rem;
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: 600;
}

.form-recruitment .field {
  padding: 1.5rem 4rem;
}

.form-recruitment .field-inner {
  margin-bottom: 1rem;
}

.field-inner .required {
  color: var(--color-red);
}

.form-recruitment .field .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.field-inner label {
  display: block;
  font-weight: 600;
  margin-bottom: .6rem;
}

.field-inner input,
.field-inner select,
.field-inner textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  outline: none;
  box-shadow: none;
  background: var(--color-white);
  border: 1px solid #bdbdbd;
  height: 40px;
  color: var(--color-black);
}

.field-inner textarea {
  height: 150px;
}

.field-inner br {
  display: none;
}

.add-another {
  padding: 0rem 4rem;
}

.add-another button {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--color-blue);
  font-weight: 600;
  padding: 1rem;
  border-top: 1px solid var(--color-blue);
  margin: 0 auto;
  text-align: center;
  cursor: pointer;
}

.form-recruitment .file-image {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-recruitment .korea-language-field {
  display: flex;
}

.form-recruitment .note {
  color: var(--color-red);
}

.drag-file-area .upload-button {
  background: var(--color-red);
  color: var(--color-white);
  padding: 0.7em 1.5em;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  position: relative;
  flex: none;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.drag-file-area label {
  margin-bottom: 0 !important;
}

.file-preview {
  color: var(--color-red);
}

.default-file-input {
  display: none;
}

input::placeholder,
textarea::placeholder {
  font-size: 0.9rem;
  color: var(--color-black);
  opacity: .6;
  text-transform: uppercase;
}

.search-form-qa {
  max-width: 30%;
  margin: 2rem auto;
}

#qaForm .buttons {
  gap: 1rem;
}

/* CONTACT */
.form-contact-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.form-contact-inner .text a {
  display: block;
}

.form-contact-inner .text .logo {
  width: 210px;
}

.form-contact-inner .text p {
  margin-bottom: 2rem;
  line-height: 2rem;
}


.form-contact-inner .text ul li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.form-contact .field-inner {
  margin-bottom: 1rem;
}

/* ABOUT */

.section-about .about-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.section-about .about-image {
  position: relative;
}

.section-about .about-image .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff9c;
  border-radius: 50%;
  padding: 10px;
  transition: background 0.3s ease;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#dialog-content {
  width: 80%;
  height: 80%;
  display: none;
}

#dialog-content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-about .about-image .img {
  width: 100%;
  height: 100%;
  border-left: 3px solid var(--color-red);
  padding-left: 1rem;
}

.section-about .about-text span {
  color: var(--color-blue);
  font-weight: 600;
}

.section-about .about-text h2 {
  color: var(--color-dark-blue);

}

.section-about .about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8rem;
  color: var(--color-black);
}

.section-about .about-list li {
  display: flex;
  gap: 8px;
  list-style: none;
}

.section-about .about-list li img {
  height: 35px;
  width: 35px;
}

.section-about .about-list h3 {
  font-size: 1rem;
  color: var(--color-blue);
  font-weight: 600;
  margin-bottom: .5rem;
}

/* PARTNERS */
.section-partner {
  padding: 4rem 0;
}

.partner-content .title-heading {
  max-width: 70%;
  margin: 0 auto 2rem auto;
}

.title-section p {
  max-width: 80%;
  margin: 0 auto 1rem auto;
  line-height: 1.6rem;
}

.line {
  width: 30%;
  height: 4px;
  background: var(--color-red);
  margin: 0 auto 2rem auto;
}

.partner-card {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.partner-card .card {
  position: relative;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  padding: 40px 16px 16px;
  text-align: center;
  margin: 40px auto;
}

.partner-card .card-number {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--color-white);
  color: var(--color-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
}

.partner-card .card h3 {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.4;
}

.partner-card .card p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* SERVICES */
.section-service {
  padding-bottom: 10rem;
}

.service-swiper,
.gallery-swiper {
  padding-bottom: 2rem;
}

.service-swiper .swiper-pagination-bullet,
.gallery-swiper .swiper-pagination-bullet {
  height: 5px;
  width: 25px;
  border-radius: 0;
  background: transparent;
  opacity: 1;
}

.service-swiper .swiper-pagination-bullet {
  border: 1px solid var(--color-red);
}

.gallery-swiper .swiper-pagination-bullet {
  border: 1px solid var(--color-white);
}

.service-swiper .swiper-pagination-bullet-active {
  background: var(--color-red);
}

.gallery-swiper .swiper-pagination-bullet-active {
  background: var(--color-white);
}

.service-swiper .swiper-pagination-bullet-active,
.gallery-swiper .swiper-pagination-bullet-active {
  border: none;
}

.service-content .title-section span {
  color: var(--color-blue);
}

.service-content .title-heading {
  color: var(--color-dark-blue);
  max-width: 70%;
}

.service-gallery {
  padding: 1rem 2rem 0 2rem;
}

.service-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.service-card {
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0), #000);
}

.service-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.service-text-inner {
  position: relative;
  background: transparent;
  padding: 12px 24px;
  transition: background 0.3s ease-in-out;
}

.service-text h3 {
  font-size: 1.3rem;
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 0.5rem;
  border-left: 2px solid var(--color-red);
  padding-left: 1rem;
  line-height: 2rem;
}

.service-text p {
  margin-bottom: 1.5rem;
}

.service-text p,
.service-text .btn-text {
  display: none;
  transition: display 0.3s ease-in-out;
  max-width: 70%;
}

.service-card:hover .service-text {
  bottom: 1.5rem;
}

.service-card:hover .service-text-inner {
  background: var(--color-white);

}

.service-card:hover .service-text p,
.service-card:hover .service-text .btn-text {
  display: block;
}

.service-card:hover .service-text h3 {
  color: var(--color-blue);
  border-left: none;
  padding-left: 0;
  font-size: 1.2rem;
  line-height: 1.5rem;
}

.service-card:hover .service-text-inner::after {
  content: '';
  position: absolute;
  right: 0px;
  top: 0;
  transform: skew(-20deg);
  transform-origin: top right;
  background: #0048a071;
  height: 100%;
  width: 30px;
}

.swiper-wrapper {
  height: auto !important;
}

.hero-page .hero__content {
  width: 100%;
  height: 250px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.hero-page .hero__content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #202c57d9;
}

.hero-page .hero__text {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: var(--color-white);
}

.hero-page .hero__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.5rem;
  margin-bottom: .5rem;
  text-align: center;
}

.hero-page .hero__text ol {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-page .hero__text ol li a,
.hero-page .hero__text ol li span {
  color: var(--color-white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}

.section-list-field:not(:last-child) {
  padding: 4rem 0 12rem 0;
}

.section-list-field .service-top {
  display: grid;
  gap: 3rem;
}


.section-list-field-light .service-top {
  grid-template-columns: 1fr 2fr;
}

.section-list-field-dark .service-top {
  grid-template-columns: 2fr 1fr;
}

.section-list-field-dark .list-item img {
  filter: invert(1);
}

.section-list-field .service-top .image {
  margin-bottom: -6rem;
  position: relative;
  top: -9rem;
}

.section-list-field-light .service-top .image {
  order: 2;
}


.section-list-field .service-top .image img {
  width: 100%;
  height: 370px;
  object-fit: cover;
}

.section-list-field .service-top .text h3 {
  font-size: 2rem;
  /* color: var(--color-white); */
  line-height: 2.2rem;
  border-left: 2px solid var(--color-red);
  padding-left: 16px;
  margin-bottom: 1.5rem;
}

.section-list-field .service-top .counter {
  gap: 6px;
}

.section-list-field .service-top .number {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: .3rem;
}

.section-list-field-light .service-top .text {
  order: 1;
  text-align: right;
}

.section-list-field-light .service-top .text h3 {
  border-left: none !important;
  border-right: 2px solid var(--color-red);
  padding-left: 0;
  padding-right: 1rem;
  color: var(--color-dark-blue);
}

.section-list-field-light .service-top .counter {
  justify-content: flex-end;
}

.section-list-field .lists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.section-list-field .lists img {
  height: 80px;
}

.section-list-field .lists .list-text {
  text-transform: uppercase;
}

.section-list-field .lists .list-text-sub {
  font-size: 14px;
}

.section-list-field-light .list-text {
  color: var(--color-blue);
}

/* COUNTER */
.section-counter .counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.section-counter .counter {
  gap: 12px;
}

.section-counter .image {
  margin-top: -9rem;
  box-shadow: rgb(235 225 225 / 21%) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.section-counter .image img {
  width: 100%;
}

.section-counter .counter-image img {
  width: 60px;
}

.section-counter .counter-item {
  color: var(--color-white);
}

.section-counter .counter-item .number {
  font-size: 3rem;
  font-weight: 600;
  line-height: 3.5rem;
  margin-bottom: 1rem;
}

/* NEWS */
.news-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card .thumbnail img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.news-card-item {
  position: relative;
}



.news-card .text {
  position: relative;
  background: var(--color-white);
  width: 94%;
  margin: 0 auto;
  margin-top: -3rem;
}

.news-card .text-heading {
  padding: .7rem 1rem 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-dark-blue);
}

.news-card .author,
.news-card .comment {
  padding-bottom: .7rem;
  font-size: 14px;
}

.news-card .date {
  width: 60px;
  height: 60px;
  background: var(--color-blue);
  font-weight: 600;
  color: var(--color-white);
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-top: -1.5rem;
}

.news-card .text-body {
  padding: 1.5rem 1rem;
}

.news-card .text-body h2 {
  font-size: 20px;
  line-height: 1.5rem;
  margin-bottom: 1rem;
  min-height: 48px;
}

.news-card .text-body h2 a {
  text-decoration: none;
  color: var(--color-black);
  transition: color all 0.2s;
}

.news-card-item:hover .text-body h2 a {
  color: var(--color-red);
}

.news-card .text-body p {
  font-size: 14px;
  margin-bottom: 1rem;
}

select option {
  color: var(--color-black);
  background: var(--color-white);
}

.search-title {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 3rem;
}

/* SLDIER */
.section-slide {
  background-color: var(--color-blue);
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.marquee .marquee-inner {
  display: inline-flex;
  animation: marquee 15s linear infinite;
}

.marquee .marquee-inner-partner {
  display: inline-flex;
  animation: marquee-partner 20s linear infinite;
}

.marquee:hover .marquee-inner,
.marquee:hover .marquee-inner-partner {
  animation-play-state: paused;
}

.marquee-partner {
  background-color: #afb5cb14;
  margin: 1.5rem 0;
}

.marquee-partner span {
  text-transform: uppercase;
  color: var(--color-dark-blue);
  margin-right: 2rem;
  font-size: 1.5rem;
  font-family: 'SFUFuturaBold', sans-serif;
}

.marquee img {
  height: 40px;
  /* chỉnh kích thước theo ý bạn */
  margin-right: 20px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

}

@keyframes marquee-partner {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

}

.section-member {
  padding-bottom: 10rem;
}

.member-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.member-content .text {
  background: var(--color-white);
  padding: 1.5rem;
  box-shadow: rgb(235 225 225 / 21%) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.member-content .image {
/* 	position: relative;
	height: 400px; */
	position: relative;
    height: 0;
    width: 100%;
    padding-top: 130%;
}

.member-content .image img.thumbnail {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
/* 	width: 100%;
	height: 100%;
	object-fit: cover; */
}

.member-content .image .share {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--color-white);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-content .image .share::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  display: block;
  background: var(--color-blue);
}

.member-content .text h3 {
  font-size: 1.3rem;
  color: var(--color-dark-blue);
  font-weight: 600;
  margin-bottom: .5rem;
}

.member-content .text a {
	text-decoration: underline !important;
}

.member-content .text h3 span {
  font-size: 14px;
  color: var(--color-blue);
  font-weight: 400;
}

.member-content .position {
  font-size: 14px;
  color: var(--color-red);
  font-weight: 600;
}



/* CONTACT */
.section-contact {
  padding: 2rem 0;
}

.contact-inner {
  gap: 2rem;
}

.our-profile {
  gap: 6px;
}

.our-profile p {
  font-size: 14px;
  color: var(--color-blue);
  font-weight: 600;
}

/* PAGE DEFAULT */
.page-default {
  padding: 4rem 0;
}

.page-default .entry-title {
  text-align: center;
  font-size: 2rem;
  color: var(--color-dark-blue);
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 2rem;
}

.page-default .entry-content {
  line-height: 2rem;
}

.page-default .entry-content h2,
.page-default .entry-content h3 {
  font-size: 1.5rem;
  color: var(--color-dark-blue);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 2rem;
}

.page-default .entry-content p {
  margin-bottom: 1rem;
}

/* FOOTER */
footer {
  background-image: url('../images/background-05.png');
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  padding: 4rem 0 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-main h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: 400;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.footer-links ul li a,
.footer-contact ul li a {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo img {
  width: 200px;
  margin-bottom: 1.5rem;

}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  background: #202c579c;
  color: var(--color-white);
  padding: 1rem 0;
  text-align: center;
  font-size: 14px;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.footer-bottom a {
  color: var(--color-white);
  text-decoration: none;
}

.footer .language {
  margin-bottom: 1.5rem;
  margin-left: 0;
  width: fit-content;
  border-color: var(--color-white);
  color: var(--color-white);
}

.footer .language select {
  color: var(--color-white);
}

/* PAGE ABOUT */
.section-about-e7 {
  padding: 0;
  padding-right: calc((100vw - 1200px) / 2);
}

.section-about-e7 .about-content {
  display: flex;
  gap: 2rem;
  position: relative;
}

/* Bên trái: hình ảnh */
.section-about-e7 .about-content .image {
  flex: .6;
  transform: skewX(-5deg);
  overflow: hidden;
  position: relative;
  border-right: 3px solid var(--color-red);
  padding-right: 10px;
}

.section-about-e7 .about-content .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bên phải: nội dung */
.section-about-e7 .about-content .text {
  flex: 1.2;
  padding: 4rem 2rem;
}

.section-about-e7 .tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--color-blue);
}

.section-about-e7 .tab {
  padding: 10px 20px;
  color: var(--color-white);
  background: var(--color-blue);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.section-about-e7 .tab:not(:last-child) {
  border-right: 1px solid var(--color-white);
}

.section-about-e7 .tab.active {
  background: var(--color-white);
  color: var(--color-blue);
}

.section-about-e7 .content-box {
  margin-top: 20px;
}

.section-about-e7 .content-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.section-about-e7 .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  animation: fadeIn 0.4s ease;
}

.section-about-e7 .content-text {
  background: var(--color-white);
  padding: 3rem 2rem;
  width: 100%;
}

.section-about-e7 .content-text ul li:not(:last-child) {
  margin-bottom: 1rem;
}

.section-about-e7 .content-text h3 {
  font-size: 20px;
  line-height: 1.5rem;
  color: var(--color-blue);
  margin-bottom: 1.5rem;
  position: relative;
}

.section-about-e7 .content-text h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--color-blue);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-partner-e7 .partner-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.section-partner-e7 .partner-content .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-partner-e7 .partner-content .image {
  box-shadow: rgb(235 225 225 / 21%) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  border-right: 2px solid var(--color-red);
  padding-right: 1rem;
}

.section-partner-e7 .partner-content .text {
  word-break: break-word;
  color: var(--color-white);
}

.section-partner-e7 .partner-content .text p {
  margin-bottom: 1rem;
  line-height: 1.5rem;
}

.section-platform .partner-content .image {
  box-shadow: rgb(235 225 225 / 21%) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  border-left: 2px solid var(--color-red);
  border-right: none;
  padding-left: 1rem;
  padding-right: 0;
}

.section-platform .cta {
  margin-top: 3rem;
}

/* PAGE VISA */
.section-about-visa .content-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.section-about-visa .content {
  display: flex;
  gap: 10px;
  align-items: center;
}

.section-about-visa .content-box img {
  width: auto !important;
  height: 80px !important;
  object-fit: cover;
}

.section-about-visa .content-box .content {
  border: 1px solid var(--color-blue);
  padding: 1rem;
  color: var(--color-blue);
}


.section-about-visa .content-box .content:nth-child(2),
.section-about-visa .content-box .content:nth-child(3) {
  background: var(--color-blue);
  color: var(--color-white);
}

.section-about-visa .content-box .content:nth-child(2) img,
.section-about-visa .content-box .content:nth-child(3) img {
  filter: invert(1);
}

.section-about-visa .content-text {
  padding: 0;
  background: transparent;
}

.service-visa {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.page-template-cv-now .section-slide,
.page-template-cv-now .marquee,
.page-template-cv-now .section-contact,
.page-template-question-answer .section-slide,
.page-template-question-answer .marquee,
.page-template-question-answer .section-contact {
  display: none;
}

.section-overview {
  padding-top: 0;
}

.section-overview .service-content {
  border-top: 1px solid var(--color-blue);
  padding-top: 3rem;
}

.overview-visa .qa-question-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-gradient);
  padding: 1rem;
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: 600;
}

.overview-visa .qa-item {
  background: #abb8c359;
  margin-bottom: 1.5rem;
}

.overview-visa .qa-answer {
  padding: 1.5rem 4rem;
}

.overview-visa .qa-answer ul,
.overview-visa .qa-answer ol {
  padding-left: 20px;
  margin-bottom: 1rem;
}

.overview-visa .qa-answer ul li:not(:last-child),
.overview-visa .qa-answer ol li:not(:last-child),
.overview-visa .qa-answer p {
  margin-bottom: 1rem;
}


.overview-visa .qa-item .toggle-overview {
  transition: all 0.3s ease-in-out;
}

.overview-visa .qa-item.open .toggle-overview {
  transform: rotate(180deg);
}

/* QA */
.list-qa {
  border-top: 1px solid var(--color-blue);
  padding-top: 1.5rem;
}

#list-qa-container {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background: var(--color-white);
}

.ajax-pagination {
  text-align: center;
  margin-top: 2rem;
  cursor: pointer;
}

.ajax-pagination button {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  color: var(--color-black);
  font-weight: 600;
}

.list-qa .list-qa-content .qa-question-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 4px;
}

.list-qa-content .qa-question-header strong span {
  color: #949494;
  font-size: 14px;
}

.list-qa-content .question {
  color: var(--color-blue);
  font-weight: 600;
}


.list-qa-content .answer {
  color: var(--color-red);
  font-weight: 600;
}

.list-qa-content .qa-answer {
  display: flex;
  align-items: center;
  gap: 6px;

}

.list-qa-content .qa-item .toggle-answer {
  color: var(--color-red);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.list-qa-content .qa-item.open .toggle-answer {
  color: #bdbdbd;
}

.list-qa-content .qa-item.open .qa-question {
  padding-bottom: 1rem;
}

.list-qa-content .qa-item {
  padding: 1rem 2rem;
}

.list-qa-content .qa-item:nth-child(even) {
  background: #abb8c359;
}

/* Mobile */
.navigation,
.sidebar {
  display: none;
  cursor: pointer;
}

.navigation .icon-menu {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--color-black);
  cursor: pointer;
  z-index: 101;
}

.navigation .close-menu {
  display: none;
}

.navigation.show .close-menu {
  display: block;
}

.navigation.show .open-menu {
  display: none;
}

/* SINGLE */
.single-page {
  padding: 2rem 0;
}

.single-page .content {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 24px;
  /* background: var(--color-white); */
  /* padding: 0 27px 27px 27px; */
}

.single-page .entry-title {
  font-size: 2rem;
  color: var(--color-dark-blue);
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 2.5rem;
}

.sidebar-program .field-inner {
  padding: 1rem;
  background: #d0d7dd;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.sidebar-program ul li {
  list-style: none;
  border: 1px solid #afafaf;
  padding: 12px;
  border-radius: 4px;
  background: var(--color-white);
  transition: all 0.3s ease-in-out;
}

.sidebar-program ul li:hover {
  background: var(--color-blue);
}

.sidebar-program ul li:not(:last-child) {
  margin-bottom: 1rem;
}

.sidebar-program ul li a {
  text-decoration: none;
}

.sidebar-program ul li h2 {
  color: var(--color-black);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3rem;
  transition: all 0.3s ease-in-out;
}

.sidebar-program ul li:hover h2 {
  color: var(--color-white);
}

.single-page .header-top {
  margin-bottom: 1rem;
}

.single-page .header-top p {
  color: #716e6e;
  font-size: 14px;
}

.single-page .entry-content {
  line-height: 1.8rem;
  word-break: break-word;
}

.single-page .entry-content img {
  max-width: 100%;
  margin-bottom: 1rem;
  border-radius: 4px;
}


.single-page .entry-content p {
  margin-bottom: 1rem;
}

.single-page .entry-content ul {
  padding-left: 20px;
}

.single-page .content .right .related h3 {
  color: var(--color-blue);
  font-weight: 600;
  width: 100%;
  margin-bottom: 1rem;
}

.single-page .content .right .related__content ul li a {
  display: flex;
  gap: 18px;
  color: var(--color-black);
  text-decoration: none;
}

.single-page .content .right .related__content ul {
  list-style: none;
}

.single-page .content .right .related__content ul li:not(:last-child) {
  border-bottom: 1px solid #fafafa;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.single-page .content .right .related__content .thumnail {
  height: 107px;
  width: 40%;
  flex: none;
}

.single-page .content .right .related__content .thumnail img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.single-page .content .right .related__content .title h2 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.single-page .content .right .related__content .title p {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #a7a0a0;
}

/* Buttons */
.btn {
  padding: 0.7em 1.5em !important;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s;
  text-transform: uppercase;
  display: inline-block;
  border: none;
  outline: none;
  cursor: pointer;
}

.btn-reset {
  background: #5a5a5a;
  color: var(--color-white);
}

.btn-submit {
  background: var(--color-gradient);
  color: var(--color-white);
}

.btn-submit:disabled {
  background: #5a5a5a69;
  color: var(--color-white);
  cursor: not-allowed;
}

.btn-primary {
  background: var(--color-blue);
  color: var(--color-white);
}

.cv-now a {
  background: var(--color-blue);
  color: var(--color-white) !important;
  padding: 0.7em 1.5em !important;
  font-size: 14px !important;
}

.btn-secondary {
  background: var(--color-red);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-red);
}

.btn-cv {
  background: var(--color-red);
  color: var(--color-white);
  position: relative;
  flex: none;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-read-more {
  background: var(--color-blue);
  color: var(--color-white);
  position: relative;
  flex: none;
}

.btn-read-more::after {
  content: '';
  position: absolute;
  right: 0px;
  top: 0;
  transform: skew(-20deg);
  transform-origin: top right;
  background: var(--color-white);
  height: 101%;
  width: 10px;
}

.btn-read-more:hover {
  background: var(--color-red);
}

.btn-profile {
  background: var(--color-blue);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  flex: none;
  min-width: 170px;
}

.btn-profile:hover {
  background: var(--color-red);
}

.btn-text {
  color: var(--color-red);
  padding: 0;
  text-decoration: none;
  transition: color 0.2s;
}

.captcha-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

/* swiper */
.swiper-button-next,
.swiper-button-prev {
  height: 40px;
  width: 40px;
  background: var(--color-white);
  border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  color: var(--color-black);
  font-weight: 600;
}

@media (max-width: 1160px) {
  .nav ul li {
    margin: 0 0.4rem;
  }

  .nav ul li a {
    font-size: 13px;
  }

  .logo img {
    width: 120px;
  }
}


@media (max-width: 1062px) {
  .nav ul li a {
    font-size: 0.75rem;
  }
}

@media (max-width: 970px) {

  .header .container {
    height: 70px;
  }

  .navigation,
  .sidebar {
    display: block;
  }

  .nav {
    display: none;
  }

  aside {
    position: fixed;
    HEIGHT: 100%;
    top: 0;
    left: 0;
    background: var(--color-white);
    z-index: 100;
    padding: 2rem;
    width: 70%;
    transform: translateX(-100%);
    transition: transform 0.2s ease-in-out;
  }

  aside.show {
    transform: translateX(0);
  }

  aside ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  aside ul.sub-menu {
    padding: 1rem 0 0 2rem;
  }

  aside ul.sub-menu li {
    list-style: disc;
  }

  aside ul.sub-menu li:not(:last-child) {
    margin-bottom: 10px;
  }

  aside ul li {
    margin-bottom: 1.5rem;
  }

  aside ul li a {
    text-decoration: none;
    color: var(--color-black);
    font-size: 1rem;
  }

  aside .language {
    margin: 0;
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {

  .search-form-qa {
    max-width: 100%;
  }

  #qaForm .buttons {
    flex-direction: column;
    align-items: start;
  }

  .list-qa-content .qa-item {
    padding: 1rem;
  }

  .nav ul li {
    margin: 0 0.5rem;
  }

  .hero-slide {
    height: 300px;
    padding-bottom: 1.5rem;
  }

  .hero-content {
    width: 90%;
    font-size: 0.9rem;
    line-height: 1.5rem;
  }

  .title-section {
    flex-direction: column;
    align-items: start;
    margin-bottom: 1.5rem;
  }

  .title-heading {
    font-size: 1.5rem;
  }

  .section-about .about-content,
  .news-card,
  .footer-main,
  .section-about-e7 .content,
  .section-partner-e7 .partner-content,
  .member-content,
  .service-visa,
  .form-recruitment .field .row,
  .form-contact-inner,
  .single-page .content {
    grid-template-columns: 1fr;
  }

  .form-recruitment .field .row {
    gap: 0;
  }

  .section-counter .counters {
    justify-content: center;
    grid-template-columns: repeat(2, 1fr);
  }

  .section-counter .counter-item .number {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .partner-content .title-heading,
  .title-section p,
  .service-content .title-heading {
    max-width: 100%;
  }

  .partner-card,
  .section-list-field .lists {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-card .card {
    margin: 15px auto;
  }

  .section-list-field .service-top {
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
  }

  .section-list-field-light .service-top .image {
    order: 1;
  }

  .section-list-field-light .service-top .text {
    order: 2;
    text-align: left;
  }

  .section-list-field-light .service-top .text h3 {
    border-left: 2px solid var(--color-red) !important;
    border-right: none;
    padding-left: 1rem;
    padding-right: 0;
    text-align: left;

  }

  .section-list-field-light .service-top .counter {
    justify-content: flex-start;
  }

  .section-list-field .service-top .image {
    margin-bottom: -9rem;
  }

  .section-about-e7 .about-content,
  .form .korea-language-field {
    flex-direction: column;
  }

  .section-about-e7 .about-content .text {
    padding: 2rem 1rem;
  }

  .section-about-visa .content-box img {
    height: 30px !important;
  }

  .form-recruitment .field {
    padding: 1.5rem;
  }

  .cv .buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cv .buttons button {
    width: 100%;
  }

  .single-page .entry-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .overview-visa .qa-answer {
    padding: 1rem;
  }

}