@font-face {
  font-family: 'MiSans-Light';
  src: url('../fonts/MiSans-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'JosefinSans-Regular';
  src: url('../fonts/JosefinSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'JosefinSans-Bold';
  src: url('../fonts/JosefinSans-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'MiSans-Light', 'JosefinSans-Regular', Arial, sans-serif;
  background: #000;
  color: #fff;
  scroll-behavior: smooth;
}
body {
  font-size: 22px;
}
body.modal-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  /* color: #00e600; */
}
@media (max-width: 1100px) {
  body {
    font-size: 18px;
  }
  .custom-title-1 {
    gap: 25px !important;
  }
  .custom-title-1 .title-box {
    position: relative;
    min-height: 60px !important;
  }
  .custom-title-1 .title-box .title-text {
    margin-top: 50px;
    font-size: 26px !important;
    line-height: 1.6;
    letter-spacing: 0px;
    position: relative;
  }
  .custom-title-1 .title-box .title-text .green-box {
    position: absolute;
    top: -20px !important;
    width: 60px !important;
    height: 60px !important;
  }
  .custom-title-1 .title-box .title-text .black-text {
    width: calc(60px - 15px) !important;
  }
}
/* Header */
.aboutUs-header.page-header .header-bg {
  background: transparent;
}
.theTeam-header.page-header .header-bg {
  background: transparent;
}
.page-header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 25px;
  box-sizing: border-box;
  z-index: 50;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* 菜单按钮 */
  /* 菜单内容 */
}
.page-header .header-bg {
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  transition: background 0.3s;
  width: 100%;
  height: 70px;
  z-index: 0;
}
.page-header .header-bg.scrolled {
  background: #000 !important;
}
.page-header .logo-img {
  height: 45px;
  cursor: pointer;
  position: fixed;
  left: 15px;
  top: 10.5px;
}
.page-header .menu-wrapper {
  text-transform: uppercase;
  font-size: 1.375rem;
  font-family: 'JosefinSans-Regular';
  line-height: 1.5;
  align-items: flex-end;
  display: flex;
  flex-direction: column;
}
.page-header .menu-toggle {
  position: relative;
  width: 30px;
  height: 20px;
  display: flex;
  cursor: pointer;
  z-index: 50;
}
.page-header .menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease-in-out;
}
.page-header .menu-toggle span:nth-child(1) {
  top: 0;
}
.page-header .menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.page-header .menu-toggle span:nth-child(3) {
  bottom: 0;
}
.page-header .menu-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.page-header .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.page-header .menu-toggle.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.page-header .menu-content {
  display: none;
  text-align: right;
  padding-top: 2rem;
}
.page-header .menu-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: white;
}
.page-header .menu-content li {
  margin-bottom: 0.5rem;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .page-header {
    padding: 20px !important;
  }
  .page-header .header-bg {
    height: 60px;
  }
  .page-header .logo-img {
    height: 35px !important;
    top: 11.5px !important;
  }
}
/* 背景遮罩 */
.overlay-bg {
  display: none;
  background-color: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  pointer-events: none;
}
.tips-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.tips-modal .tips-modal-content {
  background: #01E508;
  color: #fff;
  width: 590px;
  max-width: 90vw;
  min-height: 300px;
  margin: 0 auto;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 36px 30px 36px 30px;
  text-align: center;
}
.tips-modal .tips-modal-content .tips-modal-title {
  font-family: 'JosefinSans-Bold', 'MiSans-Light', 'JosefinSans-Regular', Arial, sans-serif;
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 24px;
  margin-top: 10px;
  text-transform: uppercase;
}
.tips-modal .tips-modal-content .tips-modal-desc {
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.tips-modal .tips-modal-content .tips-modal-close {
  font-family: 'MiSans-Light';
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: 18px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  line-height: 24px;
  transition: background 0.2s, color 0.2s;
}
.tips-modal .tips-modal-content .tips-modal-close .tips-modal-close-icon {
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.tips-modal .tips-modal-content .tips-modal-close:hover {
  background: #fff;
  color: #01E508;
}
@media (max-width: 768px) {
  .tips-modal .tips-modal-content {
    width: 80vw;
    min-height: 160px;
    padding: 20px 8px 20px 8px;
  }
  .tips-modal .tips-modal-content .tips-modal-title {
    font-size: 1.2rem;
  }
  .tips-modal .tips-modal-content .tips-modal-desc {
    font-size: 0.95rem;
  }
  .tips-modal .tips-modal-content .tips-modal-close {
    top: 8px;
    right: 8px;
  }
}
.first-screen {
  height: 100vh;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: left;
}
.custom-title-1 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 15px;
  gap: 50px;
}
.custom-title-1 .title-box {
  position: relative;
  min-height: 127px;
}
.custom-title-1 .title-box .title-text {
  margin-top: 50px;
  font-size: 48px;
  line-height: 1.6;
  letter-spacing: 0px;
  position: relative;
}
.custom-title-1 .title-box .title-text .green-box {
  position: absolute;
  top: -50px;
  left: -15px;
  width: 127px;
  height: 127px;
  background: #01E508;
  z-index: 2;
}
.custom-title-1 .title-box .title-text .black-text {
  position: absolute;
  left: 0;
  top: -10px;
  width: calc(127px - 15px);
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  z-index: 3;
}
.custom-title-1 .title-box .title-text .white-text {
  top: -10px;
  color: #fff;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}
.custom-title-1 .title-underline {
  width: 165px;
  height: 0px;
  border-top: 2px solid #01E508;
}
/* Home */
.home-container {
  /* Hero Section */
}
.home-container .hero-section {
  height: 100vh;
  background-color: black;
  position: relative;
  overflow: hidden;
}
.home-container .hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  box-sizing: border-box;
  z-index: 10;
}
.home-container .hero-content .vidoe-preview {
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100vw * 0.9);
  height: calc(100vw * 0.9 * 9 / 16);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}
