@font-face {
    font-family: neu;
    src: url(./NeueHaasDisplayMediu.ttf);
}

@font-face {
    font-family: neu;
    font-weight: 100;
    src: url(./NeueHaasDisplayLight.ttf);
}

@font-face {
    font-family: neu;
    font-weight: 200;
    src: url(./NeueHaasDisplayRoman.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: neu;
}

html, body {
    height: 100%;
    width: 100%;
}

#main {
    /* background-color: #000; */
    position: relative;
    z-index: 10;
}

#page1 {
    min-width:100vh;
    width: 100%;
    background-color: #efeae3;
    position: relative;
    padding: 0 2vw ;
}

nav {
    padding: 2vw 0vw;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
    justify-content: space-between;
}

#nav-part2 {
    display: flex;
    align-items: center;
    gap: 1vw;
}

#nav-part2 h4 { 
    padding: 10px 20px;
    border: 1px solid #0000003c;
    border-radius: 50px;
    font-weight: 400;
    color: #000000bb;
    transition: all ease 0.5s;
    position: relative;
    font-size: 17px;
    overflow: hidden;
}

#nav-part2 h4::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: black;
    left: 0;
    bottom: -100%;
    border-radius: 50%;
    transition: all ease 0.5s; /*time */
}

#nav-part2 h4:hover::after { 
    bottom: 0;
    border-radius: 0;
}

#nav-part2 h4 a {
    color: black;
    text-decoration: none;
    position: relative;
    z-index: 9;
}

#nav-part2 h4:hover a {
    color: white;
}

nav h3 {
   display:none ;
}

#center {
    height: 80vh;
    width: 100%;
    /*background-color: orange;*/
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid #0000003c;
    padding-bottom: 9vh;
}

#left h3 {
    width: 25vw;
    font-size: 1.8vw;
    line-height: 2.3vw;
}

#center h1 {
   font-size: 10vw ;
   text-align: right;
   line-height: 8vw;
}

#page1 video  {
   position: relative;
   border-radius:30px;
   margin-top: 8vh;
   width: 100%;
  
}

#hero-shape {
   position: absolute;
   width: 55vw;
   height: 36vw;
   right: 0;
   top: 85vh;
}

#hero-1 {
   background-color: #fe320a;
   height: 100%;
   width: 100%;
   border-top-left-radius: 50%;
   border-bottom-left-radius: 50%;
   filter: blur(20px);
   position: absolute;
}

#hero-2 {
   background: linear-gradient(#fe320a,#fe3f0a);
   height: 30vw;
   width: 30vw;
   border-radius: 50%;
   position: absolute;
   animation-name: anime2;
   animation-duration: 5s;
   animation-timing-function: linear;
   animation-iteration-count: infinite;
   animation-direction: alternate;
   filter: blur(25px);
}

#hero-3 {
   background: linear-gradient(#fe320a,#fe3f0a);
   height: 30vw;
   width: 30vw;
   position:absolute;
   border-radius: 50%;
   filter: blur(25px);
   animation-name: anime1;
   animation-duration: 5s;
   animation-timing-function: linear;
   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%);
   }
}

#page2 {
   min-height: 158vh;
   width: 100%;
   background-color: #efeae3;
   margin-top: 8vw 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: 10s;
   animation-timing-function: linear;
   animation-iteration-count: infinite;
}

#moving-text h1 {
   font-size: 9vw;
   display: inline-block;
   padding-top: 150px;
}

#gola{
   height: 70px;
   width: 70px;
   border-radius: 50%;
   background-color: #fe320a ;
   display: inline-block;
   margin: 1vw 2vw;
}

@keyframes move {
   from {
      transform: translate(0);
   }

   to{
      transform: translate(-100%);
   }
}
 #page2-bottom{
   height: 76vh;
   width: 100%;
   padding: 4vw 6vw;
   padding-left: 6.5vw;
   /*background-color: antiquewhite;*/
   display: flex;
   align-items: center;
   justify-content: space-between;
   position: relative;
   z-index:9 ;
   padding-top: 13vw;
 }
#page2-bottom h1 {
   font-size: 4vw;
   width: 65%;   /* 60% */
   line-height: 4vw;
}
#bottom-part2 {
   width: 19vw;
}
#bottom-part2 img{
   width: 100%;
   border-radius: 15px;
   margin-top: 38vh;
}
#bottom-part2 p {
   font-weight: 200;
   margin-top: 4vw;
   font-size: 1vw;
}

#page2 #circle {
   height: 35vw;
   width: 35vw;
   position: absolute;
   border-radius: 50%;
   background: linear-gradient(to top right,#ff2200,#ee5311);
   top: 55%;
   left: 25%;
   filter: blur(15px);
   animation-name: circle;
   animation-duration: 3s;
   animation-iteration-count: infinite;
   animation-direction: alternate;
   animation-timing-function: ease-in-out;
}
@keyframes circle {
   from {
      filter: blur(20px);
      transform: translate(5%,-5%) skew(0) ;
   }
   to {
      filter: blur(30px);
      transform: translate(-5%,5%) skew(-5deg);
   }
}



