@font-face {
    font-family:font ;
    src: url(./NeueHaasDisplayMediu.ttf);
}
@font-face {
    font-family:light ;
    src: url(./NeueHaasDisplayLight.ttf);
}
@font-face {
    font-family:roman ;
    src: url(./NeueHaasDisplayRoman.ttf);
}

*{
     margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: font;
}
html,body{
    width:100%;
    height:100%;
}
body::-webkit-scrollbar{
    display:block;
    width:4px;
    background-color: transparent;
} 
body::-webkit-scrollbar-thumb{
    background-color: #575452df;
    border-radius: 50px;
}
.main{
    position: relative;
    z-index: 10;
}
.page1{
    min-height: 100vh;
    width: 100%;
    background-color:#Efeae3;
    position: relative;
    padding:0 2vw;
}
nav{
    padding:3vw 3vw;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 100;
}
nav h3{
    display:none
}
.navmenu{
    display:flex;
    align-items: center;
    gap:2vw;
}
.navmenu h5{
    padding:10px 20px;
    border:1px solid #00000095;
    border-radius: 50px;
    font-weight: 700;
    color: #000000bb;
    font-size: 18px;
    position: relative;
    transition: all ease 0.4s;
    overflow: hidden;
}

.navmenu h5::after{
    content:"";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #000;
    left:0;
    bottom:-100%;
    border-radius: 50%;
    transition: all ease 0.4s;
}
.navmenu h5:hover::after{
    bottom:0;
    border-radius: 0;
}
.navmenu h5 a{
    color:#000000bb;
    text-decoration: none;
    position: relative;
    z-index:9;
}
.navmenu h5:hover a{
    color:#fff;
}
.center{
    height:75vh;
    width:100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid #000000bb;
    padding-bottom: 2vw;
}
.left p{
    width: 25vw;
    font-size: 1.8vw;
    line-height: 2vw;
}
.right h1{
    font-size: 9vw;
    line-height: 8vw;
    text-align: right;
}
.page1 video{
    position: relative;
    width: 100%;
    border-radius:20px;
    margin-top: 3vw;
}
.shape{
    position:absolute;
    width: 46vw;
    height: 36vw;
    right:0;
    top:88vh;
}
.shape1{
    position:absolute;
    height: 100%;
    width: 100%;
    background-color:#fe320a;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    filter: blur(10px);
}
.shape2{
    position:absolute;
    height: 30vw;
    width: 30vw;
    background:linear-gradient(#fe320a,#fc2e05);
    border-radius: 50%;
    filter: blur(30px);
    animation-name: anime2;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}
.shape3{
    position:absolute;
    height: 30vw;
    width: 30vw;
    background:linear-gradient(#fe320a,#fc2e05);
    border-radius: 50%;
    filter: blur(25px);
    animation-name: anime1;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}
@keyframes anime1{
    from{
        transform: translate(50%,-4%);
    }
    to{
        transform: translate(0%,10%);
    }
}
@keyframes anime2{
    from{
        transform: translate(5%,-5%);
    }
    to{
        transform: translate(-20%,20%);
    }
}

.page2{
    min-height: 100vh;
    width: 100%;
    padding: 8vw 0;
    position: relative;
    background-color: #EFEAE3;
}
.scroll{
    white-space: nowrap;
    overflow-x: auto;
}
.scroll::-webkit-scrollbar{
    display: none;
}
.scrolltext{
    white-space: nowrap;
    display: inline-block;
    animation-name: move;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.scroll h1{
   font-size: 8vw;
   text-transform: uppercase;
   font-weight: 700;
   display: inline-block;
}
.dot{
    margin: .8vw 2vw;
    width:60px;
    height:60px;
    border-radius: 50%;
    background-color:#fe320a;
    display: inline-block;
}
@keyframes move {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}

.page2foot{
    height: 80vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:3vw;
    position: relative;
    z-index: 9;
}
.page2foot h1{
    font-size: 3.5vw;
    width: 50%;
    line-height: 3.6vw;
}
.page2img{
    width:20%
}
.page2img img{
    width: 100%;
    border-radius: 15px;
}
.page2img p{
    font-weight: 200;
    font-family: roman;
    margin-top: 2vw;
    font-size: 1vw;
}
.page2 .page2bg{
    height: 30vw;
    width: 30vw;
    position: absolute;
    background:linear-gradient(to top right,#fe320a,#e96500);
    border-radius: 50%;
    filter: blur(20px);
    top: 59%;
    left:20%;
    animation-name: bg;
    animation-duration:4s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;

}
@keyframes bg {
    form{
        filter: blur(20px);
        transform: translate(10%,-10%) skew(0);
    }
    to{
        filter: blur(30px);
        transform: translate(-10%,10%) skew(-10deg);
    }
}


.page3{
   min-height: 100vh;
    width: 100%;
    padding:4vw 0;
    background-color: #EFEAE3;
}
.page3hover{
    height: 150px;
    width: 100%;
    border-bottom: 1px solid #000;
    position: relative;
    display: flex;
    align-items: center;
    padding:0 2vw;
    overflow: hidden;
}
.page3hover h1{
    text-transform: uppercase;
    font-size: 3vw;
    z-index: 9;
}
.overlay{
    height: 100%;
    width: 100%;
    background-color:#FF9831;
    position: absolute;
    left: 0;
    top:-100%;
    transition: all ease 0.2s;
}
.page3hover:hover .overlay{
    top:0
}
.page3div{
}

.fixedimage{
    height: 30vw;
    width: 23vw;
    border-radius: 15px;
    position:fixed;
    z-index: 99;
    left:52%;
    top: 23%;
    display: none;
    background-size:cover;
    background-position: center;
}
.page4{
    min-height: 150vh;
    width:100%;
    background-color: #EFEAE3;
    padding: 6vw 0;
}
#black-box{
    height: 110vh;
    margin: 0vw 2vw;
    background-color: black;
    border-radius: 21px;
    display: flex;
    align-items: center;
}
#black-box img{
    width: 60%;
    height: 100%;
    background-size: cover;
    border-radius: 21px;
}

#tab-sec h2{
    font-family: roman;
    font-size: 4vw;
    font-weight: bolder;
    position: relative;
    cursor: pointer;
    color: #504A45;
}
#tabs{
    position: relative;
    border-left: 2px solid #504A45;
    padding-left: 2vw;
}
#tabs h2 a{
    position: relative;
    text-decoration: none;
}

