@charset "utf-8";

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
}

/* CSS Variables */
:root {
  --font-size-12: 12px;
  --font-size-14: 14px;
  --font-size-16: 16px;
  --font-size-18: 18px;
  --font-size-20: 20px;
  --font-size-22: 22px;
  --font-size-24: 24px;
  --font-size-28: 28px;
  --font-size-30: 30px;
  --font-size-32: 32px;
  --font-size-38: 38px;
  --PrimaryColor: #003265;
  --SecondaryColor: #20afff;
  --color-1: #111;
  --color-2: #333;
  --color-3: #555;
  --tailwind-50: #eef7ff;
  --tailwind-100: #dcefff;
  --tailwind-200: #b2e1ff;
  --tailwind-400: #20afff;
  --tailwind-800: #004e95;
  --gap04: 0.4rem;
  --gap08: 0.8rem;
  --gap10: 1rem;
  --gap12: 1.2rem;
  --gap16: 1.6rem;
  --gap20: 2rem;
  --gap24: 2.4rem;
  --gap32: 3.2rem;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-16);
  color: var(--color-1);
  line-height: 1.4;
}

.min_wrap {
  width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

/* Utility Classes */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.box-sizing-fix {
  box-sizing: border-box;
}

/* Padding Classes */
.r_p9 {
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.r_p46 {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.r_p6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* Background Container */
.bg_cont {
  background: var(--PrimaryColor) url(../imgs/bg_cont.png) no-repeat center center;
  background-size: cover;
}

.bg_cont .min_wrap {
  min-height: 30rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.til_bg_cont {
  font-family: var(--font-family-2);
  font-weight: 500;
  font-size: var(--font-size-38);
  line-height: 1.2;
  color: #fff;
  max-width: 66.666666%;
}

/* Breadcrumb */
.ul_breacrum {
  display: flex;
  font-size: var(--font-size-14);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6rem;
  margin-bottom: 1rem;
}

.ul_breacrum > li::after {
  font-family: "Font Awesome 7 Pro";
  font-weight: 100;
  content: "\f105";
  font-size: var(--font-size-12);
  margin: 0 1rem 0 0.7rem;
}

.ul_breacrum > li:last-child:after {
  display: none;
}

.ul_breacrum > li > a {
  color: rgba(255, 255, 255, 0.5);
  transition: 0.4s;
}

.ul_breacrum > li > a:hover {
  color: rgba(255, 255, 255, 1);
}

/* Tuyển Dụng - Section TD */
.f_td {
  /* Container for recruitment sections */
}

.r_td_1 {
  background: var(--tailwind-50) url(../imgs/bg_td.png) no-repeat top left;
  background-size: auto 100%;
}

.r_td_1 .min_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap24);
}

/* Left Section */
.l_r_td_1 {
  flex: 1 0 2.4rem;
  padding-right: 2.4rem;
}

.l_r_td_1 .f-detail {
  padding-left: 2.4rem;
  border-left: 0.2rem solid var(--tailwind-800);
}

/* Right Section */
.r_r_td_1 {
  flex: 1 0 2.4rem;
}

.list_r_r_td_1 ul {
  display: flex;
  flex-direction: column;
  gap: var(--gap04);
}

.list_r_r_td_1 ul > li {
  display: flex;
  align-items: center;
  gap: var(--gap12);
  padding: 1.6rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.list_r_r_td_1 ul > li:nth-child(2n) {
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.list_r_r_td_1 ul > li > figure {
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.list_r_r_td_1 ul > li > figure img {
  max-height: 100%;
  object-fit: contain;
}

.list_r_r_td_1 ul > li > span {
  flex: 1;
  font-family: var(--font-family-2);
  color: var(--PrimaryColor);
  font-size: var(--font-size-14);
  font-weight: 500;
  line-height: 2rem;
}

/* Title Sections */
.tit_cont_1 {
  margin-bottom: 2.4rem;
}

.na_til_cont {
  font-family: var(--font-family-2);
  color: var(--PrimaryColor);
  font-size: var(--font-size-38);
  font-weight: 500;
  line-height: 1.2;
}

.tit_cont_2 {
  margin-bottom: 2.4rem;
}

.tit_cont_2 .na_til_cont {
  font-size: var(--font-size-38);
  line-height: 1.25;
}

/* Content */
.note_td {
  padding-top: 2.4rem;
  color: var(--PrimaryColor);
  font-weight: 500;
}

.f-detail {
  color: var(--color-2);
  overflow-x: auto;
}

.f-detail h1,
.f-detail h2,
.f-detail h3,
.f-detail h4,
.f-detail h5,
.f-detail h6 {
  font-family: var(--font-family-2);
}

.f-detail.clearfix ul {
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
  display: grid;
  flex-wrap: wrap;
  gap: 0.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.f-detail.clearfix ul li {
  list-style: none;
  margin-left: 0;
  padding: 1.2rem 1.2rem 1.2rem 3.6rem;
  background-color: var(--tailwind-100);
  font-weight: 500;
  color: var(--PrimaryColor);
  position: relative;
}

.f-detail.clearfix ul li::before {
  position: absolute;
  top: 1.4rem;
  left: 1.2rem;
  content: "";
  background: url(../imgs/logo-3.svg) no-repeat;
  background-size: contain;
  width: 1.6rem;
  height: 1.6rem;
}

/* Section 2 - Job List */
.r_td_2 {
  /* Job opportunities section */
}

.til_cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}

.til_cont .tit_cont_1,
.til_cont .tit_cont_2 {
  margin-bottom: 0;
}

.r_til_cont {
  display: flex;
  align-items: center;
  gap: var(--gap12);
}

.slec_til_cont {
  border: 0;
  font-size: var(--font-size-16);
  color: var(--color-3);
  line-height: 2.2rem;
  padding: 0 2.2rem 0 1.2rem;
  margin-left: -1.2rem;
  background: url(../imgs/icon-01.svg) no-repeat center right;
  background-size: contain;
}

.sty_slec {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  border-radius: 0;
}

/* Table */
.tb_td {
  /* Table container */
}

.table_responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  word-wrap: break-word;
}

.tb_qhcd table {
  width: 100%;
  border: 0;
}

.tb_qhcd table thead {
  color: var(--color-1);
}

.tb_qhcd table thead td {
  padding: 1.2rem;
  border: 0;
  border-bottom: 0.1rem solid #e1e1e1;
  font-weight: 500;
  line-height: 2.2rem;
}

.tb_qhcd table tbody tr {
  transition: 0.6s;
}

.tb_qhcd table tbody tr:hover {
  background-color: var(--tailwind-100);
}

.tb_qhcd table tbody td {
  font-size: 15px;
  padding: 2.4rem 1.2rem;
  border: 0;
  border-bottom: 0.1rem solid #e1e1e1;
}

.center_qhcd {
  text-align: center;
}

.right_qhcd {
  text-align: right;
}

.right_qhcd .ti_cont {
  justify-content: flex-end;
}

.nd_qhcd h3 {
  font-size: var(--font-size-16);
  font-weight: 400;
  color: var(--color-2);
  margin-bottom: 0.4rem;
}

.nd_qhcd h3 a {
  color: var(--color-2);
}

.nd_qhcd h3 a:hover {
  color: var(--PrimaryColor);
}

/* Time Info */
.ti_cont {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: var(--gap12);
  row-gap: var(--gap04);
}

.ti_cont > li {
  display: flex;
  align-items: center;
  gap: var(--gap04);
  font-size: var(--font-size-14);
  color: var(--color-3);
  line-height: 1.6rem;
}

/* Pagination */
.page {
  padding-top: 6rem;
  font-size: var(--font-size-16);
  text-align: center;
}

.PageNum a {
  background-color: #fff;
  display: inline-block;
  color: #222;
  padding: 3px 7px;
  margin: 0px 3px 5px 0px;
  min-width: 30px;
  text-align: center;
  font-size: var(--font-size-16);
}

.PageNum a:hover {
  color: #fff;
  background-color: var(--tailwind-400);
}

.PageNum span {
  background-color: var(--PrimaryColor);
  color: #fff;
  font-weight: 600;
  display: inline-block;
  padding: 3px 7px;
  margin: 0px 3px 5px 0px;
  min-width: 30px;
  text-align: center;
  border: 1px solid #eee;
  font-size: var(--font-size-16);
}

/* Detail Page */
.f_td_D {
  margin-top: 40px;
  /* Detail page container */
}

.r_td_D_1 {
  /* Detail page section 1 */
}

.f_page {
  /* Page container */
}

.f_page .min_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap24);
}

.ct_page {
  flex: 3 0 4.8rem;
  min-width: 0.1rem;
  padding-right: 1.22rem;
}

.sb_page {
  flex: 1;
}

/* Detail Title */
.til_news_D {
  font-family: var(--font-family-2);
  font-size: var(--font-size-38);
  line-height: 1.25;
  margin-bottom: 1.2rem;
  color: var(--PrimaryColor);
}

.bot_til_td_D {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-size-14);
  color: var(--color-3);
  gap: var(--gap08);
  margin-bottom: 1.6rem;
}

/* Share Buttons */
.share_D {
  user-select: none;
  display: flex;
  align-items: center;
}

.list_share_D {
  display: flex;
  align-items: center;
}

.list_share_D > li {
  margin-left: 8px;
}

.list_share_D > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #fff;
  color: var(--color-3);
  border: 1px solid #cfd6e4;
  transition: 0.2s;
}

