/* Minimal Grid for Apply Form */
.popup-fields .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.popup-fields .col-12, .popup-fields .col-md-6, .popup-fields .col-md-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.popup-fields .col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .popup-fields .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .popup-fields .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* ----- */

:root {
  --primary-500: #1d428a;
  --primary-600: #1d428a;
  --secondary-500: #e91c59;
  --tertiary-500: #1d428a;
}

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

body {
  font-family: "Lexend", sans-serif;
  color: #000;
  background-color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

h3,
h2,
h1 {
  font-family: "Lexend", sans-serif;
}

.detail-head .detail-header .breadcrumb a {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #474c54;
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1440px;
    padding: 0 60px 0;
  }
}

@media screen and (max-width: 576px) {
  .container {
    padding: 0 24px 0;
  }
}

/* components */

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: /* 16px 32px */ 18px 56px;
  border-radius: 999px;

  /* font-size: 20px;
  line-height: 24px; */

  font-size: 16px;
  font-weight: 600;
  line-height: 32px;

  text-transform: capitalize;
  width: fit-content;
  box-shadow: none;
  outline: none;

  height: 48px;
  white-space: nowrap;
}

.btn.medium {
  padding: 12px 24px;
}

.btn.small {
  padding: 8px 16px;
}

.btn-secondary:hover img,
.btn-secondary:hover img,
.btn-secondary:focus img,
.btn-secondary:focus img,
.btn-secondary:active img,
.btn-secondary:active img {
  filter: brightness(0) invert(1);
}

.btn-primary {
  border: 1px solid var(--primary-500);
  /* background-color: var(--primary-500); */
  background-color: #1d428a !important;
  color: #fff;
  transition: all 0.3s linear;
}

.btn-primary:hover {
  /*border: 1px solid var(--primary-600);
  background-color: var(--primary-600); */
  border: 1px solid #e91c59 !important;
  background-color: #e91c59 !important;
  transition: all 0.3s linear;
}

.btn-primary:focus,
.btn-secondary:focus,
.btn-white:focus,
.btn-primary:active,
.btn-secondary:active,
.btn-white:active {
  border: 1px solid var(--secondary-500);
  background-color: var(--secondary-500);
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  user-select: none;
}

.btn-secondary {
  border: 1px solid /* var(--tertiary-500) */ #1d428a;
  background-color: /* #fff */ #1d428a;
  color: /* var(--primary-500) */ #fff;
  border-radius: 999px;
  /* transition: all 0.3s linear; */
  width: 268px;
  height: 48px;
}

.arrow-white {
  filter: brightness(0) invert(1);
}

.btn-secondary:hover,
.btn-white:hover {
  border: 1px solid /* var(--primary-500) */ #006991;
  background-color: /* var(--primary-500) */ #006991;
  color: #fff;
  transition: all 0.3s linear;
}

.btn-white {
  border: 1px solid #fff;
  background-color: #fff;
  color: var(--primary-500);
  transition: all 0.3s linear;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  line-height: 22px;
  display: inline-block;
  color: #666;
}

[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 22px;
  height: 22px;

  border-radius: 100%;
  background: #fff;
}

[type="radio"]:not(:checked) + label:before {
  border: 1px solid var(--tertiary-500);
}

[type="radio"]:checked + label:before {
  border: 1px solid var(--primary-500);
}

[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--primary-500);
  position: absolute;
  top: 3.9px;
  left: 5.1px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.hero .dropdown .dropdown-list .checkbox input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid var(--tertiary-500);
  position: relative;
}

input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid var(--tertiary-500);
  position: relative;
  cursor: pointer;
}

input[type="checkbox"]:checked {
  background-color: var(--primary-500);
  border: 1px solid var(--primary-500);
}

input[type="checkbox"]:checked::after {
  content: "✔";
  font-size: 12px;
  color: #fff;
  position: absolute;
  top: 0px;
  left: 4px;
}

.group-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.group-checkbox:hover input[type="checkbox"] {
  border: 1px solid var(--primary-500);
}

.group-radio {
  width: fit-content;
}

.group-radio:hover [type="radio"]:not(:checked) + label:before {
  border: 1px solid var(--primary-500);
}

@media screen and (max-width: 576px) {
  .btn {
    padding: 12px 24px;
  }
}

/* hero */

.hero {
  position: relative;
  width: 100%;
  height: auto;
}

.hero-banner {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
  z-index: -1;
}

.hero .hero-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-heading {
  padding: 154px 0 80px;
}

.hero-title {
  color: #fff;
  font-size: 32px;
  line-height: 48px;
  font-weight: 600;
  margin-bottom: 0;
}

.hero .search-container {
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  /* background-color: #fff; */
  border-radius: 26px;
  border: 2px solid #ffffff;
  /* background: linear-gradient(
    90deg,
    rgba(162, 218, 221, 0.79) 0%,
    rgba(255, 255, 255, 0.79) 36.54%,
    rgba(255, 255, 255, 0.79) 100%
  ); */
    /* background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.1) 36.54%,
    rgba(255, 255, 255, 0.1) 100%
  );
  backdrop-filter: blur(32px);
  box-shadow: 0px 4px 20px 0px #0000001A; */
      position: relative;
    z-index: 2;
}

.hero .search-button .btn {
  width: 268px;
  height: 48px;
	justify-content: center;
}

