*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat';
    color: #fff;
}
*::selection {
  background-color: #fff;
  color: #95c11e;
}
html,body{
    width: 100%;
    height: 100%;
}
#cursor{
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #95C11E;
    position: fixed;
    z-index: 99;
}
#cursor-blur{
    height: 390px;
    width: 390px;
    border-radius: 50%;
    background-color: #b1d64d3c;
    position: fixed;
    filter: blur(50px);
    z-index: 9;
}
#nav img{
    height: 60px;
}
#nav{
    height: 100px;
    width: 100%;
    /* background-color: black; */
    display: flex;
    align-items: center;
    padding: 0 125px;
    gap: 40px;
    position: fixed;
    justify-content: flex-start;
    z-index: 99;
}
#nav h4{
   font-size: 13px;
   text-transform: uppercase;
}
video{
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: fixed;
    z-index: -1;
    
}
#main{
    position: relative;
    background-color: rgba(0, 0, 0, 0.439);
}
#page1{
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
    
}
/* ...........  */
#page1 #arrow {
  height: 250px;
  width: 250px;
  background-color: transparent;
  border: 2px solid #95c11e;
  position: absolute;
  display: flex;
  left: -2%;
  bottom: 0%;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all ease 0.5s;
}
#page1 #arrow i {
  font-size: 50px;
  font-weight: 100;
}
#page1 #arrow:hover {
  scale: 0.4;
  background-color: #95c11e;
}
/* ........... */
#page1 h1{
   font-size: 125px;
   font-weight: 900;
   position: relative;

}
#page1 h1::before{
    content: "EAT. DRINK. PLAY";
    position: absolute;
    color: black;
    top: -6px;
    left: -6px;
    -webkit-text-stroke: 2px greenyellow;
    z-index: -1;
}
#page1 h2{
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 10px;

}
#page1 h5{
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}
#page2{
    height: 25vh;
    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-1{
    display: inline-block;
    white-space: nowrap;
    animation-name: scroll;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
#scroller span{
    text-transform: uppercase;
    letter-spacing: 10px;
    font-family:Montserrat;
    font-size: 90px;
    font-weight: 900;
    color: black;
    transition: all linear 0.4s;
    -webkit-text-stroke: 1px white;
}
#scroller span:hover{
    color: #95C11E;
}
@keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  #about{
    height: 40vh;
    width: 100%;
    /* background-color: red; */
    align-items: center;
    justify-content: space-between;
    display: flex;
    padding: 0 90px;
    position: relative;
    z-index: 10;
  }
  #about img{
    width: 200px;
    height: 200px;
    border-radius: 10px;
  }
  #about-us{
    text-align: center;
    padding: 0 100px;
  }
  #about-us h2{
    padding-bottom: 30px;
    font-size: 44px;
    text-transform: uppercase;
    font-weight: 900;
  }
  #about-us p{
    font-size: 18x;
    font-weight: 500;
    line-height: 22px;
    width: 700px;
  }

  /* cards  */

#all-cards{
    height: 80vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.card{
    height: 80%;
    width: 25%;
    border-radius: 20px;
    /*background-color: rgb(13, 13, 13);
    */background-size: cover;
    background-position: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
    transition: all ease 0.6s;
}
.card h2{
   
    padding: 20px;

}
#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: 30px;
    padding-top: 160px;
    opacity: 0;
    transition: all ease 0.6s;
}
.overlay h4{
    color: #000;
    font-size: 30px;
    margin-bottom: 20px; 
    white-space: nowrap;
    text-transform: uppercase;
}
.overlay p{
    color: #000;
    font-size: 18px;
}
.card:hover .overlay{
    /* color: #95C11E; */
    opacity: 1;
}
.card:hover{
    transform: rotate3d(-1,1,0,20deg);
}
#green-strip{
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #95C11E;
    background: linear-gradient(to left bottom,#AADC22, #45AD2F);
}
#green-strip h4{
    text-transform: uppercase;
    line-height: 44px;
    width: 40%;
    font-size: 26px;
    color: #000;
    font-weight: 900;
    text-align: center;
}
#green-strip img{
    height: 100%;
    object-fit: cover;
    padding: 14px;
}
#page3{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
#page3 p{
    text-transform: uppercase;
    font-weight: 900;
    font-size: 28px;
    color: #f1eeee;
    text-align: center;
    width: 70%;
    line-height: 45px;
    
}
#page3 img{
    position: absolute;
    height: 60px;

}
#page3 #colon1{
    left: 8%;
    top: 25%;
}
#page3 #colon2{
    right: 10%;
    bottom: 25%;
}
#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:5.1vw;
    position: absolute;
    top: -15%;
    font-weight: 900;
    font-family:'Montserrat';
    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;
  }