.hidden {
  display: none !important;
}

input,
button {
  border-radius: 0;
  -webkit-appearance: none;
}

@media only screen and (max-width: 767px) {
  .header__nav-header--mobile {
    display: flex;
  }
}

.no-scrollbar,
html {
  max-width: 100%;
  overflow-x: hidden;
}

/* Banner - Mobile First */
.banner {
  position: relative;
  width: 100%;
  height: 463px;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: 100%;
/*  transform: scaleX(2.5);*/
  object-fit: cover;
  transform-origin: 60%;
}

.banner img,
.banner .text {
  position: absolute;

}

.building8 {
  bottom: 23%;
  width: 154px;
  height: 257px;
  z-index: 1;
  object-fit: contain;
}

.text {
  bottom: 57%;
  margin-left: 70px;
  font-family: var(--font-family);
  font-size: var(--font-h2-size);
  font-weight: var(--font-h2-weight);
  line-height: var(--font-h2-line-height);
  color: white;
  max-width: 450px;
}

/* Filter - Mobile First */
.filter {
  font-family: var(--font-family);
  background: var(--color-bg-white);
  margin: 40px 0 43px;
}

.filter--desktop {
  display: none;
}

.filter--mobile {
  display: block;
}

.filter__content {
  display: flex;
  align-items: center;
}

.filter__search {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 12px;
}

.filter__search-input {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.filter__search-icon {
  position: absolute;
  left: 12px;
  z-index: 2;
  width: 20px;
  height: 20px;
}

.filter__search-field {
  width: 100%;
  max-width: 100%;
  padding: 18px 0px 18px 59px;
  border: 1px solid var(--color-disabled-blue);
  font-size: var(--font-body-lg-size);
  outline: none;
  background: var(--color-bg-white);
  line-height: var(--font-body-lg-line-height);
  font-weight: var(--font-h5-weight);
}



.filter__search-field::placeholder {
  font-family: var(--font-family);
  color: var(--color-bg-primary);
  font-weight: bold;
  font-size: var(--font-body-lg-size);
  font-weight: var(--font-display-weight);
  line-height: var(--font-body-lg-line-height);
}


.filter__search-field:not(:placeholder-shown) {
  color: var(--color-bg-primary);
}

.filter__search-field:focus::placeholder {
  color: var(--color-disabled-blue);
}

.filter__filter-icon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.filter__filter-icon:hover {
  cursor: pointer;
}

/* Horizontal */
.horizontal {
  border: 1px solid var(--color-bg-primary);
}

/* Project - Mobile First */
.project {
  margin-bottom: 48px;
}

.project__content {
  display: flex;
  flex-direction: column;
  margin: 32px 0 48px;
  gap: 0px;
}

.project__info {
  color: var(--color-bg-primary);
  font-family: var(--font-family);
  font-weight: var(--font-display-weight);
  order: 1;
  width: 100%;
  margin-bottom: 32px;
}

.project__info-number {
  font-size: var(--font-h4-size);
  line-height: var(--font-h4-line-height);
  font-weight: var(--font-h4-weight);
  text-transform: capitalize;
  margin-bottom: 24px;
}

.project__info-title {
  font-size: var(--font-h3-size);
  line-height: var(--font-h3-line-height);
  font-weight: var(--font-h3-weight);
  margin-bottom: 24px;
}

.project__info-description {
  font-size: var(--font-body-md-size);
  line-height: var(--font-body-md-line-height);
  font-weight: var(--font-body-md-weight);
  width: 100%;
  margin-bottom: 24px;
  height: 80px;
}

.project__detail-left,
.project__detail-item {
  display: flex;
  align-items: center;
}

.project__detail-left {
  gap: 8px;
  width: 120px;
}

.project__detail-label {
  font-size: var(--font-h5-size);
  line-height: var(--font-h5-line-height);
  text-transform: capitalize;
  font-weight: var(--font-h5-weight);
  color: var(--color-primary-blue);
}

.project__detail-value {
  font-weight: 400;
  font-size: var(--font-body-md-size);
  line-height: var(--font-body-md-line-height);
}

.project__detail-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}

