@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


* {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
*{
    ::selection{
        background-color: #fff;
        color: #91B508;
    }
}
html,
body {
    height: 100%;
    width: 100%;

}
body::-webkit-scrollbar{
    display: block;
    width: 10px;
    background-color: #000;
}
body::-webkit-scrollbar-thumb{
    background-color:#91B508;
    border-radius: 50px;
}

#cursor {
    height: 22px;
    width: 22px;
    background-color: #91B508;
    border-radius: 50%;
    position: fixed;
    z-index: 99;
    transition: all linear;
}

#cursor-blur {
    height: 400px;
    width: 400px;
    background-color: #d2f34d44;
    border-radius: 50%;
    position: fixed;
    filter: blur(50px);
    z-index: 9;
    transition: all linear 0.5s;
}

#nav {
    height: 145px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 118px;
    gap: 40px;
    position: fixed;
    justify-content: flex-start;
    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.39)
}

#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: 100px;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
}

#page1 h1::before {
    content: "EAT. DRINK. PLAY.";
    position: absolute;
    color: black;
    top: -5px;
    left: -5px;
    -webkit-text-stroke: 1px #b8fa01;
    z-index: -1;
}

#page1 h2 {
    font-size: 25px;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 15px;
}

#page1 p {
    font-size: 20px;
    font-weight: 480;
    width: 50%;
}
#page1 #arrow {
  height: 170px;
  width: 170px;
  background-color: transparent;
  border: 3.5px 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;
}

#page2 {
    min-height: 100vh;
    width: 100%;
    z-index: 10;
}

#scroller {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    z-index: 10;
}

#scroller::-webkit-scrollbar {
    display: none;
}

#scroller-in {
    display: inline-block;
    white-space: nowrap;
    text-transform: uppercase;
    animation-name: scroll;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

#scroller h4 {
    display: inline-block;
    font-family: "gilroy", sans-serif;
    font-size: 100px;
    font-weight: 900;
    margin-right: 10px;
    color: black;
    transition: all linear 0.5s;
    -webkit-text-stroke: 1px #91B508;
    ;
}

#scroller h4:hover {
    color: #91B508;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

#about-us {
    height: 70vh;
    width: 100%;
    display: flex;
    padding: 0 50px;
    align-items: center;
    position: relative;
    z-index: 10;
    justify-content: space-around;
}

#about-us img {
    height: 180px;
    width: 170px;
    border-radius: 20px;
    object-fit: cover;

}

#about-us-in {
    width: 54%;
    text-align: center;
}

#about-us-in h3 {
    font-size: 41px;
    font-weight: 800;
    margin-bottom: 30px;
}

#about-us-in p {
    font-size: 20px;
    /* line-height: 26px; */
    line-height: 1.8; 

}

#cards-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 65px;
    position: relative;
    z-index: 10;
    background-image: url(https://eiwgew27fhz.exactdn.com/wp-content/themes/puttosaurus/img/dots-white.svg);
    background-repeat: no-repeat;
    background-size: 29vh;
    background-position: 110px 0px; 
}


.card {
    height: 81%;
    width: 25%;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
}

#card1 {
    background-image: url(https://calderfieldsgolfrange.com/wp-content/uploads/2019/04/selection-bord.png);
}
#card1>h4{
    color: rgb(252, 252, 252);
    font-size: 30px;
    font-weight: 800;
    position: absolute;
    bottom: 30px;
    padding-left: 35px;
    text-transform: uppercase;
}
#card2 {
    background-image: url(https://eiwgew27fhz.exactdn.com/wp-content/uploads/2023/02/hero-4.jpg?strip=all&lossy=1&sharp=1&w=960&ssl=1);
}
#card2>h4{
    color: rgb(252, 252, 252);
    font-size: 30px;
    font-weight: 800;
    position: absolute;
    bottom: 30px;
    padding-left: 35px;
    text-transform: uppercase;
}
#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);
}
#card3>h4{
    color: rgb(252, 252, 252);
    font-size: 30px;
    font-weight: 800;
    position: absolute;
    bottom: 30px;
    padding-left: 35px;
    text-transform: uppercase;
}
 .overlay{
    height: 100%;
    width: 100%; 
    background-color: #B1E623;
    padding-top: 160px;
    padding: 40px;
    border-radius: 20px;
    opacity: 0;
    position: absolute;
    /* transition: all ease 0.6s; */
}
.overlay h4{
    color: black;
    font-size: 33px;
    font-weight: 800;
    text-transform: uppercase;
    padding-top: 10px;
    margin-bottom: 22px;
}
.overlay p{
    color: black;
    font-size: 18px;
} 
.card:hover .overlay{
    opacity: 1;
}
/* .card:hover{
    transform: rotate3d(-1,1,0,20deg);
} */

#green-div{
    height: 40vh;
    /* background-color: #f30404; */
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: linear-gradient(to left bottom, #076b29 3%, #b3e722 70%);
}
#green-div img{
    height: 100%;
    object-fit: cover;
    width: 12%;
}
#green-div h4{
    width: 70%;
    font-size: 25px;
    line-height: 40px;
    text-align: center;
    font-weight: 900;
    color: black;
}

#page3{
    height: 100vh;
    width: 100%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
#page3>p{
    font-size: 25px;
    font-weight: 900;
    width: 60.8%;
    line-height: 40px;
    text-align: center;
    text-transform: uppercase;
}

#page3 img{
    position: absolute;
    height: 50px;
}
#page3 #colon1{
    left: 15%;
    top: 25%;
}
#page3 #colon2{
    bottom: 25%;
    right: 15%;
}

#page4 {
  height: 40vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  position: relative;
}
.elem {
  height: 59%;
  width: 26%;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  bottom: 20px;
}

.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: -16%;
  font-weight: 900;
  font-family: "gilroy", sans-serif;
  color: #000;
  -webkit-text-stroke: 2px #fff;
}

#footer {
  height: 57vh;
  width: 100%;
  background: linear-gradient(to left bottom, #119f3a 5%, #a3d421 55%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6.5vw;
  padding: 0 100px;
}
#footer > img {
  position: absolute;
  left: 0;
  height: 85%;
  z-index: 0;
}
#f1 img {
  height: 100px;
}
#f1,
#f2,
#f3{
  width: fit-content;
  position: relative;
  z-index: 99;
  /* background-color: red; */
  bottom: 15%;
}
#f2 h3 {
  font-size: 1.7vw;
  white-space: nowrap;
  text-transform: uppercase;
  color: #000;
  font-weight: 900;
  margin-bottom: 8px;
}

#f3 h3 {
  font-size: 1.7vw;
  white-space: nowrap;
  text-transform: uppercase;
  color: #000;
  font-weight: 900;
  margin-bottom: 8px;
}
#f2:hover h3 {
  color: #fff;
}
#f3:hover h3 {
  color: #fff;
  /* background-color: transparent; */
}
#f4 h4 {
  font-size: 1.2vw;
  white-space: nowrap;
  text-transform: uppercase;
  color: #000;
  font-weight: 650;
  line-height: 25px;
  margin-bottom: 95px;
  margin-left: 50px;
}
#name{
    height: 2.5vh;
    width: 100%;
    /* background-color: #f70404; */
    position: absolute;
    top: 90%;
    margin-left: -6.7%;
}
#name p{
    font-size: 1vw;
  white-space: nowrap;
  /* text-transform: uppercase; */
  color: #000;
  font-weight: 550;
  margin-left: 25%;
}
#name:hover p{
  color: #fff;
}