 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
html, body{
    height: 100%;
    width: 100%;
} 
#main{
    /* background-color: #000; */
    position: relative;
    z-index: 10;
}

#page1{
   min-height: 100vh;
   width: 100%;
   background-color:#efeae3;
   position: relative;
   padding: 0 2vw;
}

nav{
    padding: 2vw 0.2vw;
    /* height: 100px; */
    width: 100%;
    /* background-color: beige; */
    display: flex;
    align-items: center;   
    justify-content: space-between;
    z-index: 100;
    position: relative;
}

.nav-part2{
  display: flex;
  align-items: center;
  gap: 1vw;
}
.nav-part2 h4{
    padding: 10px 20px;
    border: 1px solid #8a8a8a89;
    border-radius: 50px;
    font-weight: 600;
    color: black;
    transition: all ease 0.4s;
    position: relative;
    font-size: 18px;
    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.3s;
}
.nav-part2 h4:hover::after{
    bottom: 0;
    border-radius: 0;
}
.nav-part2 h4 a{
    color: #000000bb;
    text-decoration: none;
    position: relative;
    z-index: 9;
}
.nav-part2 h4:hover a{
    color: #fe3f0a; 
}
nav h3{
    display: none;
}
#center{
    height: 65vh;
    width: 100%;
    /* background-color: orange; */
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.502);
    padding-bottom: 2.5vw;
}
.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;
    border-radius: 30px;
    margin-top: 4vw;
    width: 100%;
}

#hero-shape{
    position: absolute;
    width: 38vw;
    height: 32vw;
    /* background-color: #FE320A; */
    /* border-top-left-radius: 50%; */
    /* border-bottom-left-radius: 50%; */
    right: 0;
    top: 70vh;
    /* filter: blur(20px); */
}
#hero1{
    background-color:#FE320A ;
    /* background-color: aqua; */
    height: 100%;
    width: 100%;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
     filter: blur(15px);
     position: absolute;
}
#hero2{
    background-color: linear-gradient(#FE320A,#fe3f0a) ;
    height: 30vw;
    width: 30vw;
    border-radius: 50%;
     position: absolute;
     filter: blur(25px);
     animation-direction: alternate;
     animation-name: anime2;
     animation-duration: 5s;
     animation-timing-function: linear;
     animation-iteration-count: infinite;
}
#hero3{
    background:linear-gradient(#FE320A,#fe530a);
    height: 30vw;
    width: 30vw;
     border-radius: 50%;
     position: absolute;
     animation-direction: alternate;
     animation-name: anime1;
     animation-duration: 5s;
     animation-timing-function: linear;
     animation-iteration-count: infinite;
     filter: blur(30px);
}

@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: 100vh;
    width: 100%;
    background-color: #efeae3;
    padding: 8vw 0vw;
    position: relative;
}
#moving-text{
    overflow-x: auto;
    white-space: nowrap;
}
#moving-text::-webkit-scrollbar{
    display: none;
}
.con{
   /* background-color: lightblue; */
   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: 10vw;
 display: inline-block;
 font-weight: bolder;
}
.gola{
    height:70px;
    width: 70px;
    border-radius: 50%;
    display: inline-block;
    background-color: #FE320A;
    margin: 1vw 2vw;
}

@keyframes move {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}


#page2-left{
    height: 80vh;
    width: 100%;
    /* background-color: #fff; */
    padding: 4.5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}
#page2-left h1{
  font-size: 4vw;
  width: 60%;
  line-height: 4vw;
}

#page2-right{
    width: 30%;
    padding-top: 22vw;
    /* padding-right: 1vw; */
    padding-left: 6vw;
}
#page2-right img{
    width: 100%;
    border-radius: 15px;
}
#page2-right p{
 font-weight: 1;
 /* padding: 2.5vw 2vw; */
 margin-top: 2.5vw;
 font-size: 1.2vw;
}
#page2 #gooey{
 height: 32vw;
 width: 32vw;
 position: absolute;
 border-radius: 50%;
 background: linear-gradient(to top right,#FE320A,#fe530a);
 top: 58%;
 left: 25%;
 filter: blur(20px);
 animation-name: gooey;
 animation-duration: 4s;
 animation-timing-function: ease-in-out;
 animation-iteration-count: infinite;
 animation-direction: alternate;
}
@keyframes gooey {
    from{
         filter: blur(20px);
        transform: translate(10%, -10%) skew(0);
    }
    to{
        filter: blur(30px);
        transform: translate(-10%, 10%) skew(-12deg);
    }
}

#page3{
    height: 100vh;
    width: 100%;
    background-color: #efeae3;
    padding: 4vw 0;
}
.elem{
    height: 125px;
    width: 100%;
    border-bottom: 0.1px solid #38383864;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 2vw;
    overflow: hidden;
}
.elem h2{
    font-size: 3.2vw;
    position: relative;
    z-index: 9;
}
.elem .overlay{
    height: 100%;
    width: 100%;
    background-color: rgb(255, 140, 0);
    position: absolute;
    left: 0;
    top: -100%;
    transition: all ease 0.25s;
}
.elem:hover .overlay{
   top: 0;
}