#Design{
    right: 2vw;
}
#design{
    color: #EFEAE3;
}
#black-box #tab-sec{
    color: #EFEAE3;
    display: flex;
    flex-direction: column;
    padding: 0 9vw;
    gap: 14px;
}


.page5{
    min-height: 70vh;
    width: 100%;
    background-color:#EFEAE3;
    padding:8vw 2vw;
}
.swiper {
    width: 100%;
    height: 100%;
  }
  .swiper-wrapper{
    cursor: grabbing;
  }

  .swiper-slide {
    width: 30%;
    text-align: left;
    border-left: 1px solid #a39e9783;
    padding: 0 2.5vw;
    margin-right :0!important;
  }
  .swiper-slide p{
    font-size: 1.2vw;
    font-family: roman;
    width:75%;
    padding-top:1vw;
    font-weight: 400;
  }



.page6{
    height: 105vh;
    width: 100%;
}
.sundown{
    position: relative;
    height: 105vh;
    width: 100%;
    position: fixed;
    z-index: 9;
    bottom:0;
    background-color: #000;
    display: flex;
    justify-content:flex-end;
    flex-direction: column;
    padding:1vw 2vw;
}
.sundown h1{
    font-size: 23vw;
    color:#EFEAE3;
    z-index: 10;
}
.footer{
    z-index: 10;
    height: 20vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding:0 5vw;


}
.ftxt1{
    color:#EFEAE3;
    gap:1vh
}
.ftxt1 h2{
    font-size: 2vw;
}
.ftxt2{
    color:#EFEAE3;
    width:30%
}
.ftxt2 p{
    font-size: 1.5vw;
    font-family:light;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2.5vw;
}
.ftxt2 h6 {
    font-family:light;
    font-size: 1.5vw;
    padding-bottom: 0.7vw;
    border-bottom: 1px solid #d3cdc1df;
    color: #d3cdc1df;
    font-weight: 200;
}

