* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "montserrat";
    color: #fff;

}

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

#cursor {
    height: 20px;
    width: 20px;
    background-color: #95C11E;
    position: fixed;
    border-radius: 50%;
    z-index: 99;
}

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

.nav {
    height: 145px;
    width: 100%;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
    position: fixed;
    padding: 0 150px;
    /* z index pr element aage -->navbar upar  */
    z-index: 99;
}

.nav img {
    height: 75px;
}

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

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

#main {
    position: relative;
    background-color: rgba(0, 0, 0, 0.37);
}

#page1 {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    z-index: 10;
}
#page1 #arrow{
height:150px;
width:150px;
background-color:transparent ;
border:2px solid #95C11E;
position: absolute;
  display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    left:-2%;
    bottom:0%;
    transition:all ease 0.5s;
}
#page1 #arrow i{
    font-size: 50px;
    font-weight: 100;
}
#page1 #arrow:hover{
    scale:0.5;
    background-color:#95C11E;
}
#page1 h1 {
    font-size: 90px;
    font-weight: 900;
    position: relative;
}

#page1 h1::before {
    content: "EAT. DRINK. PLAY.";
    position: absolute;
    color: #000;
    top: -4px;
    left: -4px;
    -webkit-text-stroke: 2px #95C11E;
    z-index: -1;
}

#page1 h2 {
    font-size: 25px;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 20px;
}

#page1 p {
    font-size: 18px;
    font-weight: 400;
    width: 50%;
}

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

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

}

#scroller::-webkit-scrollbar {
    display: none;
}

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

#scroller h4 {
    display: inline-block;
    font-size: 80px;
    font-weight: 900;
    font-family: 'Poppins',sans-serif;
    margin-right: 10px;
    transition:all linear 0.4s ;
    color: #000;
    -webkit-text-stroke: 1px #ffffff;
}

#scroller h4:hover {
    color: #95C11E;
    -webkit-text-stroke: 2px #95C11E;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}
#about-us{
    height:75vh;
    width:100%;
    /* background-color: red; */
    display: flex;
    align-items:center;
    position: relative;
    z-index: 10;
    justify-content: space-around;
    /* padding: 0 50px; */
}
#about-us img{
    height:150px;
    width:150px;
    border-radius: 20px;
    object-fit: cover;
}

#about-us-in{
    width:50%;
    text-align: center;
}
#about-us-in h3{
    font-size: 48px;
    font-weight: 750;
    margin-bottom: 35px;
}
#about-us-in p{
    font-size: 19px;
    line-height: 36px;
}
#notice {
    font-size: 19px;
    line-height: 36px;
    padding-top: 25px;
}

#cards-container{
    /* background-color: red; */
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
gap:70px;
position: relative;
    z-index:10;
}

.card{
    height: 90%;
    width:27%;
    /* background-color: blue; */
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
transition:all ease  0.6s;
}
#card1{
    background-image: url(assets/card1.png);
    position: relative;
}
#card2{
    background-image: url(assets/card2.png);
     position: relative;
}
#card3{
    background-image: url(assets/card3.png);
     position: relative;
}
.card h3{
    text-transform: uppercase;
    font-size: 40px;
    position: absolute;
    bottom: 25px;
    line-height:1.2;
    font-weight: 900;
    left:15px;
    overflow: hidden;
    opacity:1;
     transition:all ease  0.6s;
}
.card:hover h3{
    visibility: hidden;
    opacity: 0;

}
.overlay{
    height: 100%;
    width: 100%;
    background-color: #95C11E;
    padding-top: 150px;
    padding: 20px;
    opacity:0;
    transition:all ease  0.6s;
}
.overlay h4{
    color: #000;
    font-size: 30px;
    text-transform: uppercase;
    font-weight:800;
    white-space: nowrap;
    margin-bottom: 20px;

}
.overlay p{
    color: #000;
    font-size: 18px;
    line-height: 20px;
}
.card:hover .overlay{
opacity:1;
}

.card:hover{
    transform:rotate3d(-1,-1,0,20deg);
}
#green-div{
    height: 35vh;
    display:flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to left bottom,#119f3a,#ace022);
}
#green-div h4{
    width:45%;
    line-height: 50px;
    text-align: center;
    font-size:23px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
}
#green-div img{
    height: 100%;
    object-fit: cover;
    width: 14%;
}
#page3{
    height: 100vh;
    width: 100%;
    background-color: black;
    align-items: center;
    justify-content: center;
    display: flex;
    position: relative;
}

#page3>p{
    font-size:20px;
    font-weight: 800;
    line-height: 40px;
    width: 55%;
    text-align: center;
    text-transform: uppercase;
}
#page3 img{
    position: absolute;
    height: 60px;
}
#page3 #colon1{
    left: 15%;
    top: 25%;
}
#page3 #colon2{
    right: 15%;
    bottom: 25%;
}
#page4{
    height: 30vh;
    width: 100%;   
    display: flex;
    align-items: center;
    justify-content: center;
    gap:50px ;
    position: relative;

}
.elem{
    height: 70%;
    width:26%;
    overflow: hidden;
border-radius: 15px;
position: relative;


}
.elem h2{
    height: 100%;
    width:100%;
  background-color: #ace022;
   display: flex;
    align-items: center;
    justify-content: center;
font-size: 30px;
color: #000;
font-weight: 800;
position: absolute;
z-index: 10;
transition: all ease 0.5s;
}
.elem img{
     height: 100%;
    width:100%;
    object-fit: cover;
    scale: 1.1;
}

.elem:hover h2{
color:#fff;
background-color: transparent;
}

.elem:hover img{
scale:1;
}


#page4 h1{
    font-size:65px;
    position: absolute;
    top: -35px;
   font-family: 'Poppins',sans-serif;
font-weight: 900;
color: #000;
    -webkit-text-stroke: 1px #ffffff;
}
#footer{
    background:linear-gradient(to left bottom,#119f3a,#ace022);
    height: 40vh;
    width:100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap:100px;
    padding:0 100px;
}