.home-container .hero-content .vidoe-preview .video-preview-img {
  height: 100%;
  object-fit: cover;
  display: none;
}
.home-container .hero-content .vidoe-preview .video-preview-play {
  position: absolute;
  opacity: 0.8;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  object-fit: cover;
  animation: video-preview-play-bounce 1.6s infinite ease-in-out;
  cursor: pointer;
  transition: animation-duration 0.2s;
}
.home-container .hero-logo {
  width: 100%;
  display: none;
}
@media (max-width: 768px) {
  .home-container .video-wrapper {
    display: none !important;
  }
  .home-container .hero-logo {
    display: block ;
  }
}
@media (max-width: 768px) {
  .home-logo-img {
    display: none !important;
  }
}
@keyframes video-preview-play-bounce {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
/* About Us */
.aboutUs-container .hero {
  background: #01E508;
}
.aboutUs-container .hero .hero-content {
  margin: 0 auto;
  text-align: left;
}
.aboutUs-container .hero .hero-content .title {
  font-family: 'JosefinSans-Bold';
  font-weight: 700;
  color: #000000;
  margin: 0 0 1vw 0;
  text-align: left;
  font-size: 96px;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 0em;
}
.aboutUs-container .hero .hero-content .subtitle {
  font-family: 'JosefinSans-Regular';
  font-weight: normal;
  color: #000000;
  margin-top: 1vw;
  text-align: left;
  font-size: 36px;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 0em;
}
.aboutUs-container .hero .scroll-tip {
  position: absolute;
  font-family: 'JosefinSans-Regular';
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  opacity: 0.8;
  letter-spacing: 2px;
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 10;
}
.aboutUs-container .hero .scroll-tip:hover {
  opacity: 1;
}
.aboutUs-container .hero .gradient-top {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}
.aboutUs-container .about {
  min-height: 100vh;
  background: #000;
  padding: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.aboutUs-container .about .about-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(0deg, rgba(1, 229, 8, 0) 0%, rgba(1, 229, 8, 0.5) 100%);
  z-index: 2;
  pointer-events: none;
}
.aboutUs-container .about .about-content {
  margin-top: 120px;
  max-width: 1740px;
  width: 95%;
  color: #fff;
  display: flex;
  flex-direction: row;
  gap: 90px;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}
.aboutUs-container .about .about-content .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}
.aboutUs-container .about .about-content .content-wrapper .content-item .about-desc {
  margin-bottom: 32px;
  line-height: 1.7;
}
.aboutUs-container .about .about-content .content-wrapper .content-item.left {
  flex: 0.6;
}
.aboutUs-container .about .about-content .content-wrapper .content-item.right {
  flex: 0.4;
}
.aboutUs-container .about .about-content .content-wrapper .content-item.img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.aboutUs-container .about .about-content .content-wrapper .content-item.img img {
  width: 100%;
}
.aboutUs-container .about .about-content .content-wrapper.wrap-2 {
  margin-bottom: 140px;
  flex-direction: row-reverse;
}
.aboutUs-container .about .about-content .content-wrapper.wrap-2 .content-item.left {
  flex: 0.35;
}
.aboutUs-container .about .about-content .content-wrapper.wrap-2 .content-item.right {
  flex: 0.65;
}
.aboutUs-container .about .about-content .row-list-1 ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.aboutUs-container .about .about-content .row-list-1 li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.aboutUs-container .about .about-content .row-list-1 li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 19px;
  background: url('../imgs/icon-arrow.png') no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 6px;
}
.aboutUs-container .about .about-content .row-list-2 ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.aboutUs-container .about .about-content .row-list-2 li {
  position: relative;
  padding-left: 48px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.aboutUs-container .about .about-content .row-list-2 .list-index {
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  color: #01E508;
  text-align: left;
}
.aboutUs-container .about .about-content .about-contact {
  display: flex;
  justify-content: flex-start;
  gap: 90px;
  position: relative;
  font-size: 16px;
}
.aboutUs-container .about .about-content .about-contact .item {
  display: flex;
  align-items: center;
  gap: 18px;
}
.aboutUs-container .about .about-content .about-contact .item .item-img {
  width: 31px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aboutUs-container .about .about-content .about-contact .item .item-img img {
  height: 100%;
  width: 100%;
}
.aboutUs-container .about .about-content .about-contact .item .item-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1400px) {
  .aboutUs-container .about-contact {
    gap: 20px !important;
  }
}
@media (max-width: 1100px) {
  .aboutUs-container .about-content {
    gap: 45px !important;
    width: 90% !important;
  }
  .aboutUs-container .about-desc {
    padding-left: 20px !important;
  }
  .aboutUs-container .gradient-top {
    height: 100px !important;
  }
  .aboutUs-container .scroll-tip {
    bottom: 40px !important;
  }
  .aboutUs-container .hero-content .title {
    font-size: 48px !important;
    text-align: center !important;
  }
  .aboutUs-container .hero-content .subtitle {
    font-size: 24px !important;
    text-align: center !important;
  }
  .aboutUs-container .content-wrapper {
    flex-direction: column !important;
    align-items: center !important;
  }
  .aboutUs-container .about-img-side {
    width: 90vw !important;
    max-width: 320px !important;
  }
  .aboutUs-container .about-contact {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .aboutUs-container .content-wrapper.wrap-2 {
    margin-bottom: 0px !important;
  }
}
/* Contact Us */
.contactUs-container .contact-form {
  width: 650px;
  margin: 0 auto;
  margin-top: 40px;
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contactUs-container .contact-form .form-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding-bottom: 8px;
  position: relative;
}
.contactUs-container .contact-form .form-row label {
  color: #fff;
  font-size: 14px;
  opacity: 0.8;
  letter-spacing: 0.5px;
}
.contactUs-container .contact-form .form-row input[type="text"],
.contactUs-container .contact-form .form-row input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  padding: 0px 0 4px 8px;
  opacity: 0.8;
  border-bottom: 1px solid #fff;
  margin-top: -2px;
  -webkit-appearance: none;
  border-radius: 0;
}
.contactUs-container .contact-form .form-row input::placeholder {
  color: #ccc;
  opacity: 0.5;
}
.contactUs-container .contact-form .form-row .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-left: 0;
}
.contactUs-container .contact-form .form-row .checkbox-group label {
  font-size: 16px;
  color: #fff;
  font-weight: normal;
  opacity: 0.8;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding-left: 0;
  cursor: pointer;
}
.contactUs-container .contact-form .form-row .checkbox-group label input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  margin: 0;
  z-index: 2;
  cursor: pointer;
}
.contactUs-container .contact-form .form-row .checkbox-group label span {
  position: relative;
  padding-left: 0;
  margin-left: 30px;
}
.contactUs-container .contact-form .form-row .checkbox-group label span::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: 1px solid #fff;
  background: transparent;
  box-sizing: border-box;
  z-index: 1;
  transition: background 0.2s, border-color 0.2s;
}
.contactUs-container .contact-form .form-row .checkbox-group label span::after {
  content: '';
  position: absolute;
  left: -22px;
  top: 45%;
  transform: translateY(-50%);
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: scale(0) rotate(-45deg) translateY(-50%);
  opacity: 0;
  transition: all 0.2s;
  z-index: 2;
}
.contactUs-container .contact-form .form-row .checkbox-group label input[type="checkbox"]:checked + span::before {
  background: #01E508;
  border-color: #01E508;
}
.contactUs-container .contact-form .form-row .checkbox-group label input[type="checkbox"]:checked + span::after {
  opacity: 1;
  transform: scale(1) rotate(-45deg) translateY(-50%);
}
.contactUs-container .contact-form .form-submit-row {
  border: none;
  justify-content: center;
  margin-top: 45px;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contactUs-container .contact-form .submit-btn {
  width: 400px;
  height: 62px;
  background: #01E508;
  color: #fff;
  font-size: 24px;
  font-family: 'JosefinSans-Bold', 'MiSans-Light', 'JosefinSans-Regular', Arial, sans-serif;
  border: none;
  cursor: pointer;
  letter-spacing: 2px;
  transition: background 0.2s;
  margin: 0 auto;
  display: block;
  box-shadow: 0 0 16px 0 rgba(1, 229, 8, 0.15);
}
.contactUs-container .contact-form .submit-btn:hover {
  background: #1bfe22;
}
.contactUs-container .scroll-tip {
  position: absolute;
  font-family: 'JosefinSans-Regular';
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  opacity: 0.8;
  letter-spacing: 2px;
  transition: opacity 0.3s;
  z-index: 10;
}
@media (max-width: 768px) {
  .contactUs-container .first-screen {
    height: auto !important;
  }
  .contactUs-container .contact-form {
    margin-top: 80px;
    width: 90%;
    min-width: 0;
    padding: 0;
  }
  .contactUs-container .contact-form .form-row label {
    font-size: 14px !important;
    min-width: 150px;
  }
  .contactUs-container .contact-form .form-row input[type="text"],
  .contactUs-container .contact-form .form-row input[type="email"] {
    font-size: 14px !important;
    min-width: 55% !important;
  }
  .contactUs-container .contact-form .form-submit-row {
    margin-top: 0px;
  }
  .contactUs-container .contact-form .submit-btn {
    width: 100%;
    font-size: 20px;
    height: 44px;
  }
  .contactUs-container .scroll-tip {
    position: relative;
    top: 0px;
    left: 0;
    padding: 20px;
    bottom: 40px;
    transform: none !important;
  }
}
/* The Team */
.theTeam-container {
  /* 团队成员介绍样式 */
  /* 响应式设计 */
  /* 响应式设计 */
}
.theTeam-container .hero {
  /* 组织架构图样式 */
}
.theTeam-container .hero .hero-bg {
  width: 100%;
  height: 100%;
  background-image: url('../imgs/the-team-bg.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.theTeam-container .hero .hero-content {
  margin: 0 auto;
  text-align: left;
}
.theTeam-container .hero .scroll-tip {
  position: absolute;
  font-family: 'JosefinSans-Regular';
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  opacity: 0.8;
  letter-spacing: 2px;
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 10;
}
.theTeam-container .hero .scroll-tip:hover {
  opacity: 1;
}
.theTeam-container .hero .gradient-top {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}
.theTeam-container .hero .org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 40px 0;
}
.theTeam-container .hero .org-chart .box {
  font-size: 18px;
  border: 1px solid #01E508;
  padding: 12px 20px;
  box-sizing: border-box;
  text-align: left;
  width: 324px;
  background: transparent;
  color: #fff;
  position: relative;
  font-family: 'JosefinSans-Regular';
}
.theTeam-container .hero .org-chart .box span {
  font-family: 'MiSans-Light';
  display: block;
  font-weight: normal;
  font-size: 14px;
  color: #fff;
  margin-top: 5px;
  line-height: 1.4;
}
.theTeam-container .hero .org-chart .main-node {
  background: #01E508;
  letter-spacing: 2px;
  text-align: center;
  min-width: 500px;
  padding: 16px 50px;
  color: #fff;
  font-size: 36px;
  margin-bottom: 0;
  font-family: 'JosefinSans-Regular';
  text-transform: uppercase;
}
.theTeam-container .hero .org-chart .connector.vertical {
  width: 0;
  height: 27px;
  border-left: 1px solid #01E508;
  margin: 0 auto;
}
.theTeam-container .hero .org-chart .connector.vertical.main-line {
  height: 35px;
}
.theTeam-container .hero .org-chart .connector.horizontal {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 0;
  border-top: 1px solid #01E508;
  margin-top: 50px;
  position: relative;
}
.theTeam-container .hero .org-chart .group-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 75px;
  position: relative;
}
.theTeam-container .hero .org-chart .group-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  width: calc(100% - 324px);
  height: 1px;
  background: #01E508;
  z-index: 0;
}
.theTeam-container .hero .org-chart .group-row .group {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: 33px;
}
.theTeam-container .hero .org-chart .group-row .group::before {
  content: '';
  position: absolute;
  top: -33px;
  left: 50%;
  width: 1px;
  height: 33px;
  background: #01E508;
  transform: translateX(-50%);
}
.theTeam-container .hero .org-chart .group-row .group .group-title {
  text-align: center;
  background: #01E508;
  color: #fff;
  padding: 16px 0px;
  white-space: nowrap;
  font-family: 'JosefinSans-Regular';
  text-transform: uppercase;
  font-size: 18px;
}
.theTeam-container .hero .org-chart .group-row .group .role-row {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 10px;
}
.theTeam-container .team-members {
  min-height: 100vh;
  background: #000;
  padding: 70px 0 40px 0;
  position: relative;
}
.theTeam-container .team-members .team-members-content {
  width: 95%;
  margin: 0 auto;
  max-width: 1720px;
}
.theTeam-container .team-members .team-members-content .team-members-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0px 100px;
}
.theTeam-container .team-members .team-members-content .team-members-title .team-members-sub-title {
  font-size: 22px;
  margin-top: -10px;
  color: #fff;
}
.theTeam-container .team-members .team-members-content .team-members-desc {
  margin: 50px 100px 50px 115px;
  font-size: 22px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 120px;
}
.theTeam-container .team-members .team-members-content .member-grid {
  display: flex;
  justify-content: center;
}
.theTeam-container .team-members .team-members-content .member-grid .member-card {
  display: flex;
  flex-direction: column;
  width: 252px;
  gap: 30px;
  padding: 15px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.theTeam-container .team-members .team-members-content .member-grid .member-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}
