/* Base Styles */

:root {
  --primary-color: rgba(43, 50, 152, 1);
  --secondary-color: rgba(98, 96, 156, 1);
  --white-color: rgb(255, 255, 255);
  --hover-color: rgb(43 50 152);
  --button-bg-color: rgba(48.95, 54.14, 126.86, 1);
  --button-hover-color: rgb(40, 44, 105);
  --color-tuyengap: rgb(253, 30, 86);
}

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

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.text-white {
  color: var(--white-color);
}

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.border-radius-8 {
  border-radius: 8px;
}

.border-radius-20 {
  border-radius: 20px;
}

.border-radius-40 {
  border-radius: 40px;
}

/* SCROOL HEADER  */

.header {
  position: relative;
  width: 100%;
  transition: transform 0.3s ease, top 0.3s ease;
}

.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header.hidden {
  transform: translateY(-100%);
}

/* END SCROOL HEADER  */

/* HEADER */

.header {
  width: 100%;
  background-color: rgba(43, 50, 152, 1);
  padding: 20px 0;
}

.header__container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

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

.header__logo-link {
  display: inline-block;
}

.header__logo-img {
  width: 207px !important;
  height: 34px !important;
}

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

.header__nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.header__nav-item a {
  margin: 0 10px;
  color: white;
}

.header__nav-link {
  font-size: 16px;
  line-height: 1;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.header__nav-link:hover {
  color: #ffca28;
}

/* Ẩn menu con mặc định */

.header__nav-item--dropdown .dropdown-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  background-color: #283593;
  list-style: none;
  padding: 0px;
  margin: 10px 0px 0px;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  /* transform: translateY(10px); */
  z-index: 11;
  min-width: 220px;
  max-width: 300px;
  white-space: normal;
  word-wrap: break-word;
  overflow: hidden;
}

/* Hiển thị menu con khi hover */

.header__nav-item--dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* Định dạng cho các mục menu con */

.dropdown-item {
  margin: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 5px;
}

.dropdown-item:last-child {
  border-bottom: none;
}

/* Định dạng liên kết */

.dropdown-link {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  padding: 8px 12px;
  display: block;
  transition: all 0.3s ease;
}

/* Hiệu ứng hover liên kết */

.dropdown-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffca28;
  border-radius: 4px;
}

/* Tăng tính thẩm mỹ cho menu chính */

.header__nav-item--dropdown > .header__nav-link {
  position: relative;
  color: #ffffff;
  transition: color 0.3s ease;
}

.header__nav-item--dropdown:hover > .header__nav-link {
  color: #ffca28;
}

/* Tạo hiệu ứng mũi tên chỉ dropdown (nếu cần) */

.header__nav-item--dropdown > .header__nav-link::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("../images/triangle-arrow-pc.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 7px;
  transition: transform 0.3s ease;
  margin-top: 0px;
  vertical-align: middle;
  transform: rotate(-90deg);
}

.header__nav-item--dropdown:hover > .header__nav-link::after {
  transform: rotate(0deg);
  color: #ffca28;
}

/* BANNER */

.hero {
  /* background-image: url("../images/4882066.svg"); */
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  background-position: center;
  /* Căn giữa theo chiều dọc */
  justify-content: center;
  /* Căn giữa theo chiều ngang */
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 400px;
}

.hero__bg {
  position: absolute;
  z-index: 1;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  height: auto;
}

.hero__wrapper {
  display: flex;
  flex-direction: column;
  padding: 80px 0;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__content {
  display: flex;
  flex-direction: column;
  /* max-width: 740px; */
}

.hero__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
  color: var(--white-color);
  margin-bottom: 16px;
  text-align: center;
  text-transform: uppercase;
}

/* .hero__title-highlight__btn {
    padding: 4px 12px;
    border-radius: 8px;
    background: var(--primary-color);
    text-transform: uppercase;
    color: rgb(255, 248, 59);
    line-height: 51px;
} */

.hero__subtitle {
  font-size: 16px;
  line-height: 100%;
  color: rgba(198, 216, 231, 1);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.6;
/*   max-width:60%;
  margin:auto; */
  /* white-space: nowrap; */
}

.hero__search-location::before {
  content: url("../images/vuesax_linear_location.svg");
  position: static;
  width: 24px;
  height: 24px;
  flex: none;
  order: 0;
  flex-grow: 0;
  margin: 0px 8px;
}

label[for="city-select"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* FORM */

.hero__search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 736px;
  height: 60px;
  background-image: linear-gradient(
    135deg,
    rgba(237, 237, 237, 1),
    var(--white-color) 56%,
    rgba(237.36, 237.36, 237.36, 1)
  );
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.16);
  border: 1px solid var(--white-color);
  padding: 6px;
  gap: 16px;
  border-radius: 40px;
}

.hero__search-location {
  flex: 1;
  /* max-width: 330px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__search-location select {
  font-size: 16px;
  border: none;
  background-color: transparent;
  color: var(--primary-color);
  border-radius: 8px;
  cursor: pointer;
}

.hero__search-input input[type="text"] {
  border: none;
  background-color: transparent;
  width: 350px;
  margin-left: 15px;
  font-size: 16px;
}

.hero__search button[type="submit"] {
  flex: 1;
  padding: 12px 20px;
  font-size: 16px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: 40px;
  cursor: pointer;
}

.hero__gap {
  width: 16px;
}

/* TAGS */

.hero__tag_ {
  color: #fff;
  font-weight: 100;
}

.hero__tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  min-width: 120px;
  white-space: nowrap;
  overflow: visible;
}

.hero__tag {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero__tag:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* END banner */

/* about-us */

.about_us {
  display: flex;
  flex-direction: row;
  /* Text và hình ảnh nằm ngang */
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  margin-top: 60px;
}

.about_us__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 600px;
  gap: 12px;
}

.about_us__content-title {
  color: var(--primary-color);
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
}

.about_us__content-text {
  color: var(--secondary-color);
  font-size: 16px;
  line-height: 26px;
  margin: 12px 0;
}

.about_us__content-btn {
  width: 128px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 36px;
  background-color: var(--button-bg-color);
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
  cursor: pointer;
}

.about_us__content-btn-text a {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 500;
}

.about_us__img {
  max-width: 650px;
  max-height: 350px;
  object-fit: cover;
  object-position: center;
  height: auto;
  border-radius: 16px;
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
}

/* end about-us */

/* hot_jobs */

/* Main Wrapper Styles */

/* Hot Jobs Component Styles */

.hot_jobs {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  border: 0.6px solid rgb(209, 210, 247);
  border-radius: 40px;
  box-shadow: 2px 2px 14px 0px rgba(43, 50, 152, 0.04);
  background: var(--white-color);
  /* Xóa overflow: hidden ở đây */
}

/* Thêm style cho hot_jobs__item-title */

.hot_jobs__item-title {
  position: relative;
}

.hot_jobs__item-title a {
  line-height: 1.3;
  margin-top: 0.1em;
  margin-bottom: 0.1em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Thêm style cho hot_jobs__content */

.hot_jobs__content {
  position: relative;
  width: 100%;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  z-index: 1;
  /* Đảm bảo content có z-index context mới */
}

/* Thêm style cho hot_jobs__item */

.hot_jobs__item {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 16px;
}

/* Thêm style cho hot_jobs__item-info */

.hot_jobs__item-info {
  position: relative;
}

/* Header Styles */

.hot_jobs__header {
  width: 100%;
  padding: 24px;
  background-image: linear-gradient(
    135deg,
    rgba(238, 239, 254, 1),
    rgba(246, 245, 255, 1)
  );
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border-radius: 40px 40px 0px 0px;
}

.hot_jobs__title-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  /* Đảm bảo chúng chiếm hết chiều rộng */
}

.hot_jobs__title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.hot_jobs__title-text {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
}

.hot_jobs__title-icon {
  width: 22px;
  height: 32px;
  border-radius: 8px;
  margin-left: 12px;
}

.hot_jobs__view-all {
  font-size: 16px;
  color: var(--primary-color);
  margin-left: auto;
  margin-top: 8px;
}
.hot_jobs__view-all:after {
    content: url("../images/arrow-jobs-home.svg");
    display: inline-block;
    margin-right: 10px; 
    vertical-align: middle; 
    transform: translateX(5px) rotate(0);
    transition: transform 0.3s ease;
    position: relative; 
}

/* .hot_jobs__view-all:hover:after {
    transform: translateX(5px) rotate(90deg);
} */
/* Filters Section */

.hot_jobs__location-dropdown {
  position: relative;
  cursor: pointer;
  padding-left: 60px;
  cursor: pointer;
}

.hot_jobs__dropdown-toggle {
  padding: 10px;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.hot_jobs__checkboxes {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0px;
  right: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  z-index: 2;
  padding: 10px;
  width: 178px;
  transition: opacity 0.3s ease;
}

.hot_jobs__checkboxes.active {
  visibility: visible;
  opacity: 1;
}

.hot_jobs__checkboxes label {
  display: block;
  margin-bottom: 5px;
}

.hot_jobs__location-dropdown:hover .hot_jobs__checkboxes {
  display: block;
}

.hot_jobs__checkboxes label {
  display: block;
  margin-bottom: 5px;
}

.hot_jobs__location-dropdown:hover .hot_jobs__checkboxes {
  display: block;
}

/* Filters Section */

.hot_jobs__filters {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 24px;
}

.hot_jobs__filter-item {
  padding: 0px 16px;
  background-color: var(--white-color);
  border-radius: 20px;
  border: 1px solid rgba(208, 209, 246, 1);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 16px;
}

.hot_jobs__filter-icon {
  width: 24px;
  height: 24px;
}

.hot_jobs__filter-label {
  font-size: 16px;
  color: var(--secondary-color);
  margin-left: 8px;
}

.hot_jobs__filter-value {
  font-size: 16px;
  color: var(--primary-color);
  margin-left: 8px;
  cursor: pointer;
}

.hot_jobs__locations {
  display: flex;
  flex-direction: row;
}

.hot_jobs__location {
  flex: 0 0 auto;
  width: auto;
  max-width: 200px;
  padding: 8px 12px;
  background-color: rgba(208, 209, 246, 1);
  border-radius: 20px;
  font-size: 12px;
  color: var(--primary-color);
  margin: 0 4px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.remove-location {
  background-color: var(--white-color);
  border: none;
  color: #2b329880;
  cursor: pointer;
  margin-left: 5px;
  font-size: 16px;
  position: relative;
  transition: color 0.3s ease;
  border-radius: 100%;
  width: 24px;
  height: 24px;
}

.remove-location:hover {
  color: #ff0404;
}

.remove-location::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: red;
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: background-color 0.3s ease;
}

.remove-location:hover::before {
  background-color: darkred;
}

/* Các nút next và prev */

.hot_jobs__button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.2s ease;
  background-repeat: no-repeat;
  border: none;
  box-shadow: none;
  outline: none;
  background: transparent;
}

.hot_jobs__button:hover {
  /* background-color: var(--hover-color); */
  background-color: #2b329830;
/*   border: 1px solid rgba(43, 50, 152, 0); */
  color: rgb(255, 255, 255);
}

