@font-face{
    font-family: neu;
    src: url(../assets/NeueHaasDisplayRoman.ttf);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: neu, sans-serif;
}
html,body{
    height: 100%;
    width: 100%;
}
.main{
    /* background-color: black; */
    position: relative;
    z-index: 10;
}
.page1{
    min-height: 100vh;
    width: 100%;
    background-color: #ffffff;  
    position: relative; 
    padding:0 2vw;
    overflow: hidden;
}
nav{
    padding: 2vw 2vw;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: red; */
}
nav h3{
    font-size: 2.5vw;
    color: rgb(18, 50, 0);
}
.nav_part2{
    display: flex;
    align-items: center;
    gap: 1vw;

}
.nav_part2 h4{
    padding: 15px 15px;
    border: 1px solid rgb(147, 147, 147);
    border-radius: 50px;
    font-weight: 500;
    position: relative;
    color: rgb(47, 47, 47);
    overflow: hidden;
    transition: all ease 0.3s;
}
.nav_part2 h4::after{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgb(0, 30, 2);
    border-radius: 50px;
    left: 0;
    bottom: -100%;
    transition: all ease 0.4s;
    font-size: 18px;
}
.nav_part2 h4:hover::after{
    bottom: 0;
    border-radius: 0px;
}
.nav_part2 h4 a{
    text-decoration: none;
    color: rgb(0, 71, 2);
    position: relative;
    z-index: 9;
}
.nav_part2 h4:hover a{
    color: white;
}
.center{
    height: 80vh;
    width: 100%;
    display: flex;
    /* background: orange; */
    align-items: flex-end;
    justify-content: space-between ;
    border-bottom: 1px solid rgb(137, 137, 137);
    padding-bottom: 5vw;
}
.left h3{
    width: 25vw;
    font-size: 2vw;
    line-height: 2vw;
}
.right h1{
    font-size: 10vw;
    line-height: 8vw;
    text-align: right;
}
.page1 video{
    margin-top: 5vw;
    width: 100%;
    border-radius: 30px;
    position: relative;
}
.hero-shape{
    position: absolute;
    width: 46vw;
    height: 30vw;
    right: 0;
    top: 79vh;
    white-space: nowrap;
}
.hero1{
    background-color: rgb(59, 255, 62);
    height: 100%;
    width: 35vw;
    right: -2vw;
    position: absolute;
    rotate: calc(-6deg);
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    filter: blur(20px);

}
.hero2{
    background-color: rgb(145, 255, 43);
    height: 30vw;
    width: 30vw;
    position: absolute;
    /* transform: rotate(90deg); */
    border-radius: 50%;
    filter: blur(20px);
    animation-name: anima;
    animation-duration: 4s;
    animation-timing-function: linear;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}
.hero3{
    background: linear-gradient(rgb(208, 255, 0),rgba(47, 255, 0, 0.998));
    height: 30vw;
    width: 30vw;
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    animation-name: anime;
    animation-duration: 4s; 
    animation-timing-function: linear;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}
