
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');


@font-face {
    font-family: haha;
    src: url('Satoshi-Regular.otf');
}

:root {
    --border-color: 0.1px solid rgba(255, 255, 255, 0.241);
    --border-color2: 0.1px solid rgba(255, 255, 255, 0.090);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    background-color: transparent;
    scroll-behavior: smooth;
}

body {
    background-color: rgb(0, 0, 0);
}

#nav {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-inline: 100px;
    padding-block: 26px;

    background-color: transparent;
    width: 100%;
    z-index: 99;
    top: 0;
}

#cursor,
#blur {
    pointer-events: none;
}

#cursor {
    height: 12px;
    width: 12px;
    background-color: #fffffff3;
    border-radius: 50%;
    filter: blur(0.5px);

    position: fixed;
    z-index: 50;
}

.left {
    font-size: 20px;
    font-weight: 500;

    & a {
        text-decoration: none;

        font-size: 17px;
        font-weight: 500;

        transition: all ease-in-out 250ms;
    }
}

.right ul {
    display: flex;
    gap: 30px;

    & li {
        list-style: none;
    }

    & li a {
        text-decoration: none;

        font-size: 17px;
        font-weight: 500;

        color: #ffffffa6;

        transition: all ease-in-out 250ms;
    }
}

.right ul li a:hover {
    color: #ffffff;

    font-size: 17.2px;
}

video {
    height: 100vh;
    width: 100%;
    object-fit: cover;

    filter: brightness(0.5);
    z-index: -1;

    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent);
    mask-image: linear-gradient(to bottom, black 70%, transparent);
}

#main {
    height: 100%;

    position: relative;
    background-color: rgba(0, 0, 0, 0.1);
    filter: brightness(1.1);
    z-index: 10;
}



#page1 {
    min-height: 100vh;
    padding-top: 75px;
    width: 100%;
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;

    background-color: transparent;

    z-index: 999;
}

#page1 h5 {
    font-family: "haha";
    font-size: clamp(32px, 6vw, 85px);
    font-weight: 100;
    width: 50%;
    margin-bottom: 10px;
    line-height: 105px;
}

#page1 h3 {
    font-family: 'inter';
    color: #c1c1c1;

    font-size: 15px;
    font-weight: 300;
    width: 32%;
    line-height: 25px;
}

.up img {
    height: 67px;
}

#page1 img {
    transition: all ease-in-out 300ms;
}


.btnsect {
    display: flex;
    margin-top: 15px;

    gap: 10px;
}

.btnsect .pt1 img {
    height: 70px;
}

.btnsect .pt2 img {
    padding-bottom: 11px;
    height: 80px;
}

.scrlldwn {
    display: flex;
    align-items: center;
    columns: 2;

    column-fill: balance;
    column-rule: 2px solid #ff44cc;

    margin-top: 25px;
    margin-bottom: 55px;

    & .one,
    .two,
    .three {
        color: #ffffffa6;
    }
}

.line {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1px;
    width: 230px;
    background: linear-gradient(to right, transparent, white, transparent);
    opacity: 0.4;
}

.two i {
    font-size: 29px;
    color: #ffffffa6;
}

.two {
    /* animation */
    animation: moveUpDown 3.5s ease-in-out infinite;
}

@keyframes moveUpDown {

    0% {
        transform: translateY(0px);
        opacity: 1;
    }

    50% {
        transform: translateY(6px);
        opacity: 1;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }

}





.carousel {
    margin: 5px auto;
    width: 55%;
    padding-top: 1px;
    display: flex;
    overflow-x: auto;
    background-color: transparent;
    z-index: 999;

    mask-image: linear-gradient(to right,
            transparent 0%,
            black 15%,
            black 85%,
            transparent 100%);

    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 15%,
            black 85%,
            transparent 100%);
}



.carousel::-webkit-scrollbar {
    display: none;
}

.group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    animation: spin 15s infinite linear;
    padding-right: 3rem;
    z-index: 99;

}

.card {
    flex: 0 0 5em;
    padding: 1em;
    border-radius: .2em;
    text-align: center;
    display: flex;
    z-index: 99;

}

