@font-face {
    font-family: neu;
    src: url(NeueHaasDisplayMediu.ttf);
}
@font-face {
    font-family: neu;
    font-weight: 100;
    src: url(NeueHaasDisplayXXThin.ttf);
}
@font-face {
    font-family: neu;
    font-weight: 200;
    src: url(NeueHaasDisplayRoman.ttf);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: neu;
}

.main{
    /* background-color: black; */
    position: relative;
    z-index: 10;
}
.page1{
    min-height: 100vh;
    width: 100%;
    background-color: #EFEAE3;
    position: relative;
    padding: 0 2vw;

}
.nav{
    padding: 2vw 0;
    width: 100%;
    
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.nav2{
    display: flex;
    align-items: center;
    gap: 15px;
}
.nav2 h4{
    padding: 10px 20px;
    border: 1px solid rgb(120, 114, 114);
    border-radius: 50px;
    font-weight: 900;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}
.nav2 h4::after{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: black;
    left: 0;
    bottom: -100%;
    transition: all ease 0.3s;
}
.nav2 h4:hover::after{
    bottom: 0;
    color: white;
    border-radius: 50px;
}

.nav2 h4 a{
    text-decoration: none;
    color: black;
    position: relative;
    z-index: 9;
}

.nav2 h4:hover a{
    color: white;
}

.center{
    height: 65vh;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid #C0BBB6;
    padding-bottom: 2vw;
}
.left h3{
    width: 25vw;
    font-size: 1.8vw;
    line-height: 2vw;
}
.center h1{
    font-size: 10vw;
    text-align: right;
    line-height: 8vw;
}

.page1 video{
    position: relative;
    width: 100%;
    border-radius: 30px;
    margin-top: 5vw;
}
.hero-shape{
    position: absolute;
    width: 46vw;
    height: 36vw;
    right: 0;
    top: 72vh;
}
.hero1{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(250, 68, 2);
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    filter: blur(20px);
}
.hero2{
    position: absolute;
    width: 30vw;
    height: 30vw;
    background: linear-gradient(orangered,rgba(230, 88, 32, 0.413));
    border-radius: 50%;
    filter: blur(20px);
    animation-name: anime2;
    animation-timing-function: linear;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
.hero3{
    position: absolute;
    width: 30vw;
    height: 30vw;
    background: linear-gradient(orangered,rgba(209, 89, 42, 0.413));
    border-radius: 50%;
    filter: blur(20px);
    animation-name: anime1;
    animation-timing-function: linear;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
@keyframes anime1{
    from{
        transform: translate(55%,-3%);
    }
    to{
        transform: translate(0%, 10%);
    }
}
@keyframes anime2{
    from{
        transform: translate(5%,-5%);
    }
    to{
        transform: translate(-20%, 30%);
    }
}


/* page 2 */

.page2{
    min-height: 100vh;
    width: 100%;
    background-color: #EFEAE3;
    position: relative;
}
#moving-text{
    white-space: nowrap;
    overflow-x: auto;
}
#moving-text::-webkit-scrollbar{
    display: none;
}
#moving-text h1{
    font-size: 8vw;
    display: inline-block;
    padding: 8vw 0;
}
.container{
    white-space: nowrap;
    display: inline-block;
    animation-name: move;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.point{
    height: 70px;
    width: 70px;
    background-color: orangered;
    border-radius: 50%;
    display: inline-block;
    margin: 1vw 3vw;
}

@keyframes move{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}

.page2-bottom{
    min-height: 60vh;
    width: 100%;
    padding: 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.left2 h1{
    font-size: 4vw;
    width: 60%;
    line-height: 4vw;
    position: relative;
    z-index: 9;
}

.right2{
    width: 50%;
}
.right2 img{
    width: 100%;
    border-radius: 20px;
    margin-top: 300px;
}
.right2 p{
    font-size: 12px;
    font-weight: 200;
}
.bubble{
    position: absolute;
    left: 25%;
    top: 65%;
    width: 35vw;
    height: 35vw;
    background: linear-gradient(to top right, #FE330A,#fe630a);
    border-radius: 50%;
    filter: blur(20px);
    animation-name: moving;
    animation-timing-function: ease-in-out;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes moving{
    from{
        transform: translate(7%,-7%) skew(0deg);
    }
    to{
        transform: translate(-7%, 7%) skew(-5deg);
    }
} 

/* page 3 */
.page3{
    min-height: 100vh;
    padding: 4vw 0;
    background-color: #EFEAE3;

}
.project{
    display: flex;

    position: relative;
    margin-bottom: 60px;
}
.gola{
    position: absolute;
    height: 10px;
    width: 10px;
    background-color: orangered;
    border-radius: 50%;
    left: 40px;
    top: 2px;

}
.project h6{
    position: absolute;
    left: 60px;
    font-weight: 200;
    font-size: 14px;
}

.elem{
    height: 150px;
    width: 100%;
    position: relative;
    border-bottom: 1px solid rgb(130, 124, 124);
    display: flex;
    align-items: center;
    overflow: hidden;
    
}
.elem h2{
    padding: 0vw 3vw;
    font-size: 3vw;
    z-index: 9;
}
.elem h6{
    padding: 0vw 3vw;
    font-size: 1vw;
    font-weight: 200;
    z-index: 9;
}
.elem .overlay{
    height: 100%;
    width: 100%;
    background-color: #FF9831;
    position: absolute;
    top: -100%;
    transition: all ease 0.3s;
}

.elem:hover .overlay{
    top: 0;
}

#fixed-image{
    height: 30vw;
    width: 24vw;
    border-radius: 20px;
    position: fixed;
    z-index: 99;
    left: 50%;
    top: 30%;
    display: none;
    background-size: cover;
    background-position: center;
}

/* page 4 */
#page-4 {
    height: 60vh;
    width: 100%;
    background-color: #EFEAE3;
    padding: 20px 50px;
}

.swiper {
    width: 100%;
    height: 55%;
}

.swiper-slide {
    width: 30%;
    border-right: 1px solid #aeadad;
    padding: 0 2vw;
}

.swiper-slide:nth-child(6) {
    border-right: 0;
}

.swiper-slide:nth-child(1) {
    border-left: 1px solid #aeadad;
}

.swiper-slide img {
    margin-bottom: 1.5vw;
}

.swiper-slide h4 {
    font-weight: 200;
    width: 80%;
    font-size: 1.2vw;
}

    
/* page 5 */
.page5{
    height: 100vh;
    width: 100%;
}


.footer{
    position: fixed;
    min-height: 100vh;
    width: 100%;
    background-color: black;
    color: white;
    z-index: 9;
    bottom: 0;
    display: flex;
    /* align-items: flex-end; */
    justify-content: flex-end;
    flex-direction: column;
    padding: 1vw 3vw;
}

.footer h1{
    font-size: 19vw;
    color: #EFEAE3;
}
.footer-div{
    height: 20vh;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0vw 3vw;
}
.footer-div h3{
    font-size: 29px;
    z-index: 99;
}
.ri{
    position: relative;
}
.footer-div h6{
    font-size: 15px;
    font-weight: 200;
}
.footer-div p{
    font-size: 15px;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.669);
    border-bottom: 1px solid rgba(255, 255, 255, 0.374);
}
.footer-bottom{
    border-top: 1px solid #dadada;
    height: 10vh;
    width: 100%;
    margin-bottom: 70px;
    color: white;
    display: flex;
    justify-content: space-between;
}
.footer-bottom h6, p{
    font-weight: 200;
    margin-top: 30px;
}


.googly{
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

}

.gly1{
    position: absolute;
    top: -60vh;
    left: -70px;
    height: 90vh;
    width: 55vw;
    border-bottom-right-radius: 80%;

    background-color: orangered;
    filter: blur(25px);
    animation-name: movinglast;
    animation-timing-function: ease-in-out;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    
}
.gly2{
    position: absolute;
    top: -60vh;
    right: -70px;
    height: 80vh;
    width: 55vw;
     border-bottom-left-radius: 80%;
    background-color: orangered;
    filter: blur(25px);
    animation-name: movinglast;
    animation-timing-function: ease-in-out;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    
}

@keyframes movinglast{
    from{
        transform: translate(7%,-7%) skew(0deg);
    }
    to{
        transform: translate(-7%, 7%) skew(-5deg);
    }
} 