@keyframes anima{
    from{
        transform: translate(0%,0%)skew(-12deg);
    }
    to{
        transform: translate(-11%,11%)skew(14deg);
    }
}
@keyframes anime{
    from{
        transform: translate(0%,0%)skew(10deg);
    }
    to{
        transform: translate(-3%,-6%)skew(-12deg);
    }
}
.page2{
    min-height: 100vh;
    width: 100%;
    background-color: white;
    padding: 6vw 0;
    position: relative;
}
.moving-text{
    overflow-x: auto;
    white-space: nowrap;
}
.moving-text::-webkit-scrollbar{
    display: none;
}
.con{
    white-space: nowrap;
    display: inline-block;
    animation-name: move;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.moving-text h1{
    font-size: 8vw; 
    display: inline-block;
}
.gola{
    height: 3vw;
    width:3vw;
    display: inline-block;
    background-color: greenyellow;
    border-radius: 30px;
    margin: 1vw 2vw;
}
@keyframes move {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}
.page2-bottom{
    height: 80vh;
    width: 100%;
    background-color: transparent;
    padding: 3vw 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}
.page2-bottom h1{
    font-size: 3.5vw;
    width: 65%;
    line-height: 4vw;
}
.bottom-part2{
    width:25%;
}
.bottom-part2 img{
    width: 90%;
    border-radius: 20px;
    /* margin: 3vw;; */
}
.bottom-part2 p{
    margin: 1vw 0;
    font-weight: 100;
} 
.page2 .gooey{
    width: 35vw;
    height: 35vw;
    background: linear-gradient(to top right,rgb(130, 255, 47),rgb(229, 255, 0));
    border-radius: 50%;
    position: absolute;
    top: 45%;
    left: 25%;
    filter: blur(16px);
    animation-name: gooey;
    animation-duration: 2.5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
@keyframes gooey{
    from{
        transform:translate(7%,-5%) skew(-6deg);
    }
    to{
        transform: translate(-7%,5%)skew(6deg);
    }
} 
.feature{
    display: flex;
    gap: 0.5vw;
    padding: 3vw 2vw;
    align-items: center;
}
.feature .dot{
    height: 15px;
    width: 15px;
    background-color: greenyellow;
    border-radius: 50%;
    display: inline-block;
    justify-self:center;
}
.feature h5{
    font-size: 1.2vw;
}
.page3{
    width: 100%;
    min-height: 100vh;
    background-color: transparent;
    padding: 4vw 0;
    background-color: white;
}
.elem{
    height: 110px;
    width: 100%;
    position: relative;
    /* border-top: 0.5px solid rgb(118, 118, 118); */
    border-bottom: 0.5px solid rgb(118, 118, 118);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 2vw;
}
.elem h2{
    font-size: 3vw;
    position: relative;
    z-index: 9;
}
.overlay{
    height: 100%;
    width: 100%;
    background-color: greenyellow;
    position: absolute;
    left: 0;
    top: -100%;
    transition: all ease 0.3s;
}
.elem:hover .overlay{
    top: 0;
}
/* .elem-container{

} */
.fixed-image{
    height: 30vw;
    width: 25vw;
    background-color: transparent;
    border-radius: 20px;
    position: fixed;
    z-index: 99;
    top: 18%;
    left: 50%;
    display: none;
    pointer-events: none;
    background-size: cover;
    background-position: center;
}
.page4{
    min-height: 100vh;
    width: 100%;
    padding: 0 2vw;
    position: relative;
    background-color: white;
}
.black-container{
    width: 100%;
    height: 50vw;
    display: flex;
    background-color: black;
    border-radius: 20px;
    overflow: hidden;
    justify-content: space-between;
}
.content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
    gap: 15px;
    left: 8%;
    position: relative;
}
.content .tabs{
    display: flex;
    flex-direction: column;
    border-left: 2px solid grey ;

}
.tabs h1{
    color: white;
    font-size: 5vw;
}
.desc{
    width: 60%;
}
.desc p{
    color: white;
}
.black-container img{
    height: 100%;
    position: relative;
    width: 55%;
    border-radius: 20px;
}
.all{
    padding: 2vw;
}
.all h4{
    padding: 15px 15px;
    border: 1px solid rgb(147, 147, 147);
    border-radius: 50px;
    font-weight: 500;
    position: relative;
    color: rgb(47, 47, 47);
    display: inline-block;
    transition: all ease 0.3s;
    overflow: hidden;
}
.all h4::after{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgb(0, 30, 2);
    border-radius: 50px;
    left: 0;
    bottom: -100%;
    transition: all ease 0.4s;
    font-size: 18px;
}
.all h4:hover::after{
    bottom: 0;
    border-radius: 0px;
}
.all h4 a{
    text-decoration: none;
    color: rgb(0, 71, 2);
    position: relative;
    z-index: 9;
}
.all h4:hover a{
    color: white;
}
.page5{
    height: 100vh;
    width: 100%;
}
.footer {
    height: 105vh;
    width: 100%;
    position: fixed;
    background-color: black;
    z-index: -1;
    color: rgb(0, 0, 0);
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 2vw;
    padding-top: 3vw;

}
.footer h1{
    align-self: center;
    font-size: 30vw;
    color: white;

}
.footer-div{
    height: 20vh;
    width: 100%;
    display: flex;
    padding: 4vw 3vw;
    justify-content: space-between;
    position: relative;
    z-index: 8;
    /* background-color: red; */
}
.footxt{
    display: flex;
    flex-direction: column;

}
.footer-bottom{
    height: 5vh;
    width: 100%;
    border-top: 1.2px solid gray;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-div h2{
    font-size: 2.2vw;

}
.emaildiv{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2vw;
    padding: 2vw 2vw;
}
.emaildiv h3{
    font-size: 1.6vw;
}
.emaildiv h4{
    font-size: 1.3vw;
    color: black;
    border-bottom: 0.3px solid black;
}
.shape1{

    position: absolute;
    background-color: greenyellow;
    filter: blur(50px);
    z-index: -1;
    top: -50%;
    left: -20%;
    width: 90%;
    height: 90%;
    animation-name: shape1;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
.shape2{
    position: absolute;
    background-color: greenyellow;
    filter: blur(50px);
    z-index: -1;
    right: -27%;
    top: -27%;
    width: 70%;
    height: 90%;
    animation-name: shape2;
    animation-duration: 4s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
@keyframes shape1 {
    from{
        transform: rotate(-10deg);
    }
    to{
        transform: rotate(-20deg);
    }
}
@keyframes shape2 {
    from{
        transform: rotate(30deg);
    }
    to{
        transform: rotate(45deg);
    }
}
.footer-bottom h5{
    color: white;
    margin: 0.8vw;
}
