* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "montserrat";
  color: #fff;
}

html,
body {
  width: 100%;
  height: 100%;

}
*::selection{
  background-color: #fdfdfd;
  color: #95c11e;
}

body::-webkit-scrollbar{
  display: block;
  width: 5px;
background: linear-gradient(to right, #95c11e, #000);}

body::-webkit-scrollbar-thumb{
  background-color: #ffffff;
  border-radius: 50px;
}


#cursor {
  width: 20px;
  height: 20px;
  background-color: #95c11e;
  border-radius: 100%;
  position: fixed;
  z-index: 9;

}
#cursor-blur {
  width: 400px;
  height: 400px;
  background-color: #96c11e54;
  border-radius: 100%;
  position: fixed;
  filter: blur(30px);
  z-index: 9;
}

/*  */
#nav {
  height: 150px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 150px 20px 150px;
  gap: 50px;
  position: fixed;
  z-index: 999;
}

#nav img {
  height: 50px;
}

#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.326);
}

#page1 {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 10;
  
}

#page1 h1 {
  font-size: 140px;
  font-weight: 900;
  text-align: center;
  margin-top: 30px;
  margin-top: 10px;
  position: relative;

}

#page1 h1::before {
  content: "Eat. Drink. Play.";
  position: absolute;
  color: black;
  top: -3px;
  left: -3px;
  -webkit-text-stroke: 2px #95c11e;
}

#page1 h2 {
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
  
}
#page1 p {
  font-size: 15px;
  font-weight: 400;
  width: 40%;
  text-align: center;
}

#page2 {
  height: 200px;
  width: 100%;

}

#scroller {
  /* background-color: red; */
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  z-index: 10;
  cursor: pointer;
}
#scroller::-webkit-scrollbar {
  display: none;
}

#scroller-in {
  display: inline-block;
  white-space: nowrap;
  animation-name: scroll;
  animation-duration: 70s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

#scroller h4 {
  display: inline-block;
  font-size: 140px;
  width: 900;
  font-family: gillroy;
  margin-right: 10px;
  color: transparent;
  -webkit-text-stroke: 2px #95c11e;
  transition: all linear 0.5s;
}

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

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

#about-us {
  height: 40vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  position: relative;
  background-color: black ;

}

#about-us img {
  width: 180;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  z-index: 10 ;


}
#about-us-in {
  width: 40%;
  height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  justify-items: center;
  flex-direction: column;
  gap: 30px;
  z-index: 10 ;
}

#about-us-in h3 {
  font-size: 50px;
  font-weight: 800;

}

#cards-container{
    height: 400px;
  justify-content: space-around;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  background-color: black ;

}

.card{
  background-color: #f7f7f7;
  width: 20%;
  height: 100%;
  padding: 0px;
  border-radius: 20px;
  overflow: hidden;
  transition: all ease0.6;
  z-index: 10;

}
#card1{
  background-image: url(../Images/home-about.jpg);
  background-size: cover;
  object-fit: cover;

}

#card2{
  background-image: url(../Images/home-about2.jpg);
  background-size: cover;
  object-fit: cover;
  
}

#overly{
  width: 100%;
  height: 100%;
  padding-top: 190px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  background-color: rgb(0, 238, 40);
  /* border-radius: 20px; */
  opacity: 0;
  
}

#overly h3{
  font-size: 25px;
  font-weight: 800;
  padding-bottom: 14px;
  color: black;

}


#overly p{
  color: black;
}


.card:hover #overly{
  opacity: 1;
  transition: all ease0.6;
}


.card:hover {
  transform: rotate3d(-1,1,0,20deg);
  transition: all ease1;
}

#green-div{
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
background: linear-gradient(to left bottom,rgb(0, 0, 0), #95c11e);


}

#green-div h4{
  width: 30%;
  font-size: 25px;
  text-transform: uppercase;
  text-align: center;

}


#green-div img{
  height: 100%;
  object-fit: contain;
  width: 15%;
}