.hot_jobs__locations-slider {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.hot_jobs__button.hidden {
  visibility: initial;
  background-color: #f5f5f5;
  border-color: #ddd;
  color: #aaa;
  opacity: 0.3;
  cursor: not-allowed;
  box-shadow: none;
}

.hot_jobs__locations-slider .slick-slider,
.suggested_jobs__locations-slider .slick-slider {
  width: 900px;
  max-width: 600px;
  overflow: hidden;
}

.hot_jobs__locations-slider .slick-slide {
  width: auto !important;
}

.hot_jobs__location {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  height: 40px;
  padding: 8px 12px;
  background-color: rgba(208, 209, 246, 1);
  border-radius: 20px;
  font-size: 12px;
  line-height: 100%;
  color: var(--primary-color);
  white-space: nowrap;
  margin: 0 4px;
}

/* Việc làm gợi ý */

/* Bộ lọc Suggested Jobs */

.suggested_jobs__filters {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 24px;
}

.suggested_jobs__filter-item {
  padding: 8px 16px;
  background-color: var(--white-color);
  border-radius: 20px;
  border: 1px solid rgba(208, 209, 246, 1);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.suggested_jobs__filter-icon {
  width: 24px;
  height: 24px;
}

.suggested_jobs__filter-label {
  font-size: 16px;
  color: var(--secondary-color);
  margin-left: 8px;
}

.suggested_jobs__filter-value {
  font-size: 16px;
  color: var(--primary-color);
  margin-left: 8px;
}

.suggested_jobs__location-dropdown {
  position: relative;
  cursor: pointer;
}

.suggested_jobs__dropdown-toggle {
  padding: 10px;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.suggested_jobs__checkboxes {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0px;
  right: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  z-index: 1;
  padding: 10px;
  width: 178px;
  transition: opacity 0.3s ease;
}

.suggested_jobs__checkboxes.active {
  visibility: visible;
  opacity: 1;
}

.suggested_jobs__checkboxes label {
  display: block;
  margin-bottom: 5px;
}

.suggested_jobs__location-dropdown:hover .suggested_jobs__checkboxes {
  display: block;
}

/* Nút điều hướng slider */

.suggested_jobs__button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.suggested_jobs__button:hover {
  background-color: var(--hover-color);
}

.suggested_jobs__locations-slider {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.suggested_jobs__location {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  height: 40px;
  padding: 8px 12px;
  background-color: rgba(208, 209, 246, 1);
  border-radius: 20px;
  font-size: 12px;
  line-height: 100%;
  color: var(--primary-color);
  white-space: nowrap;
  margin: 0 4px;
}

.suggested_jobs__button.hidden {
  visibility: hidden;
}

.hot_jobs__clear-filters,
.suggested_jobs__clear-filters {
  display: inline-block;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white-color);
  background-color: var(--button-bg-color);
  border: none;
  border-radius: 12px;
  height: 24px;
  line-height: 24px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hot_jobs__clear-filters:hover,
.suggested_jobs__clear-filters:hover {
  background-color: var(--button-hover-color);
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.hot_jobs__clear-filters:active,
.suggested_jobs__clear-filters:active {
  background-color: rgb(35, 38, 90);
  transform: translateY(1px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.suggested_jobs__locations-slider,
.hot_jobs__locations-slider {
  display: none;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

/* END việc làm gợi ý */

/* Content Section */

.hot_jobs__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
  padding: 24px;
}

/* Individual Job Item */

.hot_jobs__item {
  background-color: var(--white-color);
  border-radius: 24px;
  border: 0.6px solid rgba(208, 209, 246, 1);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  /* overflow: hidden; */
  margin-top: 5px;
}

/* Hover Effect */

.hot_jobs__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Logo Styles */

.hot_jobs__item-logo {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 16px;
  border-radius: 10px;
  border: 1px solid rgba(209, 210, 247, 1);
  padding: 5px;
}

/* Job Info */
.hot_jobs__item-sl-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
}
.hot_jobs__item-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.hot_jobs__item-title a {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.hot_jobs__item-title a:hover {
  color: var(--hover-color);
}

.hot_jobs__item-company,
.hot_jobs__item-salary {
  font-size: 14px;
  color: var(--secondary-color);
}
.hot_jobs__item-location {
  margin: 0;
  padding: 4px 8px;
  border-radius: 17px;
  background: rgb(235, 236, 255);
  font-size: 12px;
  color: rgb(43, 50, 152);
  padding: 6px 12px;
  font-weight: 400;
}
.hot_jobs__item-location:empty {
  display: none;
}
p.hot_jobs__item-company {
  margin-top: 0.1em;
  margin-bottom: 0.1em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hot_jobs__item-salary {
  font-size: 12px;
  color: rgb(253, 30, 86);
  border-radius: 17px;
  background: rgb(255, 235, 235);
  padding: 6px 12px;
  font-weight: 400;
}

/* Tag Styles */

.hot_jobs__item-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-tuyengap);
  margin-left: auto;
  position: absolute;
  margin-top: -29px;
  right: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 0.6px solid rgba(208, 209, 246, 1);
}

.hot_jobs__item-tag-icon {
  width: 10px;
  height: 14px;
  margin-right: 4px;
}

/* Footer Styles */

.hot_jobs__footer {
  margin-top: 5px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 526px;
}

.hot_jobs__footer-action {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
}

.hot_jobs__footer-icon {
  width: 10px;
  height: 10px;
}

.hot_jobs__footer-tip {
  color: var(--secondary-color);
  font-family: Be Vietnam Pro;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0%;
  text-align: right;
  margin-right: auto;
}

.hot_jobs__footer-action {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-left: 16px;
}

.hot_jobs__footer-action img {
  width: 24px;
  height: 24px;
}

.hot_jobs__item:hover .hot_jobs__item-title a {
  color: rgba(253, 30, 86, 1);
  text-decoration: underline;
  cursor: pointer;
}

.hot_jobs__item:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  transition: all 0.3s ease-in-out;
}

/* end hot_jobs */

/* industrys */

/* Industries Section */

.industries {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 60px;
  position: relative;
  overflow: visible;
}

/* Title of Industries */

.industries__title {
  width: 100%;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: var(--primary-color);
  line-height: 60px;
}

/* List of Items (Slick Wrapper) */

.industries__list {
  width: 100%;
  display: flex;
  flex-direction: row;
  margin-top: 0px;
  position: relative;
  overflow: hidden;
}

/* Slick List */

.industries__list .slick-list {
  overflow: hidden;
  /* display: flex; */
  /* justify-content: center; */
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  padding: 10px 0px;
}

/* Slick Track */

.industries__list .slick-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

/* Slick Slide */

.industries__list .slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 24px;
  margin: 0;
  box-sizing: border-box;
  height: auto;
  cursor: pointer;
}

/* Individual Item */

.industries__item {
  width: 237px;
  height: 211px;
  background-color: var(--white-color);
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px;
  margin-bottom: 24px;
  transition: all 0.3s ease;	
}
.industries__item:hover {
  box-shadow: 0 10px 4px rgba(43, 50, 152, 0.44);
  transform: translateY(-4px);
}
/* Item Icon Wrapper */

.industries__item-icon-wrapper {
  width: 90px;
  height: 90px;
  padding: 21px;
  background-color: #e6e7fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.industries__item-abbreviation {
  width: 40px;
  height: 40px;
  background-color: #2b3298;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
}

.industries__item-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.industries__item-icon-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Item Text */

.industries__item-text {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 14px;
  line-height: 1.3;
  margin-top: 0.1em;
  margin-bottom: 0.1em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Item Value */

.industries__item-value {
  font-size: 16px;
  color: var(--secondary-color);
}

/* Button Styling */

.industries__button {
  background-color: transparent;
  color: var(--white-color);
  border: none;
  padding: 12px 18px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  position: absolute;
  top: 65%;
  transform: translateY(-60%);
  z-index: 10;
}

/* Nút prev và next căn chỉnh bên trong container */

.industries__button--prev {
  left: -50px;
}

.industries__button--next {
  right: -50px;
}

.industries__button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/* end industrys */

/* Wrapper của Work Opportunity */

.work_opportunity {
  height: auto;
  padding-left: 40px;
/*   padding-right: 211px; */
  background-image: linear-gradient(
    135deg,
    rgba(238.25, 238.68, 254.36, 1),
    rgba(245.76, 245.44, 255, 1)
  );
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
  border-radius: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  margin-top: 60px;
}

/* Nội dung bên trái (text và button) */

.work_opportunity__content {
  width: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

/* Tiêu đề */

.work_opportunity__content-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  line-height: 40px;
  color: var(--primary-color);
}

/* Text mô tả */

.work_opportunity__content-text {
  font-size: 16px;
  line-height: 100%;
  line-height: 26px;
  color: var(--secondary-color);
  margin-top: 16px;
}

/* Nút "Tìm ngay" */

.work_opportunity__content-btn {
  width: 137px;
  height: 48px;
  margin-top: 16px;
  background-color: var(--button-bg-color);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work_opportunity__content-btn-text a {
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  color: var(--white-color);
}

/* Ảnh bên phải */

.work_opportunity__img {
  max-width: 650px;
  height: auto;
	    margin-right: -90px;
/*   margin-left: 170px; */
}

/* End Work Opportunity */

/* news */

/* Khung chứa news */

.news {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  position: relative;
  /* overflow: hidden; */
  overflow: unset;
}

/* Tiêu đề */

.news__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 24px;
  text-transform: uppercase;
  line-height: 50px;
}

/* Content chứa các item */

.news__content {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.news__content .slick-slide {
  flex: 0 0 auto;
  max-width: 410px;
  display: flex !important;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
}
.news__content .slick-track {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 24px;
  width: auto;
  margin: 10px 0px;
}
/* Mỗi item trong content */

.news__item {
  width: 410px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  /* padding: 0px 24px; */
}

/* Hình ảnh mỗi item */

.news__item-img {
  width: 410px;
  height: 222px;
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
  border-radius: 24px;
  margin-bottom: 16px;
  object-fit: cover;
}

/* Nội dung mỗi item */

.news__item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

/* Tiêu đề trong mỗi item */

.news__item-title a {
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  line-height: 25px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

/* Text description trong mỗi item */

.news__item-text-description {
  font-size: 16px;
  line-height: 100%;
  line-height: 25px;
  color: var(--secondary-color);
}

.news__button {
  background-color: transparent;
  color: var(--white-color);
  border: none;
  padding: 12px 18px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
/*   background-color: #f0f8ffad; */
/*   border-radius: 100%; */
  color: black;
/*   width: 48px; */
/*   height: 48px; */
/*   border: 1px solid #2b3298; */
}
.news__button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
/* Cắt dòng thành 2 dòng */

.news .news__item-title,
.news .news__item-text-description {
  line-height: 1.6;
  margin-top: 0.1em;
  margin-bottom: 0.1em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Nút prev và next căn chỉnh bên trong container */

.news__button--prev {
  left: -50px;
}

.news__button--next {
  right: -50px;
}

/* end news */

/* ================================
===================================
END PAGE HOME
===================================
================================ */

/* ===================================
 PAGE JOB
=================================== */

/* Categories jobs */

/* Wrapper for the whole job categories filter */

.categories-jobs-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 60px;
}

/* Container for all elements inside categories filter */

.categories-jobs-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Filter dropdowns (select elements) */

.after-filters {
  display: none;
  align-items: center;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(43, 50, 152, 1);
  cursor: pointer;
}

.after-filters-icon img {
  width: 24px;
  height: 24px;
  border-radius: 8px;
}

.after-filters-icon {
  padding-left: 16px;
}

.filter-dropdown {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  gap: 8px;
  margin-bottom: 16px;
  text-align: center;
  background-image: linear-gradient(
    135deg,
    rgb(238, 239, 254),
    rgb(245, 245, 255)
  );
  border-radius: 8px;
  padding: 8px;
}

.filter-select {
  padding: 10px 30px 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(209, 210, 247, 1);
  font-size: 16px;
  color: rgba(43, 50, 152, 1);
  background-color: white;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("../images/dropdown.svg") no-repeat right 10px center;
  background-size: 12px;
  cursor: pointer;
}

.urgent-job {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(43, 50, 152, 1);
  border-radius: 12px;
  border: 1px solid rgba(209, 210, 247, 1);
  padding: 10px 30px 10px 10px;
}

.filter-dropdown .extra-filters {
  display: none;
}

.filter-dropdown.show-advanced .extra-filters {
  display: flex;
}

.urgent-checkbox {
  width: 16px;
  height: 16px;
}

.clear-filters {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(43, 50, 152, 1);
  cursor: pointer;
  margin-left: auto;
}

.clear-filters-icon img {
  width: 24px;
  height: 24px;
  border-radius: 8px;
}

.clear-filters-icon {
  padding-left: 16px;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Nút bật tắt dễ nhìn hơn */

/* Switch Toggle */

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #fd1e56;
  /* Màu khi bật */
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/* btn xóa bộ lọc  */

.reset-filters-btn {
  font-size: 13px;
  color: rgb(255, 255, 255);
  box-sizing: border-box;
  border: 0px solid rgb(209, 210, 247);
  background: #ab022f;
  padding: 4px 8px 4px 8px;
  margin-left: 20px;
  border-radius: 10px;
  display: none;	
}

.loading {
  text-align: center;
  padding: 20px;
}

.error-message {
  color: red;
  text-align: center;
  padding: 20px;
}

.no-results {
  text-align: center;
  padding: 20px;
}

/* Rounded sliders */

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Container style */

.urgent-job {
  display: flex;
  align-items: center;
  gap: 10px;
}

.urgent-job p {
  margin: 0;
}

/* Summary of job results */

.job-results-summary {
  background-image: linear-gradient(
    135deg,
    rgba(238, 238, 254, 1),
    rgba(245, 245, 255, 1)
  );
  padding: 16px;
  border-radius: 16px;
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
}

.job-count {
  font-size: 18px;
  font-weight: 600;
  color: rgba(43, 50, 152, 1);
}

.job-count span {
  font-size: 16px;
  font-weight: 400;
}

.related-keywords {
  margin-top: 8px;
}

.related-keywords-label {
  font-size: 16px;
  color: rgba(98, 96, 156, 1);
}

.related-keywords-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.keyword-item p a {
  padding: 5px 12px;
  background-color: white;
  border-radius: 12px;
  border: 1px solid rgba(209, 210, 247, 1);
  font-size: 16px;
  color: rgba(43, 50, 152, 1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.keyword-item p a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.keyword-item {
  margin-top: 5px;
}

.sort-label.hidden {
  display: none;
}

.job-sort {
  display: flex;
  flex-direction: row;
  margin-top: 16px;
}

.sort-label {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(98, 96, 156, 1);
}

.sort-options {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  align-items: center;
}

.sort-options .active {
  background-color: white;
  border-radius: 12px;
  border: 1px solid rgba(209, 210, 247, 1);
  font-weight: 600;
  color: rgb(43, 50, 152);
}

.sort-option {
  padding: 8px;
  font-size: 16px;
  color: rgb(98, 96, 156);
  cursor: pointer;
  font-weight: 400;
}

/* Job cards display */

.job-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}

.job-card {
  width: 100%;
  background-color: white;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(209, 210, 247, 1);
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
  display: flex;
  flex-direction: column;
  position: relative;
}

.job-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.company-logo {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  border: 1px solid rgba(209, 210, 247, 1);
  padding: 5px;
}

.job-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jobs_card__item-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-tuyengap);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 0.6px solid rgba(208, 209, 246, 1);
  position: absolute;
  right: 15px;
  top: -15px;
}

.job-title a {
  font-size: 18px;
  font-weight: 700;
  color: rgba(43, 50, 152, 1);
  line-height: 1.3;
  margin-top: 0.1em;
  margin-bottom: 0.1em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.job-title a:hover {
  color: var(--color-tuyengap);
}
.job-card__view-detail {
  position: absolute;
  bottom: 10px;
  left: 95%;
  transform: translateX(50%);
}

.company-name {
  font-size: 16px;
  color: rgba(98, 96, 156, 1);
}

.salary-location {
  display: flex;
  gap: 8px;
  align-items: center;
}

.salary {
  font-size: 14px;
  color: rgb(253, 30, 86);
  border-radius: 17px;
  background: rgb(255, 235, 235);
  padding: 6px 12px;
  font-weight: 400;
}

.location {
  font-size: 16px;
  color: rgba(98, 96, 156, 1);
}

.date-category {
  display: flex;
  gap: 8px;
  align-items: center;
}

.date-posted {
  font-size: 16px;
  color: rgba(98, 96, 156, 1);
}

.job-category {
  font-size: 13px;
  color: rgba(43, 50, 152, 1);
  display: flex;
  gap: 10px;
}

.category-tag {
  box-sizing: border-box;
  border: 1px solid rgb(209, 210, 247);
  border-radius: 4px;
  background: rgb(255, 255, 255);
  padding: 4px 8px 4px 8px;
  cursor: pointer !important;
}

.job-category .category-tag:hover {
  cursor: initial;
  display: inline-block;
  border-radius: 4px;
  background-color: #fd1e56;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.separator {
  font-weight: 200;
  color: rgb(98, 96, 156);
}

.favourite-icon {
  margin-left: auto;
  margin-bottom: auto;
}

.job-card__locations {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}

.job-card__location_detile {
  margin: 0;
  padding: 4px 8px;
  border-radius: 17px;
  background: rgb(235, 236, 255);
  font-size: 14px;
  color: rgb(43, 50, 152);
  padding: 6px 12px;
  font-weight: 400;
}

/* Load more button */

.load-more-button {
  display: flex;
  justify-content: center;
  padding: 11px;
  margin-top: 16px;
  cursor: pointer;
  box-sizing: border-box;
  border: 1px solid rgb(49, 54, 127);
  border-radius: 36px;
  box-shadow: 2px 2px 14px 0px rgba(43, 50, 152, 0.04);
  background: rgb(49, 54, 127);
  color: white;
}

.load-more-button p {
  font-size: 16px;
  color: white;
}

.load-more-button.loading {
  background: rgb(28, 32, 86);
  border-color: rgb(28, 32, 86);
  box-shadow: 0 0 20px rgba(43, 50, 152, 0.2);
  cursor: wait;
}

.load-more-button.loading p {
  color: #ffeb3b;
  /* Màu chữ vàng nổi bật */
  font-weight: bold;
}

.load-more-button.loading:hover {
  background: rgb(28, 32, 86);
}
.search-keyword {
  color: #ab022f;
}
.load-more-button .page-info{
	display:none !important;
}
/* End Categories jobs */

/* Section Suggested jobs */

.suggested_job {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 60px;
  position: relative;
  overflow: visible;
}

/* Title of Industries */

.suggested_job__title {
  width: 100%;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: var(--primary-color);
  line-height: 60px;
}

/* Button - Căn chỉnh chính xác */

.suggested_job__button {
  background-color: transparent;
  color: var(--white-color);
  border: none;
  padding: 12px 18px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  position: absolute;
  top: 62%;
  transform: translateY(-55%);
  z-index: 10;
}

/* Prev và Next nút */

.suggested_job__button--prev {
  left: -50px;
}

.suggested_job__button--next {
  right: -50px;
}

/* Suggested Job List - Slick Wrapper */

.suggested_job__list {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: row;
  margin-top: 0px;
  position: relative;
  overflow: hidden;
  gap: 24px;
  flex-wrap: wrap;
}

/* Slick Track */

.suggested_job__list .slick-track {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 24px;
  width: auto;
  /* padding-left: 20px; */
  margin: 10px 0px;
}

/* Slick Slide */

.suggested_job__list .slick-slide {
  flex: 0 0 auto;
  max-width: 410px;
  display: flex !important;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
}

.suggested_job__list .slick-list {
  margin-left: -22px;
}

.suggested_job__list .slick-initialized .slick-slide {
  display: flex !important;
}

/* Suggested Job Item */

.suggested_job__item {
  width: 100%;
  max-width: 410px;
  background-color: var(--white-color, #ffffff);
  border-radius: 24px;
  border: 1px solid rgba(208, 209, 246, 1);
  box-sizing: border-box;
  padding: 20px;
  display: flex !important;
  /* Thêm !important */
  flex-direction: row;
  align-items: flex-start;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 220px;
}

/* Hover Effect */

.suggested_job__item:hover {
  /* transform: translateY(-4px); */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Logo */

.suggested_job__item-logo {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  /* margin-bottom: 16px; */
  border-radius: 10px;
  border: 1px solid rgba(209, 210, 247, 1);
  padding: 5px;
}

/* Info Section */

.suggested_job__item-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  gap: 8px;
  padding: 0px 10px;
}

.suggested_job__item-title a {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color, #333);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.suggested_job__item-title a:hover {
  color: var(--hover-color, #555);
}

.suggested_job__item-company,
.suggested_job__item-salary {
  font-size: 16px;
  color: var(--secondary-color, #666);
  margin: 0;
}

.suggested_job__item-location {
  margin: 0;
  padding: 4px 8px;
  border-radius: 17px;
  background: rgb(235, 236, 255);
  font-size: 12px;
  color: rgb(43, 50, 152);
  padding: 6px 9px;
  font-weight: 400;
}

p.suggested_job__item-company {
  line-height: 1.3;
  margin-top: 0.1em;
  margin-bottom: 0.1em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggested_job__item-salary {
  color: rgba(253, 30, 86, 1);
  font-weight: 600;
  margin-top: auto;
}

/* Tag Section */

.suggested_job__item-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 239, 239, 1);
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(253, 30, 86, 1);
}

.suggested_job__item-tag-icon {
  width: 10px;
  height: 14px;
  margin-right: 4px;
}

/* Hover Effect for Buttons */

.suggested_job__button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/* End Section Suggested jobs  */

/* =======================
END PAGE JOB 
======================= */

/* =======================
Job details 
======================= */

.job-details {
  margin: 0 auto;
  margin-top: 80px;
}

.job-details__row {
  /* Dùng flex 2 cột */
  display: flex;
  flex-direction: row;
  gap: 24px;
  /* Khoảng trống giữa 2 cột */
}

/* BÊN TRÁI */

.job-details__left {
  max-width: 720px;
  flex: 1;
  min-width: 0;
  /* Giúp tránh tràn khi nội dung rộng */
  display: flex;
  flex-direction: column;
}

/* BÊN PHẢI */

.job-details__right {
  max-width: 536px;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* =============================== */

/* ========= JOB CARD ============ */

/* =============================== */

.job-details .job-card {
  width: 100%;
  padding: 24px;
  background-color: #fff;
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
  border: 0.6px solid #d0d1f6;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Figma bố trí "center", 
       nhưng bạn có thể align-items: flex-start */
  justify-content: flex-end;
  position: relative;
  margin-bottom: 16px;
  /* Khoảng cách dưới */
}

/* Header (logo + thông tin) */

.job-card__header {
  width: 100%;
  /* display: flex;
  flex-direction: row;
  align-items: flex-start; */
}

.job-card__header_info_detail {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  align-content: center;
  margin-bottom: 15px;
}

.job-card__logo {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 16px;
  border-radius: 8px;
  border-radius: 10px;
  border: 1px solid rgba(209, 210, 247, 1);
  padding: 5px;
}

/* TH KHÔNG CÓ LOGO  */

.job-card__logo-placeholder {
  width: 50px;
  height: 50px;
  background-color: #2b3298;
  color: white;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-transform: uppercase;
  flex-shrink: 0;
  margin-right: 16px;
  border-radius: 10px;
}

.job-card__header-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap:10px;
}

.job-card__position {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #2b3298;
  margin: 0px;
}

.job-card__company {
  font-size: 16px;
  color: #62609c;
}

/* Row hiển thị salary, location, date... trên 1 hàng */

.job-card__row {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}

/* Divider xoay -90deg, 
     thay vì vẽ 1 đường dọc, ta xoay đường ngang */

.job-card__divider {
  width: 16px;
  height: 1px;
  background-color: #d1d2f7;
  transform: rotate(-90deg);
  margin: 0 12px;
}

/* Salary, location, date */

.job-card__salary {
  font-size: 16px;
  line-height: 1.2;
  color: #fd1e56;
}

.job-card__location,
.job-card__date {
  font-size: 16px;
  line-height: 1.2;
  color: #62609c;
}

/* Tag category */

.job-card__category-tag {
  padding: 4px 8px;
  background-color: #fff;
  border: 1px solid #d1d2f7;
  border-radius: 4px;
}

.job-card__category-tag {
  font-size: 14px;
  line-height: 12px;
  color: #2b3298;
  margin: 0;
}

/* Tuyển gấp */

.job-card__urgent {
  color: #fff;
  background-color: #fd2261;
  padding: 1.5px 10px;
  font-size: 14px;
  display: inline-block;
  font-weight: bold;
  border-radius: 4px;
}

.card__date-info {
  font-size: 16px;
  line-height: 1.2;
  color: #62609c;
}

/* Section (Mô tả, Yêu cầu, Phúc lợi...) */

.job-card__section {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 12px;
  border: 0.6px dotted #2b3298;
  padding: 20px;
  border-radius: 20px;
}

.job-card__section-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: #2b3298;
  margin-bottom: 12px;
}

.job-card__section-content {
  font-size: 16px;
  line-height: 30px;
  color: #62609c;
}

/* Button link ứng tuyển */

.apply-link_details {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin: 15px 0;
}

.apply-link_details a {
  display: inline-block;
  padding: 5px 15px;
  background-color: #2b3298;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.apply-link_details a:hover {
  background-color: #fc1e55;
}

/* End Button Link ứng tuyển */

/* Nút Xem Thêm */

.job-card__see-more {
  width: 100%;
  height: 48px;
  padding: 8px 24px;
  background-color: #fff;
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
  border-radius: 36px;
  border: 1px solid #30367e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.job-card__see-more p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #31367f;
  margin: 0;
}

/* =============================== */

/* ======= RELATED ARTICLES ====== */

/* =============================== */

.related-articles {
  width: 100%;
  padding: 24px;
  background-color: #fff;
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
  border-radius: 16px;
  border: 1px solid #d0d1f6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.related-articles__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #2b3298;
  margin-bottom: 16px;
}

.related-articles__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.related-articles__item {
  font-size: 16px;
  line-height: 1.5;
  color: #62609c;
}

.related-articles__spacing {
  height: 24px;
  /* Khoảng trống giữa 2 block (bài viết liên quan và việc làm liên quan) */
}

/* =============================== */

/* ======= RELATED JOBS ========== */

/* =============================== */

.related-jobs {
  width: 100%;
  padding: 24px;
  background-color: #fff;
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
  border-radius: 16px;
  border: 1px solid #d0d1f6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* margin-top: 24px; */
}

.related-jobs__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #2b3298;
  margin-bottom: 25px;
}

.related-jobs__spacing {
  height: 16px;
}

/* Card việc làm liên quan */

.related-job-card {
  width: 100%;
  max-width: 488px;
  background-color: #fff;
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
  border-radius: 24px;
  border: 0.6px solid #d0d1f6;
  display: flex;
  align-items: flex-start;
  padding: 16px;
  margin-bottom: 24px;
  box-sizing: border-box;
}
.related-job-card:last-child {
  margin-bottom: 0;
}

.related-job-card__logo {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 16px;
  /* Khoảng cách giữa logo và cột text */
}

.related-job-card__info {
  /* Chứa các dòng text bên phải */
  display: flex;
  flex-direction: column;
}
.related-job-item-info-2 {
  display: flex;
  flex-direction: row;
  gap: 5px;
  margin-top: 5px;
  align-items: center;
}
.related-job-item-info-2 .related-job-card__salary {
  color: rgb(253, 30, 86);
  background: rgb(255, 235, 235);
  border-radius: 17px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 400;
}
.related-job-item-info-2 .related-job-card__location {
  background: rgb(235, 236, 255);
  color: rgb(43, 50, 152);
  border-radius: 17px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 400;
}

.hot_jobs__item-tag_related {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-tuyengap);
  position: absolute;
  margin-top: -34px;
  right: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 0.6px solid rgba(208, 209, 246, 1);
}

.related-job-card__position {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.related-job-card__position a {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #2b3298;
  margin-bottom: 8px;
}

.related-job-card__company {
  font-size: 14px;
  line-height: 1.2;
  color: #62609c;
  margin: 8px 0px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.related-job-card__salary {
  font-size: 16px;
  color: #ab022f;
}

.related-job-card__location {
  font-size: 12px;
  color: #62609c;
}

/* =======================
END Job details
======================= */

/* =======================
 PAGE Abut Us
======================= */

/* ===========================
   BANNER SECTION
=========================== */

.banner-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Mỗi banner-block có nền đen mờ.
     Thay vì fix height: 880px, 
     ta dùng padding lớn => auto-height. */

.banner-block {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 355px 80px 354px;
  /* top right bottom, left = 355 80 354 80 */
  box-sizing: border-box;
}

/* Nội dung bên trong banner */

.banner-block__content {
  width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* Tùy "biến thể" alignment: 
     -banner-block--center => text center
     -banner-block--left   => text left
     -banner-block--right  => text right
  */

.banner-block--center .banner-block__content {
  align-items: center;
  text-align: center;
}

.banner-block--left .banner-block__content {
  align-items: flex-start;
  text-align: left;
}

.banner-block--right .banner-block__content {
  align-items: flex-end;
  text-align: right;
}

/* Tiêu đề chính: "BẠN ĐANG CẦN TÌM" (cỡ 40px) */

.banner-block__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

/* Heading cỡ 24px (TẦM NHÌN, SỨ MỆNH) */

.banner-block__heading {
  font-size: 24px;
  letter-spacing: 7.68px;
  line-height: 1.5;
  margin: 0;
  text-transform: uppercase;
}

/* Đoạn text to cỡ 40px */

.banner-block__main-text {
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  max-width: 880px;
  /* theo design */
  margin: 0;
}

/* Khoảng cách dọc 24px */

.banner-block__spacing-vertical {
  height: 24px;
}

/* =========== BANNER STATS =========== */

.banner-block__stats {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}

.banner-block__stats-gap {
  width: 24px;
}

.banner-block__stat {
  width: 410px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.banner-block__stat-number {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}

.banner-block__stat-desc {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

/* ===========================
     STORY SECTION
  =========================== */

.story-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 40px;
}

.section-title {
  width: 100%;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #2b3298;
}

.section-spacing {
  height: 24px;
}

.story-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 24px 0px;
  color: #62609c;
  gap: 40px; 
}
.story-content__text-left,
.story-content__text-right {
    flex: 1; 
	color: #62609c;
	text-align: justify;
    text-justify: distribute;
}

.story-content__text {
    margin: 0; 
}

.story-content__text br {
    display: block;
    content: "";
    margin-top: 0.5em; 
}
.story-content__gap {
  width: 40px;
}

.story-content__text {
  width: 50%;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  margin-bottom: 16px;
  text-align: justify;
  text-justify: distribute;
  word-spacing: 0.5px;
  line-height: 1.6;
  hyphens: auto;
}

.story-content__text--color {
  color: #62609c;
  /* Tím nhạt */
}

.story-image {
  width: 100%;
  height: 340px;
  object-fit: cover;
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
  border-radius: 24px;
}

/* ===========================
     BOARD SECTION (Ban Lãnh Đạo)
  =========================== */

.board-section {
  padding-top: 40px;
}

.board-list {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 40px;
}

.board-list__gap {
  width: 60px;
}

/* Card của từng giám đốc */

.board-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Ảnh giám đốc */

.board-card__image {
  max-width: 387px;
  max-height: 570px;
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
  border-radius: 24px;
  border: 1px solid #d0d1f6;
  display: block;
  object-fit: cover;
}

.board-card__overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 130px;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.42)),
    url("../images/board-card__overlay.svg") center/cover no-repeat;
  border-radius: 0 0 24px 24px;
  padding: 12px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  box-sizing: border-box;
}

.board-card__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.board-card__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-bottom: 6px;
}

.board-card__position {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}

/* =======================
END PAGE Abut Us
======================= */

/* =======================
PAGE TOOLS
======================= */

/* ===============================
   .tools_wrapper / .tools
================================ */

.tools {
  margin-top: 40px;
}

/* ROW: 2 cột (bên trái 720px, bên phải 536px) */

.tools__row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
}

/* Cột trái (720px), cột phải (536px) */

.tools__left {
  max-width: 720px;
  display: flex;
  flex-direction: column;
}

.tools__right {
  max-width: 536px;
}

/* ===============================
     CARD & SPACING
  ================================ */

.tools__card {
  width: 100%;
  background-color: #fff;
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
  border: 1px solid #d0d1f6;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-sizing: border-box;
  margin-top: 24px;
}

.tools__spacing-vertical--16 {
  height: 16px;
}

/* Tiêu đề (24px, đậm, màu #2b3298) */

.tools__title {
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #2b3298;
  margin-bottom: 20px;
}

.tools__paragraph {
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  color: #62609c;
}

/* ===============================
     CALCULATOR
  ================================ */

.tools__calculator-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}

/* 3 ô highlight => row */

.tools__highlight-box {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: #f2f2ff;
  border-radius: 8px;
  padding: 16px 24px;
  box-sizing: border-box;
}

/* Mỗi item => label+value chung 1 cột
     => Muốn label & value trên 1 hàng => thay flex-direction: row */

.tools__highlight-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tools__highlight-gap {
  width: 43px;
}

.tools__highlight-label {
  font-size: 16px;
  line-height: 1.5;
  color: #62609c;
  margin-right: 4px;
  /* Tách label & value */
}

.tools__highlight-value {
  font-size: 16px;
  /* Hoặc 20px tuỳ thích */
  font-weight: 600;
  line-height: 1.5;
  color: #35a469;
  padding-top: 10px;
}

/* Thu nhập, Người phụ thuộc => row */

.tools__row-inline {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  gap: 0;
}

.tools__field-col {
  display: flex;
  flex-direction: column;
}

.tools__field-label {
  font-size: 16px;
  line-height: 1.5;
  color: #2b3298;
}

.tools__spacing-vertical--8 {
  height: 8px;
}

/* Ô input (icon + field + unit) */

.tools__input {
  width: 100%;
  height: 40px;
  border: 1px solid #d0d1f6;
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.tools__input--short {
  width: 300px;
}

.tools__flex-spacer-162 {
  width: 60px;
}

.tools__input-icon {
  width: 24px;
  height: 24px;
  object-fit: cover;
  margin-right: 8px;
  flex-shrink: 0;
}

.tools__input-field {
  flex: 1;
  border: none;
  outline: none;
  background-color: transparent;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  text-align: right;
  /* canh phải */
}

.tools__input-field::placeholder {
  color: #b4b5d8;
}

.tools__input-unit {
  font-size: 14px;
  line-height: 1.5;
  color: #b4b5d8;
  margin-left: 8px;
  white-space: nowrap;
}

/* Spacer 12, 162 (theo design) */

.tools__gap-12 {
  width: 12px;
}

/* Radio group => row (Trên lương chính thức / khác) */

.tools__radio-group {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  margin-right: 24px;
}

.tools__radio-group input[type="radio"] {
  margin-right: 4px;
  accent-color: #2b3298;
}

.tools__radio-label {
  font-size: 16px;
  line-height: 1.5;
  color: #6b6e9c;
}

/* 4 vùng => row container */

.tools__radio-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

/* 2 nút GROSS <-> NET */

.button_switch {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
}

.tools__switch-button {
  width: 143px;
  height: 40px;
  border-radius: 33px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  box-sizing: border-box;
}

.tools__switch-button--blue {
  background-color: #2b3298;
}

.tools__switch-button--white {
  background-color: #fff;
  border: 1px solid #2b3298;
}

.tools__switch-label {
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
}

.tools__switch-label-blue {
  font-size: 14px;
  line-height: 1.5;
  color: #2b3298;
}

.tools__switch-button:hover .tools__switch-icon-arrow-img {
  filter: invert(100%);
}

.tools__switch-button--blue .tools__switch-icon-arrow-img {
  filter: invert(0);
}

.tools__switch-button--white .tools__switch-icon-arrow-img {
  filter: invert(1);
}

/* ===============================
     FAQs
  ================================ */

.tools__faq-item {
  width: 100%;
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #d0d1f6;
  padding: 5px 0px;
  box-sizing: border-box;
}

.tools__faq-item-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.tools__faq-question {
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  color: #2b3298;
}

.tools__faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  color: black;
  font-size: 14px;
  text-align: justify;
  text-justify: distribute;
  word-spacing: 0.5px;
  hyphens: auto;
}

.tools__faq-item.active .tools__faq-answer {
  opacity: 1;
}

.tools__faq-icon-img {
  transition: transform 0.3s ease;
  transform: rotate(-90deg);
  padding-left: 5px;
}

.tools__faq-item.active .tools__faq-icon-img {
  transform: rotate(0deg);
}

.tools__faq-icon {
  padding-top: 15px;
}

/* Bài viết liên quan */

.tools__related-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.tools__related-item a {
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  color: #62609c;
}

/* =======================
END PAGE TOOLS
======================= */

/* =======================
PAGE INCOME TAX
======================= */

/* Khoảng trống ngang 24px */

.tax__gap-24 {
  width: 24px;
  flex-shrink: 0;
}

/* ===============================
     CARD & SPACING
  ================================ */

.tax__card {
  width: 100%;
  background-color: #fff;
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
  border: 1px solid #d0d1f6;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-sizing: border-box;
}

.tax__spacing-vertical--16 {
  height: 16px;
}

.tax__spacing-vertical--24 {
  height: 24px;
}

/* Tiêu đề (24px, đậm, màu #2b3298) */

.tax__title {
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #2b3298;
  margin-bottom: 20px;
}

.tax__paragraph,
.fancybox {
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  color: #62609c;
}

/* ===============================
     CALCULATOR
  ================================ */

.tax__calculator-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}

/* 3 ô highlight => row */

.tax__highlight-box {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: #f2f2ff;
  border-radius: 8px;
  padding: 16px 24px;
  box-sizing: border-box;
}

/* Mỗi item => label+value chung 1 cột
     => Muốn label & value trên 1 hàng => thay flex-direction: row */

.tax__highlight-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tax__highlight-gap {
  width: 43px;
}

.tax__highlight-label {
  font-size: 16px;
  line-height: 1.5;
  color: #62609c;
  margin-right: 4px;
  /* Tách label & value */
}

.tax__highlight-value {
  font-size: 16px;
  /* Hoặc 20px tuỳ thích */
  font-weight: 600;
  line-height: 1.5;
  color: #35a469;
  padding-top: 10px;
}

/* Thu nhập, Người phụ thuộc => row */

.tax__row-inline {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  gap: 0;
}

.tax__field-col {
  display: flex;
  flex-direction: column;
}

.tax__field-label {
  font-size: 16px;
  line-height: 1.5;
  color: #2b3298;
}

.tax__spacing-vertical--8 {
  height: 8px;
}

/* Ô input (icon + field + unit) */

.tax__input {
  width: 100%;
  height: 40px;
  border: 1px solid #d0d1f6;
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.tax__input--short {
  width: 300px;
}

.tax__flex-spacer-162 {
  width: 60px;
}

.tax__input-icon {
  width: 24px;
  height: 24px;
  object-fit: cover;
  margin-right: 8px;
  flex-shrink: 0;
}

.tax__input-field {
  flex: 1;
  border: none;
  outline: none;
  background-color: transparent;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  text-align: right;
  /* canh phải */
}

.tax__input-field::placeholder {
  color: #b4b5d8;
}

.tax__input-unit {
  font-size: 14px;
  line-height: 1.5;
  color: #b4b5d8;
  margin-left: 8px;
  white-space: nowrap;
}

/* Spacer 12, 162 (theo design) */

.tax__gap-12 {
  width: 12px;
}

/* Radio group => row (Trên lương chính thức / khác) */

.tax__radio-group {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  margin-right: 24px;
}

.tax__radio-group input[type="radio"] {
  margin-right: 4px;
  accent-color: #2b3298;
}

.tax__radio-label {
  font-size: 16px;
  line-height: 1.5;
  color: #6b6e9c;
}

/* 4 vùng => row container */

.tax__radio-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

/* 2 nút GROSS <-> NET */

.button_switch {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
}

.tax__switch-button {
  width: 143px;
  height: 40px;
  border-radius: 33px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  box-sizing: border-box;
}

.tax__switch-button--blue {
  background-color: #2b3298;
}

.tax__switch-label {
  font-size: 14px;
  line-height: 1.5;
  color: white;
}

/* =======================
END INCOME TAX
======================= */

/* =======================
RECRUITMENT SOLUTIONS
======================= */

/* Wrapper */

.recruitment-solutions,
.fields {
  margin-top: 60px;
}

/* Recruitment Solutions & Fields Sections */

.recruitment-solutions,
.fields {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solutions-header,
.fields-header {
  text-align: center;
}

.solutions-title,
.fields-title {
  font-size: 32px;
  font-weight: 700;
  color: rgba(43, 50, 152, 1);
  text-transform: uppercase;
}

.solutions-description,
.fields-description {
  font-size: 16px;
  color: rgba(98, 96, 156, 1);
  line-height: 1.5;
  margin-top: 16px;
  margin-bottom: 24px;
}

.solution-card ul > li,
.field-card ul > li {
  font-size: 16px;
  color: rgba(98, 96, 156, 1);
  line-height: 1.5;
}

/* Card Container */

.solutions-content,
.fields-content {
  display: grid;
  gap: 24px;
  width: 100%;
  justify-items: stretch;
}

.solutions-content {
  grid-template-columns: repeat(2, 1fr);
}

.fields-content {
  grid-template-columns: repeat(3, 1fr);
}

/* Card Styles */

.solution-card,
.field-card {
  background: white;
  border: 0.6px solid rgba(209, 210, 247, 1);
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  /* min-height: 250px; */
  min-height: auto;
  justify-content: space-between;
}

/* Card Styles ul li  */

.solution-card ul,
.field-card ul {
  padding: 0;
  list-style-type: none;
}

.solution-card ul li,
.field-card ul li {
  position: relative;
  padding-left: 16px;
  color: rgba(98, 96, 156, 1);
}

.solution-card ul li::before,
.field-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(43, 50, 152, 1);
  font-size: 18px;
}

/* Icon Styles */

.solution-icon,
.field-icon {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* Text Styles */

.solution-title,
.field-title {
  font-size: 24px;
  font-weight: 700;
  color: rgba(43, 50, 152, 1);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.solution-description,
.field-description {
  font-size: 16px;
  color: rgba(98, 96, 156, 1);
  line-height: 1.5;
  flex-grow: 1;
}
/* SECTION CONTACT  */
.contact {
  background-color: white;
  border-radius: 24px;
  padding: 40px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.contact__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.contact__title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: #2b3298;
  text-align: center;
}

.contact__content {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 24px;
}

.contact__form-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 100%;
}

.contact__input-row p {
  display: flex;
  gap: 24px;
}

.contact__input,
.contact__textarea {
  background: white;
  border: 1px solid #d1d2f7;
  border-radius: 24px;
  padding: 14px 16px;
  font-size: 16px;
  color: #62609c;
  width: 100%;
}

.contact__input {
  height: 48px;
}

.contact__textarea {
  height: 144px;
  resize: none;
}

.contact__button {
  width: 100%;
  height: 48px;
  background-color: #2b3298;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  margin-top: 16px;
}

.contact__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.contact__image img {
  max-width: 366px;
  max-height: 366px;
  border-radius: 8px;
}
/* Thông báo lỗi contact  */
.contact .wpcf7-not-valid {
  border: 0px solid #ff4d4d;
  background-color: #ffdfdf;
  color: #f00;
}

.contact .wpcf7-not-valid-tip {
  color: #d60000;
  font-size: 14px;
  margin-top: 5px;
  display: block;
}

.contact .wpcf7-not-valid:focus {
  border-color: #ff0000;
  background-color: #fff5f5;
}

.contact .wpcf7-response-output {
  /* background-color: #ffe6e6; */
  color: #d60000;
  border: 2px solid #ff4d4d;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  margin-top: 10px;
}

.contact .wpcf7-form .wpcf7-response-output {
  background-color: rgb(209, 210, 247);
  color: rgb(43, 50, 152);
  border: 0px solid #ff4d4d;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
/*   font-weight: 500; */
  display: none;
}

.contact .wpcf7-spinner {
  display: inline-block;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  visibility: hidden;
}

@keyframes spin {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

.contact .wpcf7-form.sent .wpcf7-spinner {
  visibility: visible;
}

.contact .wpcf7-form.sent .contact__button {
  pointer-events: none;
  opacity: 0.7;
}
.contact .wpcf7-submit.sending {
  background-color: #ccc !important;
  cursor: not-allowed;
}
.contact .wpcf7-response-output {
  display: block;
}
.contact .contact__button {
  display: block;
}
.contact .wpcf7-form .wpcf7-response-output.error-message {
	background-color: #d1d2f7;
/*   border: 1px solid #ff4d4d; */
/*   color: #ff4d4d;  */
}
/* End thông báo lỗi contact  */
/* END SECTION CONTACT  */
/* =======================
END RECRUITMENT SOLUTIONS
======================= */

/* =======================
PAGE CAREER GUIDE
======================= */

/* Breadcrumb */

.career_guide {
  margin-top: 30px;
}

.breadcrumb {
  width: 100%;
  font-size: 16px;
  line-height: 1.6;
  color: rgb(98, 96, 156);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: rgb(98, 96, 156);
}

/* Bài viết nổi bật */

.content_container__title {
  color: rgb(43, 50, 152);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0%;
  text-align: left;
  padding-bottom: 24px;
}

/* Section Title */

.section_title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: rgba(43, 50, 152, 1);
  text-align: left;
  padding-top: 5px;
  padding-bottom: 24px;
}

/* Content Container */

.content_container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  gap: 24px;
}

/* Main Article */

.main_article {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid rgba(209, 210, 247, 1);
  border-radius: 24px;
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
  overflow: hidden;
}

.main_article_2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid rgba(209, 210, 247, 1);
  border-radius: 24px;
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
  overflow: hidden;
  padding: 12px 0px;
}

.main_article a {
  display: block;
}

.main_article a img.main_image {
  max-width: 628px;
  max-height: 390px;
  object-fit: cover;
  border-radius: 24px 0 0px;
  width: 100%;
}

.article_content {
  padding: 24px;
  /* display: flex; */
  flex-direction: column;
  gap: 16px;
}

.side_articles .article_content {
  padding: 0px;
  /* display: flex; */
  flex-direction: column;
  gap: 16px;
}

.article_tag {
  background-color: rgba(208, 209, 246, 1);
  border-radius: 19px;
  font-size: 12px;
  color: rgba(43, 50, 152, 1);
  padding: 8px 12px;
  text-align: center;
  display: inline-block;
}

.article_title a {
  font-size: 20px;
  font-weight: 700;
  color: rgba(43, 50, 152, 1);
  margin:16px 0px;
}
.article_title a:hover {
  color: rgba(255, 80, 80, 1); 
}

.article_description, .article_description_featured {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(98, 96, 156, 1);
}

.article_content .article_title a,
.side_articles .article_title,
.article_content .article_description {
  line-height: 1.3;
  margin-top: 0.1em;
  margin-bottom: 0.1em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 10px 0px;
}

.read_more a {
  padding: 8px 24px;
  border: 1px solid rgba(48, 54, 126, 1);
  border-radius: 36px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(43, 50, 152, 1);
  text-align: center;
  cursor: pointer;
  margin-top: 16px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;	
}
.read_more a:hover{
  background-color: rgba(43,50,152,1);
  color: white;
}
/* Side Articles */

.side_articles {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Side Article */

.side_article {
  width: 100%;
  background: white;
  border: 1px solid rgba(209, 210, 247, 1);
  border-radius: 24px;
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 16px;
  gap: 16px;
  box-sizing: border-box;
}

.side_article .article_content {
  flex: 1;
  /* display: flex; */
  flex-direction: column;
  /* gap: 8px; */
}

/* .side_article a {
  flex: 1;
  display: flex;
  display: inline;
  justify-content: flex-end;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
} */

.side_article a img.side_image {
  max-width: 256px;
  max-height: 185px;
  width: 100%;
  height:100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
}

/* Side Article 2 */

.side_article_2 {
  background: white;
  border: 1px solid rgba(209, 210, 247, 1);
  border-radius: 24px;
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 16px;
  gap: 16px;
  margin: 12px 24px;
  box-sizing: border-box;
}

.side_article_2 .article_content_2 {
  flex: 1;
  /* display: flex; */
  flex-direction: column;
  /* gap: 8px; */
}

.side_article_2 a {
  /* flex: 1; */
  display: flex;
/*   margin: 16px 0px; */
  justify-content: flex-start;
}

.side_article_2 a img.side_image {
  max-width: 256px;
  max-height: 185px;
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
}

.bg_news_category {
  background: linear-gradient(
    135deg,
    rgb(255, 255, 255) 14%,
    rgb(229, 235, 254) 55%,
    rgb(255, 255, 255) 92%
  );
}

.bg_news_category .news {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 64px;
  position: relative;
  overflow: hidden;
  overflow: unset;
}

.bg_news_category .news__title {
  text-transform: inherit;
  margin-top: 40px;
  margin-bottom: 0px;
}

.bg_news_category .news {
  padding-bottom: 40px;
}

.pdbt_career_guide .footer {
  margin-top: 0px;
}

/* =======================
END PAGE CAREER GUIDE
======================= */

/* =======================
PAGE DETAIL
======================= */

.detail {
  margin-top: 16px;
}

/* ROW: 2 cột (bên trái 720px, bên phải 536px) */

.detail__row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
}

/* Cột trái (720px), cột phải (536px) */

.detail__left {
  max-width: 720px;
  display: flex;
  flex-direction: column;
}

.detail__right {
  max-width: 536px;
}

/* ===============================
     CARD & SPACING
  ================================ */

.detail__card {
  width: 100%;
  background-color: #fff;
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
  border: 1px solid #d0d1f6;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-sizing: border-box;
}

.detail__spacing-vertical--16 {
  height: 16px;
}

.detail__spacing-vertical--24 {
  height: 24px;
}

/* Tiêu đề (24px, đậm, màu #2b3298) */

.detail__title {
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #2b3298;
  margin-bottom: 20px;
}

.detail__paragraph {
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  color: #62609c;
}

.detail__related-item a {
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  color: #62609c;
}

.detail__related-item {
  padding: 8px 0px;
}

.detail__left .detail__card {
  padding: 0px;
}

.detail__related-item {
  position: relative;
}

.detail__related-item:not(:last-child)::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #2b329875, transparent);
  position: absolute;
  bottom: -5px;
  left: 0;
  /*! border: 1px solid #D1D2F7; */
}

.card__image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 720px;
  object-fit: cover;
  max-height: 418px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.card__content {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card__tag a {
  padding: 8px 12px;
  background-color: rgba(208, 209, 247, 1);
  border-radius: 19px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: rgba(43, 50, 152, 1);
  font-weight: 500;
  max-width: 30%;
}

.card__title {
  font-size: 20px;
  font-weight: 700;
  color: rgba(43, 50, 152, 1);
  margin: 0;
}

.card__description {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(98, 96, 156, 1);
  text-align: justify;
  text-justify: distribute;
  hyphens: auto;
}

.card__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(97, 95, 155, 0.75);
  margin: 16px 0;
}

.card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: rgba(114, 114, 114, 1);
}

.card__socials {
  display: flex;
  gap: 12px;
}

.card__social-icon {
  width: 32px;
  height: 32px;
}

.block__gap-24 {
  height: 24px;
}

/* =======================
END PAGE DETAIL
======================= */

/* Footer Styling */

.footer {
  width: 100%;
  background-color: #30367e;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
}

/* ẩn logo pc  */

.footer__header {
  display: none;
}

/* end ẩn logo pc  */

.footer__content {
  margin-top: 60px;
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 140px;
/*   justify-content: space-between; */
  display: grid;
  grid-template-columns: 27% 20% 20% auto;
  gap:20px;	
}

.footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 200px;
}

