@font-face {
    font-family: 'Sun Roman';
    src: url('Fonts/NeueHaasDisplay-Roman.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Sun Medium';
    src: url('Fonts/NeueHaasDisplay-Mediu.ttf') format('truetype');
    font-style: normal;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Sun Medium';
    font-style: normal;
    text-decoration: none;
}
html, body {
    height: 100%;
    width: 100%;
}
.opening-animation{
    position: fixed;
    z-index: 1000;
    top: 0%;
    width: 100%;
    height: 100%;
    background-color: #000;
    transition: all ease-in-out .6s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.word{
    position: absolute;
    background: linear-gradient(#ff2a00,rgba(249, 163, 15, 0.972));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 100px;
    opacity: 0;
    animation-name: load;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-delay: 1s;
}
.word:nth-child(1){
    animation-delay: 0s;
}
.word:nth-child(2){
    animation-delay: 1s;
}
.word:nth-child(3){
    animation-delay: 2s;
}
@keyframes load {
    0%{
        opacity: 0;
    }
    10%{
        opacity: 1;
    }
    90%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

#main-page{
    position: relative;
    z-index: 100;
 }
.page1{
    background-color: #EFEAE3;
    min-height: 100vh;
    width: 100%;
    padding: 0 2vw;
    position: relative;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2vw 0;
}
.nav-part2{
    display: flex;
    padding: .2%;
}
.nav-part2 h1{
    border: #ADA7A7 solid 1px;
    border-radius: 50px;
    padding: 6px 18px;
    margin: 0 5px;
    position: relative;
    overflow: hidden;
}
.nav-part2 h1::after{
    content: "";
    position: absolute;
    background-color: black;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    transition: all ease .5s;
}
.nav-part2 h1:hover::after{
    top: 0;
    border-radius: 0;
}
.nav-part2 h1 a{
    font-size: 18px;
    font-weight: 500;
    background: none;
    color: black;
    position: relative;
    z-index: 3;
   
}
.nav-part2 h1:hover a{
    color: white;
}
.page1 .center{
    border-bottom: solid 1px #2825257c;
    min-height: 78vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
}
.page1 .center .left{
    width: 50%;
    font-size: 30px;
    line-height: 35px;
}
.page1 .center .right{
    width: 50%;
    font-size: 155px;
    line-height: 125px;
    text-align: right;
}
.page1 video{
    width: 100%;
    border-radius: 30px;
    margin-top: 4vw;
    position: relative;
    z-index: 1;
}
.hero-wrapper{
    position: absolute;
    width: 46vw;
    height: 36vw;
    top: 85vh;
    right: 0; 
    
}
.hero1{
    background: linear-gradient(#FE330A,rgb(248, 83, 38));
    height: 100%;
    width: 100%;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    filter: blur(20px);
    position: absolute;
   
}
.hero2{
    background: linear-gradient(#FE330A,rgb(248, 83, 38));
    height:  30vw;
    width:  30vw;
    border-radius: 50%;
    filter: blur(20px);
    position: absolute;
    animation-name: anime2;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-direction: alternate;
}
.hero3{
    background: linear-gradient(#FE330A,rgb(248, 83, 38));
    height: 30vw;
    width:  30vw;
    border-radius: 50%;
    filter: blur(20px);
    position: absolute;
    animation-name: anime1;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-direction: alternate;
}

@keyframes anime1 {
    form{
        transform: translate(-10%,10%);
    }
    to{
        transform: translate(60%,-12%);
    }
}
@keyframes anime2 {
    form{
        transform: translate(-15%,-10%);
    }
    to{
        transform: translate(8%,16%);
    }
}
.page2{
    background-color: #EFEAE3;
    min-height: 100vh;
    width: 100%;
    padding: 0 2vw;
    padding-bottom: 2rem;
    position: relative;
}
.moving-text{
    padding: 8rem 0;
    white-space: nowrap;
}
.moving-text h1{
    font-size: 9vw;
    display: inline-block;
}
.moving-ele{
    white-space: nowrap;
    display: inline-block;
    animation-name: move;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.circle{
    width: 70px;
    height: 70px;
    background-color: #FE330A;
    border-radius: 50%;
    display: inline-block;
    margin: 10px 2rem;
}
@keyframes move {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}
.page2 .center{
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: space-between;
}
.page2 .center .left{
    font-size: 65px;
    line-height: 60px;
    margin: 4rem;
    width: 60vw;
    z-index: 10;
}
.page2 .center .right{
    width: 25vw;
    height: fit-content;
    margin-top: 10rem;
    margin-bottom: 4rem;
}
.page2 .center .right h3{
    font-size: 16px;
    font-weight: lighter;
    font-family: 'Sun Roman';
    width: 300px;
    color: #151414;
}
.page2 .center .right img{
    width: 300px;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 50px;
}
.hero-wrapper2{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 85vh;
    left: 30vw;
    z-index: 6 ;
}
.hero-1{
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(#FE330A);
    filter: blur(25px);
    width: 60vh;
    height: 60vh;
}
.hero-2{
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(#FE330A);
    filter: blur(25px);
    width: 60vh;
    height: 60vh;
    animation-name: animate;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: linear;
}
@keyframes animate {
    from{
        transform: translate(-15%,20%);
    }
    to{
        transform: translate(15%,-20%);
    }
}
.bp{
    width: 10px;
    height: 10px;
    background-color: #FE330A;
    border-radius: 50%;
}
.fp{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-family: 'Sun Roman';
    text-transform: uppercase;
    padding: 3rem 0;
}
.page3{
    background-color: #EFEAE3;
    border: solid 2px  #EFEAE3;
    min-height: 100vh;
    width: 100%;
    padding-bottom: 2rem;
    position: relative;
}
.elem{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: #ADA7A7 solid 1px;
    padding: 2rem;
    overflow: hidden;
    z-index: 6;
}
.elem .overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    background-color: #FF9831;
    transition: all ease .2s;
}
.elem:hover .overlay{
    top: 0;
}
.elem h4{
    font-size: 50px;
    cursor: pointer;
    z-index: 3;
}
.page3 .elem .proj{
    font-size: 15px;
    font-weight: lighter;
    text-align: right;
    color: black;
    z-index: 3;
}
.proj p{
    color: #ADA7A7;
    font-size: 14px;
    font-weight: 100;
}
.fixed-image{
    position: fixed;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    width: 25vw;
    height: 30vw;
    left: 50%;
    top: 25%;
    display: none;
    transition: all ease .3s;
    z-index: 999;
}
.all-pro{
    padding: 4rem 2rem;
    font-family: 'Sun Roman';
    margin-bottom: 2rem;
}
.page4{
    background-color: #EFEAE3;
    min-height: 100vh;
    width: 100%;
    padding: 0 2vw;
    position: relative;
    margin-bottom: 5rem;
}
.box-container{
    width: 95vw;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    border-radius: 20px;
    background-color: #090909;
}
.text-side{
    width: 45%;
    height: 100%;
    background-color: #090909;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding-left: 10rem;
}
.text-side .content{
    color: #797474;
    width: 100%;
    border-left: #797474 1px solid;
    position: relative;
}
.text-side .content h2{
    padding-left: 40px;
    font-size: 65px;
    transition: all ease .3s;
    cursor: pointer;
}
.text-side .content h2.active{
    padding-left: 5px;
    color: white;
}
.text-side .content p{
    display: none;
}
.description-box{
    width: 65%;
    font-size: 16px;
    font-weight: lighter;
    font-family: 'Sun Roman';
    color: white;
    padding: .5rem 0 ;
    margin-top: 15px;
    height: 20vh;
}
.image-side {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
}
.w3{
    font-size: 15px;
    padding-bottom: 4.5rem;
}
.w4{
    padding: 0 2rem;
}
.swiper{
    position: relative;
    min-height: fit-content;
    padding-bottom: 10rem;
}
.swiper-slide{
    width: 30vw;
    height: fit-content;
    padding: 1rem 2rem;
    border-left: #ADA7A7 solid 1px;
}
.swiper-slide img{
    display: inline-block;
    position: relative;
    object-fit: cover;
    margin-bottom: 2rem;
}
.swiper-slide p{
    width: 18vw;
    color: #2a2929f4;
    font-size: 2.5vh;
    font-weight: lighter;
    font-family: 'Sun Roman';
    color: #151414;
}
.page5 {
    height: 115vh; 
}
.footer{
    position: fixed;
    height: 100vh;
    width: 100%;
    bottom: 0;
    z-index: 99;
    box-sizing: border-box;
    padding: 0 1rem;
    background-color: #000;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.footer .top{
    width: 100%;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer .top .left{
    font-size: 25px;
    color: #f7f7f7;
}
.footer .top .right{
    width: 25%;
    padding: 1rem;
    padding-bottom: 1.5rem;
    font-family: 'Sun Roman';
    font-size: 18px;
    word-spacing: 3px;
}
.footer input::placeholder {
  color:#d7d4d4; 
  font-family: 'Sun Roman';
  opacity: .6;
  letter-spacing: 2px;
}

.footer .top input{
    background-color: transparent;
    padding: 10px 2px;
    font-size: 18px;
    width: 100%;
    color: #cbc7c7;
    border: none;
    border-bottom: 1px solid #d7d4d4;
}

.footer .bottom{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    
}
.footer  .bottom h4{
    height: 22.5rem;
    font-size: 22.5rem;
    color: #f7f7f7;
    border-bottom: 1px solid #ADA7A7;
}
.footer  .bottom .links{
    width: 100%;
    padding-top: 20px;
    padding-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer  .bottom a{
    font-family: 'Sun Roman';
    color: #f7f7f7;
}

.hero-wrapper3{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1 ;
}
.hero-x{
    position: absolute;
    background: linear-gradient(#FE330A);
    filter: blur(25px);
    top: -8%;
    right: -8%;
    width: 120vh;
    height: 85vh;
    border-radius:  0 0 0 100%;
    animation-name: animated2;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease;
}
.hero-y{
    position: absolute;
    background: linear-gradient(#FE330A);
    filter: blur(25px);
    width: 120vh;
    height: 65vh;
    top: -8%;
    left: -8%;
    border-radius: 0 0 100% 0;
    animation-name: animated1;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease;
}
.hero-z{
    position: absolute;
    background: linear-gradient(#FE330A);
    filter: blur(25px);
    right: 25%;
    top: -5%;
    width: 95vh;
    height: 60vh;
    border-radius: 0 0 0 100%;
    animation-name: animated2;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes animated1 {
    from{
        transform: translate(-15%,0%)skew(0);
    }
    to{
        transform: translate(0%,0%)skew(50%);
    }
}
@keyframes animated2 {
    from{
        transform: translate(15%,0%)skew(0);
    }
    to{
        transform: translate(25%,0%) skew(20px);
    }
}
 


@media (max-width:768px) {
    .word{
        font-size: 50px;
    }
    .page1 .center{
        padding: 0 .5rem;
        padding-bottom: 4rem;
    }
    .page1 .center .left{
        font-size: 15px;
        line-height: 18px;
    }
    .page1 .center .right{
        font-size: 75px;
        line-height: 60px;
    }
    .hero-wrapper{
        position: absolute;
        width: 50vw;
        height: 40vw;
        top: 82.5vh;
    }

    .page2{
        padding-bottom: 0rem;
    }
    .moving-text{
        padding: 4rem 0;
    }
    .circle{
        width: 50px;
        height: 50px;
        margin: 0px 1.5rem;
    }
    .page2 .center{
        margin-top: 25vh;
    }
    .page2 .center .left{
        font-size: 30px;
        line-height: 30px;
        margin: 0rem;
        padding-left: 4vw;
    }
    .page2 .center .right{
        margin-top: 4rem;
        margin-bottom: 0;
    }
    .page2 .center .right h3{
        font-size: 15px;
        width: 145px;
    }
    .page2 .center .right img{
        width: 150px;
        height: 100px;
        margin-bottom: 25px;
    }
    .hero-wrapper2{
        top: 80vh;
        left: 20vw;
    }
    .hero-1,.hero-2{
        width: 30vh;
        height: 30vh;
    }
    .bp{
        width: 8px;
        height: 8px;
    }
    .fp{
        font-size: 15px;
        padding: 0;
        padding-bottom: 2rem;
    }

    .page3{
        min-height: 96.5vh;
    }
    .elem{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: #ADA7A7 solid 1px;
        padding: .7rem 1rem;
        overflow: hidden;
        z-index: 6;
    }
    .elem:hover .overlay{
        top: 0;
    }
    .elem h4{
        font-size: 25px;
    }
    .page3 .elem .proj{
        font-size: 15px;
    }
    .proj p{
        color: #ADA7A7;
        font-size: 16px;
        font-weight: 100;
    }
    .fixed-image{
        top: 18%;
    }
    .all-pro{
        padding: 2rem 1rem;
        margin-bottom: 0;
    }
    .page4{
        padding: 0 .5rem;
        padding-left: 2vw;
        margin-bottom: 5rem;
    }
    .box-container{
        width: 100%;
        height: 120vh;
    }
    .text-side{
        width: 40%;
        padding-left: 4rem;
    }
    .text-side .content{
        border-left: #797474 3px solid;
    }
    .text-side .content h2{
        padding-left: 2.5px;
        font-size: 35px;
    }
    .text-side .content h2.active{
        padding-left: 20px;
    }
    .description-box{
        width: 75%;
        font-size: 16px;
        padding: .5rem 0 ;
        margin-top: 15px;
        min-height: 38vh;
    }
    
    .w3{
        font-size: 15px;
        padding: 4rem 0;
    }
    .swiper{
        padding-bottom: 8.5rem;
    }
    .swiper-slide img{
        margin-bottom: 1.5rem;
    }
    .swiper-slide p{
        width: 25vw;
        font-size: 2vh;
    }
    .page5{
        height: 90vh;
    }
    .footer{
        height: 100vh;
        padding: 0;
    }
    .footer .top{
        padding: 2rem 2.8rem;
        margin-top: 8rem;
    }
    .footer .top .left{
        font-size: 20px;
        color: #e7e7e7;
    }
    .footer .top .right{
        width: 45%;
        font-size: 20px;
        color:#ececec; 
        padding: 0;
        padding-bottom: 1.5rem;
    }
    .footer .top input{
        font-size: 15px;
    }
    .footer  .bottom h4{
        height: 11.2rem;
        font-size: 11.2rem;
    }
    .footer  .bottom .links{
        padding-bottom: 4rem;
    }
    .footer  .bottom a{
        font-size: 1.2rem;
        padding: 0 1.8vw;
    }

    .hero-x{
        position: absolute;
        background: linear-gradient(#FE330A);
        filter: blur(30px);
        top: -4%;
        right: -4%;
        width: 80vh;
        height: 70vh;
    }
    .hero-y{
        position: absolute;
        background: linear-gradient(#FE330A);
        filter: blur(30px);
        width: 65vh;
        height: 50vh;
        top: -4%;
        left: -4%;
    }
    .hero-z{
        display: none;    
    }

}