body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #000;
  color: #fff;
}
.container {
   position:relative;
}
@media (min-width: 1400px) {
    .container {
        max-width: 90%;
    }
}
/* ============ HERO (MODULE) ============ */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}

.hero .hero__carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero .hero__slide {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 71% 21%;
}

.hero .hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.85) 30%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.hero .hero__body {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 3rem;
}

.hero .hero__title {
  font-size: clamp(2.2rem, 3.2vw + 1.5rem, 3.8rem);
  line-height: 1.15;
  font-weight: 700;
}

.hero .hero__title p {
  color: #fff;
}
/* ============ SECTION NAV (01 / 02 / 03 / 04) ============ */
.section-nav {
  background-color: #000;
  color: #fff;
  padding: 1rem 0 0rem;
}


.section-nav .section-nav__row {
  row-gap: 2rem;
}

/* item */
.section-nav .section-nav__item {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  transition: transform 0.3s ease;
}

/* số lớn */
.section-nav .section-nav__index {
  font-size: 98px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* chữ nhỏ bên dưới */
.section-nav .section-nav__label {
  font-size: 13px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.section-nav .section-nav__item:hover .section-nav__index,
.section-nav .section-nav__item.section-nav__item--active .section-nav__index {
  color: #e30613;
}

.section-nav .section-nav__item:hover .section-nav__label,
.section-nav .section-nav__item.section-nav__item--active .section-nav__label {
  opacity: 1;
  transform: translateY(0);
}

.section-nav .section-nav__item:hover::after,
.section-nav .section-nav__item.section-nav__item--active::after {
  width: 24px;
}

/* ============ ANIMATION KHI F5 (SLIDE TỪ TRÁI SANG PHẢI) ============ */

/* trạng thái ban đầu: ẩn + lệch trái */
.section-nav.section-nav--animate .section-nav__item .section-nav__index{
  opacity: 0;
  transform: translateX(-40px);
}

/* keyframes */
@keyframes section-nav-item-enter {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* chạy lần lượt 01 → 02 → 03 → 04 */
.section-nav.section-nav--animate .section-nav__col:nth-child(1) .section-nav__item .section-nav__index{
  animation: section-nav-item-enter 0.6s ease-out forwards;
  animation-delay: 0.0s;
}

.section-nav.section-nav--animate .section-nav__col:nth-child(2) .section-nav__item .section-nav__index{
  animation: section-nav-item-enter 0.6s ease-out forwards;
  animation-delay: 0.5s;
}

.section-nav.section-nav--animate .section-nav__col:nth-child(3) .section-nav__item .section-nav__index{
  animation: section-nav-item-enter 0.6s ease-out forwards;
  animation-delay: 1s;
}

.section-nav.section-nav--animate .section-nav__col:nth-child(4) .section-nav__item .section-nav__index{
  animation: section-nav-item-enter 0.6s ease-out forwards;
  animation-delay: 1.5s;
}


/* ============ FOOTER ============ */
.site-footer {
  background-color: #000;
  color: #ccc;
}

.site-footer .site-footer__text {
  margin: 0;
  font-size: 15px;
  line-height: 42px;
  color: #ababab;
}

.site-footer a {
  color: #ababab;
  text-decoration: underline;
}

.site-footer a:hover {
  color: #fff;
}

/* ===== Projects  ===== */
.projects {
  background-color: #000;
  color: #fff;
  padding: 80px 0 0;
}

/* ===== Header ===== */
.numbers__header {
  margin-bottom: 120px;
}

/* Chỉ số 01 + line cắt ngang giữa số */
.numbers__index {
  position: relative;
  display: inline-block;
  padding-right: 50px;
  margin-bottom: 50px;
}

.numbers__index-number {
  position: relative;
  z-index: 1;
  font-size: 98px;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0;
  animation: projects-index-number-in 0.5s ease-out forwards;
}

/* line chạy từ trái sang phải, ở giữa số */
.numbers__index::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  right: 0;
  height: 9px;
  background-color: #fff;
  transform-origin: left center;
  transform: scaleX(0);
  animation: projects-index-line-in 0.6s ease-out forwards;
  animation-delay: 0.5s;
}

/* Title + text */
.numbers__title {
  font-size: clamp(24px,3.5vw,57px);
  font-weight: 700;
  margin: 0 0 12px;
}

/* ===== Grid & card ===== */
.projects .projects__grid {
  padding: 0;
}

.projects .projects__card {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.projects .projects__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
  transition: transform 0.4s ease, filter 0.4s ease;
  opacity:0.7;
}

.projects .projects__card-body {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  z-index: 1;
}

.projects .projects__card-title {
  margin: 0 0 8px;
  font-size: clamp(24px,3.5vw,57px);
  font-weight: 700;
  max-width: 260px;
}

.projects .projects__card-number {
  display: block;
}

.projects .projects__card-link {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}

/* overlay card */
.projects .projects__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.4s ease;
}

/* Hover */
.projects .projects__card:hover .projects__card-image {
  transform: scale(1.05);
  filter: brightness(0.9);
}

.projects .projects__card:hover::before {
  background: rgba(0, 0, 0, 0.4);
}

/* ===== Animations ===== */
@keyframes projects-index-number-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes projects-index-line-in {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* ===== Responsive ===== */
@media (max-width: 767.98px) {
  .projects {
    padding-top: 60px;
  }
  .numbers__header {
    margin-bottom: 60px;
  }  
  .numbers__title {
    font-size: 28px;
  }
  .numbers__index::before{
    left:0;
  }
  .numbers__index-number{
    font-size:50px
  }
  .numbers__index{
    padding:20px;
    margin-bottom:15px;
  }
}
/* ===== Block cha ===== */
.information_page{
      padding: 80px 0 0;
}
.contact {
  color: #fff;
  padding: 80px 0 0;
  font-size: 14px;
}

/* ===== Hàng info ===== */
.contact .contact__info-row {
  margin-bottom: 60px;
}
.contact .contact__border{
  border-left: 1px solid #e40000;  
}
.contact .contact__text {
  margin: 0 0 8px;
  line-height: 1.6;
  color:#ababab;
  margin-bottom:0;
}

.contact .contact__link {
  color: #ababab;
  text-decoration: underline;
}

/* ===== Form ===== */
.contact .contact__form {
  max-width: 100%;
  padding:20px;
}

.contact .contact__field {
  margin-bottom: 24px;
}

.contact .contact__label {
  margin-bottom: 6px;
}

/* input + textarea */
.contact .contact__input,
.contact .contact__textarea {
  width: 100%;
  padding: 10px 12px;
  background-color: transparent;
  border: 1px solid #666;
  color: #fff;
  outline: none;
  font: inherit;
}

.contact .contact__input::placeholder,
.contact .contact__textarea::placeholder {
  color: #999;
}

.contact .contact__input:focus,
.contact .contact__textarea:focus {
  border-color: #e40000;
}

/* submit button */
.contact .contact__submit {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border: none;
  background-color: #ff0000;
  color: #000;
  text-align: center;
  text-transform: none;
  font-weight: 500;
  cursor: pointer;
}

.contact .contact__submit:hover {
  opacity: 0.9;
}

/* ===== Responsive nhỏ ===== */
@media (max-width: 767.98px) {
  .contact {
    padding: 60px 0;
  }

  .contact .contact__info--address,
  .contact .contact__info--details {
    border-left: none;
    padding-left: 15px;
    margin-top: 20px;
  }
}
.information_page .content-page{
    margin-top: 50px;
    color:#ababab;
}

/* con của creative-talent */
.creative-talent{
    padding-bottom:3rem;
}
.creative-talent .creative-talent__container {
  /* nếu cần custom thêm cho container thì đặt ở đây */
}

.creative-talent .creative-talent__text {
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 400;
}

/* mũi tên đỏ dòng dưới */
.creative-talent .creative-talent__arrow {
  display: inline-block;
  margin-top: 12px;
  font-size: 20px;
  color: #ff3c22;           /* màu đỏ cam */
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* hover arrow */
.creative-talent .creative-talent__arrow:hover {
  transform: translateX(4px);
}
.creative-talent .creative-talent__arrow:hover svg path{
    fill:#fff;
    stroke: #fff;
}

.clients-section .clients-section__title {
  font-size: 57px;
  line-height: 1.1;
  font-weight: 700;
  margin: 60px 0 24px;
}

.clients-section .clients-section__description {
  font-size: 15px;
  line-height: 1.6;
  color:#ababab;
  max-width: 320px;
  margin: 0;
}

/* Cột phải: grid logo */
.clients-section .clients-section__logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 0;
  justify-items: center;
  align-items: center;
}

/* item logo */
.clients-section .clients-section__logo-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100px;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
}

/* ảnh logo */
.clients-section .clients-section__logo-image {
  display: block;
  filter: grayscale(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* overlay xám khi hover (giống ô xám trong hình) */
.clients-section .clients-section__logo-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(171, 171, 171, 0.6);
  opacity: 0;
  z-index:9;
  transition: opacity 0.3s ease;
}

/* hiệu ứng hover */
.clients-section .clients-section__logo-item:hover::before {
  opacity: 1;
}

.clients-section .clients-section__logo-item:hover
.clients-section__logo-image {
  transform: scale(1.02);
  filter: grayscale(0);
}

/* Responsive nhỏ lại 2 cột logo khi màn hình nhỏ */
@media (max-width: 991.98px) {
  .clients-section .clients-section__logos {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    margin-top: 32px;
  }

  .clients-section .clients-section__title {
    font-size: 40px;
    margin: 24px 0 24px;
  }
}
@media (max-width: 575px) {
  .clients-section .clients-section__logos {
    grid-template-columns: repeat(1, minmax(120px, 1fr));
  }
}
/* ========== BLOCK CHA ========== */
.project-gallery {
  background-color: #000;
  color: #fff;
}

/* wrapper hero để định vị controls chung */
.project-gallery .project-gallery__hero-wrapper {
  position: relative;
}

/* ========== HERO SLIDER ========== */
.project-gallery .project-gallery__hero {
  position: relative;
}

.project-gallery .project-gallery__hero-slide {
  position: relative;
  height: 100vh; /* có thể đổi thành 80vh */
  background-size: cover;
  background-position: center center;
}

.project-gallery .project-gallery__hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.project-gallery .project-gallery__hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.project-gallery .project-gallery__hero-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  background-color: transparent;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.project-gallery .project-gallery__hero-play-icon {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  border: 2px solid #fff;
  position: relative;
}

.project-gallery .project-gallery__hero-play-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #fff;
}

.project-gallery .project-gallery__hero-play-text {
  text-decoration: underline;
}

/* controls đáy slide – chỉ 1 block dùng chung */
.project-gallery .project-gallery__hero-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  z-index: 3;
}
.project-gallery .project-gallery__hero .owl-nav button:hover{
  background: none;  
}
.project-gallery .project-gallery__hero .owl-prev{
  transform: scaleX(-1);  
}