.footer__title {
  font-size: 16px;
  letter-spacing: 2.4px;
  color: #a2a5d4;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__item a {
  font-size: 16px;
  color: var(--white-color);
  line-height: 1.5;
  cursor: pointer;
}

.footer__spacer {
  width: 150px;
}

.footer__contact .footer__icons {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
}

.footer__icon {
  max-width: 40px;
  border-radius: 8px;
}

/* .footer__newsletter {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px;
  border: 1px solid var(--white-color);
  border-radius: 50px;
  width: 372px;
}

.footer__newsletter input[type="text"] {
  border: none;
  background-color: transparent;
  color: var(--white-color);
  margin-left: 15px;
}

.footer__placeholder {
  flex: 1;
  font-size: 14px;
  color: #a2a5d4;
} */

.footer .wpcf7-form {
  position: relative;
}

.footer .wpcf7-form p {
  display: flex;
  align-items: center;
  border: 1px solid var(--white-color);
  border-radius: 50px;
  padding: 5px;
  max-width: 380px;
  height: 50px;
  position: relative;
  margin: auto;
  overflow: hidden;
  z-index: 1;
}

.footer .wpcf7 form.sent .wpcf7-response-output {
  border-color: transparent;
}
.footer .wpcf7-form input[type="email"] {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 16px;
  color: white;
  padding: 12px 20px;
  outline: none;
  max-width: 251px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  maxlength: 50;
}

