body {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}


@charset "UTF-8";
/* ===============================================
# navigation
=============================================== */
/* ------------------------------------------- initialize */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video 
{ 
    margin: 0; 
    padding: 0; 
    border: 0; 
    outline: 0; 
    font-size: 100%; 
    vertical-align: baseline; 
    background: transparent; 
}

body {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

body.fade-in {
    opacity: 1;
}

.fade-out {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

article, aside, dialog, figure, footer, header, hgroup, nav, section {
     display: block; 
    }

ul li { 
    list-style: none; }

input, select { 
    vertical-align: middle; 
}

img { 
    height: auto; 
    width: 100%; 
}

* { 
    box-sizing: border-box; 
}

a { 
    color: #000000; 
    text-decoration: none; 
}

a:hover { 
    opacity: .8; 
}

body { 
    font-size: 16px; 
    line-height: 1.6em; 
    color: #fff; 
    font-family: 'Poppins', 'Noto Sans JP', sans-serif; 
    position: relative; background: #fff; 
}

body:before { 
    content: "";
    background: #ffffff; 
    background-size: cover; 
    width: 100vw; 
    height: 100vh; 
    top: 0; 
    left: 0; 
    position: fixed; 
    z-index: -1; 
}

body .body-inner { 
    overflow-x: hidden; 
}

@media screen and (max-width: 768px) { 
    body { 
        font-size: 14px; 
    }
    .section-wrap:not(:last-of-type) { 
        margin-bottom: 120px; 
    } 
}

.header { 
    position: relative; 
    background: transparent; 
}

@media screen and (max-width: 768px) {
     .header { 
        background: none; 
    } 
}

.header__inner {
     display: flex; 
     justify-content: space-between; 
     align-items: center; 
     width: 100%; 
     padding: 0 20px; 
    }

@media screen and (max-width: 768px) {
     .header__inner {
        pointer-events: none; 
    } 
}

.header__title {
     font-size: 20px; 
}

@media screen and (max-width: 768px) {
    .header__title {
        position: absolute; 
        top: 20px; 
        left: 20px; 
    } 
}

.nav {
    margin-left: auto; 
    pointer-events: all; 
}

.nav__trigger { 
    transition: .2s all; 
    display: block; 
    position: absolute; 
    width: 35px; 
    top: 12px; 
    right: 12px; 
    cursor: pointer; 
    z-index: -1; 
}

.nav__trigger:before { 
    position: absolute; 
    content: ""; 
    background: #020514; 
    border: 4px solid #d8f002; 
    width: 90px; 
    height: 90px; 
    transform: translate(-22px, -34px); 
    border-radius: 50%; 
    box-sizing: border-box; 
}

.nav__trigger span { 
    display: inline-block; 
    vertical-align: middle; 
    position: relative; 
    width: 100%; 
    height: 2px; 
    background-color: #fff; 
}

.nav__trigger span::before { 
    content: ""; 
    display: block; 
    width: 100%; 
    height: 2px; 
    position: absolute; 
    background: #fff; 
    transition: all 0.3s; 
    margin-top: -8px; 
}

.nav__trigger span::after { 
    content: ""; 
    display: block; 
    width: 100%; 
    height: 2px; 
    position: absolute; 
    background: #fff; 
    transition: all 0.3s; 
    margin-top: 8px; 
    width: 60%; 
    right: 0; 
}

.nav__lists { 
    display: block; 
    width: 100%; 
}

.nav__list { 
    text-align: center; 
}

.nav__list a { 
    position: relative; 
}

.nav__bg { 
    display: block; 
    opacity: 0; 
}

.nav__active .nav { 
    transform: translateY(0%); 
}

.nav__active .nav__trigger span { 
    background: none; 
}

.nav__active .nav__trigger span::before { 
    content: ""; 
    display: block; 
    width: 100%; 
    height: 2px; 
    position: absolute; 
    background: #fff; 
    transition: all 0.3s; 
    margin-top: 0; 
    transform: rotate(45deg); 
}

.nav__active .nav__trigger span::after { 
    content: ""; 
    display: block; 
    width: 100%; 
    height: 2px; 
    position: absolute; 
    background: #fff; 
    transition: all 0.3s; 
    margin-top: 0; 
    transform: rotate(-45deg); 
}

.nav__active .nav__bg { 
    width: 100%; 
    height: 100vh; 
    background: #020514; 
    opacity: .3; 
    position: absolute; 
    top: 0; 
    z-index: -1; 
}

.menu-nav { 
    position: relative; 
    width: 340px; 
    height: 435px; 
    display: flex; 
    align-items: center; 
}

.menu-nav:before { 
    position: absolute; 
    content: ""; 
    background: url(../img/bg_menu.svg) center no-repeat; 
    background-size: contain; 
    width: 100%; 
    height: 100%; 
    z-index: -1; 
}

@media (max-width: 768px) {
    .menu-nav:before { 
        background: url(../img/bg_menu.svg) center no-repeat; 
    }
}

.menu-nav ul { 
    padding-left: 80px; 
}

.menu-nav ul li:not(:last-of-type) { 
    margin-bottom: 20px; 
}

.menu-nav ul li a { 
    color: #d8f002; 
    text-decoration: none; 
    transition: 0.2s all ease; 
    display: block; 
    font-size: 30px; 
    font-weight: bold; 
    line-height: 1em; 
    position: relative; 
}

.menu-nav ul li a:before { 
    position: absolute; 
    content: ""; 
    background: #d8f002; 
    width: 7px; 
    height: 1px; 
    top: 50%; 
    transform: translateY(-50%); 
    left: -18px; 
}

.menu-nav ul li a:hover { 
    transform: translateX(6px); 
    transition: 0.2s all ease; 
}

.fix-wrap { 
    position: fixed; 
    width: 100%; 
    height: 100%; 
    z-index: 3; 
    pointer-events: none; 
}

.fix-wrap .bg-wrap { 
    pointer-events: none; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
}

.fix-wrap .bg-wrap .bg-frame { 
    width: 100%; 
    height: 100%; 
    position: relative; 
    box-sizing: border-box; 
}

.fix-wrap .bg-wrap .bg-frame:before { 
    content: ""; 
    width: 100%; 
    height: 100vh; 
    position: absolute; 
    top: 0; 
    left: 0; 
    border: 10px solid #d8f002; 
    box-sizing: border-box; 
}

.fix-wrap .bg-wrap .bg-frame .frame { 
    position: absolute; 
    display: block; 
}

.fix-wrap .bg-wrap .bg-frame .frame.tl { 
    top: -23px; 
    left: -23px; 
}

.fix-wrap .bg-wrap .bg-frame .frame.tl:after { 
    transform: translate(12px, 12px); 
}

.fix-wrap .bg-wrap .bg-frame .frame.bl { 
    bottom: 60px; 
    left: -16px; 
}

.fix-wrap .bg-wrap .bg-frame .frame.bl:after { 
    transform: translate(10px, -3px);
}

.fix-wrap .bg-wrap .bg-frame .frame.br { 
    bottom: 66px; 
    right: 68px; 
}

.fix-wrap .bg-wrap .bg-frame .frame.br:after { 
    transform: translate(); 
}

.fix-wrap .nav__trigger { 
    z-index: 100; 
    pointer-events: all; 
}

.fix-wrap .menu-wrap { 
    position: absolute; 
    right: -100%; 
    transition: .2s all; 
    pointer-events: all; 
}

.fix-wrap.nav__active .menu-wrap { 
    right: -20px; 
}

footer {
    background-color: #ffffff;
}

#pagetop img {
    image-rendering: auto;
}

footer #pagetop {
    position: fixed;
    width: 54px;
    height: 54px;
    bottom: 50px;
    right: 30px;
    cursor: pointer;
    background: linear-gradient(265deg, #ee7800 0%, #ff9921 45%, #ffbc2d 100%);
    opacity: .5;
    display: none;
    z-index: 10;
}

footer .copyright {
    font-size: 1rem;
    padding: 20px 0;
    text-align: center;
    color: #2b2b2b;
}

@media screen and (max-width: 375px) {
    footer .copyright {
        font-size: 0.7rem;
        padding: 10px 0;
    }
}

.bar-atas {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: 0;
    margin-top: 0;
    padding: 2.5rem 0;
    background-color: white;
    color: black;
    border-radius: 8px;
    width: auto;
}

.backbar-atas {
    margin-left: 5rem;
}

.backbar-atas h1{
    font-size: 1.8rem;
    font-weight:normal;
}

.site-wrap, .site-container {
    position: relative;
    width: 100%;
}

.site-wrap:before {
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.site-container {
    float: none;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.site-content {
    margin-left: 0%;
    margin-right: 0%;
    width: 100%;
}

.project-covers {
    padding-bottom: 0px;
    padding-top: 0
    ;
    display: flex;
    flex-wrap: wrap;
}

.project-cover:nth-child(3n + 1) {
    clear: left;
    margin-left: 0;
}

.link-transition a {
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none;
    background: transparent;
}

.project-cover {
    margin-right: 0px;
    width: calc(33.33333% - 0px);
    display: block;
    position: relative;
}

.project-cover .cover {
    border-radius: 10px;
}

.project-cover .cover-content-container {
    margin-bottom: 0px;
    margin-left: 5px;
    margin-right: 0px;
    margin-top: 5px;
    border-radius: 10px;
}

.project-cover .cover-content-container {
    overflow: hidden;
    position: relative;
}

.project-cover .cover-image-wrap {
    overflow: hidden;
    position: relative;
}

.project-cover .cover-image, .project-cover .cover-image:after, .project-cover .cover {
    border-radius: 10px;
}

.project-cover .cover-image {
    float: none;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    position: relative;
    -webkit-transform: translateZ(0);
}

.project-cover.hold-space .cover-image:before {
    padding-bottom: 56.25%;
    content: '';
    display: block;
    width: 100%;
}

.project-cover.hold-space .cover {
    left: 0;
    min-height: 100%;
    position: absolute;
    top: 0;
}

.project-cover .cover .cover__img.js-lazy {
    background-color: rgba(0, 0, 0, 0.03);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 136, 1, 0.726); /* Warna oranye dengan transparansi */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .project-cover:hover .overlay {
    opacity: 1;
  }
  
  .overlay .title {
    color: white;
    font-size: 18px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
  }

  /* Container utama untuk popup */
  .popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out; /* Transisi opacity */
}

/* Konten popup */
.popup-content {
    background-color: #fff;
    padding: 100px 40px;
    border: 1px solid #888;
    width: 100%;
    max-width: 1080px;
    position: relative;
    text-align: center;
    z-index: 1001;
    transition: all 0.5s ease-in-out; /* Transisi semua properti */
    transform: scale(0.8); /* Memulai dari skala kecil */
    border-radius: 10px;
    padding-bottom: 40px;
}

/* Tombol close (X) */
.close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1002;
}

.close:hover,
.close:focus {
    color: #000;
}

/* Container video */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Deskripsi teks */
.description {
    margin-top: 15px;
    font-size: 16px;
    color: #8d8d8d;
}

.popup.show {
    display: flex; /* Popup harus ditampilkan */
    opacity: 1;
}

.popup.show .popup-content {
    transform: scale(1);
}

  @media (max-width: 932px) {
    main, .site-container {
        width: 100%;
    }

    .site-content {
        margin: 0;
        padding: 0 0;
        width: 100%;
    }

    .site-content {
        margin: 0;
        padding: 0 0;
        width: 100%;
    }

    .project-cover:nth-child(3n + 1) {
        clear: none;
    }

    .project-cover {
        width: calc(50% - 0px);
    }

    .project-cover .cover-content-container {
        margin-bottom: 0px;
        margin-top: 5px;
    }

    .overlay .title {
        max-width: 300px;
    }

}

@media (max-width: 540px) {
    .project-covers {
        padding-bottom: 0px;
        padding-top: 7px;
    }

    .project-cover .cover-content-container {
        margin-bottom: 0px;
        margin-left: 0;
        margin-right: 0;
        margin-top: 5px;
    }

    .project-cover {
        margin-right: 0 !important;
        width: 100%;
    }


}