.project__detail-tag {
  font-size: var(--font-label-size);
  font-weight: var(--font-label-weight);
  line-height: var(--font-label-line-height);
  border: 1px solid #0047ba80;
  padding: 8px;
  /*white-space: nowrap;*/
  /*flex-shrink: 0;*/
}

/*.project__detail-tag:hover {
  transition: 0.3s ease-in-out;
  color: white;
  background-color: var(--color-primary-blue);
}*/

.project__detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
}

.project__image {
  order: 2;
  display: block;
  width: 100%;
  height: 278px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  flex: initial;
}

.project__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  will-change: transform;
  z-index: 1;
}

.project__image .swiper,
.project__image .swiper-wrapper,
.project__image .swiper-slide {
  width: 100%;
  height: 100%;
}

.project__image .swiper {
  position: absolute;
  left: 0;
  top: 0;
}

.project__image .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.project__details {
  padding: 18.5px 0 7px;
}

.project__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
}

.project__nav--prev {
  left: 13px;
}

.project__nav--next {
  right: 13px;
}

.project__nav img {
  width: 30px;
  height: 30px;
}

.project__zoom-group {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.project__zoom-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #23c0c8;
  cursor: pointer;
}

.project__zoom-btn img {
  width: 24px;
  height: 24px;
}

.project__zoom-in,
.project__zoom-out {
  position: relative;
  z-index: 4;
}

/* Pagination - Mobile First */
.pagination {
  margin: 0px 0 60px;
  font-family: var(--font-family);
  padding-top: 12px;
}

.pagination__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.pagination__arrow {
  cursor: pointer;
}

.pagination__arrow img {
  width: 28px;
  height: 28px;
}

.pagination__list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.pagination__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-bg-primary);
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: var(--font-body-sm-weight);
  font-size: var(--font-body-sm-size);
  line-height: var(--font-h5-line-height);
}

.pagination__item--active {
  border-color: var(--color-bg-primary);
}

.pagination__dots {
  color: var(--color-bg-primary);
  padding: 0px 15px;
}

.header__language {
  position: relative;
}

.header__logo img {
  height: 24px;
  width: 100px;
}

#overlayHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1200;
}

#overlayHeader.show {
  opacity: 1;
  pointer-events: auto;
}

.header__language-menu {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 44px;
  width: 253px;
  height: 186px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-disabled-blue);
  border-radius: 2px;
  opacity: 0;
  transform: translateY(-120%);
  pointer-events: none;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1201;
}

.header__language-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.filter-modal[aria-hidden="true"] {
  display: none;
}

.filter-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.filter-modal--mobile {
  z-index: 9999;
}

.filter-modal--mobile .filter-modal__panel {
  background: var(--color-bg-white);
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  height: 100vh !important;
  border-radius: 0 !important;
  display: flex;
  flex-direction: column;
  box-shadow: none !important;
  transform: none !important;
}

.header__nav-header--mobile {
  background: var(--color-primary-blue);
  color: white;
  padding: 20px;
  display: none;
  justify-content: space-between;
  align-items: center;
  border-radius: 0;
  flex-shrink: 0;
}

.header__nav-header--mobile .header__logo img {
  height: 20px;
  width: auto;
}

.header__nav-header--mobile .header__close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
}

.header__nav-header--mobile .header__close iconify-icon {
  color: white;
}

.filter-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 9998;
}

.filter-modal--mobile .filter-modal__overlay {
  background: rgba(6, 41, 116, 0.3);
  align-items: stretch !important;
  justify-content: stretch !important;
  overflow: hidden !important;
  position: fixed !important;
  inset: 0 !important;
}

#filterTitle {
  font-family: var(--font-family);
  font-weight: var(--font-display-weight);
  font-size: var(--font-body-lg-size);
  line-height: var(--font-body-lg-line-height);
  letter-spacing: 0%;
  text-transform: capitalize;
  color: var(--color-primary-blue);
}