.footer .wpcf7-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer .wpcf7-form input[type="submit"] {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fd1e56;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.footer .wpcf7-form input[type="submit"]:hover {
  background-color: #dc093e;
}

/* Đưa lỗi ra ngoài form */
.footer .wpcf7-not-valid-tip{
	display:none;
}
.footer .wpcf7 form.invalid .wpcf7-response-output{
	border-color: transparent;
}
.footer .wpcf7-response-output {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  font-size: 14px;
  color: #2b3298;
  text-align: left;
  padding-top: 5px;
  z-index: 10;
  background-color: #d1d2f7;
  padding: 5px 10px;
  border-radius: 5px;
  border: 0px solid #00a0d200;
}

.footer__button {
  background-color: #fc1e55;
  color: var(--white-color);
  border: none;
  border-radius: 24px;
  padding: 10px 20px;
  cursor: pointer;
}

.footer__divider {
  width: 100%;
  height: 1px;
  background-color: #a2a5d4;
  margin: 32px 0;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 24px;
}

.footer__logo {
  max-width: 210px;
  max-height: 40px;
}

.footer__rights {
  font-size: 16px;
  color: var(--white-color);
}

/* Ẩn nhận bản tin  */

.footer__newsletter-section {
  display: none;
}

/* END Ẩn bản tin  */

/* BACK TO TOP  */

.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 0px;
  background-color: transparent;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.back-to-top img {
  width: 40px;
  height: auto;
}

.back-to-top.visible {
  opacity: 1;
}

.back-to-top:hover {
  opacity: 0.8;
}
#backToTop {
	  right: 30px;
    }
