@font-face {
    font-family: neu;
    src: url(NeueHaasDisplayMediu.ttf);
}
#loader{
    height: 100%;
    width: 100%;
    background-color: black;
    position: fixed;
    top: 0%;
    z-index: 9999999999;
    transition: all ease 0.6s;
    display: flex;
    align-items: center;
    justify-content: center;
}
#loader h1{
position: absolute;
color:transparent;
font-size: 5vw;
background: linear-gradient(to right, orange,orangered);
-webkit-background-clip: text;
text-transform: uppercase;
opacity: 0;
animation-name:disapper;
animation-delay: 1s;
animation-duration: 1s;
transition: all ease 0.2s;
}
#loader h1:nth-child(2){
animation-delay: 2s;
}
#loader h1:nth-child(3){
animation-delay: 3s;
}
@keyframes disapper {
    0%{
        opacity: 0;
    }
    10%{
        opacity: 1;
    }
    90%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
#menu{
display: none;
}
*{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
    font-family:'neu';
}
html,body{
    height: 100%;
    width: 100%;
}
#main{
    /* background-color: black; */
    position: relative;
    z-index: 10;
}
.page1{
    min-height: 100vh;
    background-color: #EFEAE3;
    position: relative;
}
nav{
    padding: 2vw 1.5vw;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav .rightside {
    height: 4.1vw;
}
nav .rightside img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
nav .leftside{
    display: flex;
    gap: 1vw;
}
nav .leftside .links{
    font-size: 1.3vw;
    border: 1px solid rgba(0, 0, 0, 0.242);
    color:rgba(0, 0, 0, 0.689);
    border-radius: 20px;
    padding: 8px 15px;
    font-weight: 400;
}
nav .leftside .links:hover{
    color: #EFEAE3;
    background-color: #000;
    transition: all ease 0.2s;
    cursor: pointer;
}
.middlepart{
    position: relative;
    padding:5vw 2.5vw 2vw 2.5vw;
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid rgba(0, 0, 0, 0.764);
    
}
.middlepart #para{
    position: relative;
    font-size: 1.8vw;
    font-weight: 700;
    margin-right: 35%;

}
.middlepart #heading{
    position: relative;
    line-height: 7.8vw;
    text-align: end;
    font-size: 9.2vw;
    font-weight: 700;
}
.page1 .vid{
    position: relative;
    /* margin: 0vw 2vw 3vw 0vw; */
    height: 100vh;
    border-radius: 25px;
    overflow: hidden;
    background-color: black;
}
.page1 .vid video{
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 9999;
    overflow: hidden;
}
#shape1{
    width: 40vw;
    height: 35vw;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    background-color: orangered;
    position: absolute;
    top: 70vh;
    right: 0;
    filter: blur(15px);
}
#shape2{
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    background: linear-gradient(orangered,rgba(255, 85, 0, 0.748));
    position: absolute;
    top: 60vh;
    right: 0;
    filter: blur(15px);
    animation-name: move2;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

#shape3{
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    background: linear-gradient(orangered,rgba(255, 85, 0, 0.748));
    position: absolute;
    top: 60vh;
    right: 0;
    filter: blur(15px);
    animation-name: move;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}