.list_share_D > li > a:hover {
  color: #fff;
  background-color: var(--SecondaryColor);
  border-color: var(--SecondaryColor);
}

/* Sidebar Detail */
.sb_td_D {
  /* Sidebar sticky container */
}

.sty_sticky {
  position: sticky;
  top: 0;
}

.if_td_D {
  background-color: var(--tailwind-50);
  margin-bottom: 2.4rem;
  padding: 1.6rem;
}

.til_sb_td_D {
  color: var(--PrimaryColor);
  margin-bottom: 1rem;
  font-size: var(--font-size-18);
  font-weight: 600;
}

.list_if_td_D > li {
  display: inline-flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.list_if_td_D > li:last-child {
  margin-bottom: 0;
}

.list_if_td_D > li p {
  padding: 0;
}

/* Apply Button */
.but_fcb_td {
  cursor: pointer;
  border: none;
  margin-top: 2.4rem;
  display: flex;
  gap: var(--gap12);
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  padding: 0.4rem 0.4rem 0.4rem 1.2rem;
  background-color: var(--PrimaryColor);
  color: #fff;
  line-height: 2.2rem;
  transition: 0.2s;
}

.but_fcb_td span {
  background-color: var(--SecondaryColor);
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: var(--font-size-16);
  transition: 0.2s;
}

.but_fcb_td:hover {
  background-color: var(--tailwind-800);
}

/* Application Form */
.fcb_td {
  display: none;
  width: 50rem;
  max-width: 100%;
  background-color: #fff;
  border-radius: 2rem;
}

.fcb_td .but_contact {
  width: 100%;
}

.t_fcb_td {
  text-transform: uppercase;
  font-size: var(--font-size-20);
  text-align: center;
  color: var(--PrimaryColor);
}

/* Form Elements */
.ul_r_f_contact {
  user-select: none;
}

.ul_r_f_contact > li {
  position: relative;
  margin-top: 1.6rem;
}

.ipt_f_contact {
  width: 100%;
  height: 44px;
  border: 1px solid #ddd;
  background-color: #fff;
  padding: 0 54px 0 15px;
  font-size: var(--font-size-16);
  transition: 0.4s;
  border-radius: 0.4rem;
}

.icon_r_f_contact {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 42px;
  height: 42px;
  text-align: center;
  line-height: 42px;
  border-left: 1px solid #ddd;
  color: #888;
  font-size: var(--font-size-16);
  z-index: 1;
  transition: 0.4s;
}

.txt_f_contact {
  font-size: var(--font-size-16);
  width: 100%;
  height: 120px;
  min-height: 100px;
  resize: vertical;
  padding: 14px 15px;
  border: 1px solid #ddd;
  transition: 0.4s;
  border-radius: 0.4rem;
}

.slec_r_f_contact {
  font-size: var(--font-size-16);
  width: 100%;
  height: 44px;
  border: 1px solid #ddd;
  color: var(--color-2);
  background: #fff url(../imgs/icon_0.png) no-repeat center right 15px;
  padding: 0 54px 0 15px;
  transition: 0.4s;
  border-radius: 0.4rem;
}

.ipt_f_contact:focus,
.ipt_f_contact:focus ~ .icon_r_f_contact,
.txt_f_contact:focus,
.slec_r_f_contact:focus,
.slec_r_f_contact:focus ~ .icon_r_f_contact {
  border-color: var(--PrimaryColor);
  color: var(--PrimaryColor);
}

.ipt_f_contact::placeholder,
.txt_f_contact::placeholder {
  color: var(--color-2);
}

.but_contact {
  user-select: none;
  margin-top: 1.2rem;
  border: 0;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  padding: 14px 30px;
  font-weight: 600;
  font-size: var(--font-size-16);
  color: #fff;
  text-transform: uppercase;
  transition: 0.3s;
  background-color: var(--PrimaryColor);
  border-radius: 4px;
}

.but_contact:hover {
  opacity: 0.9;
}

.but_contact:focus,
.but_contact:active {
  background-color: var(--tailwind-800);
}

/* Other Jobs Section */
.other_D {
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, var(--tailwind-50) 100%);
}