/* END BACK TO TOP  */

/* PAGE 404 */

/* Định dạng chung cho error-section */

.error-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  text-align: center;
  padding: 20px;
}

.error-section .inner-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 60px 80px;
  border-radius: 20px;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2);
  max-width: 550px;
  width: 100%;
}

.error-section h1 {
  font-size: 110px;
  font-weight: bold;
  color: #ff3333;
  margin-bottom: 20px;
  text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3);
}

.error-section h2 {
  font-size: 22px;
  color: #222;
  line-height: 1.6;
  font-weight: 500;
}

/* Nút về trang chủ */

.theme-btn {
  display: inline-block;
  padding: 16px 35px;
  margin-top: 30px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #007bff, #004bb5);
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0px 7px 20px rgba(0, 123, 255, 0.4);
}

.theme-btn:hover {
  background: linear-gradient(135deg, #004bb5, #002e80);
  box-shadow: 0px 12px 30px rgba(0, 123, 255, 0.6);
}

/* Định dạng thẻ a */

.error-section a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.error-section a:hover {
  color: #ffd700;
}

/* END PAGE 404 */

/* END */

/* MENU MOBILE  */

/* Mobile Styles */

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  z-index: 1100;
  /* Đảm bảo luôn nằm trên cùng */
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #cecece;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Chuyển thành dấu "X" khi menu mở */

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg) !important;
  background-color: white;
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg) !important;
  background-color: white;
}

/* END MENU MOBILE  */

/* Responsive Design */

/* Nếu màn hình lớn hơn 768px, hiển thị div sort options và ẩn select */

@media screen and (min-width: 769px) {
  .sort-select {
    display: none;
    /* Ẩn select trên desktop */
  }
}

/* Tablet (màn hình từ 768px đến 1024px) */