.hero .search-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: /* 16px 32px */ 32px 36px 32px 0px;
  border-radius: 999px;

  font-size: 20px;
  line-height: 24px;
  font-weight: 600;

  text-transform: capitalize;
  width: fit-content;
  box-shadow: none;
  outline: none;
}

.hero .search-dropdown .dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #9199a3;
  border-bottom: 2px solid var(--Viridian-Green---Teal---Second-500, #1d428a);
}

.hero .search-dropdown .logo-location,
.hero .search-dropdown .logo-dropdown,
.hero .search-dropdown .logo-close {
  width: 12px;
  height: 6px;
  object-fit: contain;
  transition: all 0.3s linear;
}

.hero .search-dropdown .logo-close {
  width: 20px;
  height: 20px;
}

.hero .dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 14px;
  border-radius: 0px;
  width: 420px;
  border: 1px solid transparent;
  cursor: pointer;
}

.hero .dropdown.open {
  border: none;
}

.hero .dropdown.open .dropdown-list {
  display: block;
}

.hero .dropdown.open .logo-dropdown {
  transform: rotate(180deg);
  transition: all 0.3s linear;
}

.hero .dropdown .dropdown-label {
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  max-width: 320px;
  overflow: auto;
  color: #5e5e5e;
  font-weight: 600;
}

.hero .dropdown .dropdown-label::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.hero .dropdown .dropdown-label span {
  padding: 0px;
}

.hero .dropdown .selected-item,
.hero .keyword-chip {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #464d61;
  background-color: #f8f8f8;
  border-radius: 26px;
  padding: 8px 12px;
  white-space: nowrap;
}

.hero .remove-chip {
  cursor: pointer;
}

.hero .dropdown .dropdown-list {
  background-color: #fff;
  padding: 24px 32px;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  border-radius: 8px;
  width: 100%;
  max-height: 308px;
  overflow-y: auto;
  z-index: 2;
  border: 1px solid #e4e5e8;
  box-shadow: 0px 8px 16px 0px rgba(0, 62, 68, 0.1);
  display: none;
}

.hero .dropdown .dropdown-list::-webkit-scrollbar {
  width: 8px;
}

.hero .dropdown .dropdown-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 8px;
}

.hero .dropdown .dropdown-list::-webkit-scrollbar-thumb {
  background: var(--tertiary-500);
  border-radius: 8px;
}

.hero .dropdown .dropdown-list > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero .dropdown .dropdown-list .checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero .dropdown .dropdown-list .checkbox input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid var(--tertiary-500);
  position: relative;
}

.hero .dropdown .dropdown-list .checkbox:hover input[type="checkbox"] {
  border: 1px solid var(--primary-500);
}

.hero .dropdown .dropdown-list .checkbox input[type="checkbox"]:checked {
  background-color: var(--primary-500);
  border: 1px solid var(--primary-500);
}

.hero .dropdown .dropdown-list .checkbox input[type="checkbox"]:checked::after {
  content: "✔";
  font-size: 12px;
  color: #fff;
  position: absolute;
  top: -1px;
  left: 4px;
}

.hero .dropdown .dropdown-list .checkbox label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #474c54;
  cursor: pointer;
}

.hero .search-text {
  position: relative;
}

.hero .search-text::after {
  content: "";
  display: block;
  width: 1px;
  height: 32px;
  background: #e4e5e8;
  position: absolute;
  top: 50%;
  right: -3px;
  transform: translateY(-50%);
  display: none;
}

.hero .search-text .keyword-text.open {
  border: none;
}

.hero .keyword-text {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 420px;
  padding: 8px 16px 8px 14px;
  border-radius: 8px;
  border: none;
  color: #5e5e5e;
}