/* Modal Panel */
.filter-modal__panel {
  background: var(--color-bg-white);
  margin: 40px 16px;
  max-width: 618px;
  max-height: auto;
  display: flex;
  flex-direction: column;
  transform: translateY(-400px);
  opacity: 0;
  width: 100%;
  z-index: 9999;
  position: relative;
  overflow: visible !important;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.container__filter {
  width: 100%;
  max-width: 618px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.container__filter--mobile {
  height: calc(100vh - 80px);
  padding: 0 20px;
  max-width: 100%;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  /* overflow: hidden; */
}

.filter-modal.show .filter-modal__overlay {
  opacity: 1;
}

.filter-modal.show .filter-modal__panel {
  transform: translateY(0);
  opacity: 1;
}

.filter-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-primary-blue);
  margin: 28px 20px 0 20px;
  padding-bottom: 9px;
}

.filter-modal__header--mobile {
  margin: 28px 0 0 0;
  padding-bottom: 9px;
}

.filter-modal__close {
  background: none;
  border: none;
  font-size: var(--font-number-size);
  cursor: pointer;
  color: var(--color-primary-blue);
}

/* Hide close icon on mobile only */
@media only screen and (max-width: 767px) {
  .filter-modal__close img {
    display: none;
  }
}

.horizontal-filter {
  margin: 0 auto;
  width: 90%;
}

.filter-modal__body {
  margin-top: 30px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.filter-modal__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.filter-modal__label {
  font-family: var(--font-family);
  font-size: var(--font-body-sm-size);
  line-height: var(--font-body-lg-line-height);
  font-weight: var(--font-h4-weight);
  text-transform: capitalize;
  color: var(--color-bg-primary);
  margin-bottom: 8px;
}

.industry-card__title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  text-transform: uppercase;
}

.industry-card__icon img {
  width: 24px;
  height: 24px;
  max-width: unset;
}

.filter-modal__industries {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-modal__industries--mobile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  overflow-y: auto;
  max-height: 150px;
}

.industry-card {
  display: flex;
  gap: 14px;
  flex: 1;
  border: 1px solid #0047ba80;
  background: var(--color-bg-white);
  padding: 10px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: var(--font-display-weight);
  cursor: pointer;
  color: var(--color-bg-primary);
  transition: all 0.2s;
  justify-content: space-around;
  align-items: center;
  height: 59px;
}

.industry-card--mobile {
  width: 167px;
  padding: 10px 8px;
  max-height: 59px;
  justify-content: space-between;
}

.industry-card[aria-selected="true"],
.chip[aria-pressed="true"] {
  color: var(--color-bg-white);
  background: var(--color-bg-primary);
}

.filter-modal__chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 419px;
}

.chip {
  font-family: var(--font-family), sans-serif;
  border: 1px solid #0047ba80;
  padding: 8px 12px;
  background: var(--color-bg-white);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--color-primary-blue);
}

.chip--mobile {
  padding: 12px 8px;
  font-size: 11px;
  text-align: center;
}

.filter-modal__select {
  position: relative;
  display: inline-block;
  width: 100%;
}

