@charset "UTF-8";
:root {
  --container-widget-width: 40vw;
  --container-widget-width2: 40vw;
}

.project_detail_list {
  position: relative;
  margin: -50px 0;
  padding: 80px 0;
  border-radius: 50px;
  padding-bottom: 0;
  z-index: 5;
  background: #fff;
}
.project_detail_list .layout_project_detail_item .project-detail-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
}
.project_detail_list .layout_project_detail_item .project-detail-grid .project-detail-item .project-detail-image img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
.project_detail_list .layout_project_detail_item .project-detail-grid .project-detail-item .project-detail-content .project-detail-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #8c8c8c;
}
.project_detail_list .layout_project_detail_item .project-detail-grid .project-detail-item.active {
  border-bottom: 2px solid #764d2a;
  background: #fbf5e3;
  border-radius: 1.5rem 1.5rem 0 0;
}
.project_detail_list .layout_project_detail_item .project-detail-grid .project-detail-item.active .project-detail-image img {
  border: 5px solid #ddb359;
}
.project_detail_list .layout_project_detail_item .project-detail-grid .project-detail-item.active .project-detail-content .project-detail-title {
  color: #764d2a;
}
.project_detail_list .project_item_quymo {
  padding: 4rem 0;
  background: #f8f8f8;
}
.project_detail_list .project_item_quymo .project_item_quymo_content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
.project_detail_list .project_item_quymo .project_item_quymo_content .item {
  background: #f6f3eb;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.project_detail_list .project_item_quymo .project_item_quymo_content .item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.project_detail_list .project_item_quymo .project_item_quymo_content .item .item-image {
  overflow: hidden;
  padding: 1.75rem;
  border: 2px solid #eacd75;
  max-width: 140px;
  border-radius: 50%;
  margin: auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.project_detail_list .project_item_quymo .project_item_quymo_content .item .item-image img {
  width: 100%;
  max-width: 80px;
  max-height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.project_detail_list .project_item_quymo .project_item_quymo_content .item .item-image:hover img {
  transform: scale(1.05);
}
.project_detail_list .project_item_quymo .project_item_quymo_content .item .item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.project_detail_list .project_item_quymo .project_item_quymo_content .item .item-content .item-title {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: color 0.3s ease;
  cursor: pointer;
  text-align: center;
}
.project_detail_list .project_item_quymo .project_item_quymo_content .item .item-content .item-description {
  color: #666;
  line-height: 1.6;
  flex: 1;
}
.project_detail_list .project_item_quymo .project_item_quymo_content .item .item-content .item-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #a67c52;
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: 2px solid #a67c52;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.project_detail_list .project_item_quymo .project_item_quymo_content .item .item-content .item-link:hover {
  background: #a67c52;
  color: #fff;
  transform: translateX(4px);
}
.project_detail_list .project_item_quymo .project_item_quymo_content .item .item-content .item-link::after {
  content: "→";
  transition: transform 0.3s ease;
}
.project_detail_list .project_item_quymo .project_item_quymo_content .item .item-content .item-link:hover::after {
  transform: translateX(4px);
}
.project_detail_list .project_item_quymo .project_item_quymo_content .item:first-child {
  color: #fff;
  background: unset;
  box-shadow: unset;
  padding: 0;
  line-height: 185%;
}
.project_detail_list .project_item_quymo .project_item_quymo_content .item:first-child .item-title {
  color: #eacd75;
}
.project_detail_list .project_item_quymo .project_item_quymo_content .item:first-child .item-description {
  color: rgba(255, 255, 255, 0.9);
}
.project_detail_list .project_item_quymo .project_item_quymo_content .item:first-child .item-link {
  color: #eacd75;
  border-color: #eacd75;
}
.project_detail_list .project_item_quymo .project_item_quymo_content .item:first-child .item-link:hover {
  background: #eacd75;
  color: #333;
}
.project_detail_list .project_item_quymo .project_item_quymo_content .item:first-child:hover {
  transform: translateY(0px);
}
@media (max-width: 992px) {
  .project_detail_list .project_item_quymo .project_item_quymo_content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item .item-image {
    max-width: 120px;
    padding: 1.5rem;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item .item-image img {
    max-width: 70px;
    max-height: 70px;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item .item-content .item-title {
    font-size: 0.95rem;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item .item-content .item-description {
    font-size: 0.9rem;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .project_detail_list .project_item_quymo {
    padding: 3rem 0;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item:first-child {
    display: flex;
    flex-wrap: wrap;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: row;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item .item-image {
    max-width: 100px;
    padding: 1.25rem;
    margin: auto auto 1rem auto;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item .item-image img {
    max-width: 60px;
    max-height: 60px;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item .item-content .item-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item .item-content .item-description {
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item .item-content .item-link {
    margin: 0 auto;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item:first-child {
    padding: 1.5rem;
    text-align: center;
    line-height: 165%;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item:first-child .item-title {
    color: #eacd75;
    font-size: 1.1rem;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item:first-child .item-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
  }
}
@media (max-width: 576px) {
  .project_detail_list .project_item_quymo {
    padding: 0.5rem 0;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content {
    gap: 1.25rem;
    padding: 0 1rem;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item {
    padding: 1.25rem;
    border-radius: 0.75rem;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item .item-image {
    max-width: 90px;
    padding: 1rem;
    border-width: 1.5px;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item .item-image img {
    max-width: 50px;
    max-height: 50px;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item .item-content .item-title {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item .item-content .item-description {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item .item-content .item-link {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item:first-child {
    padding: 1.25rem;
    line-height: 155%;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item:first-child .item-title {
    font-size: 1rem;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item:first-child .item-description {
    font-size: 0.85rem;
  }
}
@media (max-width: 400px) {
  .project_detail_list .project_item_quymo {
    padding: 2rem 0;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content {
    gap: 0.5rem;
    padding: 0 0.5rem;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item {
    padding: 1rem;
    border-radius: 0.5rem;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item .item-image {
    max-width: 80px;
    padding: 0.75rem;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item .item-image img {
    max-width: 45px;
    max-height: 45px;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item .item-content .item-title {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item .item-content .item-description {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item .item-content .item-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    border-width: 1px;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item:first-child {
    padding: 1rem;
    line-height: 145%;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item:first-child .item-title {
    font-size: 0.9rem;
  }
  .project_detail_list .project_item_quymo .project_item_quymo_content .item:first-child .item-description {
    font-size: 0.8rem;
  }
}
.project_detail_list .data_item_tongquan {
  overflow: hidden;
}
.project_detail_list .data_item_tongquan .Logo_item {
  gap: 2.22rem;
}
.project_detail_list .data_item_tongquan .Logo_item .logo-item {
  flex: 1 1 55%;
  max-width: 55%;
}
.project_detail_list .data_item_tongquan .Logo_item .logo-item .logo {
  position: relative;
  padding: 0 0 1rem 0;
  margin-bottom: 5px;
}
.project_detail_list .data_item_tongquan .Logo_item .logo-item .logo::before {
  content: "";
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  background: #eacd75;
  height: 2px;
  width: 87px;
  bottom: 0;
}
.project_detail_list .data_item_tongquan .Logo_item .logo-background {
  flex: 1 1 45%;
  max-width: 45%;
}
.project_detail_list .data_item_tongquan .Logo_item .logo-background .background--right {
  position: relative;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-content: flex-start;
}
.project_detail_list .data_item_tongquan .Logo_item .logo-background .background--right .background--right--box {
  position: absolute;
  text-align: left;
  width: var(--container-widget-width2, 45vw);
  max-width: 45vw;
  --container-widget-width2: 45vw;
  --container-widget-flex-grow: 0;
  top: 0px;
  z-index: 0;
  left: 0vw;
}
.project_detail_list .data_item_tongquan .Logo_item .logo-background .background--right .background--right--box .background__image--wrapper::before {
  content: "";
  position: absolute;
  border-radius: 5rem 0 50px 0;
  background: #f6f3ec;
  display: inline-block;
  vertical-align: middle;
  display: inline-block;
  width: 100vw;
  max-width: 100vw;
  height: 100vw;
}
.project_detail_list .data_item_tongquan .layout-tongquan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.22rem;
}
.project_detail_list .data_item_tongquan .layout-tongquan .data-tongquan-img {
  flex: 1 1 63%;
  max-width: 65%;
  height: 674px;
}
.project_detail_list .data_item_tongquan .layout-tongquan .data-tongquan-img .img {
  position: relative;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-content: flex-start;
}
.project_detail_list .data_item_tongquan .layout-tongquan .data-tongquan-img .img .img-overlay {
  text-align: right;
  width: var(--container-widget-width, 63vw);
  max-width: 63vw;
  --container-widget-width: 63vw;
  --container-widget-flex-grow: 0;
  top: 0px;
  z-index: 3;
  right: 0vw;
}
.project_detail_list .data_item_tongquan .layout-tongquan .data-tongquan-img .img .img-overlay .overview img {
  width: 100%;
  border-radius: 0 5rem 0 0;
  height: 100%;
  max-width: 63vw;
  width: 100vw;
  height: 674px;
  vertical-align: middle;
  display: inline-block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
.project_detail_list .data_item_tongquan .layout-tongquan .content_overview {
  flex: 1 1 35%;
  max-width: 37%;
  border-radius: 1.11rem;
  position: relative;
  z-index: 2;
}
.project_detail_list .data_item_tongquan .layout-tongquan .content_overview .name_tongquan {
  font-size: 2.75rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}
.project_detail_list .data_item_tongquan .layout-tongquan .content_overview .overview {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.22rem;
  line-height: 1.7;
}
.project_detail_list .data_item_tongquan .layout-tongquan .content_overview img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
.project_detail_list .videos-project {
  display: flex;
  gap: 2rem;
  background: #a67c52;
  align-items: center;
  padding: 0rem;
  min-height: 500px;
}
.project_detail_list .videos-project .left {
  flex: 1 1 60%;
  max-width: 60%;
}
.project_detail_list .videos-project .left .main-video-player {
  width: 100%;
  overflow: hidden;
  background: #000;
  height: 500px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.project_detail_list .videos-project .left .main-video-player video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project_detail_list .videos-project .right {
  flex: 1 1 40%;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  height: 500px;
}
.project_detail_list .videos-project .right .video-info-section {
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  color: white;
  flex-shrink: 0;
}
.project_detail_list .videos-project .right .video-info-section .video-icon {
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2rem;
}
.project_detail_list .videos-project .right .video-info-section .video-icon svg {
  width: 60px;
  height: 54px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.project_detail_list .videos-project .right .video-info-section .video-title {
  margin-bottom: 1rem;
}
.project_detail_list .videos-project .right .video-info-section .video-title h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #eacd75;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.project_detail_list .videos-project .right .video-info-section .video-description {
  line-height: 1.6;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
}
.project_detail_list .videos-project .right .video-info-section .video-description p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
}
.project_detail_list .videos-project .right .video-info-section .video-description p:last-child {
  margin-bottom: 0;
}
.project_detail_list .videos-project .right .video-thumbnails-list {
  flex: 1;
  display: flex;
  gap: 1rem;
  flex-direction: row;
  max-height: 203px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0.5rem 0.5rem 0;
  scroll-behavior: smooth;
  cursor: grab;
  cursor: -webkit-grab;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.project_detail_list .videos-project .right .video-thumbnails-list::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  display: none !important;
}
.project_detail_list .videos-project .right .video-thumbnails-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.project_detail_list .videos-project .right .video-thumbnails-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}
.project_detail_list .videos-project .right .video-thumbnails-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}
.project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  scroll-snap-align: start;
}
.project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item:hover {
  transform: translateX(4px);
}
.project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item.active .thumbnail-info .video-number {
  background: #ddb359;
  color: white;
  box-shadow: 0 2px 8px rgba(221, 179, 89, 0.4);
}
.project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item .thumbnail-wrapper {
  position: relative;
  width: 360px;
  height: 203px;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}
.project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item .thumbnail-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}
.project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item .thumbnail-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item .thumbnail-wrapper .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.9;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}
.project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item .thumbnail-wrapper .play-overlay svg {
  width: 48px;
  height: 48px;
}
.project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item .thumbnail-wrapper:hover .play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
.project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item .thumbnail-info {
  flex: 1;
}
.project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item .thumbnail-info .video-number {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media (min-width: 1400px) {
  .project_detail_list .videos-project {
    padding: 0rem 0rem;
    min-height: 600px;
  }
  .project_detail_list .videos-project .left .main-video-player {
    height: 600px;
  }
  .project_detail_list .videos-project .right {
    height: 600px;
  }
  .project_detail_list .videos-project .right .video-info-section {
    padding: 2.5rem;
  }
  .project_detail_list .videos-project .right .video-info-section .video-icon svg {
    width: 70px;
    height: 63px;
  }
  .project_detail_list .videos-project .right .video-info-section .video-title h3 {
    font-size: 1.75rem;
  }
  .project_detail_list .videos-project .right .video-info-section .video-description {
    font-size: 1rem;
  }
  .project_detail_list .videos-project .right .video-thumbnails-list {
    max-height: 250px;
    gap: 1.5rem;
  }
  .project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item .thumbnail-wrapper {
    width: 400px;
    height: 225px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .project_detail_list .videos-project {
    padding: 0rem 0rem;
    min-height: 540px;
  }
  .project_detail_list .videos-project .left .main-video-player {
    height: 540px;
  }
  .project_detail_list .videos-project .right {
    height: 540px;
  }
  .project_detail_list .videos-project .right .video-info-section {
    padding: 2rem;
  }
  .project_detail_list .videos-project .right .video-info-section .video-title h3 {
    font-size: 1.4rem;
  }
  .project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item .thumbnail-wrapper {
    width: 320px;
    height: 180px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .project_detail_list .videos-project {
    padding: 0rem 0rem;
    min-height: 450px;
    gap: 1.5rem;
  }
  .project_detail_list .videos-project .left .main-video-player {
    height: 450px;
  }
  .project_detail_list .videos-project .right {
    height: 450px;
  }
  .project_detail_list .videos-project .right .video-info-section {
    padding: 1.75rem;
  }
  .project_detail_list .videos-project .right .video-info-section .video-icon svg {
    width: 50px;
    height: 45px;
  }
  .project_detail_list .videos-project .right .video-info-section .video-title h3 {
    font-size: 1.3rem;
  }
  .project_detail_list .videos-project .right .video-info-section .video-description {
    font-size: 0.9rem;
  }
  .project_detail_list .videos-project .right .video-thumbnails-list {
    max-height: 180px;
  }
  .project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item .thumbnail-wrapper {
    width: 280px;
    height: 158px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .project_detail_list .videos-project {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 1.5rem;
    min-height: auto;
  }
  .project_detail_list .videos-project .left {
    flex: none;
    max-width: 100%;
    order: 1;
  }
  .project_detail_list .videos-project .left .main-video-player {
    height: 320px;
  }
  .project_detail_list .videos-project .right {
    flex: none;
    max-width: 100%;
    height: auto;
    order: 2;
  }
  .project_detail_list .videos-project .right .video-info-section {
    padding: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  .project_detail_list .videos-project .right .video-info-section .video-icon {
    padding-bottom: 1.5rem;
  }
  .project_detail_list .videos-project .right .video-info-section .video-icon svg {
    width: 50px;
    height: 45px;
  }
  .project_detail_list .videos-project .right .video-info-section .video-title h3 {
    font-size: 1.4rem;
  }
  .project_detail_list .videos-project .right .video-info-section .video-description {
    font-size: 0.9rem;
  }
  .project_detail_list .videos-project .right .video-thumbnails-list {
    max-height: 180px;
    justify-content: center;
    padding: 0 1rem 0.5rem 0;
  }
  .project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item .thumbnail-wrapper {
    width: 280px;
    height: 158px;
    border-radius: 1rem;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .project_detail_list .videos-project {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1rem;
    min-height: 100%;
  }
  .project_detail_list .videos-project .left {
    flex: none;
    max-width: 100%;
    order: 1;
  }
  .project_detail_list .videos-project .left .main-video-player {
    height: auto;
  }
  .project_detail_list .videos-project .right {
    flex: none;
    max-width: 100%;
    height: auto;
    order: 2;
  }
  .project_detail_list .videos-project .right .video-info-section {
    padding: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 0.75rem;
  }
  .project_detail_list .videos-project .right .video-info-section .video-icon {
    padding-bottom: 1rem;
  }
  .project_detail_list .videos-project .right .video-info-section .video-icon svg {
    width: 40px;
    height: 36px;
  }
  .project_detail_list .videos-project .right .video-info-section .video-title h3 {
    font-size: 1.2rem;
  }
  .project_detail_list .videos-project .right .video-info-section .video-description {
    font-size: 0.85rem;
  }
  .project_detail_list .videos-project .right .video-thumbnails-list {
    max-height: 140px;
    justify-content: flex-start;
    padding: 0 0.5rem 0.5rem 0;
  }
  .project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item .thumbnail-wrapper {
    width: 220px;
    height: 124px;
    border-radius: 0.75rem;
  }
  .project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item .play-overlay svg {
    width: 36px !important;
    height: 36px !important;
  }
}
@media (max-width: 575px) {
  .project_detail_list .videos-project {
    flex-direction: column-reverse;
    gap: 1rem;
    padding: 1.5rem 0.75rem;
    min-height: 100%;
  }
  .project_detail_list .videos-project .left {
    flex: none;
    max-width: 100%;
    order: 1;
  }
  .project_detail_list .videos-project .left .main-video-player {
    height: auto;
  }
  .project_detail_list .videos-project .right {
    flex: none;
    max-width: 100%;
    height: auto;
    order: 2;
  }
  .project_detail_list .videos-project .right .video-info-section {
    padding: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    border-radius: 0.5rem;
  }
  .project_detail_list .videos-project .right .video-info-section .video-icon {
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
  }
  .project_detail_list .videos-project .right .video-info-section .video-icon svg {
    width: 35px;
    height: 32px;
  }
  .project_detail_list .videos-project .right .video-info-section .video-title h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  .project_detail_list .videos-project .right .video-info-section .video-description {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .project_detail_list .videos-project .right .video-thumbnails-list {
    max-height: 110px;
    gap: 0.75rem;
    padding: 0 0.25rem 0.5rem 0;
  }
  .project_detail_list .videos-project .right .video-thumbnails-list::-webkit-scrollbar {
    height: 3px;
  }
  .project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item:hover {
    transform: translateX(2px);
  }
  .project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item .thumbnail-wrapper {
    width: 180px;
    height: 101px;
    border-radius: 0.5rem;
  }
  .project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item .thumbnail-wrapper:hover {
    transform: scale(1.02);
  }
  .project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item .play-overlay svg {
    width: 30px !important;
    height: 30px !important;
  }
}
@media (max-width: 400px) {
  .project_detail_list .videos-project {
    padding: 1rem 0.5rem;
    min-height: 100%;
  }
  .project_detail_list .videos-project .left .main-video-player {
    height: 170px;
  }
  .project_detail_list .videos-project .right .video-info-section {
    padding: 1rem;
  }
  .project_detail_list .videos-project .right .video-info-section .video-icon svg {
    width: 30px;
    height: 27px;
  }
  .project_detail_list .videos-project .right .video-info-section .video-title h3 {
    font-size: 1rem;
  }
  .project_detail_list .videos-project .right .video-info-section .video-description {
    font-size: 0.75rem;
  }
  .project_detail_list .videos-project .right .video-thumbnails-list {
    max-height: 90px;
    gap: 0.5rem;
  }
  .project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item .thumbnail-wrapper {
    width: 140px;
    height: 79px;
  }
  .project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item .play-overlay svg {
    width: 24px !important;
    height: 24px !important;
  }
}
@media (hover: none) and (pointer: coarse) {
  .project_detail_list .videos-project .right .video-thumbnails-list {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item {
    scroll-snap-align: start;
  }
  .project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item:active .thumbnail-wrapper {
    transform: scale(0.98);
  }
}
@media (prefers-contrast: high) {
  .project_detail_list .videos-project .right .video-info-section {
    border: 2px solid rgba(255, 255, 255, 0.5);
  }
  .project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item .video-number {
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
}
@media (prefers-reduced-motion: reduce) {
  .project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item {
    transition: none;
  }
  .project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item .thumbnail-wrapper {
    transition: none;
  }
  .project_detail_list .videos-project .right .video-thumbnails-list .video-thumbnail-item .thumbnail-wrapper .play-overlay {
    transition: none;
  }
}
.project_detail_list .matbang {
  position: relative;
}
.project_detail_list .matbang .map_original {
  position: relative;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.project_detail_list .matbang .map_original:hover {
  opacity: 0;
}
.project_detail_list .matbang .map_summary {
  position: absolute;
  top: 40%;
  left: 70%;
  opacity: 1;
  padding: 50px;
  transition: opacity 0.3s ease;
  z-index: 10000000;
  width: 50vh;
  height: auto;
  background: rgba(118, 77, 42, 0.8);
  border-radius: 50px;
  max-width: 540px;
  max-height: 100%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.project_detail_list .matbang .map_summary .arrow {
  margin: 1rem 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2509803922);
}
.project_detail_list .matbang .map_summary .map_summary_content .content {
  overflow-y: scroll;
  margin-top: 1.5rem;
}
.project_detail_list .matbang .map_summary .map_summary_content .content::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
.project_detail_list .matbang .map_summary .map_summary_content .content * {
  color: #fff;
}
.project_detail_list .matbang .map_summary .map_summary_content .content p {
  margin: 0;
}
@media (min-width: 1400px) and (max-width: 1900px) {
  .project_detail_list .matbang .map_summary {
    top: 40%;
    left: 65%;
    padding: 2rem;
    width: 40vw;
    max-width: 530px;
    max-height: 450px;
    border-radius: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .project_detail_list .matbang .map_summary {
    top: 35%;
    left: 63%;
    width: 30vw;
    max-width: 500px;
    max-height: 400px;
    padding: 1rem;
    border-radius: 1rem;
  }
  .project_detail_list .matbang .map_summary .map_summary_content .content {
    font-size: 1rem;
    height: 18vw;
    overflow-y: scroll;
  }
  .project_detail_list .matbang .map_summary .map_summary_content .content h2,
  .project_detail_list .matbang .map_summary .map_summary_content .content h3,
  .project_detail_list .matbang .map_summary .map_summary_content .content h4,
  .project_detail_list .matbang .map_summary .map_summary_content .content h5 {
    font-size: 1.25rem;
  }
  .project_detail_list .matbang .map_summary .map_summary_content .content h2 *,
  .project_detail_list .matbang .map_summary .map_summary_content .content h3 *,
  .project_detail_list .matbang .map_summary .map_summary_content .content h4 *,
  .project_detail_list .matbang .map_summary .map_summary_content .content h5 * {
    font-size: 1.25rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .project_detail_list .matbang .map_summary {
    top: 32%;
    left: 55%;
    padding: 1.5rem;
    width: 30vw;
    max-width: 450px;
    max-height: 380px;
    border-radius: 1rem;
  }
  .project_detail_list .matbang .map_summary .map_summary_content .icon {
    max-width: 45px;
    max-height: 45px;
  }
  .project_detail_list .matbang .map_summary .map_summary_content .icon img {
    width: 100%;
  }
  .project_detail_list .matbang .map_summary .map_summary_content .content {
    font-size: 0.9rem;
    height: 18vw;
    overflow-y: scroll;
  }
  .project_detail_list .matbang .map_summary .map_summary_content .content h2,
  .project_detail_list .matbang .map_summary .map_summary_content .content h3,
  .project_detail_list .matbang .map_summary .map_summary_content .content h4,
  .project_detail_list .matbang .map_summary .map_summary_content .content h5 {
    font-size: 1rem;
  }
  .project_detail_list .matbang .map_summary .map_summary_content .content h2 *,
  .project_detail_list .matbang .map_summary .map_summary_content .content h3 *,
  .project_detail_list .matbang .map_summary .map_summary_content .content h4 *,
  .project_detail_list .matbang .map_summary .map_summary_content .content h5 * {
    font-size: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .project_detail_list .matbang .map_summary {
    top: 38%;
    left: 70%;
    transform: translateX(-50%);
    padding: 1rem;
    width: 35vw;
    max-width: 400px;
    max-height: 350px;
    border-radius: 1rem;
  }
  .project_detail_list .matbang .map_summary .map_summary_content .icon {
    max-width: 30px;
    max-height: 30px;
  }
  .project_detail_list .matbang .map_summary .map_summary_content .icon img {
    width: 100%;
  }
  .project_detail_list .matbang .map_summary .map_summary_content .content {
    font-size: 0.85rem;
    margin-top: 1rem;
    height: 18vw;
    overflow-y: scroll;
  }
  .project_detail_list .matbang .map_summary .map_summary_content .content h2,
  .project_detail_list .matbang .map_summary .map_summary_content .content h3,
  .project_detail_list .matbang .map_summary .map_summary_content .content h4,
  .project_detail_list .matbang .map_summary .map_summary_content .content h5 {
    font-size: 1rem;
  }
  .project_detail_list .matbang .map_summary .map_summary_content .content h2 *,
  .project_detail_list .matbang .map_summary .map_summary_content .content h3 *,
  .project_detail_list .matbang .map_summary .map_summary_content .content h4 *,
  .project_detail_list .matbang .map_summary .map_summary_content .content h5 * {
    font-size: 1rem;
  }
  .project_detail_list .matbang .map_summary .arrow {
    margin: 0.75rem 0;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .project_detail_list .matbang .map_summary {
    top: 40%;
    left: 70%;
    transform: translateX(-50%);
    padding: 1rem;
    width: 40vw;
    max-width: 350px;
    max-height: 300px;
    border-radius: 25px;
  }
  .project_detail_list .matbang .map_summary .map_summary_content .content {
    font-size: 0.8rem;
    margin-top: 0.75rem;
  }
  .project_detail_list .matbang .map_summary .map_summary_content .icon {
    max-width: 30px;
    max-height: 30px;
  }
  .project_detail_list .matbang .map_summary .map_summary_content .icon img {
    width: 100%;
  }
  .project_detail_list .matbang .map_summary .map_summary_content .content {
    font-size: 0.85rem;
    margin-top: 1rem;
    height: 18vw;
    overflow-y: scroll;
  }
  .project_detail_list .matbang .map_summary .map_summary_content .content h2,
  .project_detail_list .matbang .map_summary .map_summary_content .content h3,
  .project_detail_list .matbang .map_summary .map_summary_content .content h4,
  .project_detail_list .matbang .map_summary .map_summary_content .content h5 {
    font-size: 1rem;
  }
  .project_detail_list .matbang .map_summary .map_summary_content .content h2 *,
  .project_detail_list .matbang .map_summary .map_summary_content .content h3 *,
  .project_detail_list .matbang .map_summary .map_summary_content .content h4 *,
  .project_detail_list .matbang .map_summary .map_summary_content .content h5 * {
    font-size: 1rem;
  }
  .project_detail_list .matbang .map_summary .arrow {
    margin: 0.5rem 0;
  }
}
@media (max-width: 575px) {
  .project_detail_list .matbang .map_summary {
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
    width: 85vw;
    max-width: 300px;
    max-height: 250px;
    border-radius: 20px;
    display: none;
  }
  .project_detail_list .matbang .map_summary .map_summary_content .content {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    max-height: 150px;
  }
  .project_detail_list .matbang .map_summary .arrow {
    margin: 0.5rem 0;
    height: 0.5px;
  }
}
@media (max-width: 400px) {
  .project_detail_list .matbang .map_summary {
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px;
    width: 90vw;
    max-width: 250px;
    max-height: 200px;
    border-radius: 15px;
  }
  .project_detail_list .matbang .map_summary .map_summary_content .content {
    font-size: 0.7rem;
    margin-top: 0.5rem;
    max-height: 120px;
  }
  .project_detail_list .matbang .map_summary .arrow {
    margin: 0.25rem 0;
    height: 0.5px;
  }
}
@media (hover: none) and (pointer: coarse) {
  .project_detail_list .matbang .map_summary {
    min-height: 120px;
    touch-action: pan-y;
  }
  .project_detail_list .matbang .map_summary .map_summary_content .content {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
}
@media (prefers-contrast: high) {
  .project_detail_list .matbang .map_summary {
    background: rgba(118, 77, 42, 0.95);
    border: 2px solid #fff;
  }
  .project_detail_list .matbang .map_summary .arrow {
    background: #fff;
    height: 2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .project_detail_list .matbang .map_summary {
    transition: opacity 0.1s ease;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}
.project_detail_list .matbang .map_resized {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.project_detail_list .matbang .map_resized .map-- {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.project_detail_list .matbang .map_resized .map-- .map-point {
  position: absolute;
  width: 0px;
  height: 0px;
  background: #ddb359;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(8, 6, 6, 0.3);
  z-index: 10;
}
.project_detail_list .matbang .map_resized .map-- .map-point:hover {
  transform: translate(-50%, -50%) scale(1.05);
  background: #a67c52;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.project_detail_list .matbang .map_resized .map-- .map-point::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0px;
  height: 0px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.project_detail_list .matbang .map_resized .map-- .map-point svg {
  position: absolute;
  top: -149px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 15;
  pointer-events: auto;
  cursor: pointer;
  width: 114px;
  height: 149px;
}
.project_detail_list .matbang .map_resized .map-- .map-point svg:hover {
  transform: translateX(-50%) scale(1.05);
}
.project_detail_list .matbang:hover .map_resized {
  opacity: 1;
  pointer-events: auto;
}
.project_detail_list .matbang:hover .map-- .map-point svg {
  opacity: 1 !important;
  visibility: visible !important;
}
@media (min-width: 1400px) {
  .project_detail_list .matbang .map-- .map-point svg,
  .project_detail_list .matbang .map_resized .map-- .map-point svg {
    width: 100px;
    height: 130px;
    top: -130px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .project_detail_list .matbang .map-- .map-point svg,
  .project_detail_list .matbang .map_resized .map-- .map-point svg {
    width: 90px;
    height: 115px;
    top: -115px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .project_detail_list .matbang .map-- .map-point svg,
  .project_detail_list .matbang .map_resized .map-- .map-point svg {
    width: 80px;
    height: 105px;
    top: -105px !important;
  }
  .project_detail_list .matbang .map-- .map-point svg:hover,
  .project_detail_list .matbang .map_resized .map-- .map-point svg:hover {
    transform: translateX(-50%) scale(1.08);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .project_detail_list .matbang {
    margin: 3rem 0;
  }
  .project_detail_list .matbang .map-- .map-point svg,
  .project_detail_list .matbang .map_resized .map-- .map-point svg {
    width: 70px;
    height: 90px;
    top: -90px !important;
  }
  .project_detail_list .matbang .map-- .map-point svg:hover,
  .project_detail_list .matbang .map_resized .map-- .map-point svg:hover {
    transform: translateX(-50%) scale(1.1);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .project_detail_list .matbang {
    margin: 2.5rem 0;
  }
  .project_detail_list .matbang .map-- .map-point svg,
  .project_detail_list .matbang .map_resized .map-- .map-point svg {
    width: 60px;
    height: 78px;
    top: -78px !important;
  }
  .project_detail_list .matbang .map-- .map-point svg:hover,
  .project_detail_list .matbang .map_resized .map-- .map-point svg:hover {
    transform: translateX(-50%) scale(1.12);
  }
}
@media (max-width: 575px) {
  .project_detail_list .matbang .map-- .map-point svg,
  .project_detail_list .matbang .map_resized .map-- .map-point svg {
    width: 50px;
    height: 65px;
    top: -65px !important;
  }
  .project_detail_list .matbang .map-- .map-point svg:hover,
  .project_detail_list .matbang .map_resized .map-- .map-point svg:hover {
    transform: translateX(-50%) scale(1.15);
  }
  .project_detail_list .matbang:hover .map-- .map-point svg,
  .project_detail_list .matbang:hover .map_resized .map-- .map-point svg {
    transition: all 0.2s ease;
  }
}
@media (max-width: 400px) {
  .project_detail_list .matbang {
    margin: 1.5rem 0;
  }
  .project_detail_list .matbang .map-- .map-point svg,
  .project_detail_list .matbang .map_resized .map-- .map-point svg {
    width: 40px;
    height: 52px;
    top: -52px !important;
  }
  .project_detail_list .matbang .map-- .map-point svg:hover,
  .project_detail_list .matbang .map_resized .map-- .map-point svg:hover {
    transform: translateX(-50%) scale(1.2);
  }
}
@media (hover: none) and (pointer: coarse) {
  .project_detail_list .matbang .map-- .map-point svg:active,
  .project_detail_list .matbang .map_resized .map-- .map-point svg:active {
    transform: translateX(-50%) scale(0.95);
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .project_detail_list .matbang .map-- .map-point svg,
  .project_detail_list .matbang .map_resized .map-- .map-point svg {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
@media (max-width: 768px) {
  .project_detail_list {
    margin: -30px 0;
    padding: 40px 0;
    border-radius: 30px;
  }
  .project_detail_list .layout_project_detail_item .project-detail-grid {
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    justify-content: unset;
    overflow-y: hidden;
    display: flex;
    gap: 1rem;
    padding: 0 1rem;
  }
  .project_detail_list .layout_project_detail_item .project-detail-grid .project-detail-item {
    padding: 1rem;
  }
  .project_detail_list .layout_project_detail_item .project-detail-grid .project-detail-item .project-detail-image img {
    width: 45px;
    height: 45px;
  }
  .project_detail_list .layout_project_detail_item .project-detail-grid .project-detail-item .project-detail-content .project-detail-title {
    font-size: 0.9rem;
  }
  .project_detail_list .layout_project_detail_item .project-detail-grid .project-detail-item.active {
    border-radius: 1rem 1rem 0 0;
  }
  .project_detail_list .data_item_tongquan {
    margin-top: 1rem !important;
  }
  .project_detail_list .data_item_tongquan .Logo_item {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .project_detail_list .data_item_tongquan .Logo_item .logo-item {
    flex: none;
    max-width: 100%;
    order: 2;
  }
  .project_detail_list .data_item_tongquan .Logo_item .logo-item .logo {
    display: flex;
    justify-content: center;
  }
  .project_detail_list .data_item_tongquan .Logo_item .logo-background {
    flex: none;
    max-width: 100%;
    order: 1;
    height: 0px;
  }
  .project_detail_list .data_item_tongquan .Logo_item .logo-background .background--right .background--right--box {
    position: relative;
    width: 100%;
    max-width: 100%;
    left: 0;
  }
  .project_detail_list .data_item_tongquan .Logo_item .logo-background .background--right .background--right--box .background__image--wrapper::before {
    width: 100%;
    height: 0px;
    border-radius: 20px;
  }
  .project_detail_list .data_item_tongquan .layout-tongquan {
    flex-direction: column;
    gap: 2rem;
  }
  .project_detail_list .data_item_tongquan .layout-tongquan .data-tongquan-img {
    height: auto;
    flex: 1 1 auto;
    max-width: 100%;
  }
  .project_detail_list .data_item_tongquan .layout-tongquan .data-tongquan-img .img .img-overlay {
    width: var(--container-widget-width, 100vw);
    max-width: 100vw;
    --container-widget-width: 100vw;
    --container-widget-flex-grow: 0;
    position: relative !important;
  }
  .project_detail_list .data_item_tongquan .layout-tongquan .data-tongquan-img .img .img-overlay .overview img {
    border-radius: 1rem;
    max-width: 100%;
    width: 100vw;
    height: auto;
    vertical-align: middle;
  }
  .project_detail_list .data_item_tongquan .layout-tongquan .content_overview {
    flex: none;
    max-width: 100%;
    padding: 0 1rem;
  }
  .project_detail_list .data_item_tongquan .layout-tongquan .content_overview .name_tongquan {
    font-size: 1.8rem;
    text-align: center;
  }
  .project_detail_list .data_item_tongquan .layout-tongquan .content_overview .overview {
    font-size: 0.9rem;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .project_detail_list {
    margin: -20px 0;
    padding: 30px 0;
    border-radius: 20px;
    padding: 0px 0;
  }
  .project_detail_list .layout_project_detail_item .project-detail-grid {
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    justify-content: unset;
    overflow-y: hidden;
    display: flex;
    gap: 0.75rem;
    padding: 0 0.5rem;
  }
  .project_detail_list .layout_project_detail_item .project-detail-grid .project-detail-item {
    padding: 0.75rem;
  }
  .project_detail_list .layout_project_detail_item .project-detail-grid .project-detail-item .project-detail-image img {
    width: 35px;
    height: 35px;
  }
  .project_detail_list .layout_project_detail_item .project-detail-grid .project-detail-item .project-detail-content .project-detail-title {
    font-size: 0.8rem;
  }
  .project_detail_list .data_item_tongquan .Logo_item {
    gap: 1rem;
  }
  .project_detail_list .data_item_tongquan .Logo_item .logo-background {
    height: 0px;
  }
  .project_detail_list .data_item_tongquan .Logo_item .logo-background .background--right .background--right--box .background__image--wrapper::before {
    height: 0px;
    border-radius: 15px;
  }
  .project_detail_list .data_item_tongquan .layout-tongquan {
    gap: 1.5rem;
  }
  .project_detail_list .data_item_tongquan .layout-tongquan .content_overview .name_tongquan {
    font-size: 1.5rem;
  }
  .project_detail_list .data_item_tongquan .layout-tongquan .content_overview .overview {
    font-size: 0.85rem;
  }
}
@media (max-width: 400px) {
  .project_detail_list {
    margin: -15px 0;
    padding: 20px 0;
  }
  .project_detail_list .layout_project_detail_item .project-detail-grid {
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    justify-content: unset;
    overflow-y: hidden;
    display: flex;
    gap: 0.5rem;
  }
  .project_detail_list .layout_project_detail_item .project-detail-grid .project-detail-item {
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .project_detail_list .layout_project_detail_item .project-detail-grid .project-detail-item .project-detail-image img {
    width: 30px;
    height: 30px;
  }
  .project_detail_list .layout_project_detail_item .project-detail-grid .project-detail-item .project-detail-content .project-detail-title {
    font-size: 0.75rem;
    margin: 0;
  }
  .project_detail_list .layout_project_detail_item .project-detail-grid .project-detail-item.active {
    border-radius: 0.75rem;
    border-bottom: none;
    border-left: 3px solid #764d2a;
  }
  .project_detail_list .data_item_tongquan .layout-tongquan .content_overview {
    padding: 0 0.5rem;
  }
  .project_detail_list .data_item_tongquan .layout-tongquan .content_overview .name_tongquan {
    font-size: 1.3rem;
  }
  .project_detail_list .data_item_tongquan .layout-tongquan .content_overview .overview {
    font-size: 0.8rem;
  }
}

.design-project {
  background-color: #f6f3ec;
  padding: 5rem 0;
}
.design-project .layout-content-design {
  align-items: center;
}
.design-project .layout-content-design .design-content {
  flex: 1 1 60%;
}
.design-project .layout-content-design .design-content .content-design {
  padding-top: 1.25rem;
  font-size: 1.1rem;
  color: #333333;
}
.design-project .layout-content-design .design-tab {
  display: flex;
  flex: 1 1 40%;
  justify-content: flex-end;
  gap: 2rem;
}
.design-project .layout-content-design .design-tab .waves-effect {
  border-radius: 2rem;
}
.design-project .layout-content-design .design-tab .waves-effect.active {
  background: #eacd75;
}
.design-project .layout-content-design .design-tab .waves-effect.active .design-tab-item {
  background: #eacd75;
}
.design-project .layout-content-design .design-tab .waves-effect .design-tab-item {
  padding: 0.75rem 2rem;
  background: #fff;
  border-radius: 2rem;
  border: 1px solid #eacd75;
}
.design-project .tab-content .slide-content .--arow {
  height: 1px;
  background: #eacd75;
  max-width: 5%;
}
.design-project .tab-content .owl-dots {
  position: absolute;
  bottom: -3rem;
  text-align: center;
  width: 100%;
}
.design-project .tab-content .he-sinh-thai--nav .he-nav {
  width: 3.75rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1882352941);
  border: unset;
}
.design-project .tab-content .he-sinh-thai--nav .he-nav:hover {
  background: rgba(255, 255, 255, 0.3137254902);
}
.design-project .tab-content .he-sinh-thai--nav.prev, .design-project .tab-content .he-sinh-thai--nav.next {
  top: 50%;
  bottom: 50%;
}
.design-project .tab-content .he-sinh-thai--nav.prev {
  left: 5%;
}
.design-project .tab-content .he-sinh-thai--nav.next {
  right: 5%;
}
.design-project .tab-content .slide-image {
  position: relative;
}
.design-project .tab-content .slide-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2rem;
}
.design-project .tab-content .slide-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 115%);
  border: unset;
  border-radius: 0 0 2rem 2rem;
  transition: all 0.3s ease;
}
.design-project .tab-content .owl-carousel .owl-item {
  transition: all 0.3s ease;
  transform: scale(0.93, 0.8);
}
.design-project .tab-content .owl-carousel .owl-item .slide-content {
  opacity: 0;
}
.design-project .tab-content .owl-carousel .owl-item .slide-image::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.7) 0%);
  height: 100%;
  transition: all 0.3s ease;
}
.design-project .tab-content .owl-carousel .owl-item.center {
  transform: scale(1);
}
.design-project .tab-content .owl-carousel .owl-item.center .slide-content {
  opacity: 1;
}
.design-project .tab-content .owl-carousel .owl-item.center .slide-image::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 120%);
  height: 15%;
  top: unset;
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .design-project {
    padding: 3rem 0;
  }
  .design-project .layout-content-design {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    margin-bottom: 2rem !important;
  }
  .design-project .layout-content-design .design-content {
    flex: none;
  }
  .design-project .layout-content-design .design-content .content-design {
    font-size: 1rem;
    padding-top: 1rem;
  }
  .design-project .layout-content-design .design-tab {
    flex: none;
    justify-content: center;
    gap: 1rem;
  }
  .design-project .layout-content-design .design-tab .waves-effect .design-tab-item {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  .design-project .tab-content .he-sinh-thai--nav .he-nav {
    width: 3rem;
    height: 3rem;
  }
  .design-project .tab-content .he-sinh-thai--nav.prev {
    left: 2%;
  }
  .design-project .tab-content .he-sinh-thai--nav.next {
    right: 2%;
  }
  .design-project .tab-content .slide-image img {
    border-radius: 1.5rem;
  }
  .design-project .tab-content .slide-image::before {
    border-radius: 0 0 1.5rem 1.5rem;
  }
}
@media (max-width: 768px) {
  .design-project {
    padding: 2.5rem 0;
  }
  .design-project .layout-content-design {
    padding: 0 1rem;
    margin-bottom: 2rem !important;
  }
  .design-project .layout-content-design .design-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .design-project .layout-content-design .design-content .content-design {
    font-size: 0.95rem;
  }
  .design-project .layout-content-design .design-tab {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .design-project .layout-content-design .design-tab .waves-effect .design-tab-item {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
  }
  .design-project .tab-content .owl-dots {
    bottom: -2rem;
  }
  .design-project .tab-content .he-sinh-thai--nav .he-nav {
    width: 2.5rem;
    height: 2.5rem;
  }
  .design-project .tab-content .he-sinh-thai--nav.prev {
    left: 1%;
  }
  .design-project .tab-content .he-sinh-thai--nav.next {
    right: 1%;
  }
  .design-project .tab-content .slide-image img {
    border-radius: 1rem;
  }
  .design-project .tab-content .slide-image::before {
    border-radius: 0 0 1rem 1rem;
  }
}
@media (max-width: 576px) {
  .design-project {
    padding: 2rem 0;
    border-radius: 0 0 20px 20px;
  }
  .design-project .layout-content-design {
    padding: 0 0.5rem;
    margin-bottom: 1.5rem !important;
  }
  .design-project .layout-content-design .design-content h3 {
    font-size: 1.3rem;
  }
  .design-project .layout-content-design .design-content .content-design {
    font-size: 0.9rem;
  }
  .design-project .layout-content-design .design-tab {
    gap: 0.5rem;
  }
  .design-project .layout-content-design .design-tab .waves-effect .design-tab-item {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    border-radius: 1.5rem;
  }
  .design-project .tab-content .owl-dots {
    bottom: -1.5rem;
  }
  .design-project .tab-content .he-sinh-thai--nav {
    display: none;
  }
  .design-project .tab-content .slide-image img {
    border-radius: 0.75rem;
  }
  .design-project .tab-content .slide-image::before {
    border-radius: 0 0 0.75rem 0.75rem;
  }
  .design-project .tab-content .owl-carousel .owl-item {
    transform: scale(0.95, 0.85);
  }
  .design-project .tab-content .owl-carousel .owl-item.center {
    transform: scale(1);
  }
}
@media (max-width: 400px) {
  .design-project {
    padding: 1.5rem 0;
  }
  .design-project .layout-content-design {
    padding: 0 0.25rem;
  }
  .design-project .layout-content-design .design-content h3 {
    font-size: 1.2rem;
  }
  .design-project .layout-content-design .design-content .content-design {
    font-size: 0.85rem;
  }
  .design-project .layout-content-design .design-tab .waves-effect .design-tab-item {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
  }
  .design-project .tab-content .slide-image img {
    border-radius: 0.5rem;
  }
  .design-project .tab-content .slide-image::before {
    border-radius: 0 0 0.5rem 0.5rem;
  }
}

@media screen and (max-width: 768px) {
  .project-home .hero-section {
    width: 100%;
    height: 60vh !important;
  }
  .project-home .hero-section .hero-background img {
    height: 60vh !important;
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .tab-pane {
    min-height: 100%;
  }
  .slide-content {
    padding: 1rem 1rem 0 1rem !important;
  }
  .slide-content h3 {
    font-size: 1rem !important;
    margin: 0;
  }
}
