@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #fff;
    font-family: 'Montserrat';
}
body{
    height: 100%;
    width: 100%;
}
nav{
    display: flex;
    height: 110px;
    width: 100%;
    gap: 30px;
    padding: 0 110px;
    justify-content: flex-start;
    position: fixed;
    align-items: center;
    background:transparent;
    z-index: 99;
}
nav img{
    height: 65px;
}
nav h4{
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}
.cursor{
    height: 20px;
    width: 20px;
    z-index: 99;
    position: fixed;
    border-radius: 50%;
    background-color: #95C11E;
}
.big-cursor{
    height: 200px;
    width: 200px;
    z-index: 1;
    position: fixed;
    border-radius: 50%;
    filter: blur(85px);
    background-color: #95C11E;
}
video{
    height: 100%;
    width: 100%;
    position: fixed;
    object-fit: cover;
    z-index: -1;
}
.main{
    position: relative;
    background-color: rgb(0,0,0,0.25);
}
.page1{
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    text-transform: uppercase;
}
.page1 h1{
    font-size: 90px;
    font-weight: 900;
    position: relative;
    z-index: 10;
}
.page1 h1::before{
    content: "EAT. DRINK. PLAY.";
    position: absolute;
    top: -4px;
    left: -6px;
    color: BLACK;
    -webkit-text-stroke: 2px #95C11E;
    z-index: -1;
}
.page1 h2{
    font-size: 35%px;
    font-weight: 900;
    margin-top: 10px;
    margin-bottom: 20px;
}
.page1 p{
    width: 55%;
}
.page2{
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 10;
}
.scroller{
    position: relative;
    z-index: 99;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}
.scroller::-webkit-scrollbar{
    display: none;
}
.scroller-in{
    display: inline-block;
    white-space: nowrap;
    animation: scroll 18s linear infinite;
}
.scroller h4{
    display: inline-block;
    font-size: 80px;
    font-weight: 900;
    font-family: Arial, Helvetica, sans-serif;
    color: transparent;
    transition: 0.5s ease-in-out;
    -webkit-text-stroke: 2px #95C11E;
    white-space: nowrap;
}
.scroller h4:hover{
    color: #95C11E;
}
@keyframes scroll {
    from{
        transform: translateX(0%);
    }
    to{
        transform: translateX(-100%);
    }
}
.about-us{
    display: flex;
    margin-top: 50px;
    height: 60vh;
    width: 100%;
    position: relative;
    z-index: 10;
    justify-content: space-around;
    align-items: center;
    padding: 0 40px;
}
.about-us img{
    height: 150px;
    margin-top: 80px;
    width: 150px;
    object-fit: cover;
    border-radius: 10px;
}
.about-us-in{
    text-align: center;
    width: 50%;
}
.about-us h2{
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 30px;
}
.about-us p{
    margin-top: 20px;
    line-height: 25px;
    font-size: 18px;
}
.card-conatiner{
    height: 70vh;
    display: flex;
    width: 100%;
    z-index: 10;
    position: relative;
    align-items: center;
    gap: 50px;
    /* flex-wrap: wrap; */
    justify-content: center;
    /* background-color: red; */
}
.card-conatiner .cards{
    height: 80%;
    width: 25%;
    /* background: yellow; */
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    /* border: 2px solid black; */
    overflow: hidden;
}
#card1{
    background-image: url(image4.avif);
}
#card2{
    background-image: url(image5.avif);
}
#card3{
    background-image: url(image6.avif);
}
.overlaye{
    height: 100%;
    width: 100%;
    background-color: #95C11E;
    padding: 50px;
    padding-top: 100px;
    border-radius: 20px;
    opacity: 0;
    transition:  all 0.5s;
}
.overlaye h4{
    color: #000;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 800;
    white-space: nowrap;
}
.overlaye p{
    color: #000;
}
.cards:hover .overlaye{
    opacity: 1;
}
.green-div{
    height: 30vh;
    width: 100%;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to left bottom ,#26A536, #95C11E,#c1f33a );
}
.green-div img{
    height: 100%;
    object-fit: cover;
    width:14%;    
}
.green-div h4{
    font-size: 27px;
    width: 50%;
    font-weight: 800;
    text-align: center;
    color: #000;
}
.page3{
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 10;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.page3>p{
    width: 50%;
    font-weight: 800;
    font-size: 30px;
    line-height: 35px;
    text-align: center;
    position: relative;
    z-index: 10;
    color: #fff;
}
.page3 img{
    height: 35px;
    position: absolute;
}
.page3 #colon1{
    left: 15%;
    top: 20%;
}
.page3 #colon2{
    right: 15%;
    bottom: 20%;
}
.page4{
    height: 30vh;
    width:100%;
    position: relative;
    z-index:10;
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
}
.page4 h1{
    font-size: 65px;
    position: absolute;
    top: -15px;
    color: black;
    -webkit-text-stroke: 2px white;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
}
.page4 .cards-3{
    height: 70%;
    width: 25%;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}
.page4 .cards-3 img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 10;
}
.page4 .cards-3 h2{
    height: 100%;
    width:100%;
    background-color:#95C11E;
    display: flex;
    align-items: center;
    transition: all 0.5s;
    font-weight: 700;
    position: absolute;
    color: black;
    justify-content: center;
}
.cards-3:hover h2{
    background-color: transparent;
    color: white;
}
footer{
    height: 60vh;
    width: 100%;
    position: relative;
    z-index: 10;
    margin-top: 50px;
    display: flex;
    justify-content: flex-start;
    gap: 100px;
    padding: 0 100px;
    /* align-items: center; */
    background: linear-gradient(to left bottom ,#26A536, #95C11E,#c1f33a );
}
footer>img{
    height: 100%;
    object-fit: cover;
    width: 20%;
    left: 0;
    z-index: 10;
    position: absolute;
}
.f1 img{
    height: 100px;
    width:100px;
    z-index: 99;
    position: relative;
}
.f1{
    margin-top: 50px;
}
.f2{
    margin-top: 50px;
}
.f2 h2{
    color: black;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 0 ;
    white-space: nowrap;
}
.f3 h2{
    color: black;
    font-weight: 800;
    padding: 6px 0 ;
    text-transform: uppercase;
    white-space: nowrap;
}
.f3{
    margin-top: 50px;
}
.f4 h2 ,
.f4 p{
    color: black;
    font-weight: 800;
    padding: 6px 0 ;
    text-transform: uppercase;
    
}
.f4{
    margin-top: 50px;
}
.f5{
    position: absolute;
    bottom: 10px;
   
}
.f5 p{
    z-index: 99;
    color: black;
    font-weight: 400;
}
@media (max-width:500px) {
    nav{
        display: flex;
        height: 110px;
        width: 100%;
        gap: 30px;
        padding: 0 110px;
        justify-content: flex-start;
        position: absolute;
        align-items: center;
        background:transparent;
        z-index: 99;
       }
}
@media only screen and (max-width:768px) {
   .card-conatiner{
    flex-wrap: wrap;
   }
   nav{
    display: flex;
    height: 110px;
    width: 100%;
    gap: 30px;
    padding: 0 110px;
    justify-content: flex-start;
    position: absolute;
    align-items: center;
    background:transparent;
    z-index: 99;
   }
}