.card img {
    height: 26.93px;
    opacity: 0.5;
}

@keyframes spin {
    from {
        translate: 0;
    }

    to {
        translate: -100%;
    }
}

#page2 {
    margin-top: 75px;
    min-height: 95vh;
    border-top: 0.1px solid rgba(255, 255, 255, 0.241);
    z-index: 99;
    border-top-right-radius: 60px;
    border-top-left-radius: 60px;
    z-index: 999;
}

.mysection {
    display: flex;
    gap: 20px;

    margin: auto;
    background-color: transparent;
    width: 90%;
    height: 80vh;
    margin-top: 10vh;
}

.rght {
    width: 50%;
    height: 100%;
    background-color: transparent;
}

.rght .imge {
    margin-top: 5%;
    margin-left: 5%;
    height: 90%;
    width: 90%;
    background-color: transparent;

    & img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        filter: brightness(0.8);
    }
}

.lft {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
    background-color: transparent;
    gap: 15px;
    padding-left: 10px;
}

.prt1 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 92px;
    background-color: transparent;

    font-family: "haha";
    font-size: 95px;

}

.prt2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 92px;
    background-color: transparent;

    font-family: "inter";
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
}

.box {
    background-color: #1c1c1c;
    padding: 10px;
    padding: 12px;
    border-radius: 5px;
}

.prt3 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;

    gap: 20px;
    line-height: 10px;

    width: 100%;
    height: 150px;
    background-color: transparent;
    padding-block: 25px;


    border-top: var(--border-color2);
    border-bottom: var(--border-color2);
}

.prt4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 20px;

    width: 100%;
    height: 205px;
    background-color: transparent;
}

.table {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* 3 equal columns */
    gap: 20px;
    color: rgb(255, 255, 255);
    width: 98%;
}

.table div {
    padding: 15px 0;
    color: #ffffffa6;
    font-family: "inter";
    font-weight: 400;
}

/* align left, center, right */
.table div:nth-child(3n+1) {
    text-align: left;
}

.table div:nth-child(3n+2) {
    text-align: center;
}

.table div:nth-child(3n+3) {
    text-align: right;
}

#page3 {
    height: 65vh;
}

.linee {
    width: 95%;
    margin: auto;
    border-bottom: 0.1px solid rgba(255, 255, 255, 0.093);
}

#rcntwrk {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 95px;
    height: 20px;
    width: fit-content;
    background-color: transparent;
    gap: 10px;
    font-size: 24px;
    font-family: "inter";
    font-weight: 500;
    padding-right: 10px;
}

#arrow i {
    font-size: 30px;
    font-weight: 200;
}

#wrkgllry {
    width: 90%;
    margin: auto;
    height: 410px;
    margin-block: 50px;
    background-color: rgba(54, 22, 22, 0);

    border-top: 0.1px solid rgba(255, 255, 255, 0.102);

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    gap: 10px;
}

.pics {
    display: flex;
    flex-direction: column;

    height: 355px;
    width: 355px;
    background-color: rgb(128, 128, 128);
    display: flex;
    align-items: center;
    justify-content: flex-end;

    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;

    position: relative;
}

.pics img {
    height: 355px;
    width: 355px;
    transition: all 0.3s ease;

    filter: grayscale(1);
}

.pics:hover img {
    scale: 1.15;
    transition: all 0.3s ease;
    filter: grayscale(0);
}

.pics:hover .botmbar {
    backdrop-filter: blur(30px);
    transition: all 0.3s ease;
}

.botmbar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    position: absolute;
    margin-bottom: 10px;
    padding-block: 11px;
    color: #ffffffe0;

    border-radius: 50px;
    border: 0.01px solid rgba(255, 255, 255, 0.454);

    background-color: #ffffff16;
    backdrop-filter: blur(7px);
    transition: all 0.3s ease;

    gap: 10px;
}

.i1 i {
    font-size: 22px;
}

#page4 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150vh;
    width: 100%;

    background-color: transparent;
}

