/* @font-face {
    font-family: 'montserrat';
    src: url();
} */
@font-face {
  font-family: "Montserrat";
  src: url("Montserrat-Bold.woff2");
  font-weight: 400;
  
}

@font-face {
  font-family: "gilroy";
  src: url("Gilroy-Black.woff2");
  font-weight: 400;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'montserrat';
    color: #ffffff;
}
html, body{
    height: 100%;
    width: 100%;
    /* perspective: 800px; */
}   

#cursor {
    height: 20px;
    width: 20px;
    background-color: #95C11E;
    border-radius: 50%;
    position: fixed;
    z-index: 99;
}

#cursor-blur {
    height: 400px;
    width: 400px;
    background-color: #96c11e42;
    border-radius: 50%;
    position: fixed;
    filter: blur(40px);
    z-index: 9;
}

#nav{
    height: 145px;
    width: 100%;
    /* background-color: red; */
    display: flex;
    align-items: center;
    padding: 0 150px;
    gap: 45px;
    justify-content: flex-start;
    position: fixed;
    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.4);
    
}

#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 h1{
    font-size: 140px;
    font-weight: 900;
    position: relative;
}

#page1 h1::before{
    content: "EAT. DRINK. PLAY.";
    position: absolute;
    color: rgb(0, 0, 0);
    top: -5px;
    left: -8px;
    -webkit-text-stroke: 1px #95C11E;
    z-index: -1;
}

#page1 h2{
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 900;
}

#page1 p{
    font-size: 15px;
    font-weight: 500;
    width: 40%;
    line-height: 20px;
}
#page1 #arrow{
    height: 200px;
    width: 200px;
    background: transparent;
    border: solid 2px #95C11E;
    position: absolute;
    left: -2%;
    bottom: 0%;
    display: flex;
    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;
}

#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-1{
    display: inline-block;
    white-space: nowrap;
    animation-name: scroll;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

#scroller-in-2{
    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: 120px;
    font-weight: 900;
    font-family: "gilroy";
    transition: all linear 0.5s;
    margin-right: 10px;
    color: transparent;
    -webkit-text-stroke: 2px #95C11E;
}

#scroller h4:hover{
    color: #95C11E;
    -webkit-text-stroke: 0px;
}

@keyframes scroll{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}

#about-us{
    height: 40vh;
    width: 100%;
    /* background-color: red; */
    display: flex;
    align-items: center;
    padding: 0 50px;
    justify-content: space-around;
    z-index: 10;
    position: relative;
}
#about-us img{
    height: 220px;
    width: 220px;
    border-radius: 20px;
    object-fit: cover; 
}

#about-us-in{
    width: 50%;
    text-align: center;
}

#about-us-in h3{
    font-size: 54px;
    font-weight: 900;
    margin-bottom: 40px;
}

#about-us-in p{
    font-size: 18px;
    line-height: 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: 80%;
    width: 25%;
    /* background: blue; */
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: all ease 0.6s;

}
#card1{
    background-image: url(hero-toptracer.webp);
}
#card2{
    background-image: url(hero-ag.webp);
}
#card3{
    background-image: url(hero-lessons.webp);
}

.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-weight: 800;
    font-size: 40px;
    white-space: nowrap;
    margin-bottom: 20px;
}

.overlay p{
    color: #000;
    font-size: 18px;
}

.card:hover .overlay{
    opacity: 1;
}

.card:hover{
    transform: rotate3d(-1,1,0,20deg);
}

#green-div{
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: red; */
    background: linear-gradient(to left bottom, #109F3A,#ADE023);
}

#green-div h4{
    width: 45%;
    line-height: 50px;
    font-size: 27px;
    color: #000;
    text-align: center;
}
#green-div img{
    height: 100%;
    width: 15%;
    object-fit: cover;
}

#page3{
    height: 100vh;
    width: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
#page3>p{
    font-size: 35px;
    font-weight: 700;
    width: 60%;
    line-height: 40px;
    text-align: center;
}

#page3 img{
    position: absolute;
    height: 60px;
}

#page3 #colon1{
    left: 15%;
    top: 25%
     
}

#page3 #colon2{
    right: 15%;
    bottom: 30%
     
}

#page4{
    height: 50vh;
    width: 100%;
    /* background-color: #ff0000; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    position: relative;
}

#page4 h1{
    font-size: 112px;
    position: absolute;
    top: 5%;
    font-size: 900;
    color: #000;
    font-family: "gilroy";
    -webkit-text-stroke: 2px white;
}

.elem{
    height: 50%;
    width: 26%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}
.elem h2{
    height: 100%;
    width: 100%;
    background-color: #95C11E;
    display: flex;
    align-items: center;
    color: #000;
    font-weight: 800;
    justify-content: center;
    font-size: 35px;
    position: absolute;
    z-index: 10;
    transition: all ease 0.6s;
}
.elem img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all ease 0.6s;
    scale: 1.1;
}

.elem :hover{
    color: white;
    background-color: transparent;
}
.elem :hover img{
    scale: 1;
}

#footer{
    height: 20vh;
    width: 100%;
    background: linear-gradient(to left bottom, #109F3A 0%,#ADE023);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 150px;
    padding: 0 100px;
}

#footer > img {
    position: absolute;
    left: 0;
    height: 90%;
    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;
  }