.footer2{
    border-top: 1px solid #dadada97;
    height: 7vh;
    width: 100%;
    padding: 1vw 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer2 h5{
    font-size: 1.1vw;
    font-weight: 200;
    color: #d3cdc1df; ;
}



.sundown #shape1{
    position: absolute;
    background-color: #fe330a;
    filter: blur(50px);
    top: -50%;
    left: -20%;
    width: 90%;
    height: 90%;
    animation-name: shape1;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
.sundown #shape2{
    position: absolute;
    background-color: #fe330a;
    filter: blur(50px);
    right: -27%;
    top: -27%;
    width: 70%;
    height: 90%;
    animation-name: shape2;
    animation-duration: 4s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
@keyframes shape1 {
    from{
        transform: rotate(-10deg);
    }
    to{
        transform: rotate(-20deg);
    }
}
@keyframes shape2 {
    from{
        transform: rotate(30deg);
    }
    to{
        transform: rotate(45deg);
    }
}


.fullmenu{
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.742);
    position: fixed;
    z-index: 99;
    top:-100%;
    transition: all ease 0.5s;
}
.fullmenu1{
    height: 50%;
    width: 100%;
    background-color:#EFEAE3;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;

}

.loader{
    width: 100%;
    height: 100%;background-color: #000;
    position: fixed;
    z-index: 999;
    top:0;
    transition: all linear 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader h1{
    color:transparent;
    background:linear-gradient(to right,orange,orangered);
    text-transform: uppercase;
    font-size: 5vw;
    font-weight: 800;
    letter-spacing: 1px;
    -webkit-background-clip: text;
    position: absolute;
    opacity: 0;
    animation-name: load;
    animation-duration: 1s;
    animation-delay: .5s;
    animation-timing-function: linear;
}
.loader h1:nth-child(2){
    animation-delay: 1.5s;
}
.loader h1:nth-child(3){
    animation-delay: 2.5s;
}

@keyframes load {
    0%{
        opacity:0;
    }
    10%{
        opacity:1;
    }
    90%{
        opacity:1;
    }
    100%{
        opacity:0;
    }
    
}


@media (max-width:600px) {
    .menu{
        overflow: hidden;
    }
    .fullmenu1{
        justify-content: flex-end;
        text-align: right;
        display: flex;
        flex-direction: column;
        padding:5vw;
    }
    .fullmenu1 h1{
        color: #000;
        font-size: 15vw;
    }
    .page1{
        min-height: 100vh;
        width: 100%;
        padding:0 0vw;
    }
    nav{
        padding:8vw 0vw;
        width: 100%;
        background-color: #EFEAE3;
        padding:5vw 5vw;
    }
    .navmenu{
        display: none;
    }
    nav img{
        height: 8vh;
        transition: all ease 0.2s;
    }
    nav h3{
        display: block;
        padding:3vw 5vw;
        border:1px solid #00000099;
        border-radius: 40px;
        font-family: roman;
        font-weight: 400;
        font-size: 4vw;
    }

    .center{
        height:55vh;
        width:100%;
        display: flex;
        padding-bottom: 10vw;
        flex-direction: column-reverse;
        padding : 8vw 5vw;
        position: relative;
        z-index: 9;

    }
    .left p{
        width: 86%;
        font-size: 5.5vw;
        line-height: 1;
    }
    .right h1{
        font-size: 16vw;
        line-height: 1.1;
        text-align: right;
    }
    .page1 video{
        position: relative;
        width: 92%;
        margin-left: 4%;
        border-radius:15px;
        margin-top: 3vw;
        height: 50vh;
        object-fit: cover;
        object-position: center;
    }
    .shape{
        position:absolute;
        width: 62vw;
        height: 65vw;
        right:0;
        top:55vh;
    }

    
.page2{
    min-height: 70vh;
    width: 100%;
    padding: 8vw 0;
    position: relative;
    background-color: #EFEAE3;
}
.scroll{
    white-space: nowrap;
    overflow-x: auto;
}
.scroll::-webkit-scrollbar{
    display: none;
}
.scrolltext{
    white-space: nowrap;
    display: inline-block;
    animation-name: move;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.scroll h1{
   font-size: 14vw;
   font-weight: 700;
   display: inline-block;
}
.dot{
    margin: 2vw 2vw;
    width:25px;
    height:25px;
    border-radius: 50%;
    background-color:#fe320a;
    display: inline-block;
}

.page2foot{
    height: 80vh;
    width: 100%;
    display: flex;
    align-items:flex-start;
    justify-content: space-between;
    padding:10vw 4vw;
    position: relative;
    flex-direction: column;
    z-index: 9;
}
.page2foot h1{
    font-family: roman;
    font-size: 7vw;
    width: 100%;
    line-height: 7vw;
}
.page2img{
    width:75%
}
.page2img img{
    width: 100%;
    border-radius: 10px;
}
.page2img p{
    font-weight: 200;
    font-family: light;
    margin-top: 2vw;
    font-size: 4vw;
}
.page2 .page2bg{
    height: 62vw;
    width: 62vw;
    position: absolute;
    background:linear-gradient(to top right,#fe320a,#e96500);
    border-radius: 50%;
    filter: blur(20px);
    top: 25%;
    left:40%;
    animation-name: bg;
    animation-duration:4s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;

}


.page3{
    min-height: 100vh;
     width: 100%;
     padding:4vw 0;
     background-color: #EFEAE3;
 }
 .page3hover{
     height: 14vh;
     
 }
 .page3hover h1{
     font-size: 8vw;
 }
 .overlay{
     height: 100%;
     width: 100%;
     background-color:#FF9831;
     position: absolute;
     left: 0;
     top:-100%;
     transition: all ease 0.2s;
 }
 .page3hover:hover .overlay{
     top:0
 }
 .page3div{
 }
 
 .fixedimage{
     height: 60vw;
     width: 36vw;
     left:28%;
     top: 29%;
 }
 .page4{
     min-height: 100vh;
     width:100%;
     background-color: #EFEAE3;
     padding: 6vw 0;
 }
 #black-box{
     height: 110vh;
     margin: 0vw 5vw;
     background-color: black;
     border-radius: 21px;
     display: flex;
     align-items: center;
     flex-direction: column;
 }
 #black-box img{
     width: 100%;
     height: 100%;
     background-size: cover;
     border-radius: 21px;
 }
 
 #tab-sec h2{
     font-size: 10vw;
 }
 #tabs{
     position: relative;
     border-left: 2px solid #504A45;
     padding-left: 5vw;
 }
 #tabs h2 a{
     position: relative;
     text-decoration: none;
 }
 
 #Design{
     right: 4vw;
 }
 #black-box #tab-sec{
     color: #fff;
     padding: 10vw 9vw;
 }
 #disc{
    line-height: 1.4;
    font-family: 'light';
    font-size: 3.6vw;
}