.select__trigger {
  width: 50%;
  padding: 12px;
  border: 1px solid #0047ba40;
  background: var(--color-bg-white);
  font-size: var(--font-body-sm-size);
  color: var(--color-primary-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: var(--font-display-weight);
  height: 48px;
}

.select__trigger--mobile {
  width: 80%;
  padding: 16px;
  height: 56px;
}

.select__trigger:hover {
  border-color: #0047ba80;
  background: #f8f9ff;
}

.select__trigger:focus {
  outline: none;
  border-color: var(--color-primary-blue);
}

.select_wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.select_wrapper img {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}

.select__value {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: var(--font-body-lg-line-height);
  color: var(--color-primary-blue);
  transition: opacity 120ms ease;
}

.select__value.exiting {
  opacity: 0;
}

.select__value.entering {
  opacity: 1;
}

.select__caret {
  display: flex;
  align-items: center;
  justify-content: center;
}

.select__caret img {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
  opacity: 0.8;
}

.select__wrapper {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
}

.select__menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #0047ba40;
  background: var(--color-bg-white);
  z-index: 10000;
  overflow: hidden;
  max-height: 205px;
  overflow-y: auto;
  width: 50%;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease 0.1s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.select__menu--mobile {
  width: 80%;
  z-index: 10000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  max-height: 205px;
}

.filter-modal__select[data-expanded="true"] .select__menu {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0.1s;
}

.select__option {
  padding: 12px 16px;
  font-size: 12px;
  cursor: pointer;
  color: var(--color-primary-blue);
  transition: background-color 0.2s ease;
  font-family: var(--font-family);
  font-weight: 400;
  line-height: var(--font-body-lg-line-height);
  width: 100%;
  border-bottom: 1px solid var(--color-primary-blue);
}

.select__option:hover {
  background: var(--color-bg-primary);
  color: var(--color-bg-white);
}

.filter-modal__footer {
  margin: 37px auto 28px;
  width: 538px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
}

.filter__clear,
.filter__apply {
  font-family: var(--font-family);
  font-weight: var(--font-display-weight);
  font-size: 12px;
  line-height: var(--font-body-lg-line-height);
  text-align: center;
  text-transform: uppercase;
  color: #0047ba80;
}

.filter__clear--mobile,
.filter__apply--mobile {
  font-size: var(--font-body-sm-size);
  font-weight: 600;
  color: var(--color-primary-blue);
  text-decoration: underline;
  border: none;
  background: none;
  cursor: pointer;
}

.filter__clear {
  border-bottom: 1px solid #0047ba80;
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter__clear img {
  display: none;
}

.filter__clear:hover,
.filter__apply:hover {
  cursor: pointer;
}

.filter__apply {
  display: flex;
  align-items: center;
  border: 1px solid #0047ba80;
  /* padding: 19px 24px; */
  padding: 0px;
  gap: 12px;
}

.industry-card[aria-selected="true"] .industry-card__icon img {
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(122deg) brightness(119%) contrast(119%);
}

.industry-card[aria-selected="true"] .industry-card__title {
  color: var(--color-bg-white);
}

/* Tablet  */
@media only screen and (min-width: 768px) and (max-width: 1279px) {

  .text {
    bottom: 45%;
    margin-left: 70px;
    font-family: var(--font-family);
    font-size: var(--font-h1-size);
    font-weight: var(--font-h1-weight);
    line-height: var(--font-h1-line-height);
    color: var(--color-bg-white);
    max-width: 450px;
  }

  .filter--desktop {
    display: block;
  }

  .filter--mobile {
    display: none;
  }

  .filter__search {
    gap: 20px;
  }

  .filter__search-input {
    width: auto;
  }

  .filter__search-icon {
    left: 16px;
    width: auto;
    height: auto;
  }

  .filter__search-field {
    width: 517px;
    padding: 16px 16px 16px 48px;
    font-size: var(--font-h4-size);
  }

  .filter__filter-icon {
    width: auto;
    height: auto;
  }

  .header__nav-header--mobile {
    display: none;
  }

  .project__content {
    flex-direction: column;
  }

  .project__info {
    order: 0;
    flex: 1;
    margin-bottom: 0;
  }

  .project__image {
    order: 0;
    height: 563px;
    max-width: none;
    margin: 0;
  }

  .project__info-number {
    font-size: var(--font-number-size);
  }

  .project__info-title {
    font-size: 28px;
  }

  .project__info-description {
    font-size: var(--font-h5-size);
    line-height: var(--font-h5-line-height);
    max-width: 454px;
    height: 121px;
  }

  .project__details {
    padding: 0;
  }

  .project__detail-item {
    grid-template-columns: 160px 1fr;
    column-gap: 60px;
    margin-bottom: 16px;
  }

  .project__detail-left {
    gap: 12px;
    width: auto;
  }

  .project__detail-label {
    font-size: var(--font-body-lg-size);
  }

  .project__detail-value {
    font-size: var(--font-body-lg-size);
  }

  .project__detail-tag {
    font-size: 12px;
    padding: 8px 12px;
  }

  .project__detail-tags {
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 0;
  }

  .project__nav {
    width: 60px;
    height: 60px;
  }

  .project__nav img {
    width: 48px;
    height: 48px;
  }

  .project__zoom-group {
    bottom: 16px;
    gap: 12px;
  }

  .pagination {
    margin: 12px 0 60px;
  }

  .pagination__container {
    justify-content: flex-start;
  }

  .pagination__item {
    width: 40px;
    height: 40px;
  }

  .industry-card {
    width: 167px;
    height: 59px;
  }

  .filter-modal__industries--mobile {
    display: flex !important;
  }

  .container__filter--mobile {
    padding: 0 40px !important;
    min-height: unset !important;
  }

  .header__nav-header--mobile {
    display: none !important;
  }

  .filter-modal__chips--mobile {
    display: flex !important;
    max-width: 419px !important;
  }

  .filter-modal__panel {
    height: auto;
    max-height: 653px;
    margin: 40px 16px;
    position: relative;
    z-index: 1;
    transform: translateY(-40px);
    opacity: 0;
    overflow: visible !important;
  }

  .filter-modal__close img {
    display: block !important;
  }

  .container__filter {
    max-width: 618px;
    padding: 0 20px;
  }

  .filter {
    margin: 60px 0;
  }

  .filter-modal__close img {
    display: block !important;
  }

  .filter-modal.show .filter-modal__panel {
    transform: translateY(0);
    opacity: 1;
  }

  .filter-modal__header {
    margin: 28px 20px 0 20px;
  }

  .filter-modal__body {
    padding: 0 20px;
    margin-top: 30px;
    overflow: visible !important;
  }

  .filter-modal__group {
    margin-bottom: 40px;
  }

  .filter-modal__label {
    font-size: var(--font-body-sm-size);
    font-weight: var(--font-h4-weight);
    margin-bottom: 8px;
  }

  .filter-modal__chips {
    max-width: 419px;
  }

  .filter-modal__industries {
    display: flex;
    flex-wrap: wrap;
  }

  .industry-card {
    padding: 10px 16px;
    min-height: 59px;
    flex: 1;
  }

  .select__trigger {
    width: 50% !important;
    padding: 12px !important;
    height: 48px !important;
  }

  .select_wrapper {
    gap: 12px;
  }

  .select_wrapper img {
    width: 20px;
    height: 20px;
  }

  .select__value {
    font-size: 12px;
  }

  .select__caret img {
    width: 16px;
    height: 16px;
  }

  .select__menu {
    width: 50% !important;
    overflow-y: auto;
  }

  .filter-modal__select {
    position: relative;
    overflow: visible;
  }

  .filter-modal__footer {
    border-top: 1px solid var(--color-primary-blue);
    position: static !important;
    z-index: auto !important;
  }

  .select__option {
    padding: 12px 16px;
    font-size: 12px;
  }

  .filter__apply {
    border: 1px solid #0047ba80;
    padding: 19px 24px;
  }

  .filter__clear,
  .filter__apply {
    justify-content: flex-start;
    padding: 19px 24px;
    font-size: 12px;
  }

  .filter__clear img {
    display: block !important;
  }

  .filter-modal__body {
    margin-top: 40px !important;
  }

  .filter__clear--mobile,
  .filter__apply--mobile {
    color: #0047ba80 !important;
  }

  .filter__apply--mobile {
    border: 1px solid #0047ba80 !important;
    text-decoration: none !important;
  }

  .filter-modal__footer {
    position: relative !important;
    z-index: 1 !important;
  }

  .filter-modal__select {
    position: relative;
    z-index: 10001;
  }

  .select__menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10002 !important;
  }

  .project__nav--prev {
    left: 28px;
  }

  .project__nav--next {
    right: 28px;
  }

  .filter-modal__select {
    margin-bottom: 37px !important;
  }

  .filter-modal__footer {
    display: flex;
    width: 538px;
    border-top: 1px solid var(--color-primary-blue);
    margin: 37px auto 28px;
  }

  .footer__container {
    display: flex;
    flex-direction: row;
  }

  .filter-modal__body--mobile {
    overflow-y: hidden !important;
  }

  .footer__left {
    display: block;
  }

  .footer__social {
    display: none !important;
  }

  .footer__copy {
    display: none !important;
  }

  .footer {
    margin-top: 0px;
  }

  /* Fix dropdown bị footer che */
  .filter-modal__select {
    position: relative !important;
    overflow: visible !important;
    z-index: 10001 !important;
  }

  .select__menu {
    position: absolute !important;
    top: 100%;
    left: 0;
    width: 50% !important;
    z-index: 10002 !important;
  }

  .filter-modal__body,
  .filter-modal__body--mobile,
  .filter-modal__panel {
    overflow: visible !important;
  }
}

.filter-modal--mobile .filter-modal__panel {
  background: var(--color-bg-white);
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  height: 100vh !important;
  min-height: 100vh !important;
  border-radius: 0 !important;
  display: flex;
  flex-direction: column;
  box-shadow: none !important;
  transform: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
}

.filter-modal--mobile .filter-modal__overlay {
  background: rgba(6, 41, 116, 0.3);
  align-items: stretch !important;
  justify-content: stretch !important;
  overflow: hidden !important;
  position: fixed !important;
  inset: 0 !important;
}

.header__nav-header--mobile {
  background: var(--color-primary-blue);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0;
  flex-shrink: 0;
}

.header__nav-header--mobile .header__logo img {
  height: 20px;
  width: auto;
}

.header__nav-header--mobile .header__close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
}

