@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.project-detail-banner {
  margin-top: var(--headerheight);
  padding: 200px 0;
  background: url("../../../assets/images/project-detail/project-detail-banner.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
}
@media only screen and (max-width: 1366px) {
  .project-detail-banner {
    padding: 140px 0;
  }
}
@media only screen and (max-width: 991px) {
  .project-detail-banner {
    padding: 100px 0;
  }
}
@media only screen and (max-width: 768px) {
  .project-detail-banner {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 540px) {
  .project-detail-banner {
    padding: 60px 0;
  }
}
.project-detail-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.65) 0%, rgba(102, 102, 102, 0) 66.83%), linear-gradient(90deg, rgba(0, 0, 0, 0.7) 14.71%, rgba(102, 102, 102, 0) 65.55%);
}
.project-detail-banner .banner-wrapper {
  position: relative;
  z-index: 1;
}
.project-detail-banner .banner-wrapper h2 {
  font-weight: 700;
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media only screen and (max-width: 540px) {
  .project-detail-banner .banner-wrapper h2 {
    margin-bottom: 12px;
  }
}
.project-detail-banner .banner-wrapper h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.1;
  color: white;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .project-detail-banner .banner-wrapper h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .project-detail-banner .banner-wrapper h1 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 540px) {
  .project-detail-banner .banner-wrapper h1 {
    font-size: clamp(26px, 6vw, 32px);
  }
}
.project-detail-banner .banner-wrapper p {
  font-weight: 400;
  font-size: 16px;
  color: white;
  line-height: 1.3;
  max-width: 338px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 540px) {
  .project-detail-banner .banner-wrapper p {
    font-size: 14px;
    margin-bottom: 28px;
    max-width: 100%;
  }
}