.hero .keyword-text input {
  border: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #9199a3;
  outline: none;
  flex: 1;
  padding: 8px 0;
  color: #5e5e5e;
  background: transparent;
  border-bottom: 2px solid var(--Viridian-Green---Teal---Second-500, #1d428a);
}

.hero .keyword-text input::placeholder {
  color: #9199a3;
  color: #5e5e5e;
}

@media screen and (max-width: 576px) {
  .hero {
    min-height: 181px;
  }

  .hero-heading {
    padding: 80px 0 0;
  }

  .hero-title {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
  }

  .hero .search {
    width: calc(100% - 48px);
    position: absolute;
    bottom: -35px;
  }

  .hero .search .search-dropdown,
  .hero .search .search-button {
    display: none;
  }

  .hero .search-container {
    padding: 8px;
    border-radius: 8px;
  }

  .hero .background-layer , .hero .search{
    border-radius: 8px;
  }

  .hero .search-text::after {
    display: none;
  }

  .hero .keyword-text,
  .hero .search-text {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
  }
}

@media screen and (max-width: 1024px) {
  .hero-heading {
    padding: 60px 0 20px;
  }
}

/* career */

.career {
  background-color: #f8f8f8;
  padding: 80px 0;
}

.career .career-title {
  font-size: 20px;
  line-height: 40px;
  font-weight: 600;
  color: #18191c;
}

.career .career-title > span {
  color: var(--secondary-500);
}

.career .career-result {
  display: flex;
  gap: 24px;
}

.career .career-heading {
  padding-bottom: 32px;
}

.career .career-filter {
  background-color: #fff;
  width: 312px;
  border-radius: 8px;
  height: fit-content;
  border: 1px solid #e4e5e8;
}

.career .career-filter .filter-item {
  padding: 24px 32px;
  border-bottom: 1px solid #e4e5e8;
}

.career .career-filter .filter-item:last-child {
  border-bottom: 0px;
}

.career .filter-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.career .filter-item-bottom {
  padding-top: 20px;
}

.career .filter-heading {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.career .filter-icon-up {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: all 0.3s linear;
}

.career .filter-icon-up.rotate {
  transform: rotate(180deg);
  transition: all 0.3s linear;
}

.career .filter-bottom-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.career .filter-bottom-list label {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #474c54;
  cursor: pointer;
}

.career .show-more-filter {
  color: var(--primary-500);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

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

.career .career-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 10px 22px;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #e4e5e8;
  transition: all 0.3s linear;
}

.career .career-item:hover {
  box-shadow: 0px 8px 16px 0px rgba(0, 62, 68, 0.1);
  border: 1px solid #e4e5e8;
  transition: all 0.3s linear;
}

.career .career-item:active,
.career .career-item:focus {
  border: 1px solid var(--primary-500);
  box-shadow: 0px 8px 16px 0px rgba(0, 62, 68, 0.1);
}

.career .career-item .logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.career .career-item .job-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  color: #18191c;
}

.career .career-item .job-desc {
  display: flex;
  align-items: center;
  gap: 16px;

  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #9199a3;
  flex-wrap: wrap;
}

.career .career-item .job-desc > div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.career .career-item .job-desc img {
  height: 22px;
  width: auto;
  object-fit: contain;
}

.career .career-item .job-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.career .job-btn a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.career .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.career .pagination-container {
  display: flex;
  align-items: center;
  gap: 24px;
}

.career .pagination-container .pagi-btn,
.career .pagination-container .pagi-page {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.career .pagi-btn {
  cursor: pointer;
  border: 1px solid /*var(--tertiary-500)*/ #b5b5b5;
}

.career .pagi-next {
  background-color: var(--primary-500);
  cursor: pointer;
  border: 1px solid var(--primary-500);
  backdrop-filter: blur(32.7px);
}

.career .pagi-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.career .pagination-container .pagi-page {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  color: #5e5e5e;
  cursor: pointer;
  border: 1px solid #b5b5b5;
  transition: all 0.3s linear;
  backdrop-filter: blur(32.7px);
}

.career .pagination-container .pagi-page:hover {
  border: 1px solid var(--tertiary-500);
  color: var(--tertiary-500);
  font-weight: 500;
  transition: all 0.3s linear;
}

.career .pagination-container .pagi-page.active {
  background-color: var(--primary-500);
  border: 1px solid var(--primary-500);
  font-weight: 500;
  color: #fff;
  backdrop-filter: blur(32.7px);
}

.career-list-mb {
  display: none;
}

.career .no-result {
  padding: 80px;
  background-color: #fff;
  border-radius: 8px;
  flex: 1;
  height: fit-content;
  border: 1px solid #e4e5e8;
}

.career .no-result .title {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  color: var(--primary-500);
  margin-bottom: 16px;
}

.career .no-result .desc {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  color: #000;
}

.career .career-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.career .career-heading .filter-carrer {
  display: none;
  align-items: center;
  gap: 8px;

  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #18191c;
  border-radius: 66px;
  padding: 8px 12px 8px 16px;
  border: 1px solid #e4e5e8;
}

.career .career-heading .filter-carrer img {
  width: 24px;
  height: auto;
}

.career-list-mb {
  flex-direction: column;
  gap: 16px;
}

.career-list-mb-item {
  background-color: #fff;
  padding: 24px 16px;
  border-radius: 8px;

  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid #e4e5e8;
}

.career-list-mb-item:hover {
  border: 1px solid #e4e5e8;
  box-shadow: 0px 8px 16px 0px rgba(0, 62, 68, 0.1);
}

.career-list-mb-item:active,
.career-list-mb-item:focus {
  border: 1px solid var(--primary-500);
  box-shadow: 0px 8px 16px 0px rgba(0, 62, 68, 0.1);
}

.career-list-mb-top {
  display: flex;
  gap: 24px;
}

.career-list-mb-top .job-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.career-list-mb-top .logo img {
  width: 62px;
  height: auto;
  object-fit: contain;
}

.career-list-mb-top .job-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  color: #18191c;
  max-width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.career-list-mb .job-detail-mb {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #9199a3;
}

.career-list-mb .job-detail-mb img {
  height: 22px;
  width: auto;
  object-fit: contain;
}

.career-list-mb-bot {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.career-list-mb .career-list-mb-item .job-btn {
  display: flex;
  justify-content: center;
}

.filter-sticky {
  display: none;
}

.career .career-filter-header-mb,
.career .career-filter-footer-mb,
.filter-item-bottom .search-dropdown {
  display: none;
}

.component-dropdown-newtwork {
  display: none;
}

.pagination-mobile,
.career .pagination-mobile .pagination-container .pagi-btn {
	display: none;
}

@media screen and (max-width: 576px) {
  .career {
    padding: 70px 0 80px;
  }

  .career-list-mb-top {
    height: 83px;
    align-items: center;
  }

  .career-list-mb {
    display: flex;
  }

  .career .career-result {
    flex-direction: column;
  }

  .career .career-filter,
  .career .career-list {
    display: none;
  }

  .career .career-title {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
  }

  .career .pagination {
    padding-top: 32px;
  }

  .career .pagination-container .pagi-btn {
    display: none;
  }

  .career .no-result {
    padding: 32px 24px;
  }

  .career .no-result .title {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
  }

  .career .no-result .desc {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
  }

  .career .career-heading .filter-carrer {
    display: flex;
  }

  .filter-sticky {
    display: flex;
    align-items: center;
    gap: 8px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: var(--primary-500);
    width: 100%;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.1s linear;
  }

  .filter-sticky.active {
    opacity: 1;
    visibility: visible;
    transition: all 0.1s linear;
  }

  .filter-sticky .search-text {
    flex: 1;
  }

  .filter-sticky .keyword-text {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 8px 16px 8px 14px;
    border-radius: 26px;
    background-color: #fff;
  }

  .filter-sticky .search-text .keyword-text input {
    border: 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #5e5e5e;
    outline: none;
  }

  .filter-sticky .keyword-text .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  /* filter */

  .career .career-filter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #f8f8f8;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s linear;
  }

  .career .career-filter.active {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s linear;
  }

  .career .career-filter .filter-item {
    border-bottom: 16px solid #f8f8f8;
    background-color: #fff;
  }

  .career .filter-icon-up {
    display: none;
  }

  .career .career-filter .filter-item.category .filter-bottom-list,
  .career .career-filter .filter-item.type .filter-bottom-list {
    flex-direction: row;
    gap: 16px;
  }

  .career .career-filter .filter-bottom-list {
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
  }

  .career .career-filter .filter-bottom-list input[type="checkbox"] {
    display: none;
  }

  .career .filter-item.location .filter-bottom-list label

    /* .career .filter-item.type .filter-bottom-list label */ {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid #abdfe1;
  }

  .career .filter-item.location input[type="checkbox"]:checked + label,
  .career .filter-item.type input[type="checkbox"]:checked + label {
    color: #fff;
    background-color: var(--primary-500);
  }

  .career .filter-item.network .filter-item-bottom .filter-bottom-list {
    display: none;
  }

  .career .career-filter-footer-mb {
    padding: 24px;
    box-shadow: 0px -8px 16px 0px rgba(0, 62, 68, 0.05);
    display: block;
    background-color: #fff;
  }

  .career .career-filter-footer-mb .btn {
    width: 100%;
  }

  .career .career-filter-body {
    flex: 1;
    max-height: calc(100vh - 185px);
    overflow-y: auto;
  }

  .career .career-filter-header-mb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background-color: #fff;
    border-bottom: 1px solid #f8f8f8;
  }

  .career .career-filter-header-mb .title {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    color: #00171f;
  }

  /* dropdown */

  .filter-item-bottom .search-dropdown .dropdown.none {
    border: 1px solid #9199a3;
  }

  .filter-item-bottom .search-dropdown {
    display: block;
  }

  .filter-item-bottom .search-dropdown .dropdown {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #9199a3;
    border: 1px solid var(--primary-500);
  }

  .filter-item-bottom .search-dropdown .logo-location,
  .filter-item-bottom .search-dropdown .logo-dropdown,
  .filter-item-bottom .search-dropdown .logo-close {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: all 0.3s linear;
  }

  .filter-item-bottom .dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 14px;
    border-radius: 8px;
    border: 1px solid #9199a3;
    width: 100%;
    cursor: pointer;
  }

  .filter-item-bottom .dropdown.open {
    border: 1px solid var(--primary-500);
  }

  .filter-item-bottom .dropdown.open .dropdown-list {
    display: block;
  }

  .filter-item-bottom .dropdown.open .logo-dropdown {
    transform: rotate(180deg);
    transition: all 0.3s linear;
  }

  .filter-item-bottom .dropdown .dropdown-label {
    flex: 1;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    max-width: 320px;
    overflow: auto;
  }

  .filter-item-bottom .dropdown .dropdown-label::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }

  .filter-item-bottom .dropdown .dropdown-label span {
    padding: 8px 12px;
  }

  .filter-item-bottom .dropdown .selected-item {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: #464d61;
    background-color: #f8f8f8;
    border-radius: 30px;
    padding: 8px 12px;
    white-space: nowrap;
  }

  /* component dropdown network */

  .component-dropdown-newtwork {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s linear;
  }

  .component-dropdown-newtwork.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
    transition: all 0.3s linear;
  }

  .component-dropdown-network--container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .component-dropdown-newtwork .search-dropdown-wrap {
    flex: 1;
    padding: 24px;
  }

  .component-dropdown-newtwork .top,
  .component-dropdown-newtwork .bot {
    padding: 24px;
  }

  .component-dropdown-newtwork .top {
    border-bottom: 1px solid var(--Gray-100, #e4e5e8);
  }

  .component-dropdown-newtwork .bot {
    box-shadow: 0px -8px 16px 0px rgba(0, 62, 68, 0.05);
  }

  .component-dropdown-newtwork .bot .btn {
    width: 100%;
  }

  .component-dropdown-newtwork .top .back {
    width: fit-content;
  }

  .component-dropdown-newtwork .dropdown .dropdown-list {
    background-color: #fff;
    padding: 16px;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    border-radius: 8px;
    width: 100%;
    max-height: 70vh;
    overflow-y: auto;
    z-index: 10;
  }

  .component-dropdown-newtwork .dropdown .dropdown-list::-webkit-scrollbar {
    width: 8px;
  }

  .component-dropdown-newtwork
    .dropdown
    .dropdown-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 8px;
  }

  .component-dropdown-newtwork
    .dropdown
    .dropdown-list::-webkit-scrollbar-thumb {
    background: var(--tertiary-500);
    border-radius: 8px;
  }

  .component-dropdown-newtwork .dropdown .dropdown-list > div {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .component-dropdown-newtwork .dropdown .dropdown-list .checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .component-dropdown-newtwork
    .dropdown
    .dropdown-list
    .checkbox
    input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: 1px solid var(--tertiary-500);
    position: relative;
  }

  .component-dropdown-newtwork
    .dropdown
    .dropdown-list
    .checkbox:hover
    input[type="checkbox"] {
    border: 1px solid var(--primary-500);
  }

  .component-dropdown-newtwork
    .dropdown
    .dropdown-list
    .checkbox
    input[type="checkbox"]:checked {
    background-color: var(--primary-500);
  }

  .component-dropdown-newtwork
    .dropdown
    .dropdown-list
    .checkbox
    input[type="checkbox"]:checked::after {
    content: "✔";
    font-size: 12px;
    color: #fff;
    position: absolute;
    top: -1px;
    left: 4px;
  }

  .component-dropdown-newtwork .dropdown .dropdown-list .checkbox label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #474c54;
    cursor: pointer;
  }

  .pagination-mobile {
	display: flex;
	padding-top: 24px !important;
	}

	.career .pagination-mobile .pagination-container .pagi-btn {
		display: flex;
	}
}