.containner,
.pg5container1,
.pg5container2 {
    gap: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1257px;
    width: 89.86%;
    margin: auto;

    background-color: transparent;
}

.cntimg {
    border-radius: 25px;
    width: 55%;
    height: 98%;
    background-color: transparent;
}

.cntimg img {
    border-radius: 20px;
    height: 100%;
    width: 100%;

    object-fit: cover;
}


.conntent {
    width: 50%;
    height: 100%;
    background-color: transparent;
}

.div1 {
    display: flex;
    flex-direction: column;

    padding-left: 2px;

    gap: 10px;
    margin-top: 10px;
    background-color: transparent;
    padding-bottom: 18px;

    border-bottom: var(--border-color2);
}

.oe {
    padding-top: 3px;
    width: 100%;

    background-color: transparent;

    & img {
        height: 34px;
    }
}

.tw {

    display: flex;
    align-items: center;

    width: 100%;
    background-color: transparent;

}

.twtxt {
    padding: 0;
    margin: 0;

    font-size: 92px;
    font-family: "haha";
    font-weight: 200;
}

.tre {
    width: 90%;
    background-color: transparent;
    color: #969696;

    font-family: "inter";
    font-size: 23px;
}

.for {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 80px;
    background-color: transparent;
    gap: 10px;
}

.img1,
.img2 {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 60px;

    background-color: transparent;
}

.img1 img,
.img2 img {
    height: 44px;
}

.divs2 {
    display: flex;
    flex-direction: column;
    gap: 15px;

    margin-top: 25px;
}

.div2 {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    position: relative;
    gap: 25px;

    padding-block: 40px;
    padding-inline: 30px;

    border-radius: 30px;

    width: 100%;
    height: 21.69%;
    background-color: #0d0d0d;
}

.part1 {
    height: 30px;
    width: 100%;

    background-color: transparent;

    & i {
        font-size: 30px;
    }
}

.part2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    height: 44px;
    width: 100%;

    font-size: 44px;
    font-family: "haha";

    background-color: transparent;
}

.part3 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 45px;
    width: 100%;





    & .prt3txt {
        width: 100%;
        font-family: "inter";
        font-size: 15.6px;
        color: #969696;
    }
}

.noball {
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 8%;
    right: 4%;

    height: 25px;
    width: 25px;
    border-radius: 50%;
    background-color: #0d0d0d;

    border-top: solid 2px #252424;

    font-family: "inter";
    font-size: 12px;

    z-index: 999;
}

#page5,
#page6 {
    display: flex;
    flex-direction: column;
    gap: 24.5px;
    height: fit-content;
    width: 100%;
}

#page5>.linee {
    margin-top: 50px;
    margin-bottom: 70px;
}

.pg5container1 {
    height: fit-content;
}

.pg5container1>.conntent>.div1 {
    border-bottom: none;
    margin-top: 17px;
}

.pg5container1>.cntimg {
    width: 45%;
}

.pg5container1>.cntimg>img {
    width: 103%;

    filter: grayscale(1) brightness(0.8);
    transition: all 1s ease-in-out;
}

.pg5container1>.cntimg:hover img {
    filter: grayscale(0) brightness(0.9);
    transition: all 0.4s ease;

}

.pg5container1>.conntent>.div1>.prt3 {
    padding-bottom: 25px;
    border-top: none;
    border-bottom: solid rgba(255, 255, 255, 0.116) 0.1px;
    width: 90%;
}

.pg5container1>.conntent>.div1>.for {
    height: fit-content;

    margin-top: 5px;
}

.pg5container2 {
    height: 43vh;
}

.grider {
    position: relative;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 8px;

    height: 100%;
    width: 100%;
}

.grone {
    display: flex;
    flex-direction: column;

    gap: 5px;

    position: relative;
    margin: auto;
    height: 95.5%;
    width: 99.5%;
    border-radius: 20px;
    padding-inline: 30px;
    padding-block: 28px;

    background-color: #0d0d0d;
}

.line1 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.ln1prt1 i {

    font-size: 28px;

}

.ln2prt2 {
    font-family: "plus jakarta sans";
    font-size: 24px;
    font-weight: 500;
}