/* Responsive */
@media only screen and (max-width: 1279px) and (min-width: 1024px) {
  :root {
    --font-size-38: clamp(32px, 4vw, 38px);
    --gap24: 2rem;
  }
  .min_wrap {
    max-width: 100%;
    padding-right: 2.4rem;
    padding-left: 2.4rem;
  }
}

@media only screen and (max-width: 1023px) {
  :root {
    --font-size-38: clamp(32px, 4vw, 38px);
    --gap24: 2rem;
  }
  .min_wrap {
    max-width: 100%;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .r_p6,
  .r_p9 {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }
  .r_p46 {
    padding-top: 2.4rem;
    padding-bottom: 3.2rem;
  }
  .bg_cont .min_wrap {
    min-height: inherit;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .til_bg_cont {
    max-width: 100%;
  }
  .ct_page {
    padding-right: 0;
  }
}

@media only screen and (max-width: 640px) {
  :root {
    --gap24: 1.6rem;
  }
  .min_wrap {
    padding-right: 1.6rem;
    padding-left: 1.6rem;
  }
  .r_p46 {
    padding-top: 2rem;
    padding-bottom: 3.2rem;
  }
  .r_p6,
  .r_p9 {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
  .bg_cont .min_wrap {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
  .r_td_1 {
    background-position: bottom left;
    background-size: contain;
  }
  .l_r_td_1 {
    padding-right: 0;
    margin-bottom: 1.6rem;
  }
  .list_r_r_td_1 ul > li {
    background: none !important;
    border-bottom: 0.1rem dotted var(--tailwind-200);
  }
  .list_r_r_td_1 ul > li:last-child {
    border-bottom: 0;
  }
  .f_td .table_responsive td,
  .f_td .table_responsive th {
    white-space: nowrap;
  }
  .ul_breacrum {
    display: none;
  }
  .but_contact {
    width: 100%;
  }
  .nd_qhcd h3 {
    font-size: var(--font-size-16);
  }
}

@media only screen and (max-width: 480px) {
  .f-detail.clearfix ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 640px) {
  .l_r_td_1 {
    flex-basis: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .ct_page {
    flex-basis: 100%;
  }
}