.tab-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
}
@media only screen and (max-width: 768px) {
  .tab-nav {
    gap: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .tab-nav {
    gap: 0;
    justify-content: space-between;
    padding: 0 var(--containerfluid);
  }
}
.tab-nav li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .tab-nav li {
    gap: 12px;
  }
}
@media only screen and (max-width: 540px) {
  .tab-nav li {
    flex-direction: column;
    gap: 6px;
    padding: 14px 0;
    flex: 1;
    justify-content: center;
  }
}
.tab-nav li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: 0.5s ease;
}
.tab-nav li.active::before {
  width: 100%;
}
.tab-nav li.active span {
  color: var(--primary);
}
.tab-nav li figure {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
@media only screen and (max-width: 540px) {
  .tab-nav li figure {
    width: 24px;
    height: 24px;
  }
}
.tab-nav li figure img, .tab-nav li figure svg {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.5s ease;
}
.tab-nav li:nth-child(1) svg path {
  fill: #CCCCCC;
  stroke: none;
}
.tab-nav li:nth-child(1).active svg path {
  stroke: none;
  fill: var(--primary);
}
.tab-nav li:nth-child(2) svg path {
  stroke: #CCCCCC;
  fill: none;
}
.tab-nav li:nth-child(2).active svg path {
  stroke: var(--primary);
  fill: none;
}
.tab-nav li:nth-child(3) svg path {
  stroke: none;
  fill: #CCCCCC;
}
.tab-nav li:nth-child(3).active svg path {
  stroke: none;
  fill: var(--primary);
}
.tab-nav li span {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: rgba(0, 0, 0, 0.3019607843);
  transition: 0.5s ease;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .tab-nav li span {
    font-size: 16px;
  }
}
@media only screen and (max-width: 540px) {
  .tab-nav li span {
    font-size: 13px;
    line-height: 1.2;
  }
}

.tab-nav-content {
  padding: 20px 0 50px 0;
}
@media only screen and (max-width: 768px) {
  .tab-nav-content {
    padding: 10px 0 40px 0;
  }
}
@media only screen and (max-width: 540px) {
  .tab-nav-content {
    padding: 0 0 30px 0;
  }
}
.tab-nav-content .tabs {
  opacity: 0;
  transition: 1s ease;
  transform: translateY(20%);
}
.tab-nav-content .tabs.active {
  opacity: 1;
  transform: translateY(0%);
}
.tab-nav-content .tabs .flex-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 60px var(--containerfluid);
}
@media only screen and (max-width: 1280px) {
  .tab-nav-content .tabs .flex-box {
    gap: 45px;
    padding: 50px var(--containerfluid);
  }
}
@media only screen and (max-width: 991px) {
  .tab-nav-content .tabs .flex-box {
    gap: 35px;
    padding: 45px var(--containerfluid);
  }
}
@media only screen and (max-width: 768px) {
  .tab-nav-content .tabs .flex-box {
    gap: 28px;
    flex-direction: column;
    padding: 40px var(--containerfluid);
  }
}
@media only screen and (max-width: 540px) {
  .tab-nav-content .tabs .flex-box {
    padding: 30px var(--containerfluid);
    gap: 22px;
  }
}
.tab-nav-content .tabs .flex-box:nth-child(even) {
  flex-direction: row-reverse;
  background: #F2F9FF;
}
@media only screen and (max-width: 768px) {
  .tab-nav-content .tabs .flex-box:nth-child(even) {
    flex-direction: column;
  }
}
.tab-nav-content .tabs .flex-box figure {
  width: 523px;
  height: 359px;
  border-radius: 10px;
  flex-shrink: 0;
  line-height: 0;
  overflow: hidden;
}
@media only screen and (max-width: 1280px) {
  .tab-nav-content .tabs .flex-box figure {
    width: 440px;
    height: 300px;
  }
}
@media only screen and (max-width: 991px) {
  .tab-nav-content .tabs .flex-box figure {
    width: 360px;
    height: 248px;
  }
}
@media only screen and (max-width: 768px) {
  .tab-nav-content .tabs .flex-box figure {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
  }
}
@media only screen and (max-width: 540px) {
  .tab-nav-content .tabs .flex-box figure {
    border-radius: 8px;
  }
}
.tab-nav-content .tabs .flex-box figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tab-nav-content .tabs .flex-box figcaption {
  flex: 0 1 40%;
  min-width: 0;
}
@media only screen and (min-width: 1700px) {
  .tab-nav-content .tabs .flex-box figcaption {
    flex: 0 1 30%;
  }
}
@media only screen and (max-width: 991px) {
  .tab-nav-content .tabs .flex-box figcaption {
    flex: 1;
  }
}
@media only screen and (max-width: 768px) {
  .tab-nav-content .tabs .flex-box figcaption {
    flex: none;
    width: 100%;
    text-align: center;
  }
}
.tab-nav-content .tabs .flex-box figcaption .logo {
  width: 148px;
  height: 60px;
  border-radius: 5px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .tab-nav-content .tabs .flex-box figcaption .logo {
    margin: 0 auto 20px;
  }
}
.tab-nav-content .tabs .flex-box figcaption .logo img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.tab-nav-content .tabs .flex-box figcaption .fig-flex {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  border-bottom: 1px solid #E9E9E9;
  margin-bottom: 20px;
  padding: 10px 0 20px 0;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .tab-nav-content .tabs .flex-box figcaption .fig-flex {
    justify-content: center;
    gap: 14px;
    padding-bottom: 14px;
    margin-bottom: 14px;
  }
}
.tab-nav-content .tabs .flex-box figcaption .fig-flex .col {
  display: flex;
  gap: 10px;
  align-items: center;
}
.tab-nav-content .tabs .flex-box figcaption .fig-flex .col img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.tab-nav-content .tabs .flex-box figcaption .fig-flex .col p {
  margin: 0;
  font-size: 14px;
}
.tab-nav-content .tabs .flex-box figcaption h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 540px) {
  .tab-nav-content .tabs .flex-box figcaption h3 {
    font-size: 16px;
  }
}
.tab-nav-content .tabs .flex-box figcaption p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  max-width: 525px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .tab-nav-content .tabs .flex-box figcaption p {
    max-width: 100%;
  }
}
@media only screen and (max-width: 540px) {
  .tab-nav-content .tabs .flex-box figcaption p {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
.tab-nav-content .tabs .flex-box figcaption .btn-flex {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .tab-nav-content .tabs .flex-box figcaption .btn-flex {
    gap: 12px;
    justify-content: center;
  }
  .tab-nav-content .tabs .flex-box figcaption .btn-flex .btn {
    justify-content: center;
    text-align: center;
  }
}
.tab-nav-content .tabs .not-found {
  padding: 60px var(--containerfluid);
  text-align: center;
}
@media only screen and (max-width: 540px) {
  .tab-nav-content .tabs .not-found {
    padding: 40px var(--containerfluid);
  }
}
.tab-nav-content .tabs .not-found figure {
  max-width: 130px;
  margin: 0 auto 16px;
}
.tab-nav-content .tabs .not-found figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(1);
}
.tab-nav-content .tabs .not-found h5 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 30px;
  color: var(--text);
}
@media only screen and (max-width: 540px) {
  .tab-nav-content .tabs .not-found h5 {
    font-size: 20px;
  }
}/*# sourceMappingURL=project-detail.css.map */