*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* overflow-x: hidden; */
}
body{
    background-color: #000;
    font-family: "Bricolage Grotesque", sans-serif;
    color: white;
    overflow-x: hidden;
}
.background{
    overflow-x: hidden;
    pointer-events:none;
    position: absolute;
    width: 100vw;
    height: 90vh;
    opacity: 0.9;
    overflow: hidden;
}
.background::after {
    content: "";
    background: linear-gradient(to right,#000000 10%,#ffffff00 30%,#ffffff00 70%, #000000 90%);
    background-size: cover; /* Fills the container area */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.background::before {
    content: "";
    background: linear-gradient(to bottom,#ffffff00 90%, #000000 100%);
    background-size: cover; /* Fills the container area */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

canvas{
    pointer-events: all;
    opacity: 0.7;
}

.wrap-bg {
    overflow: hidden;
    position: absolute;
    height: 100vh;
    width: 100%;
    top: 0;
    
}

.js-image {
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
}

.jarallax {
    position: relative;
    z-index: -3;
}

.jarallax>.jarallax-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -4;
    opacity: 0.5;
}
canvas {
    position: absolute;
    width: 100%;
    height: 95%;
    z-index: -3;
}
.colour{
    position:absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%); 
    background-color: #6218db;
    height: 50%;
    width: 20%;
    border-radius: 50%;
    filter: blur(200px);
    z-index: -2;
}

.bgplanet{
    position: absolute;
    display: inline-block;
    bottom: 0;
    margin:auto;
    bottom: 0;
    width: 100vw;
    pointer-events: none;
    aspect-ratio: 9;
    overflow: hidden;
    padding-top: 60px;
    /* background-color: rgba(0, 255, 255, 0.682); */
    /* transform: translateY(-30px); */
}

.bgcurve{
    position: absolute;
    padding-top: 30px;
    width: 100%;
    background-color: #000;
    aspect-ratio: 2.346820809248555 / 1;
    /* background-color: #aa2020b6; */
    border-radius: 100%;
    box-shadow: inset 0 2px 20px #fff, 0 -10px 50px 1px #ffffff7d;
    z-index: -1;
}
.bgcurve2{
    padding-top: 30px;
    position: absolute;
    background: linear-gradient(180deg, #ffffff 0%, rgba(10, 10, 10, 0) 100%);
    border-radius: 100%;
    width: 100%;
    aspect-ratio: 2.25 / 1;
    transform: translate(0,calc(-0.7%));
    z-index: -2;
}

/* -----------hero section ---------------------------------- */
header{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 10vh;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0rem 4rem;
    font-size: 2rem;
    /* background-color: aqua; */
}

header .right ul{
    display: flex;
    gap: 25px;
}
.right ul li{

    list-style: none;
    font-size: 1.5rem;
    pointer-events: all;
}

.hero-section{
    overflow-x: hidden;
    pointer-events: none;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    flex-direction: column;
    /* background-color: aqua; */
    position: relative;
    height: 90vh;
    width: 100%;
    /* background-color: rgba(245, 245, 220, 0.689); */
}
.hero-section h3{
    font-size: 1.5rem;
    font-weight: 200;
    margin-top: 15vh;
    padding: 1rem;
}
.hero-section h2{
    width: 50%;
    font-size: 3rem;
    font-weight: 600;
    padding: 1rem;
    text-align: center;
}

.hero-section button{
    pointer-events: all;
    display: flex;
    align-items: center;
    gap:20px;
    padding: 5px 5px 5px 25px;
    background:rgba(255, 255, 255, 0.178) ;
    border: 1px solid white;
    color: white;
    border-radius: 30px;
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 2rem;
    cursor: pointer;
    /* z-index: -1; */
    transition: 0.2s ease-in-out;
    overflow: hidden;
}
.hero-section button i{
    font-size: 1.3rem;
    font-weight: 500;
    background-color: white;
    color: #000;
    border-radius: 50%;
    padding: 10px;
    transition: 0.2s ease-in-out;
}
.hero-section button:hover{
    background-color: white;
    color: #000;
}
.hero-section button:hover i{
    background-color: #000;
    color: white;
    transform: rotate(-45deg);
    scale: 1.2;
}
.hero-section p{
    margin-top: auto;
    word-spacing: 1px;
    letter-spacing: 1px;
    /* background-color: aqua; */
}
.companies{
    /* margin-top: auto; */
    padding: 2rem;
    padding-bottom: 40px;
    overflow-x: hidden;
}
.herocompanies{
    overflow-x: hidden;
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* gap: 50px; */
    /* transform: translateX(25%); */
    /* margin-top: 50px; */
    animation: scroll-left-company 10s linear infinite;
    transition: 0.5s ease-in-out;
    position: relative;
    /* z-index: -3; */
}

@keyframes scroll-left-company {
    0% {
        transform: translateX(5%);
    }
    100% {
        transform: translateX(-25%);
    }
}
.herocompanies img{
    height: 20px;
    margin: 0 25px;
    /* width: 100px; */
    object-fit: contain;
    z-index: -1;
    filter: drop-shadow(0px 1000px 0 #ffffff);
    transform: translateY(-1000px);
    /* z-index: -1; */
}

.wraper{
    width: 100%;
    height: 40px;
    transform: translateY(-40px);
    background-image:linear-gradient(to right, #000000 15%, #ffffff00 30%, #ffffff00 70%, #000000 85%);
    z-index: 1000;
    position:absolute;
    left: 0;
}


/* --------stack------------------ */
.project h1{
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 10vh;
    font-size: 2.5rem;
    margin-bottom: 70vh;
}

.project-container{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.project-container .project-box{
    position: sticky;
    top:30vh;
    background-color: rosybrown;
    width: 50%;
    height: 50vh;
    margin: 50px;
    border-radius: 8px;
    backdrop-filter: blur(48px);
    box-shadow: rgba(0, 0, 0, 0.05) 0px -3px 0px 0px inset, rgb(255, 255, 255) 0px 0px 0px 2px inset, rgba(0, 0, 0, 0.06) 0px 4px 2px 0px inset, rgba(0, 0, 0, 0.04) 0px 0px 24px 4px inset, rgba(0, 0, 0, 0.12) 0px 1px 3px 0px;
}
.project-box:nth-child(1){
    background-color: bisque;
}
.project-box:nth-child(2){
    transform: rotate(2deg);
    background-color: #c06565;
}
.project-box:nth-child(3){
    transform: rotate(-3deg);
    background-color: #65c0c0;
}
.project-box:nth-child(4){
    transform: rotate(-1deg);
    background-color: #507bac;
}
.project-box:nth-child(5){
    transform: rotate(4deg);
    background-color: #7b507b;
}


/* -----------follow---------------- */

.move{
    background-color: lawngreen;
    display: flex;
    text-wrap: nowrap;
    margin: 2rem 0;
    padding: 2rem 0;
    margin-bottom: 2rem;
    /* transform: rotate(5deg); */
    /* margin-bottom: 90px; */

}
.marque{
    flex-shrink: 0;
    font-size: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3vw;
    padding: 0 1.5vw;
    color: #000;
}
.marque img{
    height: 40px;
    
}