@keyframes move {
    from{
        transform:translate(3%,-9%);
    }
    to{
        transform:transalte(0%,0%);
    }
}
@keyframes move2 {
    from{
        transform:translate(-50%,15%);
    }
    to{
        transform:transalte(0%,0%);
    }
}
#page2{
    background-color: #EFEAE3;
    position: relative;
    min-height: 100vh;
    width: 100%;
}
#movingtext{
    padding-top: 4vw;
    overflow-x: auto;
    white-space: nowrap;
}
#movingtext::-webkit-scrollbar{
    display: none;
}
.textholder{
    transition: all 0.5s ease-in-out;
    animation-name: moving;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    display: inline-block;
    white-space: nowrap;
}
.textholder h1{
    margin-bottom: 10px;
    font-size: 8vw;
    display: inline-block;
}
#movingtext .textholder .circle{
    background-color: orangered;
    margin: 1vw 1vw;
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    display: inline-block;
}
@keyframes moving {
    from{
        transform: translateX(0%);
    }
    to{
        transform: translateX(-100%);
    }
}
.page2-bottom{
    padding: 4vw 2.5vw 0vw 2.5vw;
    height: 80vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.page2-bottom .parapart{
    padding: 2vw 1vw;
    width: 60%;
    font-size: 1.9vw;
    line-height: 4vw;
}
.page2-bottom .imagepart {
    padding: 1vw 2vw;
    width: 28%;
}
.page2-bottom .imagepart img{
    height: 12vw;
    margin-bottom: 2.5vw;
    border-radius: 20px;
}
.page2-bottom .imagepart p{
    font-weight: lighter;
    padding-right: 3.4vw;
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.559);
}
.oval{
    width: 32vw;
    height: 32vw;
    border-radius: 50%;
    background: linear-gradient(to top right, rgb(255, 88, 28),rgba(255, 68, 0, 0.825));
    filter: blur(20PX);
    position: absolute;
    top: 60%;
    left: 25%;
    animation-name: ovalmove;
    animation-duration: 7s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
@keyframes ovalmove {
    from{
        transform: translate(-10%,10%) skew(-11deg); 
     }
    to{
        transform: translate(10%,-10%)(11deg);
    }
}








#page3{
    background-color: #EFEAE3;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}
.elem{
    overflow: hidden;
    width: 100%;
    border-bottom: 0.1vw solid rgba(0, 0, 0, 0.564);
    height: 8.7vw;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 99;
    padding: 0vw 3vw;
}
.elem h2{
    position: relative;
font-size: 3vw;
z-index: 99;
}
.ovarlay{
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: -100%;
    background-color: #FFA500;
}
.elem:hover{
    .ovarlay{
        top: 0;
        transition: all ease-in-out 0.3s;
    }

}
.imagecontainer{
    background-size: cover;
    background-position: center;
    display: none;
    z-index: 999999;
    position: fixed;
    height: 30vw;
    width: 25vw;
    top: 23%;
    left: 50%;
    border-radius: 20px;
}
#page4{
    padding: 10vh 2vw;
    min-height: 60vh;
    width: 100%;
    background-color: #EFEAE3;
}
#capsul{
    padding: 1.4vw 3.5vw;
    border: 1px solid black;
    color:#000;
    width: fit-content;
    text-transform: capitalize;
    border-radius: 30px;
    margin-bottom: 10vh;
    /* display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
} */}
 #capsul:hover{
    background-color: #000;
    color: white;
    transition: all ease 0.4s;
    cursor: pointer;
 }
.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    padding: 2vw 13vw 2vw 2vw;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    border-left: 1px solid rgba(128, 128, 128, 0.392);
    width: 30%;
  }
  .swiper-slide p{
    font-weight: lighter;
    margin-top: 1vw;
    text-align: left;
    width: 100%;
    font-size: 1.2vw;
    font-weight: 100;
    color: rgba(0, 0, 0, 0.791);
  } 
  .swiper-slide img{
  } 
#page5{
    height: 100vh;
    width: 100%;
    position: relative;
    background-color:transparent;
}
#footer{
z-index: 9;
height: 100vh;
width: 100%;
background-color: black;
position: fixed;
bottom: 0;
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: flex-end;
}
#footer h1{
    border-bottom: 1px solid white;
    padding-bottom: 0%;
    text-transform: capitalize;
    margin-bottom: 3vw;
    width: fit-content;
    z-index: 9;
    font-size: 23vw;
    color: #fff;
    
} 
@media (max-width: 600px) {

.elem{
    padding: 10vw;
    font-size: 10vh;
}
.elem h2{
    font-size: 5vw;

}
#capsul{
            margin: 0 5vw;
}
    #page4{
        padding: 10vh 2vw;
        min-height: 60vh;
        width: 100%;
    
    }
    .swiper {
        width: 100%;
        height: 40vh;
        display: flex;
        align-items: center;
        background: transparent;
        justify-content: center;
        position: relative;
      }
    
      .swiper-slide {
        width: max-content;
        background-color: transparent;
        font-size: 9vw;
        padding: 10px 20px;
        margin: 30px;
       
        
      }
      .swiper-slide p{
       
       font-size: 3vw;
       min-width: fit-content;
      } 
      .swiper-slide img{
        width:40vw;
      } 
    page1{
        padding: 10vh 5vw;
        min-height: 100vh;
        background-color: #EFEAE3;
        position: relative;
    }
    nav{
        position: relative;
        z-index: 1000000;
        padding: 5vw;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    nav .rightside {
        height: 9vh;
    }
    nav .rightside img{
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: all ease 0.4s;
    }
    nav .leftside{
        display: flex;
        gap: 1vw;
    }
    nav .leftside .links{
        font-size: 1.3vw;
        border: 1px solid rgba(0, 0, 0, 0.242);
        color:rgba(0, 0, 0, 0.689);
        border-radius: 20px;
        padding: 8px 15px;
        font-weight: 400;
        display: none;
    }
    nav .leftside #menu{
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: 1px solid rgba(128, 128, 128, 0.403);
        border-radius: 30px;
        padding: 3vw 6vw;
        font-weight: lighter;
        gap: 2vw;
    }