.hero .search-text {
  position: relative;
}

.hero .search-text::after {
  content: "";
  display: block;
  width: 1px;
  height: 32px;
  background: #e4e5e8;
  position: absolute;
  top: 50%;
  right: -3px;
  transform: translateY(-50%);
  display: none;
}

.hero .search-text .keyword-text.open {
  border: none;
}

.hero .keyword-text {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 420px;
  padding: 8px 16px 8px 14px;
  border-radius: 8px;
  border: none;
  color: #5e5e5e;
}

.hero .keyword-text input {
  border: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #9199a3;
  outline: none;
  flex: 1;
  padding: 8px 14px;
  color: #5e5e5e;
  background: transparent;
  border-bottom: 2px solid var(--Viridian-Green---Teal---Second-500, #1d428a);
}

.hero .keyword-text input::placeholder {
  color: #5e5e5e;
}

@media screen and (max-width: 1024px) {
  .hero-heading {
    padding: 60px 0 20px;
  }
}

.hero .search {
  position: absolute;
  bottom: -13%;
  backdrop-filter: blur(10px);
  background: hsla(0, 0%, 100%, .2);
box-shadow: 0 0 16px rgba(0, 0, 0, .133);
      z-index: 3;
	  border-radius: 26px;
}

.hero .background-layer {
	backdrop-filter: blur(8px);
    background: linear-gradient(90deg, hsla(0, 0%, 100%, .467), #fff 27%, hsla(0, 0%, 100%, .467));
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
	border-radius: 26px;
}

@media screen and (max-width: 1024px) {
  .hero .search {
    bottom: -19%;
  }

  .hero .search .search-dropdown,
  .hero .search .search-button {
    display: block;
    width: 100%;
  }

  .hero .search .search-button {
    display: block;
    width: 592px;
    height: 48px;
    text-align: center;
    padding: 0px;
  }

  .hero .search-button .btn {
    width: 592px;
    height: 48px;
    text-align: center;
  }

  .btn {
    gap: 10px;
  }

  .btn span {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin-left: 12px;
  }

  .hero .search-container {
    width: 640px;
    padding: 24px;
    border-radius: 24px;
    gap: 24px;
    /* background: linear-gradient(
      90deg,
      rgba(162, 218, 221, 0.79) 0%,
      rgba(255, 255, 255, 0.79) 36.54%,
      rgba(255, 255, 255, 0.79) 100%
    );

    backdrop-filter: blur(12px);
    box-shadow: 0px 4px 20px 0px #00699126; */
  }

  .hero .background-layer, .hero .search  {
	  border-radius: 24px;
  }

  .hero .search-text::after {
    display: none;
  }

  .hero .keyword-text,
  .hero .search-text {
    width: 100%;
    background-color: transparent;
    border-radius: 8px;
  }

  .hero .dropdown {
    width: 100%;
  }

  .hero .keyword-text {
    padding: 0px;
  }
}

@media screen and (max-width: 576px) {
  .hero {
    min-height: 181px;
  }

  .hero-heading {
    padding: 80px 0 0;
  }

  .hero-title {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
  }

  .hero .search {
    width: calc(100% - 48px);
    position: absolute;
    bottom: -35px;
  }

  .hero .search .search-dropdown,
  .hero .search .search-button {
    display: block;
    width: 100%;
  }

  .hero .search .search-button {
    display: block;
    width: 240px;
    height: 40px;
    text-align: center;
    padding: 0px;
  }

  .hero .search-button .btn {
    width: 240px;
    height: 40px;
    text-align: center;
  }

  .hero .search-container {
width: 100%;
    padding: 16px;
    border-radius: 20px;
    /* background: linear-gradient(
      52.37deg,
      rgba(162, 218, 221, 0.79) -4.96%,
      rgba(255, 255, 255, 0.79) 25.52%,
      rgba(255, 255, 255, 0.79) 78.45%
    );
    backdrop-filter: blur(32px);
    box-shadow: 0px 4px 20px 0px #00699126; */
gap: 32px;
  }

    .hero .background-layer  , .hero .search{
	  border-radius: 20px;
  }


  .hero .search-text::after {
    display: none;
  }

  .hero .keyword-text,
  .hero .search-text {
    width: 100%;
    background-color: transparent;
    border-radius: 8px;
  }

  .hero .dropdown {
    width: 100%;
  }

  .hero .keyword-text {
    padding: 0px;
  }

  .btn {
    gap: 8px;
  }

  .btn span {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    margin-left: 0px;
  }


}

.logo-dropdown {
  width: 12px;
  height: 6px;
}

.downloads-wrapper {

}

.download-title {
	font-weight: 400;
	font-size: 16px;
}

.download-btns-wrapper {
	display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.download-btns-wrapper button {
	border: 1px solid #FFFFFF;
	padding: unset;
	flex: 1;
}

.footer__right--item {
	align-items: center;
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    height: 48px;
    justify-content: center;
    margin-right: 8px;
    transition: all .2s ease-out;
    width: 48px;
}

/* Cookie Popup */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 20px;
  display: none;
}
@media (max-width: 768px) {
  .cookie-consent-banner {
    padding: 15px;
  }
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

.cookie-consent-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .cookie-consent-text {
    width: 100%;
  }
}

.cookie-message {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
}
@media (max-width: 768px) {
  .cookie-message {
    font-size: 13px;
  }
}

.cookie-policy-link {
  color: #006991;
  text-decoration: underline;
  font-size: 14px;
  transition: color 0.3s ease;
}
.cookie-policy-link:hover {
  color: #004d6b;
}
@media (max-width: 768px) {
  .cookie-policy-link {
    font-size: 13px;
  }
}

.cookie-consent-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .cookie-consent-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .cookie-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}
.cookie-btn:hover {
  opacity: 0.9;
}
.cookie-btn:active {
  transform: scale(0.98);
}

.cookie-btn-reject {
  background-color: #f5f5f5;
  color: #333333;
}
.cookie-btn-reject:hover {
  background-color: #e8e8e8;
}

.cookie-btn-accept {
  background-color: #006991;
  color: #ffffff;
}
.cookie-btn-accept:hover {
  background-color: #004d6b;
}.detail-head {
    background-color: #f8f8f8;
    padding: 80px 0 32px;
}

.detail {
    background-color: #f8f8f8;
}

.detail-head .detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.detail-head .detail-header .back {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
    text-transform: capitalize;
    color: var(--primary-500);
}

.detail-head .detail-header .back img {
    width: 24px;
    height: auto;
    object-fit: contain;
}

.detail-head .detail-header .breadcrumb {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: #474C54;

    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-head .detail-header .breadcrumb > div:last-child {
    color: #18191C;
}

.detail .detail-content {
    padding: 60px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 56px;
    border-radius: 16px;
}

.detail .detail-content .logo {
    padding-top: 12px;
}

.detail .detail-content .logo img {
    width: 72px;
    height: auto;
    object-fit: contain;
}

.detail .detail-content .detail-content-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.detail .detail-content .detail-content-header .detail-content-wrap {
    display: flex;
    align-items: self-start;
    gap: 24px;
    flex: 1;
}

.detail .detail-content .detail-content-heading {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail .detail-content .detail-content-heading .title {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
    color: #18191C;
}

.detail .detail-content-heading .requirement-list {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: #9199A3;
}

.detail .detail-content-heading .requirement-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail .detail-infor-list {
    padding: 32px;
    border: 2px solid #F2FAFB;
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    flex-wrap: wrap;
}

.detail .detail-infor-item {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: #767F8C;
}

.detail .detail-infor-item div span {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    color: #18191C;
}

.detail .detail-infor-item div img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.detail .detail-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.detail .detail-body .desc * {
    font-size: 16px;
    /* font-style: normal;
    font-weight: 400; */
    line-height: 24px;
    color: #18191C;
}

/* .detail .detail-body .desc li {
    ma
} */
.detail .detail-body .desc p:last-child {
    margin-bottom: 0;
}

.detail .detail-body .desc ul {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 26px;
}

.detail .detail-body .title {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    color: var(--secondary-500);
    margin-bottom: 16px;
}

/* otherJob */

.career-list-mb-top {
    height: 84px;
    align-items: center;
}

.career-list-mb .job-detail-mb img {
    width: 18px;
    height: auto;
    object-fit: contain;
}

.otherJob {
    padding: 32px 0 80px;
    background-color: #f8f8f8;
}

.otherJob .otherJob-item-top .logo img {
    width: 62px;
    height: auto;
    object-fit: contain;
}

.otherJob .otherJob-heading {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    color: #18191C;
    margin-bottom: 32px;
}

.otherJob .otherJob-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.otherJob .otherJob-item {
    background-color: #fff;
    display: block;
    padding: 24px 16px;
    border-radius: 8px;
    border: 1px solid #E4E5E8;
}

.otherJob .otherJob-item .otherJob-item-top {
    display: flex;
    align-items: center;
    gap: 24px;
}

.career-list-mb-item {
    flex: 1;
}


.career-list-mb {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
}

.otherJob .otherJob-bot {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 576px) {

    .detail-head {
        padding: 24px 0;
    }

    .detail {
        /* background-color: #fff; */
        padding: 0;
    }

    .detail .container {
        background: #fff;
        border-radius: 16px;
    }

    .detail-head .detail-header {
        margin-bottom: 0;
        background-color: #f8f8f8;
    }

    .detail-head .detail-header .back {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 18px;
        gap: 8px;
    }

    .detail-head .detail-header .breadcrumb {
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
        margin-bottom: 0;
        gap: 2px;
    }

    .detail .detail-content {
        padding: 32px 0;
    }

    .detail .detail-content .detail-content-header .detail-content-wrap {
        flex-direction: column;
    }

    .detail .detail-content .detail-content-header button {
        display: none;
    }

    .detail .detail-content .detail-content-heading .title {
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 32px;
    }

    .detail .detail-content-heading .requirement-list {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        flex-wrap: wrap;
    }

    .detail .detail-content .detail-content-heading {
        gap: 24px;
    }

    .detail .detail-content {
        gap: 24px;
    }

    .detail .detail-body {
        gap: 16px;
    }

    .detail .detail-body .title {
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 32px;
    }

    .detail .detail-body .desc * {
        font-size: 14px;
        /* font-style: normal;
        font-weight: 400; */
        line-height: 20px;
    }

    .detail .detail-infor-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
        padding: 24px;
    }

    .detail .detail-content button {
        width: 100%;
        padding: 12px 24px;
    }

    .career-list-mb {
        flex-direction: column;
        gap: 16px;
    }

    .detail .detail-body .desc ul {
        list-style-position: outside;
        padding-left: 26px;
    }

    .detail .detail-button {
        /* transition: all 0.3s linear; */
        padding: 0;
        background-color: #fff;
    }

    .detail .detail-button.sticky {
        position: sticky;
        bottom: 0;
        padding: 24px 0;
    }
}


/* popup */

.popup-blur {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(173, 178, 186, 0.50);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s linear;
}
.popup-form .error {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    font-style: italic;
    color: #F44336;
}
.popup-form,
.popup-thank {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background-color: #fff;
    padding: 56px 32px 32px;
    min-width: 732px;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s linear;
}

.popup-thank {
    min-height: 500px;
    min-width: 712px;
    display: flex;
    align-items: center;
}

.popup-blur.active,
.popup-thank.active,
.popup-form.active {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s linear;
}

.popup-form .popup-close,
.popup-thank .popup-close {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 12px;
    border-radius: 84px;
    border: 2px solid #FFF;
    background: #F8F8F8;
    cursor: pointer;

    position: absolute;
    right: 16px;
    top: 13px;
}

.popup-form .popup-close img,
.popup-thank .popup-close img {
    width: 24px;
    height: auto;
    object-fit: contain;
}

.popup-form .note {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    color: #C8CCD1;
    margin-bottom: 16px;
}

.popup-form .note span {
    color: #E05151;
}

.popup-form .title {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    color: var(--secondary-500);
}

.popup-form .title span {
    color: #E05151;
}

.popup-form .popup-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 16px;
}

.popup-form .popup-field .checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    width: fit-content;
}

