*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat';
    color: white;
}


html,body{
    height: 100%;
    width: 100%;
}

#cursor{
    height: 25px;
    width: 25px;
    background-color: #bbff0096;
    border-radius: 50%;
    position: fixed;
    z-index: 999;
}

#cursor-blur{
    height: 500px;
    width: 500px;
    background-color: #bbff0144;
    border-radius: 50%;
    position: fixed;
    filter: blur(50px);
    z-index: 9;
}


#nav{
    height: 125px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 150px;
    gap: 45px;
    z-index: 100;
    position: fixed;
    justify-content: flex-start;
    background-color: transparent;
}

#nav img{
    height: 90px;
    width: 100px;
}

#nav h4{
    text-transform: uppercase;
    font-weight: 500;
}

video{
    height: 100%;
    width: 100%;
    object-fit:cover;
    position: fixed;
    z-index: -1;
}

#main{
    position: relative;
    background-color: rgba(0, 0, 0, 0.664);
    /* display: flex; */
}

#page1{
    position: relative;
    height: 100vh;
    width: 100%;
    /* font-size: 2rem; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
}

#page1 h1{
    font-size: 9.5rem;
    font-weight: 900;
    position: relative;
}

#page1 h1::before{
    content: "EAT. DRINK. PLAY.";
    position:absolute;
    color: black; 
    top: -6px;
    left: -8px; 
    -webkit-text-stroke: 1px #b1e916 ;
    z-index: -1;
}

#page1 h2{
    font-size: 2rem;
    font-weight: 900;
    margin-top: 10px;
    margin-bottom: 20px;
}

#page1 p{
    /* align-items: center; */
    font-size: 20px;
    font-weight: 500;
    width: 38%;
    
}

#page2{
    min-height: 100vh;
    width: 100%;
    z-index: 2;
}

#scroller{
    /* background-color: red; */
    white-space: nowrap;
    overflow-y:hidden ;
    overflow-x:auto ;
    position: relative;
    z-index: 10;
}

#scroller::-webkit-scrollbar{
    display: none;
}
#scroller-in{
    display: inline-block;
    white-space: nowrap;
    animation-name: scroll;
    animation-duration: 20s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

#scroller h4{
    display: inline-block;
    font-size: 7rem;
    font-weight: 900;
    /* font-family:  */
    margin-right: 10px;
    transition: all linear 0.4s;
    color: black;
    -webkit-text-stroke: 2px #fafafab6;
}

#scroller h4:hover{
    color: #b1e916;
}

@keyframes scroll {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}


#about-us{
    height: 40vh;
    width: 100%;
    /* background-color: blue; */
    display: flex;
    padding: 0 50px;
    justify-content: space-around;
    position: relative;
    z-index: 10;
    align-items: center;
    
}

#about-us img{
    height: 220px;
    width: 220px;
    border-radius: 20px;
    object-fit: cover;
}

#about-us-in{
    width: 60%;
    text-align: center;
}
#about-us-in h3{
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 40px;

}
#about-us-in p{
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 20px ;
}

 #card-container{
    /* background-color: red; */
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 10;

 }
.card{
    height: 85%;
    width: 25%;
    background-color: blue;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: all ease 0.6s;
}

#card1{
    background-image: url(assest/img/card1.webp);
}

#card2{
    background-image: url(assest/img/card2.avif);
}

#card3{
    background-image: url(assest/img/card3.avif);
}


.overlay{
    height: 100%;
    width: 100%;
    background-color: #b1e916;
    padding: 30px;
    padding-top: 160px;
    /* overflow: hidden; */
    text-align: left;
    opacity: 0;
    transition: all ease 0.4s;
    /* gap: 10px; */
}

.overlay h4{
    color: black;
    font-size: 2.8rem;
    font-weight: 900;
    /* white-space: nowrap; */
    margin-bottom: 20px;
    /* text-align: right; */

}

.overlay p{
    color: black;
    font-size: 19px;
    margin-top: 100px;
   
    
}

.card:hover .overlay{
    opacity: 1;
}

.card:hover{
    transform: rotate3d(-1,1,0,20deg);
}

#green-div{
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background:linear-gradient(to right, #a8da21,#69b628);
    text-align: center;
}

#green-div h4{
    color: black;
    font-size: 1.8rem;
    font-weight: 900;
    width:48%;
    /* font-size: 23px; */
    text-transform: uppercase;
}
#green-div img{
    height: 100%;
    width: 15%;
}

#page-3{
    position: relative;
    /* z-index: ; */
    height: 100vh;
    width: 100%;
    background-color: black;
    display:flex;
    justify-content: center;
    align-items: center;
}
#page-3>p{
    z-index: 10;
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 900;
    width: 65%;
    text-align: center;
    line-height: 50px;
    
}

#page-3 img{
    position: absolute;
    height: 60px;
}

#page-3 #colon1{
    left: 10%;
    top: 25%;

}

#page-3 #colon2{
    right: 10%;
    bottom: 25%;

}

#page-4{
    height: 40vh;
    width: 100%;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 90px;
    position: relative;
}
.elem{
    height: 70%;
    width: 25%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;

}

.elem h2{
    height: 100%;
    width: 100%;
    background-color:#b1e916;
    display: flex;
    color: black;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    position: absolute;
    z-index: 10;
    transition: all ease 0.3s;
}

.elem img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all ease 0.5s;
    scale: 1.1;
}

.elem:hover h2{
    color: rgba(255, 254, 254, 0.568);
    background-color: transparent;
}
.elem:hover img{
   scale: 1;
}

#page-4 h1{
    font-size: 5.5rem;
    position: absolute;
    top: -4%;
    font-weight: 900;
    color: black;
    -webkit-text-stroke: 2px white;
    /* stroke-width: 1px solid blue; */
}

.footer{
    height: 30vh;
    width: 100%;
    background:linear-gradient(to right , #a9dc22,#1ba237);
    display: flex;
    justify-content: space-evenly;
    align-items:center;
    z-index: 10;
    position: absolute;
    text-transform: uppercase;
}

.footer .f-img{
    height: 100px;
    width: 150px;
}

#fe1 h2{
    color: black;
    font-size: 2rem;
    font-weight: 900;
    margin: 10px;
}

#fe2 h2{
    color: black;
    font-size: 2rem;
    font-weight: 900;
    margin: 10px;
}

#fe1 h2:hover {
    color: white;
}

#fe2 h2:hover {
    color: white;
}