@font-face{
    font-family: sun ;
    src:url(./NeueHaasDisplayMediu.ttf)
}



* {
 margin: 0;
 padding: 0;
box-sizing: border-box;
}
html,body {
height:100%;
width:100%;
}
/* .loader{
    height: 100vh;
    width: 100%;
    background-color: rebeccapurple;
} */

.page1{
    min-height: 100vh;
    width: 100%;
    background-color: #EFEAE3;
    position: relative;
}
nav{
    height: 100px;
    width: 100%;    
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3vw 2vw;
}
.nav-part2{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.nav-part2 h4{
    font-size: 17px;
    padding: 10px 20px;
    border: 1px solid rgba(0, 0, 0, 0.441);
    border-radius: 50px;
    color: rgb(63, 61, 61);
    font-weight: 500;
    position: relative;
    transition: all ease 0.4s;
    overflow: hidden;

    
}
.nav-part2 h4::after{
    content: "";
    height: 100%;
    width: 100%;
    background-color: black;
    position: absolute;
    left: 0;
    bottom: -100%;
    border-radius: 50%;
    transition: all ease 0.4s;
}
.nav-part2 h4:hover::after{
    bottom: 0;
    border-radius: 0;

}
.nav-part2 h4 a{
    text-decoration: none;
    color: rgb(63, 61, 61);
    z-index: 9; 
    position: relative;
}
.nav-part2 h4:hover a{
    color: white;
}

.center{
    height: 65vh;
    width: 100%;
    /* background-color: rebeccapurple; */
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid black;
}
.left{
    width: 35%;
    padding: 30px 30px;
}
.left p{
    font-size: 30px;
    font-family: sun;
}
.right h2{
    font-size: 130px;
    font-family: sun;
    text-transform: uppercase;
    line-height: 4.7vw;
    padding: 30px 30px;
    text-align: right;
}
.page1 video{
    width: 96%;
    margin-left: 30px;
    margin-top: 6vw;
    border-radius: 10px;
    position: relative;
}
.hero{
    height: 35vw;
    width: 50vw;
    border-top-left-radius: 15vw;
    border-bottom-left-radius: 15vw;
    background-color: #FE410F;
    position: absolute;
    top: 40vw;
    filter: blur(25px);
    right: 0;
    animation: anime 4s linear infinite;
    animation-direction: alternate;
   
}
/* .hero1{
    height: 15vw;
    width: 20vw;
    position: absolute;
border-radius: 50%;
    background-color: #FE410F; 
    animation: anime 2s linear infinite;
    animation-direction: alternate; 
    filter: blur(20px);

    
} */
/* .hero2{
    height: 20vw;
    position: absolute;
    width: 20vw;
    border-radius: 50%;
    background-color: #FE410F;  
    animation: anime 2s linear infinite;
    animation-direction: alternate;
    filter: blur(15px);


}*/.hero3{ 
    height: 15vw;
    position: absolute;
    filter: blur(10px);
    width: 10vw;
    border-top-left-radius: 15vw;
    border-bottom-left-radius: 15vw;
    background-color: #FE410F;  
    animation: key 2s linear infinite;
    animation-direction: alternate;
    
}
@keyframes key {
    from{
        transform: translate(-10%,10%);
    }
    to{
        transform: translate(10%,-10%);
    }
}
.page2{
    min-height: 100vh;
    width: 100%;
    background-color:#EFEAE3 ;
    padding-top: 8vw;
    position: relative;

}
.gola{
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background-color: red;
    display: inline-block;
    margin: 1vw 3vw;
}

.moving-text::-webkit-scrollbar{
        display: none;
    }
.moving-text{
    white-space: nowrap;
    overflow-x: auto;
}
.moving-text h1{
    font-size: 9vw;
    font-family: sun;
    display: inline-block;
}
.con{
    white-space: nowrap;
    display: inline-block;
    animation: anime 6000ms linear infinite;
    position: relative;
}
@keyframes anime{
    0%{
        transform: translate(0);
    }
    100%{
        transform: translate(-100% );
    }
}
.page2-bottom{
    height: 80vh;
    width: 100%;
    background-color: #EFEAE3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4vw;
    gap: 90px;
}
.page2-bottom h1{
    font-size: 50px;
    width: 55%;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    z-index: 99;
    
}
.text1{
    padding: 40px 30px;
    width: 40%;
    height: 50%;
    margin-left: 120px;

}
.text1 p{
    width: 65%;
    margin-top: 20px;
}
.text1 img{
    height: 200px;
    border-radius: 30px;
}
.gooye{
    height: 450px;
    width: 450px;
    border-radius: 50%;
    top: 50%;
    left: 25%;
    position: absolute;
    background: linear-gradient( to top,#FE410F,#e25c2b);
    animation: main 3000ms linear infinite;
    filter: blur(25px);
    animation-direction: alternate;
}
@keyframes main {
    from{
        transform: translate(-10%,10%) skew(0deg);
    }
    to{
        transform: translate(10%,-10%) skew(-12deg);
    }
}
.page3{
    height: 100vh;
    width: 100%;
    background-color: #EFEAE3;
    padding: 4vw 2vw;
}
.page3 .elem{
    height: 110px;
    position: relative;
    width: 100%;
    /* background-color: red; */
    display: flex;
    border-top: 1px solid black;
    align-items: center;
    padding: 20px;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}
.elem h1{
    font-size: 50px;
}
#elem2{
    border-bottom: 1px solid black;
}
.elem .overlay{
    height: 100%;
    width: 100%;
    background-color: orange;
    position: absolute;
    left: 0;
    transition: all ease 0.3s;
    top: -100%;
}
.elem:hover .overlay{
    top: 0;
}
.fixd-image{
    height: 30vw;
    width: 23vw;
    background-color: red;
    z-index: 999;
    position: fixed;
    top: 35%;
    left: 55%;
    border-radius: 20px;
    display: none;
    object-fit: cover;
    object-position: center;
}
.page4{
    height: 100vh;
    width: 100%;
    background-color: #0c0c0c;
    display: flex;
    
}
.page4 .left1{
    height: 100vh;
    width: 50%;
    /* background-color: red; */
    padding: 14vw 9vw;
}
.page4 .right1{
    height: 100vh;
    width: 50%;
    background-color: rgb(229, 203, 203);
    position: relative;
}
.left1 h1{
    font-size: 70px;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    
}
.right1 .img1{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    

}

/* .left1 .a:hover .img2{
    scale: 1;
}.left1 .b:hover .img3{
    scale: 1;
}.left1 .c:hover .img4{
    scale: 1;
} */

.right1 .img2{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;   
    opacity: 0;
    

}
.right1 .img3{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    opacity: 0;


}
.right1 .img4{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    opacity: 0;



}


/* .right1 .right2{
    height: 100%;
    width: 100%;
    background-color: blue;
    position: absolute;
}
.right1 .right3{
    height: 100%;
    width: 100%;
    background-color: rgb(32, 167, 111);
    position: absolute;

}
.right1 .right4{
    height: 100%;
    width: 100%;
    background-color: rgb(143, 126, 47);
    position: absolute;

} */


.left1 p{
    width: 80%;
    color: white;
}
.page5{
    height: 60vh;
    width: 100%;
    background-color:#EFEAE3;
}
.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.page6{
    height: 100vh;
    width: 100%;
    
}
.main{
    position: relative;
    z-index: 10;
}
.fotter{
    position: fixed;
    z-index: 9;
    height: 100vh;
    width: 100%;
    bottom: 0;
    color: white;
    background:linear-gradient(red,black);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-family: Arial, Helvetica, sans-serif;
}
.fotter h1{
    font-size: 23vw;
}
.fotter-div{
    height: 150px;
    width: 100%;
    position: absolute;
    top: 80px;
    display: flex;
    gap: 49vw;
    padding: 10px 50px;
    
}
.fotter-div .h2 h1{
    font-size: 5vw;

}
.fot-right p{
    width: 70%; 

}
.fot-right{
    z-index: 99;
}
.fot-right button{
    padding: 10px 100px;
    border-radius: 20px;
    margin-top: 40px;
    background-color: black;
    color: white;
    position: relative;
    
}
.fot-right .red:hover{
    background-color: red;
}

.swiper-slide .nav1 {
    /* height: 100%;
    width: 100%; */
    /* display: flex; */
    padding: 30px 40px;
}
.swiper-slide img{
    /* height: 500px;
    width: 500px;
    padding: 40px 50px; */
}
.swiper-slide .nav1 h1{
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
}
.swiper-slide .nav1 p{
    font-size: 20px;
    margin-top: 20px;
}
.swiper-slide .nav1 button{
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 10px;
    background-color: black;
    color: white;

}
 .swiper-slide .nav1 button:hover{
    background-color: red;
}
.bigger{
    height: 500px;
    width: 500px;
    filter: blur();
    border-radius: 50%;
    background-color: red;
    position: absolute;
    top: -75%;
    animation: aniii 5000ms linear infinite;

    margin-left: 44vw;

}
.bigger2{
    height: 550px;
    width: 550px;
    filter: blur();
    border-radius: 50%;
    background-color: red;
    position: absolute;
    animation: aniii 5000ms linear infinite;

    top: -75%;
    margin-left: 60vw;

}
.bigger3{
    height: 350px;
    width: 350px;
    filter: blur();
    border-radius: 50%;
    background-color: red;
    position: absolute;
    animation: aniii 5000ms linear infinite;

    top: -75%;
    margin-left: 25vw;
}
.bigger4{
    height: 250px;
    width: 250px;
    filter: blur();
    animation: aniii 5000ms linear infinite;

    border-radius: 50%;
    background-color: red;
    position: absolute;
    top: -75%;
    margin-left: 15vw;
}
.bigger5{
    height: 250px;
    width: 250px;
    filter: blur();
    animation: aniii 5000ms linear infinite;

    border-radius: 50%;
    background-color: red;
    position: absolute;
    top: -75%;
    margin-left: 50vw;
}

@keyframes aniii{
    from{
        transform: translate(-10%,10%) skew(0deg);
    }
    to{
        transform: translate(10%,-10%) skew(-15deg);
    }

}