.popup-form .popup-field .checkbox label {
    cursor: pointer;
}

.popup-form .popup-field .checkbox:hover input[type='checkbox'] {
    border: 1px solid var(--primary-500);
}

.popup-form .popup-field input:not([type='checkbox']),
.popup-form .popup-field textarea {
    border-radius: 8px;
    border: 1px solid  #E4E5E8;
    background: #FFF;
    height: 48px;
    padding: 15px 18px 17px 18px;
    outline: none;

    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    color: #474C54;
    width: 100%;
}

.popup-form .popup-field input:not([type='checkbox']):focus,
.popup-form .popup-field textarea:focus {
    border: 1px solid var(--primary-500);
}

.popup-form .popup-field textarea {
    height: 100px;
}

.popup-form .popup-field input::placeholder {
    color: #C8CCD1;
}

.popup-form .upload-label {
    border-radius: 6px;
    border: 2px dashed  #E4E5E8;
    background:  #F8F8F8;

    display: flex;
    padding: 16px 32px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    align-self: stretch;

    cursor: pointer;
}

.popup-form .upload-label .icon .pending {
    display: block;
}

.popup-form .upload-label .icon .success {
    display: none;
}

.popup-form .upload-label input {
    display: none;
}

.popup-form .upload-label .content .top {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    color: #474C54;
    text-align: center;
}