@media screen and (max-width: 1024px) {
  .wrapper {
    padding: 0 20px;
    /* Giá trị padding riêng cho tablet */
  }
  /* Header */
  .header {
/*     padding: 20px 40px; */
	  padding: 20px;
  }
  .header__nav-list {
    gap: 40px;
  }
  /* Hero Section */
  .hero__content {
    width: 100%;
  }
  .hero__search {
    width: 100%;
    flex-wrap: wrap;
    height: 50px;
    padding: 12px;
  }
  .hero__search-location {
    width: 100%;
    max-width: 30%;
  }
  .hero__search-input input[type="text"] {
    width: 100%;
  }
  .hero__search button[type="submit"] {
    padding: 8px 10px;
  }
  .hero__gap {
    display: none;
  }
  /* Hot Jobs & Suggested Jobs */
  .hot_jobs__content,
  .suggested_jobs__content {
    flex-direction: column;
    padding: 0px;
    justify-items: center;
    margin-top: 24px;
    gap: 0px;
    }
	.hot_jobs__content:empty {
    display: none !important;
   }
  .skeleton-loader {
    background-color: #f3f3f3 !important;
    border-radius: 6px;
    animation: pulse 1.5s infinite !important;;
  }

  @keyframes pulse {
    0% {
        background-color: #f3f3f3;
    }
    50% {
        background-color: #e0e0e0;
    }
    100% {
        background-color: #f3f3f3;
    }
  }
  .hot_jobs__item-title a {
    font-size: 18px;
  }
  .hot_jobs__item,
  .suggested_jobs__item {
    margin-bottom: 20px;
  }
  .hot_jobs__locations-slider .slick-slider,
  .suggested_jobs__locations-slider .slick-slider {
    width: 100%;
    max-width: 100%;
  }
  /* Industries Section */
  .industries__list .slick-slide {
    padding: 12px;
  }
  .industries__item {
    width: 200px;
    height: 180px;
  }
  /* Work Opportunity */
  .work_opportunity {
    height: auto;
    padding: 40px 20px;
    flex-direction: column;
  }
  .work_opportunity__content {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  .work_opportunity__img {
    width: 370px;
/*     height: 216px; */
	padding-top: 15px;
	padding-left: 20px;  
    margin: 30px 0 0 0;
  }
  /* News Section */
  .news__content {
    flex-direction: column;
    align-items: center;
  }
  .news__item {
    width: 90%;
    margin-bottom: 30px;
  }
}

/* Mobile (màn hình nhỏ hơn 768px) */

@media screen and (max-width: 767px) {
  .wrapper {
    padding: 0 20px;
    /* Giá trị padding riêng cho mobile */
  }
  /* Header */
  .header {
/*     padding: 16px 20px; */
	padding-top: calc(env(safe-area-inset-top) + 20px);   
  }
  .header__nav {
    display: none;
    align-items: unset;
    padding: 40px 0px 20px;
  }
  .header__nav-item {
    margin: 0 0px;
  }
  .header__logo-img {
    width: 170px;
    height: 33px;
  }
  .header__container {
    padding: 4px 40px;
  }
  .header__nav-link {
    font-size: 20px !important;
	font-weight: 500 !important; 
  }
  /* Hero Section */
  .hero__title {
    font-size: 28px;
  }
  .hero__search {
    gap: 8px;
  }
  .hero__search button[type="submit"] {
    width: 100%;
	padding: 10px 10px;
	margin-right: 5px;
	font-size: 14px;  
  }
  .hero__tags {
    flex-wrap: wrap;
    justify-content: center;
  }
  /* Hot Jobs & Suggested Jobs */
  .hot_jobs,
  .suggested_jobs {
    border-radius: 20px;
    margin-top: 40px;
  }
  .hot_jobs__header,
  .suggested_jobs__header {
    padding: 16px;
  }
  .hot_jobs__header {
    border-radius: 20px 20px 0px 0px;
  }
  .hot_jobs__title-text,
  .suggested_jobs__title-text {
    font-size: 20px;
  }
  .hot_jobs__filters,
  .suggested_jobs__filters {
    flex-wrap: wrap;
    gap: 10px;
  }
  .hot_jobs__filter-item,
  .suggested_jobs__filter-item {
    width: 100%;
  }
  /* Chuyển xóa bộ lọc thành dấu x  */
  .hot_jobs__clear-filters,
  .suggested_jobs__clear-filters {
    width: 25px;
    height: 25px;
    padding: 0;
    font-size: 16px;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--button-bg-color);
    overflow: hidden;
    text-overflow: clip;
    margin-left: 20%;
    background: url("../images/close.png") no-repeat center;
  }
  .hot_jobs__clear-filters::after,
  .suggested_jobs__clear-filters::after {
    content: "X";
    font-size: 12px;
    font-weight: bold;
    color: var(--white-color);
    margin-right: 32px;
  }
  .hot_jobs__clear-filters,
  .suggested_jobs__clear-filters {
    color: transparent;
  }
  /* end Chuyển xóa bộ lọc thành dấu x  */
  /* Thu gọn lại phần hot & suggested jobs filter item  */
  .suggested_jobs__filter-item,
  .hot_jobs__filter-item {
    padding: 6px 16px;
  }
  .suggested_jobs__filter-label,
  .suggested_jobs__filter-value,
  .hot_jobs__filter-label,
  .hot_jobs__filter-value {
    font-size: 14px;
  }
  .suggested_jobs__filter-icon,
  .hot_jobs__filter-icon {
    width: 20px;
    height: 20px;
  }
  .hot_jobs__location-dropdown {
/*     padding-left: 20px; */
	   padding-left: 1px;
  }
  /* End Thu gọn lại phần hot & suggested jobs filter item  */
  /* Chỉnh lại địa điểm  */
  .suggested_jobs__checkboxes {
    margin-left: -25px;
  }
  .hot_jobs__checkboxes {
    margin-left: -25px;
  }
  /* End chirh lại địa điểm  */
  /* Industries Section */
  .industries__title {
    font-size: 24px;
  }
  .industries__item {
    width: 160px;
    height: 150px;
  }
  .industries__item-icon-wrapper {
    width: 70px;
    height: 70px;
    padding: 15px;
  }
  .industries__item-text {
    font-size: 16px;
  }
  /* Work Opportunity */
  .work_opportunity__content-title {
    font-size: 24px;
  }
  /* .work_opportunity__img {
    width: 200px;
    height: 200px;
  } */
  /* Footer */
  .footer__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 40px;
  }
  .footer__column {
    margin-bottom: 30px;
    align-items: center;
  }
  .footer__newsletter {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 20px;
  }
  .footer__rights {
    text-align: center;
  }
  .footer .wpcf7-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    max-width: 400px;
  }
  .footer .wpcf7-form p {
    padding: 5px 38px;
    max-width: 392px;
  }
  .footer .wpcf7-form input[type="email"] {
    padding-left: 0;
  }
	#backToTop{
		right: 0px !important;
	}
	.back-to-top{
		bottom: 28px !important;
	}
}

/* Điều chỉnh slider cho mobile */

@media screen and (max-width: 767px) {
  .hot_jobs__locations,
  .suggested_jobs__locations {
/*     margin: 0 10px; */
    display: flex;
    flex-wrap: nowrap;
  }
  .hot_jobs__button,
  .suggested_jobs__button {
    width: 32px;
	height: 32px;  
  }
  .hot_jobs__location,
  .suggested_jobs__location {
    font-size: 11px;
    padding: 6px 10px;
    height: 32px;
	padding-bottom: 8px;
  }
  .remove-location {
    width: 20px;
    height: 20px;
    font-size: 14px;
	padding-top: 2px;  
  }
  .hot_jobs__button--next, .hot_jobs__button--prev {
    width: 13.6%;
  }
}

/* Điều chỉnh cho màn hình siêu nhỏ */

@media screen and (max-width: 375px) {
  .hero__title {
    font-size: 24px;
  }
  .hero__search {
    padding: 8px;
  }
  .industries__item {
    width: 140px;
    height: 130px;
  }
  .footer__newsletter {
    padding: 4px;
  }
  .footer__button {
    padding: 8px 16px;
  }
	#backToTop{
		right: 0px !important;
	}
	.back-to-top{
		bottom: 28px !important;
	}
}

/* Hiển thị menu mobile trên màn hình nhỏ */

@media screen and (max-width: 767px) {
  /* industries */
  .industries__button--prev {
    left: 5px;
  }
  .industries__button--next {
    right: 5px;
  }
  .industries__button {
    top: 60%;
    transform: translateY(-60%);
    padding: 10px 14px;
  }
  .industries__item {
    width: 180px;
    height: 180px;
  }
  .industries__item-icon-wrapper {
    width: 70px;
    height: 70px;
    padding: 15px;
  }
  .industries__item-text {
    font-size: 18px;
  }
  .industries__item-value {
    font-size: 14px;
  }
  /* End industries */
}

/* Mobile Layout */