.line2 {
    font-family: "inter";
    font-size: 15px;
    color: #ffffffa6;

    border-top: var(--border-color2);
    margin-top: 10px;

    padding-top: 15px;
    width: 99%;
}

.pg5lstcontainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: 90%;
    height: 20vh;
    background-color: transparent;

    margin-top: 25px;
    gap: 17px;
}

.pg5crousel {

    display: flex;

    height: fit-content;
    width: 100%;

    background-color: transparent;
    overflow-x: auto;

    mask-image: linear-gradient(to right,
            transparent 0%,
            black 15%,
            black 85%,
            transparent 100%);

    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 15%,
            black 85%,
            transparent 100%);


}

.pg5crousel::-webkit-scrollbar {
    display: none;
}

.pg5grp {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;

    width: 100%;
    height: fit-content;

    gap: 8px;
    padding-right: 8px;



    animation: pg5spin infinite linear 15s;

}

.elems {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;
    height: fit-content;
    width: auto;
    white-space: nowrap;

    background-color: #0d0d0d;

    padding: 16px 14px;
    border-radius: 50px;

}

.el1 i {

    font-size: 20px;
    color: #ffffffcd;
}

.el2 {
    font-family: "inter";
    font-size: 15px;

    color: #ffffffa6;

}

@keyframes pg5spin {
    from {
        translate: 0%;
    }

    to {
        translate: -100%;
    }
}

#reverse {
    animation: pg5spin infinite linear reverse 15s;
}

#page6>.containner {
    display: flex;
    flex-direction: column;
    background-color: red;
    height: fit-content;
    
    gap: 16px;
}

#page6>.containner>.pg6cnt1>.conntent>.div1 {
    border-bottom: none;
}

#page6>.containner>.pg6cnt1>.cntimg {
    width: 697px;
    height: 502px;
}

#page6>.containner>.pg6cnt1>.cntimg>img {

    filter: grayscale(1);

    width: 697px;
    height: 502px;
}

.pg6cnt1 {
    display: flex;
    align-items: center;

    gap: 30px;
}

.pg6cnt2 {

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;

    background-color: transparent;

    height: 500px;
    width: 100%;
    margin: auto;

    margin-bottom: 400px;
}

.cards {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    gap: 60px;
    background: linear-gradient(
    to bottom,
    rgba(41, 41, 41, 0.293) 0%,
    rgba(0,0,0,0.1) 60%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,1) 100%
  );
    height: 90%;
    padding-inline: 10px;
    width: 100%;

    padding-inline: 40px;
    padding-block: 20px;

    border-radius: 15px;
}

.crds{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 8px;

    background-color: transparent;
    height: 90%;
    width: 100%;

    margin-top: 4px;

}

.profile{
    background-color: transparent;
    
    height: 24%;
    width: 100%;

    margin-bottom: 10px;
}
.imge{
    width: 20%;
    height: 100%;
    background-color: transparent;
    border-radius: 50%;
}
.imge>img{
    height: 100%;
    width: 100%;
    border-radius: 50%;

    object-fit: cover;
}

.nme{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
     background-color: transparent;
    
    height: 20.5%;
    width: 100%;
}
.nme1{
    font-family: "haha";
    font-size: 36px;
    font-weight: 500;
     background-color: transparent;
    
    height: 50%;
    width: 100%;
}
.nme2{
    font-family: "inter";
    font-size: 16px;
    color: #ffffffa6;
     background-color: transparent;
    
    height:fit-content;
    width: 100%;

    border-bottom: var(--border-color2);
    padding-bottom: 20px;
}
.paragraph{
    font-family: "inter";
    font-size: 16px;
    font-weight: 300;

    line-height: 22px;

    background-color: transparent;

    padding-top: 20px;
    
    height: fit-content;
    width: 100%;
}










.crd2{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    background-color: transparent;
    height: 10%;
    width: 100%;
}
.rateing1{
    font-size: 24px;
    font-family: sans-serif;
    color: #ffffffa6;
}
.rateing2 i{
    font-size: 24px;
    color: #ffd700 ;
}