.popup-form .upload-label .content .top span {
    color: #18191C;
}

.popup-form .upload-label .content .bot {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    color: #5E6670;
    text-align: center;
}

.popup-form .group-btn {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 16px;
}

.popup-form .group-btn button {
    width: 160px;
}

.popup-form .popup-form-container {
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0px 20px 0;
    margin-top: 10px;
}

.popup-form .popup-form-container::-webkit-scrollbar {
    width: 5px;
}

.popup-form .popup-form-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.popup-form .popup-form-container::-webkit-scrollbar-thumb {
    background: var(--tertiary-500);
}

.popup-thank .popup-thank-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
  }

.popup-thank .icon {
    margin-bottom: 32px;
}

.popup-thank .title {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
    color: #009BAB;
    margin-bottom: 16px;
}

.popup-thank .desc {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    color: #474C54;
}

.popup-thank .btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

.popup-thank .btn-group .btn {
    padding: 12px 24px;
    width: 160px;
}

@media screen and (max-width: 576px) {
    .popup-form {
        min-width: 100%;
        border-radius: 24px 24px  0px  0px;
        top: unset;
        bottom: 0;
        transform: translate(-50%, 0);
        padding: 24px;
    }

    .popup-form .popup-close, .popup-thank .popup-close {
        background: transparent;
    }

    .popup-form .title {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
    }

    .popup-form .popup-form-container {
        padding: 0;
        max-height: 86vh;
        margin-top: 32px;
    }

    .popup-form .upload-label {
        padding: 16px;
    }

    .popup-form .popup-field {
        padding-bottom: 24px;
    }

    .popup-form .group-btn .btn {
        flex: 1;
    }

    .popup-thank {
        min-width: 90vw;
    }

    .popup-thank .title {
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .popup-thank .desc {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        color: #474C54;
    }

    .popup-thank .btn-group .btn {
        padding: 12px 56px;
        width: 160px;
    }

    .popup-form .popup-form-container::-webkit-scrollbar {
        width: 0px;
    }

    .popup-form {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 100%);
    }

.popup-form.active {
        transform: translate(-50%, 0%);
    }
}