/* search */
.project-gallery .project-gallery__search {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.project-gallery .project-gallery__search-icon {
  display: flex;
  align-items: center;
  position: absolute; 
}

.project-gallery .project-gallery__search-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  padding: 0 26px;
  font-size: 14px;
  height: 42px;
  width: 146px;
}

.project-gallery .project-gallery__search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.project-gallery .project-gallery__search-input:focus {
  outline: none;
}

/* user + signin */
.project-gallery .project-gallery__user {
  display: flex;
  align-items: center;
}

.project-gallery .project-gallery__user-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.project-gallery .project-gallery__user-link:nth-child(1){
  padding-right:20px;
}
.project-gallery .project-gallery__user-link:nth-child(2){
    border-left: 1px solid hsla(0, 0%, 100%, .7);
    padding-left: 20px;
}
.project-gallery .project-gallery__user-link:hover {
  text-decoration: underline;
}

.project-gallery .project-gallery__user-icon {
  margin-right: 4px;
}

/* categories */
.project-gallery .project-gallery__categories-btn {
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  padding: 4px 0;
  cursor: pointer;
}

.project-gallery .project-gallery__categories-arrow {
  margin-left: 6px;
}

/* ========== OWL NAV CUSTOM ========== */
.project-gallery .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  pointer-events: none;
}

