 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
font-family: 'Qwitcher Grypen', cursive;
color: #fff;
 }

 html,body{
    height: 100%;
    width: 100%;
 } 
 #cursor{
    height: 25px;
    width: 25px;
    background-color:rgb(149, 193, 30) ;
   border-radius: 50%;
   position: fixed;
   z-index: 99;

 }
 #cursor-blur{
    height: 500px;
    width: 500px;
    background-color:rgba(150, 193, 30, 0.285) ;
   border-radius: 50%;
   position: fixed;
   z-index: 9;
   filter: blur(50px);
 }
 #nav{
    height: 145px;
    width: 100%;
    display: flex;
    align-items:center;
    justify-content: flex-start;
    padding: 0 140px;
    gap: 35px;
    /* background-color: blueviolet; */
    position: fixed;
    z-index: 99;
 }
 #nav img{
    height: 75px;    
 }
 #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.363);

}
#page1{
    height: 100vh;
    width: 100%;
    position: relative;
    display:flex ;
   justify-content: center;
   align-items: center;
    flex-direction: column;
    text-align: center;
}
#page1 h1{
    font-size: 100px;
    font-weight: 900;
    position: relative;
}
#page1 h1::before{
    content: "EAT. DRINK. PLAY.";
    position: absolute;
    color:black ;
    top: -6px;
    left: -6px;
    -webkit-text-stroke: 2px rgb(149, 193, 30);
    z-index:-1; 
}

#page1 h2{
    font-size: 30px;
    font-weight: 800;
    margin-top:10px ;
   margin-bottom: 20px;
}

#page1 p{
    font-size: 20px;
    font-weight: 500;
    width: 50%;
}
#page2{
    min-height: 100vh;
    width: 100%;
    z-index: 10;
}
#scroller{
   
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
   position: relative;
   z-index: 99;
}
#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: 100px;
    font-weight: 900;
    -webkit-text-stroke:3px rgb(149, 193, 30) ;
    margin-right: 10px;
    transition: all linear 0.5s;
    margin-left: 10px;
    color: transparent;

}
#scroller h4:hover{
    color:rgb(149, 193, 30) ;
   
}
@keyframes scroll {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
    
}

#about-us{
    height: 50vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 50px;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

#about-us  img{
    height: 200px;
    width: 200px;
    border-radius: 25px;    
}

#about-us-in{
    width: 50%;
    text-align: center;
}

#about-us-in h3{
    font-size: 50px;
    margin-bottom: 25px;
}
#about-us-in p{
    font-size: 18px;
    line-height: 30px;
}

#card-container{
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position:relative;
    z-index:99;

}

.cards{
    height: 80%;
    width: 22%;
    background-color: chartreuse;
    border-radius: 25px;
    background-position: center;
    background-size:cover;
    overflow: hidden;
    transition: all ease 0.6s;
}
#card1 {
    background-image: url(https://eiwgew27fhz.exactdn.com/wp-content/uploads/2023/02/home-toptracer-1024x682.jpg?strip=all&lossy=1&sharp=1&ssl=1);
  }
  #card2 {
    background-image: url(https://eiwgew27fhz.exactdn.com/wp-content/uploads/2023/02/hero-4-1024x1024.jpg?strip=all&lossy=1&sharp=1&ssl=1);
  }
  #card3 {
    background-image: url(https://eiwgew27fhz.exactdn.com/wp-content/uploads/2023/02/home-lessons-1024x682.jpg?strip=all&lossy=1&sharp=1&ssl=1);
  }

  .overlay {
    height: 100%;
    width: 100%;
    background-color: #95c11e;
    padding: 10px;
    padding-top: 30px;
    text-align: center;
    opacity: 0;
    transition: all ease 0.6s;
  }
  .overlay h4 {
    color: #000;
    font-size: 30px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 10px;
    font-weight: 800;
  }
  .overlay p {
    color: #000;
    font-size: 18px;
  }
  .cards:hover .overlay {
    opacity: 1;
  }
  .cards:hover {
    transform: rotate3d(-1, 1, 0, 20deg);
  }
  

  #green-div {
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to left bottom, #30b73b, #ace022);
    
  }
  #green-div h4 {
    width: 45%;
    line-height: 50px;
    color: #000;
    text-align: center;
    font-weight: 800;
    font-size: 27px;
    text-transform: uppercase;
  }
  #green-div img {
    height: 100%;
    object-fit: cover;
    width: 14%;
  }

  #page3 {
    height: 100vh;
    width: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
  }
  #page3 > p {
    font-size: 35px;
    font-weight: 700;
    width: 60%;
    line-height: 45px;
    text-align: center;
  }
  
  #page3 img {
    position: absolute;
    height: 60px;
  }
  #page3 #colon1 {
    left: 10%;
    top: 15%;
  }
  #page3 #colon2 {
    bottom: 20%;
    right: 10%;
  }
  #page4 {
    height: 30vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    position: relative;
  }
  .elem {
    height: 70%;
    width: 26%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
  }
  
  .elem h2 {
    height: 100%;
    width: 100%;
    background-color: #95c11e;
    display: flex;
    color: #000;
    font-weight: 800;
    align-items: center;
    justify-content: center;
    transition: all ease 0.5s;
    font-size: 2vw;
    position: absolute;
    z-index: 10;
  }
  .elem img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all ease 0.5s;
    scale: 1.1;
  }
  .elem:hover h2 {
    color: #fff;
    background-color: transparent;
  }
  
  
  .elem:hover img {
        scale: 1;}
    
        #page4 h1 {
            font-size: 4.4vw;
            position: absolute;
            top: -17%;
            font-weight: 900;
            
            color: #000;
            -webkit-text-stroke: 2px #fff;
          }


          #footer {
            height: 40vh;
            width: 100%;
            background: linear-gradient(to left bottom, #119f3a 0%, #a3d421 80%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 6.5vw;
            padding: 0 100px;
          }
          #footer > img {
            position: absolute;
            left: 0;
            height: 100%;
            z-index: 0;
          }
          #f1 img {
            height: 100px;
          }
          #f1,
          #f2,
          #f3,
          #f4 {
            width: fit-content;
            position: relative;
            z-index: 99;
            /* background-color: red; */
          }
          #f2 h3 {
            font-size: 1.6vw;
            white-space: nowrap;
            text-transform: uppercase;
            color: #000;
            font-weight: 900;
            margin-bottom: 8px;
          }
          
          #f3 h3 {
            font-size: 1.6vw;
            white-space: nowrap;
            text-transform: uppercase;
            color: #000;
            font-weight: 800;
            margin-bottom: 8px;
          }
          #f4 h4 {
            font-size: 1vw;
            white-space: nowrap;
            text-transform: uppercase;
            color: #000;
            font-weight: 600;
            line-height: 20px;
            margin-bottom: 8px;
          }