/* --------------------------------------------------------------------------
   Career archive: keep layout stable without Bootstrap
-------------------------------------------------------------------------- */
body.post-type-archive-career .d-none,
body.single-career .d-none {
  display: none !important;
}

body.post-type-archive-career .d-block,
body.single-career .d-block {
  display: block !important;
}

body.post-type-archive-career .d-flex,
body.single-career .d-flex {
  display: flex !important;
}

body.post-type-archive-career .d-grid,
body.single-career .d-grid {
  display: grid !important;
}

@media (min-width: 768px) {
  body.post-type-archive-career .d-md-none,
  body.single-career .d-md-none {
    display: none !important;
  }

  body.post-type-archive-career .d-md-block,
  body.single-career .d-md-block {
    display: block !important;
  }

  body.post-type-archive-career .d-md-flex,
  body.single-career .d-md-flex {
    display: flex !important;
  }

  body.post-type-archive-career .d-md-grid,
  body.single-career .d-md-grid {
    display: grid !important;
  }
}

@media (min-width: 577px) {
  body.post-type-archive-career .career-list-mb {
    display: none !important;
  }

  body.post-type-archive-career .career .career-list {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    min-width: 0;
  }

  body.post-type-archive-career .career .career-item {
    width: 100%;
  }
}

/* Mirror responsive hero behavior from career/index.html */
body.post-type-archive-career .hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
  background:
    radial-gradient(61.07% 173.27% at 42.11% 169.33%, #a2dadd 0%, #ffffff 100%),
    linear-gradient(to right, #fff 40%, rgba(255, 255, 255, 0));
  background-size: 40% 100%, 0% 100%;
  background-repeat: no-repeat;
}

body.post-type-archive-career .hero-banner {
  flex: 1;
  max-width: 60%;
  object-fit: cover;
}

body.post-type-archive-career .hero .hero-content {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

body.post-type-archive-career .hero-container {
  display: flex;
  align-items: flex-start;
  height: 100%;
  position: relative;
}

body.post-type-archive-career .hero-heading {
  padding: 0;
}

body.post-type-archive-career .hero-title {
  font-size: 64px;
  font-weight: 600;
  color: #006991;
  margin: 0;
}

body.post-type-archive-career .hero .search {
  bottom: 0 !important;
  left: 0;
  right: 0;
  transform: translateY(50%);
}

@media screen and (max-width: 1400px) {
  body.post-type-archive-career .career {
    padding: 120px 0 80px !important;
  }
}

@media screen and (max-width: 1024px) {
  body.post-type-archive-career .hero-title {
    font-size: 36px;
  }

  body.post-type-archive-career .search-container {
    width: unset !important;
  }

  body.post-type-archive-career .search-button .btn {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  body.post-type-archive-career .hero {
    flex-direction: column;
    position: relative;
  }

  body.post-type-archive-career .hero-content {
    order: 1;
    width: 100%;
    text-align: center;
    position: unset !important;
    padding: 40px 0;
    background: radial-gradient(51.33% 174.25% at 82.23% -98.13%, #a2dadd 0%, #ffffff 100%);
  }

  body.post-type-archive-career .hero-content .container {
    position: unset !important;
  }

  body.post-type-archive-career .hero-banner {
    order: 2;
    max-width: 100%;
    width: 100%;
    z-index: unset !important;
  }

  body.post-type-archive-career .hero-container {
    position: unset !important;
    display: flex;
    align-items: center;
  }

  body.post-type-archive-career .hero-title {
    font-size: 45px;
  }

  body.post-type-archive-career .hero .search {
    left: 64px !important;
    right: 64px !important;
  }

  body.post-type-archive-career .search-container {
    width: unset !important;
  }

  body.post-type-archive-career .search-button .btn {
    width: 100% !important;
  }
}

@media (max-width: 576px) {
  body.post-type-archive-career .career .career-list {
    display: none !important;
  }

  body.post-type-archive-career .career-list-mb {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
  }

  body.post-type-archive-career .hero {
    flex-direction: column;
    position: relative;
  }

  body.post-type-archive-career .hero-content {
    order: 1;
    width: 100%;
    text-align: center;
    position: unset !important;
    padding: 32px 0;
    background: radial-gradient(51.52% 174.9% at 82.23% -98.13%, #a2dadd 0%, #ffffff 100%);
  }

  body.post-type-archive-career .hero-content .container {
    position: unset !important;
  }

  body.post-type-archive-career .hero-banner {
    order: 2;
    max-width: 100%;
    width: 100%;
    z-index: unset !important;
  }

  body.post-type-archive-career .hero-container {
    position: unset !important;
    display: flex;
    align-items: center;
  }

  body.post-type-archive-career .hero-title {
    font-size: 28px;
  }

  body.post-type-archive-career .hero .search {
    left: 20px !important;
    right: 20px !important;
  }

  body.post-type-archive-career .search-container {
    width: unset !important;
  }
}