.project-gallery .owl-nav button.owl-prev,
.project-gallery .owl-nav button.owl-next {
  pointer-events: auto;
  background: transparent;
  border: none;
  font-size: 40px;
  color: #fff;
}

.project-gallery .owl-nav button span {
  font-size: 40px;
}

.project-gallery .owl-dots {
  display: none;
}

/* ========== THUMBNAILS ========== */
.project-gallery .project-gallery__thumbs {
  background-color: #000;
}

.project-gallery .project-gallery__thumb {
  position: relative;
  display: block;
  min-height: 350px;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

/* overlay + text: ẩn, hover mới hiện */
.project-gallery .project-gallery__thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: background-color .45s ease-in-out,opacity .45s ease;
}

.project-gallery .project-gallery__thumb:hover
.project-gallery__thumb-overlay {
  background-color: rgba(0, 0, 0, .5);
  opacity: 1;
}

.project-gallery .project-gallery__thumb-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.project-gallery .project-gallery__thumb-title {
  font-size: 16px;
  font-weight: 500;
}

.project-gallery .project-gallery__thumb-play {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight:700;
  cursor: pointer;
}

.project-gallery .project-gallery__thumb-play-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  position: relative;
}

.project-gallery .project-gallery__thumb-play-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent #fff;
}