.menu-bar{
position: fixed;
height: 100vh;
width: 100%;
background-color: rgba(0, 0, 0, 0.469);
z-index: 9999;
top: -100%;
transition: all ease 0.2s;
}
.halfmenu{
    width: 100%;
    height: 50%;
    background-color: #EFEAE3;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    display: none;
    
}
.middlepart{
    position: relative;
    padding:10vw 5vw;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    border-bottom: 1px solid rgba(0, 0, 0, 0.764);
    z-index: 9;
    
}
.middlepart #para{
    position: relative;
    font-size: 5.5vw;
    font-weight: 700;
    margin-right: 25%;
    margin-top: 15vw;

}
.middlepart #heading{
    position: relative;
    line-height: 14vw;
    text-align: end;
    font-size: 17vw;
    font-weight: 700;
}
.page1 .vid{
    position: relative;
    margin: 3vw 2vw 3vw 2vw;
    height: 70vh;
    border-radius: 25px;
    overflow: hidden;
    background-color: black;
}
.page1 .vid video{
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 9999;
    overflow: hidden;
}
#shape1{
    width: 80vw;
    height: 70vw;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    background-color: orangered;
    position: absolute;
    top: 70vh;
    right: 0;
    filter: blur(15px);
}
#shape2{
    width: 70vwvw;
    height: 50vw;
    border-radius: 50%;
    background: linear-gradient(orangered,rgba(255, 85, 0, 0.748));
    position: absolute;
    top: 60vh;
    right: 0;
    filter: blur(15px);
    animation-name: move2;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

#shape3{
    width: 70vw;
    height: 50vw;
    border-radius: 50%;
    background: linear-gradient(orangered,rgba(255, 85, 0, 0.748));
    position: absolute;
    top: 60vh;
    right: 0;
    filter: blur(15px);
    animation-name: move;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}



/* page 2 */
#page2{
    background-color: #EFEAE3;
    /* background-color: #FFA500; */
    position: relative;
    min-height: 100vh;
    width: 100%;
}
#movingtext{
    padding-top: 8vw;
}
.textholder h1{
    font-size: 15vw;
    display: inline-block;
}
#movingtext .textholder .circle{
    margin: 2vw 2vw;
    width: 7vw;
    height: 7vw;
    
}
.page2-bottom{
    padding: 4vw;
    min-height: 80vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
}

.page2-bottom .parapart{
    padding: 3vw 2vw;
    width: 100%;
    font-size: 4vw;
    line-height: 1;
    margin-bottom: 0%;
}
.page2-bottom .imagepart {
    padding: 0vw 2vw;
    height: 50%;
    width: 80%;
}
.page2-bottom .imagepart img{
    margin-top: 10px;
    height: 100%;
    width: 100%;
    margin-bottom: 2.5vw;
    border-radius: 15px;
}
.page2-bottom .imagepart {
    padding-top: 5vw;
    z-index: 10;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.page2-bottom .imagepart p{
    width: 100%;
    font-weight: lighter;
    padding-right: 3.4vw;
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.559);
    font-size: 10px;
}
.oval{
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: linear-gradient(to top right, rgb(250, 68, 2),rgba(255, 68, 0, 0.948));
    filter: blur(20PX);
    position: absolute;
    top: 50%;
    left: 30%;
    animation-name: ovalmove;
    animation-duration: 7s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    z-index: 8;
}
}
.imagecontainer {
    display: none;
    transition: opacity 0.3s ease-in-out;
}
.imagecontainer.show {
    display: block;
    opacity: 1;
}

.menu-bar {
    top: -100%;
    transition: top 0.3s ease-in-out;
}
.menu-bar.open {
    top: 0;
}

#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    transition: top 0.5s ease-in-out;
}
#loader.hide {
    top: -100%;
}
#redcircle1{
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    background-color: #23fde4;
    position: absolute;
    gap: 5vw;
    top: 10%;
    right: 0%;
    filter: blur(15px);
    animation-name: ovalanim;
    animation-duration: 7s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
#redcircle2{
    width: 50vw;
    height: 30vw;
    border-radius: 50%;
    background-color:#2efd23;
    position: absolute;
    gap: 5vw;
    top: 10%;
    left: 30%;
    filter: blur(15px);
    animation-name: secondoval;
    animation-duration: 7s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
#redcircle3{
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    background-color:#FD5E23;
    position: absolute;
    gap: 5vw;
    top: 10%;
    right: 0%;
    filter: blur(15px);
    animation-name:thirdoval;
    animation-duration: 7s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

/* @keyframes ovalanim {
    0%{
        left:0%
    }
    100%{
        left:10%
    }
}
@keyframes secondoval {
    0%{
        left: 30%;
    }
    100%{
        left: 40%;
    }
}
@keyframes thirdoval {
    0%{
        right: 10%;
    }
    100%{
        right: 0%;
    }
} */

.halfmenu{
    display: none;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
}
.halfmenu h2{
    font-size: 10vw;
    margin-bottom: 5px;
    background-color: #FFA500;
    padding: 1vw 5vw;
    border-radius: 30px;
    margin-top: 10px;
    color:black;
}