@media (max-width: 768px) {
  /* about_us */
  .about_us {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }
  .about_us__img {
    order: -1;
    width: 100%;
/* 	max-width: 390px; */
    max-height: 215px;
    object-fit: cover;  
  }
  .about_us__content-text {
    max-width: 100%;
    font-size: 14px;
    margin: 0px 0;
    margin-bottom: 7px;
  }
  .about_us__content-title {
    font-size: 25px;
  }
  /* end about_us */
  /* hero */
  .hero {
    background-size: cover;
    /* Lấp đầy toàn bộ phần tử */
    background-position: center;
    /* Căn giữa ảnh */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 228px;
    /* Chiều cao của phần hero */
  }
  .hero__tags {
    display: none;
  }
  .hero__title {
    font-size: 20px;
    margin-bottom: 0px;
  }
  .hero__subtitle {
    font-size: 14px;
    text-align: center;
    line-height: inherit;
	margin-top:16px; 
  }
  /* Ẩn <select> */
  .hero__search-location select {
    display: none;
  }
  /* Ẩn pseudo-element ::before */
  .hero__search-location::before {
    content: none;
  }
  /* Bố cục cho các phần tử còn lại */
  .hero__search {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0px;
  }
  .hero__search-input {
    flex: 1;
  }
  .hero__search-input input {
    width: 100%;
    padding: 10px;
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  .hero__search-location {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .hero__search-location button {
    padding: 10px 16px;
    font-size: 16px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  .hero__search-location button:hover {
    background-color: #0056b3;
  }
  .hero__search-input input[type="text"] {
    font-size: 16px !important;
    margin-left: 0px;
	touch-action: manipulation;
  }
  .hero__search button[type="submit"] {
/*     font-size: 12px; */
  }
  .hero__wrapper {
    margin: 40px 0px;
  }
  /* end hero */
  /* hot_jobs  */
  .hot_jobs__footer {
    display: none;
  }
  .hot_jobs__item {
    margin: 12px;
/* 	width: 366px;   */
  }
  .hot_jobs__item-title {
    font-size: 16px;
  }
  .hot_jobs__item-company {
    font-size: 14px;
  }
  .hot_jobs__item-location,
  .hot_jobs__item-salary {
    font-size: 12px;
  }
  .hot_jobs__item-location,
  .hot_jobs__item-salary {
    padding: 6px;
  }
	.hot_jobs__item-sl-info{
	display: flex;
	justify-content: flex-end;
    margin-left: -40px;	
	} 	
  /* end  hot_jobs  */
  .hot_jobs__view-all {
    font-size: 12px;
    margin-top: 0px;
  }
  img.hot_jobs__title-icon{
  display: none;
 }
  /* industrys  */
  .industries {
    margin-top: 40px;
  }
  .industries__button--prev,
  .industries__button--next {
    width: 42px;
    height: 42px;
  }
  .industries__button img {
    width: 100%;
    /* Điều chỉnh kích thước hình ảnh bên trong nút */
  }
  .industries__item {
    width: 150px;
    /* Thu nhỏ hơn nữa cho điện thoại */
    height: 150px;
  }
  .industries__item-icon-wrapper {
    width: 60px;
    height: 60px;
    padding: 12px;
  }
  .industries__item-text {
    font-size: 16px;
  }
  .industries__item-value {
    font-size: 12px;
  }
  .industries__list {
    display: block;
    /* Bỏ Slick Carousel */
  }
  /* Chuyển slick thành grid  */
  .industries__list {
    position: inherit;
    display: grid;
    align-items: start;
    grid-template-columns: 1fr 1fr;
    margin: 0px;
    gap: 20px;
    margin-top: 20px;
  }
  .industries__item {
    padding: 0px;
  }
  .industries__button {
    display: none;
  }
  .industries__item {
    width: auto;
    height: 185px;
    margin-bottom: 0px;
  }
  .industries__item-icon-wrapper {
    width: 75px;
    height: 75px;
    padding: 20px;
  }
  .industries__item-abbreviation {
    border-radius: 10px;
    padding: 10px;
  }
  .industries__item-value {
    padding-bottom: 12px !important;
    font-size: 14px;
  }
  .industries__item-text {
    padding-top: 5px !important;
    margin-bottom: 5px;
    font-size: 16px;
  }
  /* end Chuyển slick vào grid  */
  /* end industrys  */
  /* Work-opportunity  */
  .work_opportunity__content {
    text-align: left;
    align-items: flex-start;
    padding-top: 20px;
  }
  .work_opportunity__content-text {
    line-height: 20px;
  }
  .work_opportunity__content-title {
    line-height: 30px;
  }
  .work_opportunity__img {
    max-width: 390px;
    /* height: 390px; */
    margin-top: 0px;
  }
  /* end  Work-opportunity  */
  /* news */
  .news {
    margin-bottom: 20px;
    margin-top: 40px;
    overflow: unset;
  }
  .news__title {
    font-size: 24px;
    text-transform: uppercase;
  }
  .news__button--prev,
  .news__button--next {
    background-color: #f0f8ffad;
    border-radius: 100%;
    color: black;
    width: 48px;
    height: 48px;
    border: 1px solid #2B3298;
  }
  .news__button--prev {
    left: -20px;
  }
  .news__button--next {
    right: -20px;
  }
  .news__content .slick-slide {
    max-width: 270px;
  }
  .news__content .slick-track {
    gap: 20px;
  }
  .news__content .slick-list .slick-track {
    margin-left: -40px;
  }
  .news__item {
    padding: 0px;
  }
  .news__item {
/*     margin-left: 12px; */
	margin-bottom: 0px;  
  }
  .news__item-text-description {
    font-size: 14px;
  }
  .news__item-content {
/*     padding: 0 10px; */
  }
  .news__item-title a {
    font-size: 16px;
  }
  .news__item-img {
    width: 270px;
    height: 150px;
  }
  /* end news  */
  /* footer */
  .footer__content {
    position: inherit;
    display: grid;
    align-items: start;
    grid-template-columns: 1fr 1fr;
    margin: 0px;
    gap: 22px;
  }
  .footer__column {
    width: 165px;
    align-items: flex-start;
  }
  .footer__spacer {
    display: none;
  }
  .footer__title {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 6%;
    text-align: left;
  }
  .footer__content {
    margin-top: 24px;
  }
  .footer__list {
    text-align: initial;
  }
  .footer__list p {
    font-size: 14px;
  }
  .footer__newsletter {
    flex-direction: column;
    align-items: center;
  }
  .footer__newsletter-input {
    width: 100%;
  }
  .footer__newsletter-button {
    width: 100%;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
  }
  .footer__rights {
    text-align: center;
  }
  .footer__column {
    align-items: left;
  }
  .footer__column-title {
    text-align: left;
  }
  .footer__column-list {
    text-align: left;
  }
  .footer__header {
    display: unset;
    margin: 24px auto;
  }
  .footer__icon {
    width: 24px;
    height: 24px;
  }
  .footer__contact .footer__icons {
    gap: 12px;
  }
  /*   .footer__newsletter {
    width: 340px;
    height: 52px;
    flex-direction: row;
  } */
  .footer__placeholder {
    font-size: 12px;
    width: 240px !important;
    line-height: 100%;
    color: rgba(162, 165, 212, 1);
    flex-grow: 1;
    border: none;
    background: transparent;
  }
  .footer__button {
    width: 89px;
    height: 40px;
    font-size: 14px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .footer__bottom .footer__logo {
    display: none;
  }
  /* Ẩn nhận bản tin  */
  .footer__newsletter-section {
    display: unset;
  }
  .hide_section_mobile {
    display: none;
  }
	.footer__divider{
		margin: 24px 0px 0px 0px;
	}
	
  /* END Ẩn bản tin  */
  /* end footer */
  /* MENU MOBILE */
  .mobile-menu-toggle {
    display: flex;
    position: fixed;
    right: 20px;
    z-index: 1100;
  }
  .header__nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
    padding: 40px 20px 20px;
    z-index: 1000;
    margin-top: 70px;
  }
  .header__nav.active {
    display: flex;
  }
  .header__nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .header__nav-item {
    border-bottom: 1px solid #999696;
    padding-bottom: 11px;
    color: #0b0b0b;
  }
  .header__nav-link {
    text-decoration: none;
    color: #333;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header__nav-link:hover {
    color: #007bff;
  }
  body.menu-open {
    overflow: hidden;
  }
  /* Định dạng chung cho dropdown */
  .header__nav-item--dropdown {
    position: relative;
  }
  .header__nav-item--dropdown .dropdown-menu {
    list-style: none;
    margin: 0;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    visibility: inherit;
    opacity: 0;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  }
  /* Hiển thị menu con khi dropdown mở */
  .header__nav-item--dropdown.active .dropdown-menu {
    max-height: 300px;
    max-width: 768px;
    padding: 0px 0;
    opacity: 1;
    margin-top: 10px;
  }
  /* Định dạng từng mục menu con */
  .dropdown-item {
    padding: 0 4px;
    border-bottom: 1px solid #c3c3c3;
  }
  .dropdown-item:last-child {
    border-bottom: none;
  }
  .dropdown-link {
    text-decoration: none;
    color: #0b0b0b;
    font-size: 18px;
    display: block;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .dropdown-link:hover {
    background-color: #ececec;
    color: #007bff;
    border-radius: 4px;
  }
  /* Mũi tên chỉ báo dropdown */
  .header__nav-item--dropdown > .header__nav-link::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url("../images/triangle-arrow-mb_1.svg");
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 5px;
    transition: transform 0.3s ease;
	transform: rotate(0deg);
  }
  /* Xoay mũi tên khi dropdown mở */
  .header__nav-item--dropdown.active > .header__nav-link::after {
    transform: rotate(90deg);
  }
  .header__nav-item--dropdown:hover > .header__nav-link::after {
    color: #0b0b0b;
  }
  /* Màu sắc cho liên kết chính */
  .header__nav-item--dropdown > .header__nav-link {
    color: #0b0b0b;
  }
  .header__nav-item--dropdown:hover > .header__nav-link {
    color: #0b0b0b;
  }
  /* Đảm bảo dropdown menu con nằm đúng vị trí */
  .header__nav-item--dropdown .dropdown-menu {
    position: relative;
    background-color: #2b32982e;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
  }
  .header__nav-item a {
    color: #151517;
    margin: 0px;
  }
  .header__container {
    padding: 4px 0px;
  }
  /* =============================
    PAGE JOB CATEGORY
    ============================= */
  .job-sort {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .related-keywords {
    display: none;
  }
  .sort-options {
    display: none;
  }
  .job-sort .sort-label.hidden {
    display: flex;
    /* padding-right: 36px; */
  }
  .sort-select {
    padding: 5px 55px 5px 10px;
    border-radius: 12px;
    font-size: 14px;
    border: 1px solid rgba(209, 210, 247, 1);
    color: rgba(43, 50, 152, 1);
    background-color: white;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("../images/dropdown.svg") no-repeat right 10px center;
    background-size: 12px;
    outline: none;
  }
  .sort-select:focus {
    outline: none;
    border: 1px solid rgba(209, 210, 247, 1);
    font-size: 14px;
    /* padding: 5px 45px 5px 10px; */
  }
  .filter-options.mobile {
    flex-wrap: wrap;
    display: none;
    gap: 10px;
    padding-top: 10px;
    flex-flow: wrap;
    place-content: center;
    justify-content: space-between;
    width: 100%;
  }
  .filter-options.mobile select {
    flex-grow: 1;
    min-width: 30%;
    max-width: 48%;
  }
  .filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .extra-filters.mobile {
    display: none;
    /* Ẩn bộ lọc nâng cao khi chưa được click */
  }
  .after-filters {
    display: flex;
  }
  .filter-dropdown {
    flex-direction: row;
    padding-top: 10px;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0px;
	padding: 10px;  
  }
  .clear-filters {
    padding-right: 30px;
  }
  .after-filters {
    padding-left: 30px;
  }
  /* // END PAGE JOB CATEGORY */
  /* Section Suggested jobs  */
  .box-boder-vieclam{
    border: 1px solid rgba(209, 210, 247, 1);
    border-radius: 20px;
    padding: 0px 10px;
    padding-bottom: 0px;
    background-color: white;
    padding-bottom: 30px;
  }
  .job-results-summary{
    margin: 0px -10px;
    border-radius: 20px 20px 0px 0px;
  }
  .favourite-icon {
    display: none;
  }
  .job-title a {
    font-size: 18px;
  }
  .company-name {
    font-size: 13px;
  }
  .suggested_job__item-company,
  .suggested_job__item-salary {
    font-size: 14px;
  }
  .salary,
  .job-card__location_detile {
    font-size: 12px;
	padding: 8px 12px;  
  }
  .job-card__view-detail {
    display: none;
  }
  .job-card__location_detile:nth-child(n + 2) {
    display: none;
  }
  .location {
    font-size: 14px;
    line-height: 1.3;
    margin-top: 0.1em;
    margin-bottom: 0.1em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .date-posted {
    font-size: 12px;
  }
  .job-category {
    font-size: 12px;
  }
  .salary-location {
    gap: 4px;
  }
  .salary-location {
    align-items: flex-start;
    flex-direction: row;
	display: flex;
    justify-content: flex-end;
    margin-left: -40px;  
  }
  .categories-jobs-container .separator {
    display: none;
  }
  .date-category {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  /* End Section Suggested jobs  */
  /* Section Suggested jobs  */
  .suggested_job {
    align-items: inherit;
  }
  .suggested_job .slick-track {
    display: flex !important;
    flex-direction: column !important;
    /* Chuyển về dạng ngang cho carousel */
    width: auto !important;
  }
  .suggested_job .slick-slide {
    width: 100% !important;
    /* Mỗi item chiếm 1/3 chiều rộng của container */
    /* height: 160px !important; */
    /* Chiều cao cố định cho mỗi item */
    box-sizing: border-box;
    flex-shrink: 0;
    padding: 12px;
    border: 0.6px solid rgb(209, 210, 247) !important;
  }
  .suggested_job__item-info {
    flex: 1;
  }
  .suggested_job__item-tag {
    display: flex;
    align-items: center;
    margin-top: 5px;
    white-space: nowrap !important;
    overflow: visible !important;
    top: 0px !important;
    position: relative !important;
    margin-left: 0px !important;
  }
  .suggested_job__item-tag-text {
    margin-left: 5px;
    font-size: 12px;
  }
  .suggested_job__item-tag {
    display: none !important;
  }
  /* Các điều chỉnh cho nút prev/next */
  .slick-prev,
  .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 18px;
    padding: 0px;
    cursor: pointer;
  }
  .slick-prev {
    left: 10px;
  }
  .slick-next {
    right: 10px;
  }
  .suggested_job {
    margin-top: 20px;
  }
  .suggested_job__title {
    font-size: 24px;
    text-align: left;
  }
  .suggested_job__button {
    top: 5%;
  }
  .suggested_job__button img {
    width: 32px;
	display: none;
  }
  .suggested_job__button {
    width: 32px;
    border: 1px solid rgb(43, 50, 152);
    box-sizing: border-box;
    border-radius: 100%;
  }
  .suggested_job__button--prev {
    left: unset;
    right: 60px;
    background-image: url("../images/suggested_job__button--prev.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
	top: 4%;
  }
  .suggested_job__button--next {
    right: 5px;
    background-image: url("../images/suggested_job__button--next.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
	top: 4%;  
  }
  .suggested_job__item {
    margin-bottom: 0px;
  }
  .suggested_job__list .slick-list {
    max-height: 900px !important;
    height: 700px !important;
    padding: 10px;
    border-radius: 20px;
    border: 0.6px solid rgb(209, 210, 247);
    border-radius: 10px;
    box-shadow: 2px 2px 14px 0px rgba(43, 50, 152, 0.04);
    background: var(--white-color);
  }
  .suggested_job__list {
    margin-top: 0px;
  }
	.suggested_job__list .slick-list {
  	margin-left: 0px;
	}
  .suggested_job .salary-tag-wrapper {
    align-items: flex-start;
    flex-direction: row;
    align-content: flex-start;
    white-space: nowrap !important;
    overflow: visible !important;
    align-items: center;
	justify-content: flex-end !important;
    margin-left: -40px;
  }
  .suggested_job .separator {
    display: none;
  }
  .suggested_job .job-title {
    line-height: 1.3;
    margin-top: 0.1em;
    margin-bottom: 0.1em;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  /* Cập nhật để các nút Prev/Next bị vô hiệu hóa với lớp slick-disabled */
  .suggested_job__button--prev.slick-disabled,
  .suggested_job__button--next.slick-disabled {
    opacity: 0.1;
    pointer-events: none;
  }
  /* Đảm bảo các nút prev/next hoạt động bình thường */
  .suggested_job__button--prev,
  .suggested_job__button--next {
    opacity: 1;
    pointer-events: auto;
  }
  /* END Section Suggested jobs */
  /* END PAGE JOB */
  /* PAGE JOB DETAILS  */
  .job-details {
    margin-top: 40px;
  }
  .job-details__row {
    flex-direction: column;
    gap: 16px;
    /* Giảm khoảng trống dọc */
  }
  .job-details__left,
  .job-details__right {
    /* Mỗi cột full width */
    flex: unset;
    width: 100%;
  }
  .job-card__header {
    display: flex;
    flex-direction: column;
  }
  .job-card__salary,
  .job-card__salary,
  .job-card__location,
  .job-card__date {
    font-size: 16px;
  }
  .detail_wrapper .job-card__row-1 {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
  }
  .detail_wrapper .job-card__row-2 {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
  }
  .detail_wrapper
    .job-card__salary
    .detail_wrapp
    .job-card__header-info
    .job-card__urgent_hiring {
    margin-bottom: 10px;
  }
  .job-card__category-tag {
    margin-top: 10px;
  }
  .card__date-info {
    margin-bottom: 0px;
  }
  .detail_wrapper .job-card__divider {
    display: none;
  }
  .detail .job-card__header_info_detail {
    align-items: flex-start;
  }
  .detail .job-card__position {
    margin: 0px;
    font-size: 17px;
  }
  .detail .job-card__row,
  .detail .job-card__company {
    margin-bottom: 0px;
  }
  .detail .job-card__section-title {
    font-size: 18px;
  }
  /* END PAGE JOB DETAILS */
  /* PAGE ABOUT US  */
  /* Banner: giảm padding cho gọn */
  .banner-block {
    padding: 80px 16px;
  }
  .banner-block__content {
    width: 100%;
  }
  /* Stats xếp dọc thay vì ngang */
  .banner-block__stats {
    flex-direction: column;
  }
  .banner-block__stats-gap {
    display: none;
  }
  .banner-block__stat {
    width: 100%;
    margin-bottom: 16px;
  }
  /* Story: chuyển 2 cột text thành 1 cột */
  .story-content {
    flex-direction: column;
  }
  .story-content__gap {
    display: none;
  }
  .story-content__text {
    width: 100%;
    margin-bottom: 16px;
  }
  /* Board: xếp dọc card 
     (1 card/row) cho gọn */
  .board-list {
    flex-direction: column;
    align-items: center;
  }
  .board-list__gap {
    display: none;
  }
  .board-card {
    margin-bottom: 16px;
  }
  .board-section__spacing-big {
    height: 0px;
  }
  .banner-block__title {
    font-size: 24px;
  }
  .banner-block__heading {
    font-size: 20px;
    letter-spacing: 3px;
  }
  .banner-block__main-text {
    font-size: 20px;
    line-height: 28px;
	font-weight: 600;
  }
  .section-title {
    font-size: 22px;
    margin-top: 20px;
  }
  .story-content {
    padding: 20px 0px;
  }
  .board-list {
    padding-top: 20px;
  }
  .board-card__image {
    max-height: 470px;
  }
  /* END PAGE ABOUT US  */
  /* PAGE TOOLS  */
  .tools__card {
    padding: 12px;
  }
  .tools__row {
    flex-direction: column;
  }
  .tools__left,
  .tools__right {
    width: 100% !important;
  }
  .tools__title {
    font-size: 19px;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
  }
  .tools__paragraph {
    font-size: 16px;
  }
  .tools__highlight-box {
    flex-direction: column;
  }
  .tools__highlight-item {
    align-items: flex-start;
  }
  .tools__row-inline {
    flex-direction: column;
  }
  .tools__radio-group {
    margin-bottom: 10px;
  }
  .tools__input-field {
    width: 220px;
  }
  .tools__input--short {
    width: auto;
  }
  /* END PAGE TOOLS  */
  /* PAGE INCOME TAX  */
  .tax__card {
    padding: 12px;
  }
  .tax__row {
    flex-direction: column;
  }
  .tax__left,
  .tax__right {
    width: 100% !important;
  }
  .tax__gap-24 {
    width: 100%;
    height: 24px;
  }
  .tax__title {
    font-size: 19px;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
  }
  .tax__paragraph {
    font-size: 16px;
  }
  .tax__gap-24 {
    width: auto;
  }
  .tax__highlight-box {
    flex-direction: column;
  }
  .tax__highlight-item {
    align-items: flex-start;
  }
  .tax__row-inline {
    flex-direction: column;
  }
  .tax__input-field {
    width: 220px;
  }
  .tax__input--short {
    width: auto;
  }
  /* END PAGE INCOME TAX  */
  /* PAGE RECRUITMENT SOLUTIONS  */
  .recruitment-solutions,
  .fields {
    margin-top: 40px;
  }
  .solutions-content,
  .fields-content {
    grid-template-columns: 1fr;
  }
  .solutions-title,
  .fields-title {
    font-size: 24px;
  }
  .solution-title,
  .field-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .solution-description,
  .field-description {
    font-size: 14px;
  }
  .solution-card,
  .field-card {
    gap: 0px;
    padding: 24px 16px;
  }
  /* SECTION CONTACT */
  .contact {
    background-color: transparent;
    margin-top: 39px;
  }
  .contact__title {
    font-size: 24px;
  }
  .contact__content {
    flex-direction: column;
    background-color: white;
    padding: 20px;
    border-radius: 24px;
  }
  .contact__input-row p {
    flex-direction: column;
    gap: 16px;
  }
  .contact__form-wrapper {
    width: 100%;
  }

  /* END SECTION CONTACT */

  /* END PAGE RECRUITMENT SOLUTIONS  */
  /* PAGE CAREER GUIDE */
  .content_container {
    flex-direction: column;
  }
  .main_article {
    flex-direction: column;
  }
	.side_articles .article_title, .article_content .article_description{
	margin: 5px 0;	
	}
  /* Side Articles sẽ giống Main Article */
  .side_articles {
    flex-direction: column;
    gap: 24px;
  }
  .side_article {
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
  }
  .side_article a {
    order: -1;
  }
  .side_article a img.side_image {
    width: 100%;
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: cover;
    border-radius: 12px;
  }
  .side_article .article_content {
    padding: 4px;
  }
  /* carrer-2 */
  .main_article_2 {
    background: none;
    border: none;
    box-shadow: none;
	padding: 0;  
  }
  .side_article_2 {
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    margin: 0px 0px;
	gap:0;
	margin-bottom: 24px;  
  }
  .side_article_2:last-child {
    margin-bottom: 0;
  }
  .side_article_2 a {
    order: -1;
    margin: 16px 0px;
    margin: 0px;
  }
  .side_article_2 a img.side_image {
    width: 100% !important;
    height: auto;
    max-width: 400px;
    max-height: 200px;
    object-fit: cover;
    border-radius: 12px;
  }
  .side_article_2 .article_content {
    padding: 4px;
  }
  .side_article_2 .article_tag {
    margin-bottom: 16px;
  }
  .side_article_2 a {
    margin-bottom: 5px;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;  
  }
  /* end carrer-2  */
  .main_image {
    width: 100%;
    height: auto;
  }
  .main_image {
    max-width: 400px;
    max-height: 200px;
  }
  .article_description {
    font-size: 16px;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow: ellipsis;  
  }
  /* END PAGE CAREER GUIDE */
  /* PAGE DETAIL  */
  .detail__card {
    padding: 12px;
  }
  .detail__row {
    flex-direction: column;
  }
  .detail__left,
  .detail__right {
    width: 100% !important;
  }
  .detail__gap-24 {
    width: 100%;
    height: 24px;
  }
  .detail__title {
    font-size: 24px;
    line-height: 1.2;
    text-align: start;
  }
  .detail__gap-24 {
    width: auto;
  }
  .card__tag {
    max-width: 100%;
  }
	.card__tag a {
    max-width: 100%;
  }
  .card__image {
    max-width: 390px;
    object-fit: cover;
    max-height: 300px;
  }
  .bg_news_category .news {
    margin-top: 40px;
    margin-bottom: 0px;
  }
  .bg_news_category .news__title {
    margin: 20px 0px;
  }
  .detail__right {
    padding-top: 16px;
  }
  .hidden__hero {
    display: none;
  }
  .section_title {
    font-size: 24px;
  }
  .detail__title {
    margin-bottom: 0px;
    padding: 10px 0px;
    margin-top: 10px;
  }
  .related-jobs {
    align-items: flex-start;
  }
  .related-jobs .related-jobs__title {
    padding-bottom: 10px;
    margin-top: 10px;
  }
  .related-job-card {
    padding: 14px;
	margin-bottom: 30px;  
  }
  .related-job-item-info-2 .related-job-card__salary,
  .related-job-item-info-2 .related-job-card__location {
    padding: 6px 10px;
  }
	.related-job-item-info-2{
	  display: flex;
    justify-content: flex-end;
    margin-left: -40px;	
	}
  .related-jobs .hot_jobs__item-tag_related {
    margin-top: -35px;
    right: 30px;
  }
  .detail .related-jobs {
    padding: 14px;
  }
  /* END PAGE DETAIL  */
  /* CÔNG CỤ TÍNH THUẾ */
  .tax__result {
    margin-top: 0px !important;
  }
  .tax__calculator-content .tax__table-wrapper {
    border: none !important;
  }
  .tax__table-wrapper {
    padding: 0px !important;
  }
  .tax__table {
    width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
  }
  /* Ẩn thead trên mobile */
  .tax__table thead {
    display: none;
  }
  /* Chuyển mỗi hàng thành một khối */
  .tax__table tbody {
    display: block;
    width: 100%;
  }
  .tax__table tr {
    display: block;
    border: 1px solid #d0d1f6;
    margin-bottom: 10px;
    padding: 0px;
    border-radius: 10px;
  }
  .tax__table td {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    border-bottom: 1px solid #eee;
    position: relative;
    font-size: 14px;
    flex-wrap: wrap;
  }
  .tax__table td:last-child {
    border-bottom: none;
  }
  /* Thêm label cho từng ô */
  .tax__table td:nth-child(1)::before {
    content: "Lương Gross: ";
    font-weight: bold;
  }
  .tax__table td:nth-child(2)::before {
    content: "Bảo hiểm: ";
    font-weight: bold;
  }
  .tax__table td:nth-child(3)::before {
    content: "Thuế TNCN: ";
    font-weight: bold;
  }
  .tax__table td:nth-child(4)::before {
    content: "Lương Net: ";
    font-weight: bold;
  }
  .tax__table-title {
    font-size: 13px;
  }
  .tax__result-item {
    font-size: 16px;
  }
  .tax__result h3 {
    font-size: 16px !important;
  }
  /* END CÔNG CỤ TÍNH THUẾ */
  /* cookie content  */
  .cookie-content {
    flex-direction: column;
    justify-content: space-between;
  }
  /* end cookie content */
  .tooltip-wrapper {
    display: none !important;
  }
	#backToTop{
		right: 0px !important;
	}
	.back-to-top{
		bottom: 28px !important;
	}
}

/* Tooltip styles */

/* Sticky right column */

/* Cột bên phải sticky */

.detail__right,
.job-details__right {
  position: -webkit-sticky;
  /* Hỗ trợ cho Safari */
  position: sticky;
  top: 0;
  /* Cột sẽ đứng yên khi cuộn */
  z-index: 10;
  /* Đảm bảo cột không bị che bởi các phần tử khác */
  align-self: flex-start;
  height: fit-content;
}

/* Cookie Banner Styles */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(43, 50, 152);
  color: white;
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  padding: 8px 20px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100px;
}

.accept-cookies {
  background: #a6022e;
  color: white;
}

.reject-cookies {
  background: white;
  color: #2b3298;
}

.accept-cookies:hover {
  background: #e01849;
}

.reject-cookies:hover {
  background: #f0f0f0;
}

.salary-tag-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.suggested_job__item-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-tuyengap);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 0.6px solid rgba(208, 209, 246, 1);
  top: -12px;
  position: absolute;
  margin-left: 180px;
}

.separator {
  color: #62609c;
  font-weight: 200;
}

.suggested_job__item-salary {
  margin: 0;
  font-size: 12px;
  color: rgb(253, 30, 86);
  border-radius: 17px;
  background: rgb(255, 235, 235);
  padding: 6px 9px;
  font-weight: 400;
}

/* Tax Calculator Results */

.tax__result {
  margin-top: 24px;
  padding: 20px;
  background: #f8f9ff;
  border-radius: 12px;
  border: 1px solid #d0d1f6;
}

.tax__result h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2b3298;
  margin-bottom: 16px;
}

.tax__result-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e6e7f7;
}

.tax__result-item:last-child {
  border-bottom: none;
}

.tax__result-item--highlight {
  font-weight: 600;
  color: #fd1e56;
  font-size: 16px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 2px solid #d0d1f6;
}

/* Tools Result Styles */

.tools__result {
  margin-top: 24px;
  padding: 24px;
  background: #f8f9ff;
  border-radius: 12px;
  border: 1px solid #d0d1f6;
}

.tools__result h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2b3298;
  margin-bottom: 16px;
  text-align: center;
}

.tools__result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e6e7f7;
}