.project-gallery .project-gallery__thumb-play-text {
  text-decoration: underline;
}

/* ========== VIDEO MODAL ========== */
.project-gallery .project-gallery__modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1050;
  color: #fff;
}

.project-gallery .project-gallery__modal--open {
  display: block;
}

.project-gallery .project-gallery__modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.project-gallery .project-gallery__modal-dialog {
  position: relative;
  z-index: 1;
  height: 100%;
  margin: 0 auto;
  padding: 40px 40px 24px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.project-gallery .project-gallery__modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.project-gallery .project-gallery__modal-topbar {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  font-size: 14px;
}

.project-gallery .project-gallery__modal-link {
  color: #fff;
  text-decoration: none;
}

.project-gallery .project-gallery__modal-link:hover {
  text-decoration: underline;
}

.project-gallery .project-gallery__modal-separator {
  opacity: 0.6;
}

.project-gallery .project-gallery__modal-body {
  flex: 1;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  min-height: 0;
}

/* VIDEO + NAV ở modal */
.project-gallery .project-gallery__modal-main {
  background: #000;
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
}

.project-gallery .project-gallery__modal-video {
  width: 100%;
  height: 100%;
  max-height: 100%;
  background: #000;
}

.project-gallery .project-gallery__modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-gallery .project-gallery__modal-nav--prev {
  left: 16px;
  transform: scaleX(-1);
  z-index:9;
}

.project-gallery .project-gallery__modal-nav--next {
  right: 16px;
}

/* INFO BÊN PHẢI */
.project-gallery .project-gallery__modal-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.project-gallery .project-gallery__modal-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.project-gallery .project-gallery__modal-duration {
  font-size: 12px;
  opacity: 0.8;
}

.project-gallery .project-gallery__modal-description {
  margin-top: 16px;
  line-height: 1.6;
}

/* THUMBS TRONG MODAL */
.project-gallery .project-gallery__modal-thumbs {
  margin-top: 16px;
}

.project-gallery .project-gallery__modal-thumb-list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.project-gallery .project-gallery__modal-thumb {
  position: relative;
  min-height: 157px;
  background: #222;
  background-size: cover;
  background-position: center center;
  cursor: pointer;
}

.project-gallery .project-gallery__modal-thumb--active {
  background: #333;
  outline: 2px solid #fff;
}

.project-gallery .project-gallery__modal-thumb-label {
  position: absolute;
  left: 8px;
  bottom: 8px;
  font-size: 12px;
}

/* OVERLAY TRONG MODAL THUMB (TITLE / PLAY / DURATION) */
.project-gallery .project-gallery__modal-thumb-overlay {
  position: absolute;
  inset: 0;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-gallery .project-gallery__modal-thumb:hover
  .project-gallery__modal-thumb-overlay {
  opacity: 1;
}

.project-gallery .project-gallery__modal-thumb-title {
  font-size: 12px;
  font-weight: 500;
}

.project-gallery .project-gallery__modal-thumb-duration {
  font-size: 11px;
}

/* play icon tròn ở giữa */
.project-gallery .project-gallery__modal-thumb-play-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin: 0 auto;
  position: relative;
}

.project-gallery .project-gallery__modal-thumb-play-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
}