.header__nav-header--mobile .header__close iconify-icon {
  color: white;
}

.filter-modal__header--mobile {
  margin: 28px 0 0 0;
  padding-bottom: 9px;
}

.filter-modal__body--mobile {
  padding: 0;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: hidden;
}

.filter-modal__chips--mobile {
  display: flex;
  max-width: 330px;
  max-height: 150px;
  overflow-y: auto;
}

.chip--mobile {
  padding: 8px 12px;
  font-size: 11px;
  text-align: center;
}

.filter-modal__footer--mobile {
  width: 100%;
  margin: 37px 0 28px 0;
  margin-top: auto;
  padding-top: 20px;
}

.filter__clear--mobile,
.filter__apply--mobile {
  font-size: var(--font-body-sm-size);
  font-weight: 600;
  color: var(--color-primary-blue);
  text-decoration: underline;
  border: none;
  background: none;
  cursor: pointer;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 999;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* Desktop */
@media only screen and (min-width: 1280px) {
  .banner {
    position: relative;
    width: 100%;
    height: 610px;
    overflow: hidden;
  }

  .banner img,
  .banner .text {
    position: absolute;

  }

  .banner-img {
    width: 100%;
    height: 100%;
    transform: unset;
    object-fit: cover;
    transform-origin: unset;
  }

  .building8 {
    bottom: 6%;
    width: 244px;
    height: 375px;
    z-index: 1;
  }

  .text {
    bottom: 45%;
    margin-left: 150px;
    font-family: var(--font-family);
    font-size: var(--font-h1-size);
    font-weight: var(--font-h1-weight);
    line-height: var(--font-h1-line-height);
    color: var(--color-bg-white);
    max-width: 450px;
  }

  .header__nav-header--mobile {
    display: none;
  }

  .filter-modal__close img {
    display: block !important;
  }

  .header__logo img {
    width: 153px;
    height: 37px;
  }

  .filter__search-input {
    width: 40%;
  }

  .project__content {
    flex-direction: row;
    gap: 32px;
  }

  .project__info-number {
    font-size: var(--font-number-size);
  }

  .project__info-title {
    font-size: var(--font-h2-size);
    line-height: var(--font-h2-line-height);
  }

  .project__image {
    flex: 0 0 726px;
    width: 726px;
    height: 563px;
    max-width: none;
  }

  .project__info-description {
    max-width: 454px;
  }

  .project__detail-item {
    column-gap: 60px;
    margin-bottom: 16px;
  }

  .project__detail-value {
    font-size: var(--font-body-lg-size);
    line-height: var(--font-h5-line-height);
  }

  .project__detail-tag {
    padding: 8px 12px;
  }

  .pagination__container {
    justify-content: flex-start;
  }

  .pagination__item {
    width: 40px;
    height: 40px;
  }

  .project__nav {
    width: 60px;
    height: 60px;
  }

  .project__nav img {
    width: 48px;
    height: 48px;
  }

  .project__nav--prev {
    left: 28px;
  }

  .project__nav--next {
    right: 28px;
  }

  .pagination {
    margin: 12px 0 60px;
  }

  .industry-card {
    width: 167px;
    height: 59px;
  }

  .filter {
    margin: 60px 0;
  }

  .container__filter--mobile {
    padding: 0 40px;
    min-height: unset;
  }

  .filter-modal__industries--mobile {
    display: flex;display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .chip--mobile {
    padding: 8px 12px;
  }

  .filter-modal__chips--mobile {
    display: flex;
    max-width: 419px;
  }

  .select__menu {
    /*overflow-y: hidden !important;*/
    z-index: 10004 !important;
  }

  .filter-modal__select {
    position: relative;
    z-index: 10003;
  }

  .filter-modal__panel,
  .filter-modal__body {
    overflow: visible !important;
  }

  .filter-modal__footer {
    position: static !important;
    z-index: auto !important;
    border-top: 1px solid var(--color-primary-blue);
  }

  .select__menu--mobile {
    width: 50%;
    z-index: 10000 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  }

  .select__trigger--mobile {
    width: 50%;
  }

  .filter-modal__body--mobile {
    overflow-y: visible;
  }

  .filter-modal__body {
    margin-top: 40px;
  }

  .filter__clear--mobile,
  .filter__apply--mobile {
    color: var(--color-bg-primary);
  }

  .filter__apply--mobile {
    border: 1px solid var(--color-bg-primary);
    text-decoration: none;
    padding: 19px 24px;
  }

  .filter-modal__select {
    margin-bottom: 37px;
  }

  .banner__content img {
    width: auto;
    height: 375px;
    left: -53%;
    max-width: unset;
  }

  .filter-modal__group {
    margin-bottom: 40px;
  }

  .banner__content .text {
    font-family: var(--font-family);
    font-weight: var(--font-h1-weight);
    font-size: var(--font-h1-size);
    left: -13%;
    line-height: var(--font-h1-line-height);
  }
}

.filter__link {
  position: relative;
  display: inline-flex;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid;
  font-size: var(--font-button-size);
  font-weight: var(--font-button-weight);
  line-height: var(--font-button-line-height);
}

.filter__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-bg-primary);
}

.filter__link:hover {
  border-bottom-color: transparent;
}

.filter__link:hover::after {
  width: 100%;
  transition: width 0.5s ease;
}

.filter__link svg {
  vertical-align: middle;
  transform: translateY(-2px);
}

.footer {
  margin-top: 0px;
}

#filterClear[aria-disabled="true"],
#filterApply[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
}

#filterClear.is-active,
#filterApply.is-active {
  opacity: 1;
  pointer-events: auto;
}

.filter-modal__body--mobile {
  overflow: visible !important;
}

.filter-modal__panel {
  overflow: visible !important;
}

@media only screen and (max-width: 320px) {
  .industry-card--mobile {
    width: 138px;
  }
}

@media (width: 1440px) {
  .building8 {
    bottom: 6%;
    width: 244px;
    height: 375px;
    z-index: 1;
    left: 3%;
  }

  .text {
    bottom: 45%;
    font-family: var(--font-family);
    font-size: var(--font-h1-size);
    font-weight: var(--font-h1-weight);
    line-height: var(--font-h1-line-height);
    color: white;
    max-width: 250px;
  }
}