.tools__result-item span:first-child {
  color: #62609c;
  font-size: 14px;
}

.tools__result-item span:last-child {
  color: #2b3298;
  font-weight: 500;
  font-size: 14px;
}

.tools__result-item:last-child {
  border-bottom: none;
}

.tools__result-item--highlight {
  font-weight: 600;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 2px solid #d0d1f6;
}

.tools__result-item--highlight span:first-child {
  color: #2b3298;
  font-size: 16px;
  font-weight: 600;
}

.tools__result-item--highlight span:last-child {
  color: #fd1e56;
  font-size: 16px;
  font-weight: 700;
}

/* Responsive */

@media screen and (max-width: 768px) {
  .tools__result {
    padding: 16px;
    margin-top: 16px;
  }
  .tools__result h3 {
    font-size: 16px;
  }
  .tools__result-item {
    padding: 10px 0;
  }
  .tools__result-item span:first-child,
  .tools__result-item span:last-child {
    font-size: 13px;
  }
  .tools__result-item--highlight span:first-child,
  .tools__result-item--highlight span:last-child {
    font-size: 14px;
  }
}

/* Button switch styles */

.tools__row-inline.button_switch {
  display: flex;
  gap: 16px;
}

.tools__switch-button {
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  width: auto;
}

.tools__switch-button--blue {
  background: #2b3298;
  color: white;
}

.tools__switch-button--white {
  background: white;
  border: 1px solid #2b3298;
  color: #2b3298;
}

/* Active states */

.tools__switch-button--blue.active {
  background: #1c2056;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(43, 50, 152, 0.2);
}

.tools__switch-button--white.active {
  background: #f8f9ff;
  border-color: #1c2056;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(43, 50, 152, 0.1);
}

/* Hover states */

.tools__switch-button--blue:hover {
  background: #1c2056;
  box-shadow: 0 4px 12px rgba(43, 50, 152, 0.2);
}

.tools__switch-button--white:hover {
  background: #f8f9ff;
  box-shadow: 0 4px 12px rgba(43, 50, 152, 0.1);
}

/* Labels */

.tools__switch-label,
.tools__switch-label-blue {
  font-size: 16px;
  font-weight: 600;
}

.tools__switch-label {
  color: white;
}

.tools__switch-label-blue {
  color: #2b3298;
}

/* Arrow icon */

.tools__switch-icon-arrow-img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

/* Active button arrow animation */

.tools__switch-button.active .tools__switch-icon-arrow-img {
  transform: scale(1.2);
}

.tax__switch-button {
  border-radius: 33px;
  background: #2b3298;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.tax__row__center {
  display: flex;
  justify-content: center;
}

.tax__switch-button:hover {
  background: #2b3298;
  /* transform: translateY(-2px); */
  color: white;
  box-shadow: 0 4px 12px rgba(43, 50, 152, 0.2);
}

.tax__switch-button.active {
  transform: scale(1.1);
  /* background: #c1c4e369; */
  color: rgb(43, 50, 152);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}
.tax__switch-button--white:hover .tax__switch-icon-arrow-img {
  content: url("../images/Gross_to_Net.svg");
  color: white;
}
.tax__switch-button--white {
  background-color: transparent;
  color: rgb(43, 50, 152);
  border: 1px solid rgb(43, 50, 152);
}
.tax__switch-button--white.active:hover {
  color: white;
}

.tools .related-jobs {
  /* padding: 10px; */
}

/* Bảng thuế TNCN */

.tax__table-wrapper {
  margin: 20px 0;
  border-radius: 8px;
  background: #f8f9fa;
  padding: 16px;
}

.tax__table-title {
  font-weight: 600;
  color: red;
  margin-bottom: 12px;
}

.tax__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 0.6px dotted #2b3298;
}

.tax__table th {
  background: #f1f5f9;
  color: red;
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid #e2e8f0;
}

.tax__calculator-content .tax__table-wrapper {
  border: inset 6px #d700836e;
}

.tax__result .tax__table-wrapper {
  border: none !important;
}

.tax__table td {
  padding: 5px 16px;
  border-bottom: 1px solid #e2e8f0;
  color: #1e293b;
}

.tax__table tr:last-child td {
  border-bottom: none;
}

.tax__table-amount {
  text-align: right;
  font-family: "Roboto Mono", monospace;
}

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

.tax__table-negative {
  color: #dc2626;
}

/* Bảng tổng quan */

.tax__table-wrapper:first-child {
  margin-bottom: 30px;
}

.tax__table-wrapper:first-child .tax__table th,
.tax__table-wrapper:first-child .tax__table td {
  text-align: right;
  padding: 15px 20px;
  font-weight: 600;
}

.tax__table-wrapper:first-child .tax__table th {
  background: #2b3298;
  color: white;
}

.tax__table-wrapper:first-child .tax__table td {
  font-size: 16px;
}

.tax__table-wrapper:first-child .tax__table td:last-child {
  color: #2b3298;
  font-size: 18px;
  font-weight: 700;
}

.hot_jobs__clear-filters {
  display: none;
  /* Ẩn mặc định */
}