.page5{
    min-height: 40vh;
    width: 100%;
    background-color:#EFEAE3;
    padding:8vw 2vw;
}
.swiper {
    width: 100%;
    height: 100%;
  }
  .swiper-wrapper{
    cursor: grabbing;
  }

  .swiper-slide {
    width: 70%;
    text-align: left;
    border-left: 1px solid #a39e9783;
    padding: 0 5vw;
    margin-right :0!important;
  }
  .swiper-slide p{
    font-size: 4vw;
    font-family: roman;
    width:100%;
    padding-top:3vw;
    font-weight: 300;
    line-height: 1.3;
  }
.page6{
    height: 80vh;
    min-height: 60vh;
    width: 100%;
}

.sundown{
    height: 82vh;
}
.sundown h1{
    font-size: 23vw;
    color:#EFEAE3;
    z-index: 10;
    padding-bottom: 1vh;
}
.footer{
    z-index: 10;
    height: 38vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding:0 5vw;
    flex-direction: column;
    margin-bottom: 6vh;
}
.ftxt1{
    color:#EFEAE3;
    gap:1vh
}
.ftxt1 h2{
    font-size: 10vw;
    padding-bottom: 1vw;
}
.ftxt2{
    color:#fff;
    width:90%
}
.ftxt2 p{
    font-size: 5.5vw;
    font-family:light;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 2.5vw;
}
.ftxt2 h6 {
    font-family:light;
    font-size: 4.5vw;
    padding-bottom: 0.7vw;
    border-bottom: 1px solid #d3cdc1df;
    color: #d3cdc1df;
    font-weight: 200;
}

.footer2{
    border-top: 1px solid #dadada97;
    height: 7vh;
    width: 100%;
    padding: 1vw 1vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer2 h5{
    font-size: 2vw;
    font-weight: 200;
    color: #d3cdc1df; ;
}

.main{
    overflow: hidden;
}


.loader h1{
    font-size: 10vw;
   
 }

}