/* thumb đang phát: overlay luôn hiện */
.project-gallery .project-gallery__modal-thumb--active
  .project-gallery__modal-thumb-overlay {
  opacity: 1;
}

/* ========== NO SEARCH RESULTS MESSAGE ========== */
.project-gallery .project-gallery__search-empty {
  display: none;
  padding: 80px 0 40px;
  text-align: center;
}

.project-gallery .project-gallery__search-empty-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ff3b30;
  margin: 0 auto 12px;
  position: relative;
}

.project-gallery .project-gallery__search-empty-icon::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #ff3b30;
  top: 8px;
  left: 8px;
}

.project-gallery .project-gallery__search-empty-icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: #ff3b30;
  transform: rotate(45deg);
  bottom: 8px;
  right: 8px;
}

.project-gallery .project-gallery__search-empty-text {
  color: #ff3b30;
  font-size: 14px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .project-gallery .project-gallery__modal-dialog {
    padding: 24px 16px 16px;
  }

  .project-gallery .project-gallery__modal-body {
    grid-template-columns: 1fr;
  }

  .project-gallery .project-gallery__hero-slide {
    height: 80vh;
  }

  .project-gallery .project-gallery__hero-title {
    font-size: 40px;
  }

  .project-gallery .project-gallery__hero-controls {
    bottom: 20px;
  }

  .project-gallery
    .project-gallery__hero-controls
    > .container
    > .row
    > .col-12
    > .d-flex {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* ========== SHARE MODAL ========== */
.project-gallery .project-gallery__share {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1100;
  color: #fff;
}

.project-gallery .project-gallery__share--open {
  display: block;
}

.project-gallery .project-gallery__share-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.project-gallery .project-gallery__share-dialog {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  box-sizing: border-box;
}

.project-gallery .project-gallery__share-box {
  background: #050505;
  padding: 48px 60px 40px;
  width: 100%;
  max-width: 780px;
  text-align: center;
  position: relative;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-gallery .project-gallery__share-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 17px;
  cursor: pointer;
}

.project-gallery .project-gallery__share-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 32px;
}

.project-gallery .project-gallery__share-select {
  margin-bottom: 32px;
}

.project-gallery .project-gallery__share-select-btn {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 10px 18px;
  border-radius: 3px;
  font-size: 14px;
  cursor: pointer;
}

.project-gallery .project-gallery__share-select-arrow {
  margin-left: 8px;
}

.project-gallery .project-gallery__share-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.project-gallery .project-gallery__share-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
}


/* responsive */
@media (max-width: 576px) {
  .project-gallery .project-gallery__share-box {
    padding: 32px 20px 24px;
  }

  .project-gallery .project-gallery__share-icons {
    gap: 16px;
  }
}

/* ========== BLOCK ========== */
.about-person {
  background-color: #000;
  color: #fff;
  padding: 120px 0;
}

/* Ảnh */
.about-person .about-person__photo {
  text-align: center;
}

.about-person .about-person__photo-img {
  display: block;
  max-width: 100%;
}

.about-person .about-person__name {
  margin: 0 0 32px;
}

.about-person .about-person__name-text {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 14px;
}

/* gạch chân */
.about-person .about-person__name-underline {
  display: block;
  height: 2px;
  width: 180px;
  background-color: #d72626;
  position: relative;
}

/* đoạn mô tả */
.about-person .about-person__description {
  color: #e0e0e0;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

/* responsive */
@media (max-width: 767.98px) {
  .about-person {
    padding: 40px 0;
  }

  .about-person .about-person__content {
    margin-top: 24px;
    margin-left: 0;
    text-align: left;
  }
}