#page3 {
    min-height: 100vh;
    width: 100%;
    background-color: #EFEAE3;
    
}

.elem {
    height: 120px;
    width: 100%;
    position: relative;
    border-bottom: 0.5px solid #38383864;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 2vw;
}

.elem h2 {
    font-size: 3vw;
    position: relative;
    z-index: 9;
}

.elem .overlay {
    height: 100%;
    width: 100%;
    background-color:#FF9831;
    position: absolute;
    left: 0;
    top: -100%;
    transition: all ease 0.25s;
}

.elem:hover .overlay {
    top: 0;
}



#fixed-image {
    height: 30vw;
    width: 25vw;
    /* background-color: red; */
    border-radius: 15px;
    position: fixed;
    z-index: 99;
    left: 50%;
    top: 19%;
    display: none;
    background-size: cover;
    background-position: center;
}
#Projects {
   padding: 4vw 2.5vw; 
}
#but {
    display: flex;
}
#but h4 {
    padding: 13px 20px;
    border: 0.5px solid #908f8f;
    border-radius:50px ;
    position: relative;
    transition: all ease 0.4s;
    overflow: hidden;
}

#but h4::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #000;
    bottom: -100%;
    left: 0;
    border-radius: 50%;
    transition: all ease 0.4s;
}
#but h4:hover::after {
    bottom: 0;
    border-radius: 0;
}
#but h4 a {
    text-decoration: none;
    color: #000;
    z-index: 9;
    position: relative;
}
#but h4:hover a {
    color: #fff;
}

#page4 {
    min-height: 216vh;
    width: 100%;
    background-color: #EFEAE3;
    padding: 5vw 2vw;
    margin-bottom: 95px;
}
#black-box {
    height: 110vh;
    margin: 0px 0px;
    background-color: black;
    border-radius: 21px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    align-items: center; 
}
#black-box img {
    top: 0;
    width: 55%;
    height: 100%;
    background-size: cover;
    border-radius: 21px; 
    margin-left: 45.5%; 
    position: absolute;
}
#tab-sec h2{
    font-size: 5vw;
    font-weight: bolder;
    
}
#tabs {
    padding-left: 2vw;
    border-left: 2px solid #504A45;
    position: relative;
}

#tabs h2 a {
    text-decoration:none ;
    
}
#black-box #tab-sec {
    color: #EFEAE3;
    display: flex;
    flex-direction: column;
    padding: 20vh 9vh;
    padding-right:150vh ;
    gap: 5vh;
    padding-top: 30vh;
    padding-left:19vh ;
    font-weight: 200;
}
#desc {
    font-size: 1vw;

}
.swiper {
    width: 100%;
    min-height: 50vh;
    padding-top: 10vh;
    margin-bottom: 50px;
}

.swiper-slide {
    position: relative;
    height: 30vh;
    width: 20%;
    border-left: 1px solid #aeadad;
    padding: 2vw vw;
    margin-right: 69vw;
    margin-top: 150px;
}
.swiper-slide img {
    margin-left: 35px;
}
.swiper-slide p {
    margin-top: 20px;
    margin-left: 35px;
    font-weight: 200;
    font-size:1vw;
    width: 79%;
    
}

#page5 {
    height: 150vh;
    width: 100%;
    /* background-color: #EFEAE3; */
    position: relative;
}

#footerupper {
    display: flex;
    top: 35%;
    align-items: center;
    justify-content: space-between;
}
#footer #upper {
    position: relative;
    bottom: 5vh;
}
#footer h2 {
    font-size: 4.2vh;
    position: relative;
    margin-left: 40px; 
}
#email {
    padding-bottom: 40px;
}
#footer p {
    position: relative;
    font-size: 3vh;
    font-weight: 100;
    padding-right:110px;
    padding-bottom: 30px;
}
#footer h6 {
    position: relative;
    font-size: 2.6vh;
    font-weight: 100;
    color: #d6d1d1;
    border-bottom: 1px solid #d6d1d1;
    padding-bottom:5px ;

}
#footer {
    position: fixed;
    height: 110vh;
    width: 100%;
    background-color: #000;
    color: #fff;
    z-index: 9;
    bottom: 0;
    display: flex;
    /* align-items: flex-end; */
    justify-content: flex-end;
    flex-direction: column;
    padding: 1vw 3vw;
}
#square-1 {
   position: absolute; 
   background-color: #fe330a;
   top: -50%;
   left: -20%;
   width: 90%;
   height: 90%;
   filter: blur(50px);
   animation-name: square-1;
   animation-duration: 3s;
   animation-timing-function: linear;
   animation-iteration-count: infinite;
   animation-direction: alternate;
}
#square-2 {
    position: absolute;
    background-color: #fe330a;
    filter: blur(50px);
    right: -27%;
    top: -27%;
    width: 70%;
    height: 90%;
    animation-name: square-2;
    animation-duration: 4s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
#footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    padding-top: 20px;
    color: #d6d1d1;
    font-weight: 100;
}

@keyframes square-1 {
    from {
        transform: rotate(-10drg);
    }
    to {
        transform: rotate(-20deg);
    }
}

@keyframes square-2 {
    from {
        transform: rotate(20deg);
    }
    to {
        transform: rotate(45deg);
    }
}

#footer h1 {
    font-size:350px;
    width: 100%;
    padding-top: 40px;
    position: relative;
    height: 52%;
    
}



#footer-bottom {
    border-top: 0.3px solid #595757;
    height: 9vh;
    width: 100%;
    
}

#full-scr {
    height: 100vh;
    width: 100%;
    background-color: #00000070;
    position: fixed;
    z-index: 99;
    top: -100%;
    transition: all ease 0.5s;
}

#full-div1 {
    height: 50%;
    width: 100%;
    background-color: #EFEAE3;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;

}

@media (max-width:600px) {

    #page1 {
        min-height: 100vh;
        width: 100vw;
        padding: 0 0vw;
    }

    nav {
        padding: 8vw 5vw;
        background-color: #EFEAE3;
        /* padding: 0 5vw; */
    }

    nav img {
        transition: all ease 0.2s;
        height: 9vh;
    }

    #nav-part2 {
        display: none;
    }

    nav h3 {
        display: block;
        padding: 3vw 5vw;
        border: 1px solid #ababab;
        border-radius: 50px;
        font-size: 4vw;
        font-weight: 200;
        padding-left: 10vw;
    }

    #center {
        height: 62vh;
        width: 100%;
        /* background-color: orange; */
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        border-bottom: 1px solid #0000003c;
        padding: 7vw 5vw;
        padding-bottom: 10vw;
        flex-direction: column-reverse;
        position: relative;
        z-index: 9;
    }

    #left h3 {
        width: 80%;
        font-size: 5.5vw;
        line-height: 6vw;
    }

    #center h1 {
        font-size: 17vw;
        text-align: right;
        line-height: 15vw;
    }

    #page1 video {
        position: relative;
        border-radius: 15px;
        margin-top: 4vw;
        height: 70vh;
        object-fit: cover;
        object-position: center;
        width: 92%;
        margin-left: 4%;
    }

    #page2 {
        min-height: 100vh;
        width: 100%;
        background-color: #EFEAE3;
        padding: 8vw 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: 10s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
    }

    #moving-text h1 {
        font-size: 15vw;
        /* background-color: lightblue; */
        display: inline-block;
    }

    #gola {
        height: 25px;
        width: 25px;
        border-radius: 50%;
        display: inline-block;
        background-color: #FE320A;
        margin: 2vw 2vw;
    }

    #page2-bottom {
        height: 90vh;
        width: 100%;
        /* background-color: aliceblue; */
        padding: 10vw 4vw;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        position: relative;
        flex-direction: column;
        z-index: 9;
    }

    #page2-bottom h1 {
        font-size: 8.2vw;
        width: 100%;
        line-height: 9vw;
    }

    #bottom-part2 {
        width: 70%;
        /* background-color: aqua; */
    }

    #bottom-part2 img {
        width: 100%;
        border-radius: 10px;
    }

    #bottom-part2 p {
        font-weight: 200;
        margin-top: 2vw;
        font-size: 3vw;
    }

    #page2 #gooey {
        height: 62vw;
        width: 62vw;
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(to top right, #ff2d03, #ff5c0b);
        /* background: linear-gradient(to top right,red,blue); */


        top: 58%;
        left: 25%;
        filter: blur(20px);
        animation-name: gooey;
        animation-duration: 6s;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        animation-timing-function: ease-in-out;

    }


}

#loader{
    height: 100%;
    width: 100%;
    background-color: #000;
    position: fixed;
    z-index: 999;
    top: 0;
    transition: all ease 0.7s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loader h1{
    font-size: 6vw;
    color: transparent;
    background: linear-gradient(to right,orange,orangered);
    -webkit-background-clip : text;
    position: absolute;
    opacity: 0;
    animation-name: load;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-timing-function: linear;
}
#loader h1:nth-child(2){
    animation-delay: 2s;
}
#loader h1:nth-child(3){
    animation-delay: 3s;
}

@keyframes load {
    0%{
        opacity: 0;
    }
    10%{
        opacity: 1;
    }
    90%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

@media (max-width:600px) {
    #loader h1{
        font-size: 9vw;
      
    }
}