#fixed-image{
    height: 30vw;
    width: 24vw;
    /* background-color: aquamarine; */
    border-radius: 15px;
    position: fixed;
    z-index: 99;
    left: 50%;
    top: 20%;
    display: none;
    background-size: cover;
    background-position: center;
}
#page4{
height: 70vh;
width: 100%;
background-color: #efeae3;
padding: 10vw 2vw;
}
.swiper {
    width: 100%;
    height: 100%;
  }

.swiper-slide {
    width: 30%;
    border-left: 1px solid #aeadad;
    padding: 0 2vw;
  }
#page5{
    height: 100vh;
    width: 100%;
}
#footer{
    position: fixed;
    color: #fff;
    z-index: 9;
    height: 105vh;
    width: 100%;
    background-color: #000;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    padding: 1vw 3vw;
}
#footer h1{
    font-size: 23vw;
}
#footer-div{
    height: 20vh;
    width: 100%;
    background-color: #fe530a;
}
#footer-bottom{
    border-top: 1px solid #dadada;
    height: 10vh;
    width: 100%;
}
#footer-div h2{
    font-size: 2.8vmax;
}
#footer-bottom h3{
    font-size: 2vmax;
    align-items: flex-start;
    z-index: 99;
}
#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;
         /* position: relative;
         z-index: 100; */
     }
     nav img{
        height: 9vh;
        transition: all ease 0.2s;
     }
     .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 rgba(0, 0, 0, 0.502);
        padding-bottom: 10vw;
        padding: 7vw 5vw;
        flex-direction: column-reverse;
        position: relative;
        z-index: 9;
    }
    .left h3{
        width: 80%;
        font-size: 5.8vw;
        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;
        width: 92%;
        object-fit: cover;
        object-position: center;
        margin-left: 4%;
    }

    #page2{
        min-height: 100vh;
        width: 100%;
        background-color: #efeae3;
        padding: 8vw 0vw;
        position: relative;
    }
    #moving-text{
        overflow-x: auto;
        white-space: nowrap;
    }
    #moving-text::-webkit-scrollbar{
        display: none;
    }
    .con{
       /* background-color: lightblue; */
       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;
     display: inline-block;
     font-weight: bolder;
    }
    .gola{
        height:25px;
        width: 25px;
        border-radius: 50%;
        display: inline-block;
        background-color: #FE320A;
        margin: 2vw 2vw;
    }
    #page2-left{
        height: 90vh;
        width: 100%;
        /* background-color: #fff; */
        padding: 10vw 4.5vw;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        position: relative;
        flex-direction: column;
        z-index: 9;
    }
    #page2-left h1{
      font-size: 7vw;
      width: 100%;
      line-height: 6vw;
      padding-top: 9%;
    }
    
    #page2-right{
        width: 80%;
        padding-left: 6vw;
    }
    #page2-right img{
        width: 100%;
        border-radius: 10px;
    }
    #page2-right p{
     font-weight: 200;
     padding: 2.5vw 0vw;
     margin-top: 2vw;
     font-size: 3.5vw;
     line-height: 1.2;
    }
    #page2 #gooey{
     height: 62vw;
     width: 62vw;
     position: absolute;
     border-radius: 50%;
     background: linear-gradient(to top right,#FE320A,#fe530a);
     top: 58%;
     left: 25%;
     filter: blur(20px);
     animation-name: gooey;
     animation-duration: 6s;
     animation-timing-function: ease-in-out;
     animation-iteration-count: infinite;
     animation-direction: alternate;
    }
    #hero-shape{
        position: absolute;
        width: 82vw;
        height: 76vw;
        right: 0;
        top: 65vh;
    } 
    .elem{
        height: 80px;
        position: relative;
    }
    .elem h2{
        font-size: 5.2vw;
        z-index: 999;
    }
    .elem .overlay{
        background-color: rgb(255, 140, 0);
        position: absolute;
    }
    .elem:hover .overlay{
       top: 0;
    }
    
    #fixed-image{
        height: 60vw;
        width: 50vw;
        border-radius: 15px;
        position: fixed;
        z-index: 99;
        left: 50%;
        top: 40%;
        display: flex;
    }
    #page4{
        height: 80%;
        width: 100%;
        background-color: #efeae3;
        padding: 1vw 0.3vw;
        font-size: 3vw;
        }
        .swiper {
            width: 100%;
          }
        
        .swiper-slide {
            width: 25%;
            border-left: 1px solid #aeadad;
            padding: 0vw 0.1vw;
          }
          #page5{
            height: 50vh;
            width: 100%;
        }
        #footer-div{
            height: 10vh;
            /* padding-bottom: %; */
            width: 100%;
            background-color: #fe530a;
        }
     
}

    #loader{
        height: 100%;
        width: 100%;
        background-color: #000;
        position: fixed;
        z-index: 999;
        top: 0;

       display: flex;
        align-items: center;
        justify-content: center;
    }
    #loader h1{ 
        font-size: 4vw;
        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;
  }
}    