/* @font-face {
    font-family: PP mori;
    src: url('../fonts/ppmori.ttf') format('truetype');
} */
@import url('https://fonts.googleapis.com/css2?family=Playwrite+GB+J:ital,wght@0,100..400;1,100..400&display=swap');

p,h1,h2,h3,h4,h5,h6,span,a,button,li{
  font-family: "Playwrite GB J", cursive;
  font-optical-sizing: auto;
}


*{
    box-sizing: border-box;
    font-family: PP mori;
}

html,body{
    height: 100%;
    width: 100%;
}

.cursor{
    height: 15px;
    width: 15px;
    border-radius: 50%;
    position: fixed;
    background: #edbfff;
    z-index: 9;
    transition: background-image ease 0.5s;
    background-position: center;
    background-size:cover ;
    mix-blend-mode: difference;
    /* transition: left linear 0.1s top linear 0.1s; */
}
.main{
    background-color: #0f0d0d;
    cursor: none;
}

.page1{
    min-height: 100vh;
    width: 100%;
    position: relative;
    padding: 12vw 0;
}
.nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    mix-blend-mode: difference;
}



.nav img{
    height: 32px;
    width: auto;
}

.nav-part2{
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav h4{
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
}

.nav h4:nth-child(1){
    border-bottom: 1px solid #fff;
}

.nav-right{
    display: flex;
    align-items: center;
    gap: 20px;
}

.circle{
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #fff;
}

.menu-btn{
    display: none;

    width: 32px;
    height: 22px;

    flex-direction: column;
    justify-content: space-between;

    cursor: pointer;
}

.menu-btn span{
    width: 100%;
    height: 2px;

    background: #fff;

    display: block;
}


@media (max-width: 768px){

    .nav{
        height: 70px;
        padding: 0 20px;
    }

    .nav img{
        height: 24px;
    }

    .circle{
        display: none;
    }

    .menu-btn{
        display: flex;
    }

    .nav-part2{
        position: fixed;

        top: 70px;
        left: -100%;

        width: 100%;
        height: calc(100vh - 70px);

        background: #050505;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 35px;

        transition: 0.5s ease;
    }

    .nav-part2.active{
        left: 0;
    }

    .nav-part2 h4{
        font-size: 24px;
        letter-spacing: 2px;
    }
}


.page1 h1{
    font-weight: 300;
    /* margin-top: 12vw; */
    transform-origin: left;
}

.page1 video{
    width: 60%;
    margin-top: 10vw;
    position: relative;
    left: 50%;
    transform: translate(-50%,0);
}

.page2{
    min-height: 80vh;
    width: 100%;
    padding: 100px 5vw;
    border-bottom: 1px solid #6c6c6c;
}

.page2 h1{
    font-size: 7vw;
    font-weight: 500;
    color: #111;
}

.page2-container{
    height: 60vh;
    width: 100%;
    /* background: red; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 0 5vw; */
}

.page2-left{
    width: 36%;
}

.page2-right{
    width: 30%;
}

.page2-left h2{
    font-size: 3.5vw;
    font-weight: 300;
    text-transform: uppercase;
    color: #111;
    line-height: 4vw;
}

.page2-right p{
    font-size: 22px;    
    color: #111;
}

.page2-right button{
    width: 100%;
    border-radius: 50px;
    border: none;
    padding: 4px 0;
    background: #edbfff;
    color: #111;
    margin-top: 20px;
}

.page3{
    padding: 120px 0;
    overflow: hidden;
    background: #0f0d0d;
}

.page3-heading{
    padding: 0 5vw;
    margin-bottom: 70px;
}

.page3-heading span{
    display: inline-block;

    color: #6ee7b7;

    font-size: 14px;

    letter-spacing: 4px;

    margin-bottom: 20px;
}

.page3-heading h2{
    font-size: clamp(42px, 6vw, 96px);

    line-height: 1.1;

    font-weight: 400;
}

.reel-slider{
    width: 100%;
    overflow: hidden;
}

.reel-track{
    display: flex;
    gap: 24px;
    width: max-content;

    animation: reelScroll 35s linear infinite;
}

.reel-slider:hover .reel-track{
    animation-play-state: paused;
}

.reel-card{
    flex-shrink: 0;

    width: 280px;
    height: 520px;

    border-radius: 32px;

    overflow: hidden;

    background: #111;

    border: 1px solid rgba(255,255,255,.08);

    transition: transform .4s ease;
}

.reel-card:hover{
    transform: translateY(-12px);
}

.reel-card video{
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

@keyframes reelScroll{

    from{
        transform: translateX(0);
    }

    to{
        transform: translateX(calc(-50% - 12px));
    }

}
@media (max-width:768px){

    .page3{
        padding: 80px 0;
    }

    .page3-heading{
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .page3-heading h2{
        font-size: 12vw;
    }

    .reel-track{
        gap: 16px;
    }

    .reel-card{
        width: 180px;
        height: 320px;

        border-radius: 24px;
    }

}

/* 
.page5{
    min-height: 100vh;
    width: 100%;
    position: relative;
    padding: 140px 100px;
}

.page5 h2{
    font-size: 4vw;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 20px;
}

.box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 0px 10px;
    border-top: 1px solid #dadada;
}

.box:nth-last-child(1){
    border-bottom: 1px solid #dadada;
} */



/* =========================
   PAGE 5
========================= */

.page5{
    width: 100%;
    min-height: 100vh;

    padding: 8vw 5vw;

    background: #050505;
}


/* TOP */

.page5-top{
    margin-bottom: 6vw;
}

.page5-top p{
    color: #6ee7b7;

    letter-spacing: 4px;

    font-size: 14px;

    margin-bottom: 20px;
}

.page5-top h1{
    font-size: 5.5vw;

    line-height: 1.1;

    font-weight: 500;
}


/* PROJECT LIST */

.project-list{
    width: 100%;
}


/* BOX */

.project-box{
    width: 100%;

    padding: 40px 0;

    border-top: 1px solid rgba(255,255,255,0.08);

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;

    transition: all ease 0.4s;
}

.project-box:last-child{
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.project-box:hover{
    padding-left: 30px;
}


/* LEFT */

.project-left h2{
    font-size: 3vw;

    font-weight: 500;

    margin-bottom: 10px;

    transition: all ease 0.4s;
}

.project-left p{
    color: #8d8d8d;

    font-size: 16px;
}


/* RIGHT */

.project-right span{
    color: #6ee7b7;

    font-size: 16px;
}


/* HOVER */

.project-box:hover .project-left h2{
    color: #6ee7b7;
}





/* 
footer{
    min-height: 110vh;
    width: 100%;
    background: rgb(230, 176, 230);
    align-items: center;
}

footer .container{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px;
    
}

.container h1{
    font-size: 7vw;
    color: #0f0d0d;
    font-weight: 400;
}

.container button{
    height: 100px;
    width: 100px;
    background: #dadada;
    border: none;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #0f0d0d;
} */

/* =========================
   FOOTER
========================= */

/* =========================
   SIMPLE PREMIUM CTA
========================= */

.cta-section{
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 6vw 5vw;

    background: #050505;

    border-top: 1px solid rgba(255,255,255,0.08);
}

.cta-content p{
    color: #6ee7b7;

    letter-spacing: 6px;

    font-size: 14px;

    margin-bottom: 30px;
}

.cta-heading{
    font-size: 7vw;

    line-height: 1.1;

    font-weight: 500;

    margin-bottom: 60px;
}

.cta-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 26px 58px;

    border-radius: 100px;

    background: #6ee7b7;

    color: #111;

    text-decoration: none;

    font-size: 20px;
    font-weight: 500;

    transition: all ease 0.4s;
}

.cta-btn:hover{
    transform: translateY(-6px);

    box-shadow: 0 20px 60px rgba(110,231,183,0.25);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width:768px){

    .cta-heading{
        font-size: 14vw;
    }

    .cta-btn{
        padding: 20px 40px;

        font-size: 16px;
    }

}





/* =========================
   WHITE FOOTER
========================= */

.footer{
    width: 100%;
    background: #f5f5f5;
    height: 110vh;

    padding: 7vw 5vw 3vw 5vw;

    border-top: 1px solid rgba(0,0,0,0.08);
}


/* TOP */

.footer-top{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 8vw;

    padding-bottom: 5vw;
}


/* LEFT */

.footer-left{
    width: 35%;
}

.footer-left h1{
    font-size: 7vw;

    line-height: 1;

    font-weight: 500;

    color: #111;

    margin-bottom: 30px;
}

.footer-left p{
    color: #555;

    line-height: 1.9;

    font-size: 1vw;
}


/* RIGHT */

.footer-right{
    display: flex;

    gap: 8vw;
}

.footer-column{
    display: flex;
    flex-direction: column;

    gap: 18px;
}

.footer-column h4{
    color: #111;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 13px;

    margin-bottom: 15px;
}

.footer-column a{
    text-decoration: none;

    color: #555;

    font-size: 16px;

    transition: all ease 0.3s;
}

.footer-column a:hover{
    color: #000;

    transform: translateX(5px);
}


/* BOTTOM */

.footer-bottom{
    border-top: 1px solid rgba(0,0,0,0.08);

    padding-top: 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p{
    color: #666;

    font-size: 14px;
}


/* RESPONSIVE */

@media (max-width:768px){

    .footer-top{
        flex-direction: column;
    }

    .footer-left{
        width: 100%;
    }

    .footer-left h1{
        font-size: 18vw;
    }

    .footer-left p{
        font-size: 14px;
    }

    .footer-right{
        flex-wrap: wrap;

        gap: 50px;
    }

}













/* =========================
   PRICING SECTION
========================= */

.pricing{
    width: 100%;
    min-height: 120vh;

    padding: 8vw 5vw;

    background: #050505;
}


/* TOP */

.pricing-top{
    margin-bottom: 6vw;
}

.pricing-top p{
    color: #6ee7b7;

    letter-spacing: 4px;

    font-size: 14px;

    margin-bottom: 20px;
}

.pricing-top h1{
    font-size: 5.5vw;

    line-height: 1.1;

    font-weight: 500;
}


/* WRAPPER */

.pricing-wrapper{
    display: flex;
    gap: 30px;

    margin-top: 80px;
}


/* CARD */

.pricing-card{
    flex: 1;

    position: relative;

    padding: 50px 40px;

    border-radius: 30px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.08);

    transition: all ease 0.4s;
}

.pricing-card:hover{
    transform: translateY(-12px);

    border-color: #6ee7b7;
}


/* ACTIVE CARD */

.active-card{
    background: #6ee7b7;
}

.active-card *{
    color: #111 !important;
}


/* BADGE */

.popular-badge{
    position: absolute;

    top: 20px;
    right: 20px;

    padding: 8px 14px;

    border-radius: 100px;

    background: rgba(0,0,0,0.08);

    font-size: 11px;

    letter-spacing: 2px;
}


/* TEXT */

.plan-tag{
    display: inline-block;

    margin-bottom: 30px;

    color: #6ee7b7;

    text-transform: uppercase;

    letter-spacing: 3px;

    font-size: 13px;
}

.pricing-card h2{
    font-size: 4vw;

    font-weight: 500;

    margin-bottom: 20px;
}

.price-text{
    color: #8d8d8d;

    line-height: 1.8;

    margin-bottom: 40px;
}


/* FEATURES */

.pricing-features{
    display: flex;
    flex-direction: column;

    gap: 22px;

    margin-bottom: 50px;
}

.feature{
    display: flex;
    align-items: center;

    gap: 14px;

    font-size: 16px;
}

.feature span{
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #6ee7b7;
}


/* BUTTON */

.pricing-btn{
    width: 100%;

    height: 65px;

    border-radius: 100px;

    border: 1px solid rgba(255,255,255,0.1);

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 16px;

    transition: all ease 0.3s;
}

.pricing-btn:hover{
    background: #6ee7b7;

    color: #111;
}

.active-btn{
    background: #111;

    color: #fff !important;

    border: none;
}


/* RESPONSIVE */

@media (max-width:768px){

    .pricing-wrapper{
        flex-direction: column;
    }

    .pricing-top h1{
        font-size: 13vw;
    }

    .pricing-card h2{
        font-size: 12vw;
    }

}

/* ==================================
   MOBILE RESPONSIVE FIX
================================== */

@media screen and (max-width:768px){

    html,
    body{
        width:100%;
        overflow-x:hidden;
    }

    .main{
        overflow:hidden;
    }

    /* NAV */

    .nav{
        padding:0 20px;
    }

    /* PAGE 1 */

    .page1{
        min-height:auto;
        padding-top:120px;
        padding-bottom:80px;
    }

    .page1 h1{
        font-size:14vw;
        margin-left:5vw;
        line-height:1;
    }

    .page1 h2{
        font-size:14vw;
        margin-left:5vw;
        line-height:1;
    }

    .page1 video{
        width:92%;
        margin-top:50px;
    }

    /* PAGE 2 */

    .page2{
        background: #fff;
        padding:60px 20px;
        min-height:auto;
    }

    .page2 h1{
        font-size:12vw;
        margin-bottom:40px;
    }

    .page2-container{
        flex-direction:column;
        height:auto;
        gap:40px;
    }

    .page2-left,
    .page2-right{
        width:100%;
    }

    .page2-left h2{
        font-size:8vw;
        line-height:1.1;
    }

    .page2-right p{
        font-size:16px;
        line-height:1.8;
    }

    /* PAGE 3 */

    .page3{
        min-height:auto;
        padding:60px 20px;
    }

    .page3 h1{
        margin-left:0;
        font-size:12vw;
        margin-bottom:40px;
    }

    .page3-part1{
        flex-direction:column;
        gap:30px;
    }

    .page3-part1 img,
    .page3-part1 video{
        width:100%;
        max-width:100%;
        margin-top:0;
    }

    /* PAGE 4 */

    .page4{
        background: #fff;
        padding:50px 20px;
        min-height:auto;
    }

    .elem{
        margin-bottom:50px;
    }

    .elem img{
        display:none;
    }

    .text-div{
        height:auto;
    }

    .elem h1{
        font-size:12vw;
        text-align:center;
    }

    .elem:hover h1{
        transform:none;
    }

    /* PAGE 5 */

    .page5{
        padding:60px 20px;
    }

    .page5-top h1{
        font-size:12vw;
    }

    .project-box{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
        padding:25px 0;
    }

    .project-left h2{
        font-size:8vw;
    }

    /* PRICING */

    .pricing{
        padding:60px 20px;
        min-height:auto;
    }

    .pricing-top h1{
        font-size:12vw;
    }

    .pricing-wrapper{
        flex-direction:column;
        gap:20px;
    }

    .pricing-card{
        padding:35px 25px;
    }

    .pricing-card h2{
        font-size:12vw;
    }

    /* CTA */

    .cta-section{
        min-height:80vh;
    }

    .cta-heading{
        font-size:14vw;
    }

    .cta-btn{
        width:100%;
        max-width:320px;
    }

    /* FOOTER */

    .footer{
        height:auto;
        padding:60px 20px 30px;
    }

    .footer-top{
        flex-direction:column;
        gap:40px;
    }

    .footer-left{
        width:100%;
    }

    .footer-left h1{
        font-size:20vw;
    }

    .footer-left p{
        font-size:15px;
    }

    .footer-right{
        flex-direction:column;
        gap:40px;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

}






