* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    /* changed font */

    color: white;

}

html body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    /* perspective: 800px; */
}

.cursor {
    height: 15px;
    width: 15px;
    background: #95c11e;
    border-radius: 50%;
    z-index: 99;
    position: fixed;
}

.cursorBlur {
    height: 300px;
    width: 300px;
    background: #96c11e7f;
    border-radius: 50%;
    z-index: 10;
    position: fixed;
    filter: blur(50px)
}



#nav {
    height: 120px;
    width: 100%;
    /* background: red; */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 80px;
    gap: 30px;
    z-index: 98;
    position: fixed;

}

#nav img {
    width: 70px;
}

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

#nav h4:hover {
    cursor: pointer;
}

video {

    min-height: 100vh;
    width: 100%;
    object-fit: cover;
    position: fixed;
    z-index: -1;


}

#main {
    min-height:100vh;
    position: relative;
    background: rgba(0, 0, 0, 0.45);

}

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


}

#page1 {

    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    z-index: 10;

}

#page1 h1 {
    font-size: 90px;
    font-weight: 900;
    position: relative;


}

#page1 h2 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 15px;


}

#page1 p {
    width: 40%;
    font-size: 15px;
    font-weight: 200;


}

#page1 #arrow {
  height: 150px;
  width: 150px;
  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;
  z-index:10;
}
#page1 #arrow i {
  font-size: 50px;
  font-weight: 100;
}
#page1 #arrow:hover {
  scale: 0.4;
  background-color: #95c11e;
}

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

}

.scroller {
    /* background: red; */

    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    z-index: 10;
    white-space: nowrap;

}

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

.scroller h4 {
    display: inline-block;
    white-space: nowrap;
    font-size: 90px;
    color: black;
    font-weight: 800;
    -webkit-text-stroke: 2px #ffff;
    transition: all linear 0.4s;
    text-transform: uppercase;
    margin-right: 15px;

}

.scroller h4:hover {
    color: #95c11e;

}

.scroller-1 {
    display: inline-block;
    white-space: nowrap;
    animation-name: scroll;
    animation-duration: 50s;
    animation-timing-function: liner;
    animation-iteration-count: infinite;

}




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

    to {
        transform: translateX(-100%);
    }
}

.aboutUs {
    height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    /* background:red; */
    z-index: 10;
    position: relative;
    /* margin-bottom: -173px; */
}

.aboutUs img {
    height: 180px;
    width: 150px;
    border-radius: 20px;
    margin: 0 65px;
    object-fit: cover;
}

.aboutus-in {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 650px;
}

.aboutus-in h3 {
    font-size: 33px;
    margin-bottom: 14px;
    text-transform: uppercase;
    font-weight: 900;

}

.aboutus-in p {
    font-size: 15px;
    text-align: center;
    line-height: 25px;
}

.para1 {
    margin-bottom: 10px;
    word-spacing: 3px;
}

.para-style {
    word-wrap: wrap;
}

.cards-container {
    height: 80vh;
    /* padding:0; */
    width: 100%;
    /* background:red; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    z-index: 10;
    position: relative;


}

.card {
    height: 90%;
    width: 24%;
    /* background-color: blue; */
    /* padding-top:40px; */
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: all ease 0.5s;
    /* margin: 30px; */
    overflow: hidden;

}

#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: #95c11e;
    padding-top: 80px;
    padding: 10%;
    overflow: hidden;
    white-space: wrap;
    opacity: 0;
    transition: all ease 0.5s;
    border-radius: 20px;

    /* display:flex; */
    /* align-items:center;
    justify-content:center;
    flex-direction:column; */



}

.overlay h4 {
    font-size: 25px;
    font-weight: 800;
    color: black;
    padding-bottom: 10%;


}

.overlay p {
    font-size: 14x;
    line-height: 25px;
    color: black;
    text-align: left;
    padding-bottom: 15%;
    word-spacing: 5px;


}

.card:hover .overlay {
    opacity: 1;


}

.card:hover .overlay {
    transform: rotate3d(1, -1, 0, 14deg);
    


}

#green-div {
    margin: 5% 0;
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background-color: red; */
  background: linear-gradient(to left bottom, #119f3a, #ace022);
  z-index:10;
}
#green-div h4 {
  width: 45%;
  line-height: 50px;
  color: #ffffff;
  text-align: center;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
   z-index:10;
}
#green-div img {
  height: 100%;
  object-fit: cover;
  width: 14%;
  z-index:10;
}


#page3 {
  height: 100vh;
  width: 100%;
  background-color: #000;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
 
}
#page3 > p {
  font-size: 25px;
  font-weight: 700;
  width: 60%;
  line-height: 45px;
  text-align: center;
   z-index:10;
  
}

#page3 img {
  position: absolute;
  height: 45px;
   z-index:10;
}
#page3 #colon1 {
  left: 15%;
  top: 25%;
}
#page3 #colon2 {
  bottom: 30%;
  right: 15%;
}


#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.4vw;
  position: absolute;
  top: -15%;
  font-weight: 900;
  font-family: gilroy;
  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;
}