.theTeam-container .team-members .team-members-content .member-grid .member-card .member-photo {
  flex-shrink: 0;
  width: 252px;
  overflow: hidden;
}
.theTeam-container .team-members .team-members-content .member-grid .member-card .member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.theTeam-container .team-members .team-members-content .member-grid .member-card .member-info {
  flex: 1;
}
.theTeam-container .team-members .team-members-content .member-grid .member-card .member-info .member-name {
  font-family: 'JosefinSans-Bold';
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.theTeam-container .team-members .team-members-content .member-grid .member-card .member-info .member-desc {
  font-size: 14px;
  line-height: 1.4;
}
@media (max-width: 1720px) and (min-width: 768px) {
  .theTeam-container .team-members-content .member-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(252px, 1fr)) !important;
    gap: 60px !important;
  }
}
@media (max-width: 1600px) and (min-width: 1200px) {
  .theTeam-container .hero .org-chart .box {
    width: 240px !important;
  }
  .theTeam-container .hero .org-chart .group-row::before {
    width: calc(100% - 240px) !important;
  }
}
@media (max-width: 1200px) {
  .theTeam-container .scroll-tip {
    display: none !important;
  }
  .theTeam-container .team-members-content {
    gap: 45px !important;
    width: 90% !important;
  }
  .theTeam-container .hero {
    padding: 60px 0 40px 0 !important;
    height: auto !important;
  }
  .theTeam-container .hero .hero-bg {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }
  .theTeam-container .box.main-node {
    font-size: 24px !important;
    min-width: auto !important;
  }
  .theTeam-container .org-chart .group-row {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    margin-top: -33px !important;
  }
  .theTeam-container .org-chart .group-row::before {
    display: none;
  }
  .theTeam-container .org-chart .group-row .group::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .theTeam-container .hero {
    padding: 60px 0 0px 0 !important;
    height: auto !important;
  }
  .theTeam-container .org-chart {
    padding: 20px 0;
  }
  .theTeam-container .org-chart .box {
    font-size: 18px !important;
    min-width: auto;
    max-width: 90vw;
    padding: 10px 15px !important;
  }
  .theTeam-container .org-chart .box span {
    font-size: 18px !important;
  }
  .theTeam-container .org-chart .box.main-node {
    font-size: 24px !important;
    padding: 8px 16px !important;
    min-width: auto !important;
  }
  .theTeam-container .org-chart .main-line {
    opacity: 0 !important;
  }
  .theTeam-container .org-chart .group-row {
    gap: 30px !important;
    margin-top: -33px !important;
  }
  .theTeam-container .org-chart .group-row .group .group-title {
    font-size: 20px !important;
    padding: 4px 12px !important;
  }
  .theTeam-container .team-members {
    padding: 0px 0 40px 0 !important;
  }
  .theTeam-container .team-members-title {
    gap: 20px !important;
    margin: 0px 0px !important;
    flex-direction: column !important;
  }
  .theTeam-container .team-members-sub-title {
    font-size: 18px !important;
  }
  .theTeam-container .team-members-desc {
    font-size: 18px !important;
    margin: 50px 0px 50px 0px !important;
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .theTeam-container .member-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 40px;
  }
  .theTeam-container .member-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .theTeam-container .member-card .member-photo {
    width: 120px;
    margin: 0 auto;
  }
  .theTeam-container .member-card .member-info .member-name {
    font-size: 20px;
  }
  .theTeam-container .member-card .member-info .member-desc {
    font-size: 14px;
  }
}
/* Core Competitiveness */
.coreCompetitiveness-container .hero .hero-content {
  margin: 0 auto;
  text-align: left;
  max-width: 1600px;
  width: 90%;
  position: absolute;
}
.coreCompetitiveness-container .hero .scroll-tip {
  position: absolute;
  font-family: 'JosefinSans-Regular';
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  opacity: 0.8;
  letter-spacing: 2px;
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 10;
}
.coreCompetitiveness-container .hero .scroll-tip:hover {
  opacity: 1;
}
.coreCompetitiveness-container .hero .gradient-top {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
  z-index: -1;
}
.coreCompetitiveness-container .hero .hero-content .bg-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100px;
  width: 700px;
}
.coreCompetitiveness-container .hero .hero-content .title-text {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.coreCompetitiveness-container .hero .hero-content .title-text .white-text,
.coreCompetitiveness-container .hero .hero-content .title-text .green-text {
  font-family: 'JosefinSans-Bold';
  font-size: 96px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0em;
}
.coreCompetitiveness-container .hero .hero-content .title-text .green-text {
  color: #01E508;
}
.coreCompetitiveness-container .coreCompetitiveness {
  min-height: 100vh;
  background: #000;
  padding: 70px 0 40px 0;
  position: relative;
  width: 95%;
  margin: 0 auto;
  max-width: 1510px;
}
.coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 20px;
  z-index: 1;
}
.coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-1 .text-content .number,
.coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-1 .text-content .text {
  font-family: 'JosefinSans-Bold';
  text-transform: uppercase;
  letter-spacing: 0em;
  color: #01E508;
}
.coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-1 .text-content .number {
  font-size: 96px;
  font-weight: 700;
  color: #01E508;
}
.coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-1 .text-content .text {
  font-size: 18px;
}
.coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-2 {
  height: 675px;
  width: 100%;
  position: relative;
}
.coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-2 .bg-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 100px;
  width: 966px;
}
.coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-2 .text-content {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-2 .text-content .white-text,
.coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-2 .text-content .green-text {
  font-family: 'JosefinSans-Bold';
  font-size: 96px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0em;
}
.coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-2 .text-content .green-text {
  color: #01E508;
}
.coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-3 {
  display: flex;
  min-height: 1050px;
  width: 100%;
  position: relative;
  margin-bottom: 40px;
  z-index: 1;
}
.coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-3 .bg-img-wrapper {
  position: absolute;
  left: 55%;
  transform: translateX(-50%);
  height: 1060px;
  width: 960px;
}
.coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-3 .bg-img-wrapper img {
  object-fit: cover;
  width: 462px;
  position: absolute;
}
.coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-3 .bg-img-wrapper .bg-img-1 {
  left: 0;
  top: 177px;
}
.coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-3 .bg-img-wrapper .bg-img-2 {
  right: 0;
}
.coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-3 .text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
}
.coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-3 .text-content .item {
  display: flex;
  flex-direction: column;
}
.coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-3 .text-content .item .text-title {
  font-size: 36px;
  color: #01E508;
  max-width: 420px;
  margin-bottom: 20px;
}
.coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-3 .text-content .item .text-desc {
  font-size: 22px;
  color: #fff;
  max-width: 420px;
}
.coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-3 .text-content.content-1 {
  margin-top: 70px;
}
.coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-3 .text-content.content-2 {
  margin-bottom: 20px;
  flex-direction: column-reverse;
}
.coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-3 .text-content.content-2 .item {
  align-items: flex-end;
}
@media (max-width: 1600px) and (min-width: 1400px) {
  .coreCompetitiveness-container .hero-content .bg-img {
    opacity: 0.8;
    transition: opacity 0.3s;
  }
  .coreCompetitiveness-container .coreCompetitiveness-content .item-3 .bg-img {
    opacity: 0.8;
    transition: opacity 0.3s;
  }
}
@media (max-width: 1400px) {
  .coreCompetitiveness-container .hero-content .bg-img {
    opacity: 0.5;
    transition: opacity 0.3s;
  }
  .coreCompetitiveness-container .coreCompetitiveness-content .item-3 .bg-img {
    opacity: 0.5;
    transition: opacity 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .coreCompetitiveness-container .hero-content .bg-img {
    left: 0px !important;
    width: 100% !important;
  }
  .coreCompetitiveness-container .hero-content .title-text .white-text,
  .coreCompetitiveness-container .hero-content .title-text .green-text {
    font-size: 48px !important;
  }
  .coreCompetitiveness-container .scroll-tip {
    bottom: 40px !important;
    width: 100vw !important;
    text-align: center !important;
  }
  .coreCompetitiveness-container .coreCompetitiveness {
    max-width: 90vw !important;
    padding: 50px 0 40px 0 !important;
  }
  .coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-1 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }
  .coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-1 .text-content .number {
    font-size: 48px !important;
    text-align: center;
  }
  .coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-1 .text-content .text {
    text-align: center;
  }
  .coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-2 {
    height: 330px !important;
  }
  .coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-2 .bg-img {
    right: 0px !important;
    width: 100% !important;
  }
  .coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-2 .text-content {
    padding: 0 20px !important;
  }
  .coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-2 .text-content .white-text {
    font-size: 48px !important;
  }
  .coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-2 .text-content .green-text {
    font-size: 48px !important;
  }
  .coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-3 {
    flex-direction: column !important;
    min-height: auto !important;
    margin-bottom: 0px !important;
    overflow: hidden !important;
  }
  .coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-3 .bg-img-wrapper {
    position: absolute;
    left: 50% !important;
    transform: translateX(-50%);
    height: auto !important;
    width: 100% !important;
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
  .coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-3 .bg-img-wrapper img {
    object-fit: cover;
    width: 100% !important;
    position: relative !important;
  }
  .coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-3 .bg-img-wrapper .bg-img {
    opacity: 0.3 !important;
  }
  .coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-3 .bg-img-wrapper .bg-img-1 {
    left: 0;
    top: 177px;
  }
  .coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-3 .bg-img-wrapper .bg-img-2 {
    right: 0;
  }
  .coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-3 .text-title {
    font-size: 24px !important;
    margin-bottom: 10px !important;
  }
  .coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-3 .text-desc {
    font-size: 18px !important;
  }
  .coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-3 .text-content {
    padding-left: 20px !important;
  }
  .coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-3 .content-1 {
    margin-top: 45px !important;
    gap: 45px !important;
  }
  .coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-3 .content-2 {
    margin-top: 45px !important;
    margin-bottom: 0px !important;
    gap: 45px !important;
  }
  .coreCompetitiveness-container .coreCompetitiveness .coreCompetitiveness-content .item-3 .content-2 .item {
    align-items: flex-start !important;
  }
}
/* Featured Projects */
.featuredProjects-container .hero .hero-bg {
  width: 100%;
  height: 100%;
  background-image: url('../imgs/the-team-bg.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.featuredProjects-container .hero .hero-content {
  margin: 0 auto;
  text-align: left;
  max-width: 1600px;
  width: 90%;
  position: absolute;
  display: flex;
  justify-content: center;
}
.featuredProjects-container .hero .scroll-tip {
  position: absolute;
  font-family: 'JosefinSans-Regular';
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  opacity: 0.8;
  letter-spacing: 2px;
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 10;
}
.featuredProjects-container .hero .scroll-tip:hover {
  opacity: 1;
}
.featuredProjects-container .hero .gradient-top {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
  z-index: -1;
}
.featuredProjects-container .partnership {
  margin-top: -150px;
  display: flex;
  gap: 80px;
}
.featuredProjects-container .partnership .line {
  width: 0.5px;
  margin-top: 130px;
  height: calc(100% - 130px);
  background: #FFF;
  opacity: 0.5;
}
.featuredProjects-container .partnership .item .partnership-title {
  text-align: center;
  font-size: 18px;
  color: #01E508;
  height: 130px;
}
.featuredProjects-container .partnership .item .partnership-content-item {
  width: 141px;
  height: 104px;
}
.featuredProjects-container .partnership .item .partnership-content-item img {
  width: 100%;
}
.featuredProjects-container .partnership .item-1 .partnership-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.featuredProjects-container .partnership .item-2 .partnership-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.featuredProjects-container .partnership .item-2 .partnership-content .partnership-content-item {
  width: 212px;
}
.featuredProjects-container .partnership .item-3 .partnership-content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.featuredProjects-container .partnership .item-3 .partnership-content .partnership-content-item {
  width: 138px;
}
.featuredProjects-container .featuredProjects {
  min-height: calc(100vh - 110px);
  background: #000;
  padding: 70px 0 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.featuredProjects-container .featuredProjects .featuredProjects-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 95%;
  max-width: 1600px;
}
.featuredProjects-container .featuredProjects .featuredProjects-content .project-btns {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 80px;
}
.featuredProjects-container .featuredProjects .featuredProjects-content .project-btns .btn-item {
  min-width: 310px;
  box-sizing: border-box;
  padding: 15px 80px;
  background: transparent;
  border: 1px solid #01E508;
  color: #01E508;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'JosefinSans-Regular';
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}
.featuredProjects-container .featuredProjects .featuredProjects-content .project-btns .btn-item:hover {
  background: #01E508;
  color: #fff;
}
.featuredProjects-container .featuredProjects .featuredProjects-content .project-btns .btn-item.active {
  background: #01E508;
  color: #fff;
}
.featuredProjects-container .featuredProjects .featuredProjects-content .project-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
}
.featuredProjects-container .featuredProjects .featuredProjects-content .project-list .project-item {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  min-height: 200px;
}
.featuredProjects-container .featuredProjects .featuredProjects-content .project-list .project-item:hover {
  transform: translateY(-2px);
  border-color: #01E508;
  box-shadow: 0 5px 15px rgba(1, 229, 8, 0.2);
}
.featuredProjects-container .featuredProjects .featuredProjects-content .project-list .project-item .project-item-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.featuredProjects-container .featuredProjects .featuredProjects-content .project-list .project-item .project-item-img img {
  opacity: 0.5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.featuredProjects-container .featuredProjects .featuredProjects-content .project-list .project-item .project-item-img:empty::after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
}
.featuredProjects-container .featuredProjects .featuredProjects-content .project-list .project-item:hover .project-item-img img {
  transform: scale(1.05);
}
.featuredProjects-container .featuredProjects .featuredProjects-content .project-list .project-item .project-item-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 15px;
  font-family: 'JosefinSans-Regular';
  font-size: 20x;
  color: #fff;
  line-height: 1.3;
  text-align: center;
  z-index: 2;
}
.featuredProjects-container .featuredProjects .featuredProjects-content .project-list .project-item .project-item-subtitle {
  position: absolute;
  top: calc(50% + 25px);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 15px;
  font-family: 'MiSans-Light';
  font-size: 12px;
  color: #01E508;
  line-height: 1.3;
  text-align: center;
  z-index: 2;
}
.featuredProjects-container .project-detail-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.featuredProjects-container .project-detail-modal.active {
  display: flex;
}
.featuredProjects-container .project-detail-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}
.featuredProjects-container .project-detail-modal .modal-content {
  position: relative;
  width: 90%;
  max-width: 1300px;
  max-height: 90vh;
  background: #000;
  z-index: 1001;
}
.featuredProjects-container .project-detail-modal .modal-content .modal-header {
  position: relative;
  padding: 30px 30px 20px 30px;
  z-index: 1;
}
.featuredProjects-container .project-detail-modal .modal-content .modal-header .modal-title {
  font-family: 'JosefinSans-Regular';
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.featuredProjects-container .project-detail-modal .modal-content .modal-header .modal-subtitle {
  font-size: 14px;
  color: #01E508;
  line-height: 1.3;
}
.featuredProjects-container .project-detail-modal .modal-content .modal-body {
  padding: 0px 30px;
  position: relative;
}
.featuredProjects-container .project-detail-modal .modal-content .modal-body .modal-visualization {
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'MiSans-Light';
  font-size: 16px;
  position: relative;
  box-sizing: border-box;
}
.featuredProjects-container .project-detail-modal .modal-content .modal-body .modal-visualization .modal-visualization-content {
  width: 100%;
  height: 100%;
}
.featuredProjects-container .project-detail-modal .modal-content .modal-body .modal-description {
  position: relative;
  left: -10%;
  width: 80%;
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
.featuredProjects-container .project-detail-modal .modal-content .modal-body .modal-close {
  font-family: 'MiSans-Light';
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: 18px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  line-height: 24px;
  transition: background 0.2s, color 0.2s;
}
.featuredProjects-container .project-detail-modal .modal-content .modal-body .modal-close .tips-modal-close-icon {
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.featuredProjects-container .project-detail-modal .modal-content .modal-body .modal-close:hover {
  background: #fff;
  color: #01E508;
}
.featuredProjects-container .project-detail-modal .modal-content .modal-body .modal-decoration {
  position: absolute;
  width: 0px;
  height: 0px;
  bottom: -28px;
  right: -30px;
}
.featuredProjects-container .project-detail-modal .modal-content .modal-body .modal-decoration .decoration-line-1 {
  position: absolute;
  top: 0;
  right: -60px;
  width: 200px;
  height: 1px;
  background: #01E508;
}
.featuredProjects-container .project-detail-modal .modal-content .modal-body .modal-decoration .decoration-line-2 {
  position: absolute;
  bottom: -30px;
  right: 0px;
  width: 1px;
  height: 310px;
  background: #01E508;
}
.featuredProjects-container .project-detail-modal .modal-content .modal-body .modal-decoration .decoration-line-3 {
  position: absolute;
  bottom: 18px;
  right: -24px;
  width: 8px;
  height: 87px;
  background: #01E508;
}
@media (max-width: 1400px) and (min-width: 1200px) {
  .featuredProjects-container .partnership .item-1 .partnership-content {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
  .featuredProjects-container .partnership .item-2 .partnership-content {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
  .featuredProjects-container .project-btns .btn-item {
    padding: 15px 20px !important;
  }
}
@media (max-width: 1200px) and (min-width: 768px) {
  .featuredProjects-container .partnership {
    margin-top: 20px !important;
  }
  .featuredProjects-container .partnership .item-1 .partnership-content {
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 15px !important;
  }
  .featuredProjects-container .partnership .item-2 .partnership-content {
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 15px !important;
  }
  .featuredProjects-container .project-btns {
    gap: 30px !important;
  }
  .featuredProjects-container .project-btns .btn-item {
    padding: 15px 20px !important;
    min-width: auto !important;
  }
}
@media screen and (max-width: 768px) {
  .featuredProjects-container .hero {
    padding: 60px 0 40px 0 !important;
    height: auto !important;
  }
  .featuredProjects-container .hero .hero-bg {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }
  .featuredProjects-container .hero-content {
    position: relative !important;
  }
  .featuredProjects-container .scroll-tip {
    display: none !important;
  }
  .featuredProjects-container .gradient-top {
    display: none !important;
  }
  .featuredProjects-container .partnership {
    margin-top: 20px !important;
    flex-direction: column !important;
    gap: 50px !important;
    padding: 0 20px !important;
  }
  .featuredProjects-container .partnership .line {
    display: none !important;
  }
  .featuredProjects-container .partnership .item .partnership-title {
    font-size: 16px !important;
    height: 80px !important;
    margin-bottom: 0px !important;
  }
  .featuredProjects-container .partnership .item .partnership-content-item {
    width: 100% !important;
    height: 80px !important;
    max-width: 200px !important;
    margin: 0 auto !important;
  }
  .featuredProjects-container .partnership .item .partnership-content-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }
  .featuredProjects-container .partnership .item-1 .partnership-content {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
  .featuredProjects-container .partnership .item-2 .partnership-content {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
  .featuredProjects-container .partnership .item-2 .partnership-content .partnership-content-item {
    width: 100% !important;
    max-width: 200px !important;
  }
  .featuredProjects-container .partnership .item-3 .partnership-content {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
  .featuredProjects-container .partnership .item-3 .partnership-content .partnership-content-item {
    width: 100% !important;
    max-width: 200px !important;
  }
  .featuredProjects-container .featuredProjects {
    min-height: auto !important;
  }
  .featuredProjects-container .featuredProjects .featuredProjects-content {
    position: relative !important;
  }
  .featuredProjects-container .featuredProjects .featuredProjects-content .project-btns {
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-bottom: 30px !important;
  }
  .featuredProjects-container .featuredProjects .featuredProjects-content .project-btns .btn-item {
    min-width: auto !important;
    padding: 10px 15px !important;
    font-size: 14px !important;
  }
  .featuredProjects-container .featuredProjects .featuredProjects-content .project-list {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
  .featuredProjects-container .featuredProjects .featuredProjects-content .project-list .project-item:hover {
    transform: translateY(0px);
    border-color: transparent !important;
    box-shadow: none !important;
  }
  .featuredProjects-container .featuredProjects .featuredProjects-content .project-list .project-item .project-item-title {
    padding: 12px 12px 6px 12px !important;
    font-size: 14px !important;
  }
  .featuredProjects-container .featuredProjects .featuredProjects-content .project-list .project-item .project-item-subtitle {
    padding: 0 12px 12px 12px !important;
    font-size: 12px !important;
  }
  .featuredProjects-container .project-detail-modal .modal-content {
    width: 95%;
    max-height: 95vh;
  }
  .featuredProjects-container .project-detail-modal .modal-content .modal-header {
    padding: 20px 20px 15px 20px;
  }
  .featuredProjects-container .project-detail-modal .modal-content .modal-header .modal-title {
    font-size: 18px !important;
    margin-bottom: 8px;
  }
  .featuredProjects-container .project-detail-modal .modal-content .modal-header .modal-subtitle {
    font-size: 16px;
  }
  .featuredProjects-container .project-detail-modal .modal-content .modal-body {
    padding: 20px;
  }
  .featuredProjects-container .project-detail-modal .modal-content .modal-body .modal-visualization {
    aspect-ratio: 16/9;
    margin-bottom: 20px;
    font-size: 14px !important;
  }
  .featuredProjects-container .project-detail-modal .modal-content .modal-body .modal-close {
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    font-size: 14px !important;
  }
  .featuredProjects-container .project-detail-modal .modal-content .modal-body .modal-description {
    width: 100% !important;
    left: 0px !important;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .featuredProjects-container .project-detail-modal .modal-content .modal-body .modal-decoration {
    display: none !important;
  }
}
