@font-face {
  font-family: latin_400;
  src: url(./Fonts/montserrat-latin-400-normal.woff2);
}
@font-face {
  font-family: latin_500;
  src: url(./Fonts/montserrat-latin-500-normal.woff2);
}
@font-face {
  font-family: latin_600;
  src: url(./Fonts/montserrat-latin-600-normal.woff2);
}
@font-face {
  font-family: latin_700;
  src: url(./Fonts/montserrat-latin-700-normal.woff2);
}
@font-face {
  font-family: latin_800;
  src: url(./Fonts/montserrat-latin-800-normal.woff2);
}
@font-face {
  font-family: latin_900;
  src: url(./Fonts/montserrat-latin-900-normal.woff2);
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: white;
}

html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

*::-moz-selection {
  background-color: white;
  color: #9dcb1f;
}

*::selection {
  background-color: white;
  color: #9dcb1f;
}

body::-webkit-scrollbar {
  width: 10px;
  background-color: black;
}

body::-webkit-scrollbar-thumb {
  background-color: #95c11e;
  border-radius: 1rem;
}

.cursor {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #95c11e;
  border: none;
  position: fixed;
  z-index: 9999;
}

.cursor-blur {
  height: 400px;
  width: 400px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: rgba(150, 193, 30, 0.3294117647);
  border: none;
  position: fixed;
  filter: blur(65px);
  z-index: 9;
}

nav {
  width: 100%;
  padding: 1.2rem 5rem;
  display: flex;
  align-items: center;
  gap: 3.15rem;
  z-index: 999;
  position: fixed;
}
nav img {
  width: 7%;
  margin-left: 4.5rem;
}
nav h4 {
  text-transform: uppercase;
  font-weight: 500;
  font-family: latin_500;
}
nav i {
  display: none;
}

video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: fixed;
  z-index: -1;
}

main {
  width: 100%;
  position: relative;
}
main .page1 {
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.374);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
main .page1 h1 {
  font-size: 8.1rem;
  font-family: latin_900;
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
}
main .page1 h1::before {
  content: "Eat. Drink. Play.";
  position: absolute;
  top: -5px;
  left: -5px;
  color: black;
  -webkit-text-stroke: 2px #95c11e;
  z-index: -1;
}
main .page1 h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-family: latin_800;
}
main .page1 p {
  font-size: 1.2rem;
  font-family: latin_400;
  width: 45%;
}
main .page2 {
  min-height: 100vh;
  z-index: 10;
  width: 100%;
}
main .page2 .scroller {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  z-index: 10;
}
main .page2 .scroller h4 {
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 800;
  margin-right: 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 800;
  font-size: 120px;
  transition: all linear 0.3s;
  -webkit-text-stroke: 1px #ffffff;
  color: #000;
}
main .page2 .scroller h4:hover {
  color: #95c11e;
}
main .page2 .scroller .scroller-inner {
  display: flex;
  gap: 0.2em;
  animation: animate 30s linear infinite;
}
main .page2 .scroller::-webkit-scrollbar {
  display: none;
}
@keyframes animate {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
main .page2 .about-us {
  margin-top: 3.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 2rem;
}
main .page2 .about-us img {
  height: 200px;
  width: 12%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.8rem;
}
main .page2 .about-us .about-us-text {
  text-align: center;
  width: 54%;
}
main .page2 .about-us .about-us-text h3 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-family: latin_900;
}
main .page2 .about-us .about-us-text p {
  font-size: 1.2rem;
  font-family: latin_400;
  line-height: 1.8;
}
main .page2 .about-us .about-us-text #note {
  margin-top: 1.7rem;
  margin-bottom: 4rem;
}
main .page2 .card-container {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.1rem;
}
main .page2 .card-container .card {
  position: relative;
  overflow: hidden;
  z-index: 10;
  height: 90%;
  width: 27%;
  border-radius: 1.1rem;
  background-size: cover;
  background-position: center;
  transition: all ease 0.3s;
}
main .page2 .card-container .card:nth-child(1) {
  background-image: url(./img/home-toptracer-1024x682.avif);
}
main .page2 .card-container .card:nth-child(2) {
  background-image: url(./img/hero-4.avif);
}
main .page2 .card-container .card:nth-child(3) {
  background-image: url(./img/home-lessons-1024x682.avif);
}
main .page2 .card-container .overlay {
  height: 100%;
  width: 100%;
  background-color: #aada2d;
  padding-top: 7rem;
  padding-inline: 1rem;
  opacity: 0;
}
main .page2 .card-container .overlay h3 {
  color: #000;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-family: latin_800;
}
main .page2 .card-container .overlay p {
  font-size: 1rem;
  color: #000;
  font-family: latin_400;
  line-height: 2;
}
main .page2 .card-container .overlay #note {
  margin-top: 1.7rem;
  margin-bottom: 4rem;
}
main .page2 .card-container .overlay-t {
  height: 100%;
  width: 100%;
  background-color: #aada2d;
  padding-top: 7rem;
  padding-inline: 1rem;
  opacity: 0;
}
main .page2 .card-container .overlay-t h3 {
  color: #000;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-family: latin_800;
}
main .page2 .card-container .overlay-t p {
  font-size: 1rem;
  color: #000;
  font-family: latin_400;
  line-height: 2;
}
main .page2 .card-container .card:hover .overlay {
  opacity: 1;
  transition: all ease 0.5s;
}
main .page2 .card-container .card:hover .overlay-t {
  opacity: 1;
  transition: all ease 0.5s;
}
main .page2 .card-container .card:hover {
  transform: rotate3d(-1, 1, 0, 20deg);
}
main .page2 .greendiv {
  height: 30vh;
  background: linear-gradient(to left bottom, #3aaa31, #9dcb1f 60%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
main .page2 .greendiv img {
  height: 100%;
  width: 10%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .page2 .greendiv h4 {
  color: #000;
  font-size: 2rem;
  width: 60%;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  font-family: latin_800;
}

.page3 {
  height: 100vh;
  width: 100%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.page3 p {
  font-size: 2rem;
  font-family: latin_900;
  text-transform: uppercase;
  color: #fff;
  width: 70%;
}
.page3 img {
  position: absolute;
  height: 10%;
}
.page3 #quote-left {
  top: 15%;
  left: 5%;
}
.page3 #quote-right {
  bottom: 15%;
  right: 5%;
}

.page4 {
  height: 35vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.page4 h1 {
  position: absolute;
  font-size: 5.5rem;
  -webkit-text-stroke: 1px white;
  color: #000;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  top: -10%;
}
.page4 .elem {
  height: 70%;
  width: 25%;
  overflow: hidden;
  position: relative;
  border-radius: 1.3rem;
}
.page4 .elem h2 {
  height: 100%;
  width: 100%;
  background-color: #95c11e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-family: latin_900;
  text-transform: uppercase;
  color: #000000;
  position: absolute;
  z-index: 10;
  transition: all ease 0.5s;
}
.page4 .elem img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  scale: 1.1;
  transition: all ease 0.5s;
}
.page4 .elem:hover h2 {
  color: #ffffff;
  background-color: transparent;
}
.page4 .elem:hover img {
  scale: 1;
}
.page4 .elem:hover h1 {
  -webkit-text-stroke: 1px #9dcb1f;
  color: #ffffff;
}

.fotter {
  height: 45vh;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(to left bottom, #3aaa31, #9dcb1f 60%);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
  z-index: 10;
  padding-inline: 1rem;
}
.fotter #dotted {
  height: 100%;
  width: 20%;
  position: absolute;
  left: 0%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fotter #logo {
  width: 10%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.fotter .first {
  font-size: 1.2rem;
}
.fotter .first h2 {
  color: #000;
  font-family: latin_800;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.fotter .third {
  font-size: 1.2rem;
}
.fotter .third p {
  color: #000;
  font-family: latin_600;
}
.fotter .third #get {
  font-family: latin_800;
}

@media (max-width: 750px) {
  .cursor {
    display: none;
  }
  .cursor-blur {
    display: none;
  }
  nav {
    justify-content: space-between;
    padding: 1rem 2.7rem;
    background-color: black;
  }
  nav img {
    width: 15%;
    margin-left: 0;
  }
  nav h4 {
    display: none;
  }
  nav i {
    font-size: 1.7rem;
    display: block;
  }
  main {
    overflow: hidden;
  }
  main .page1 h1 {
    font-size: 3rem;
    width: 80%;
    margin-bottom: 1rem;
  }
  main .page1 h3 {
    font-size: 1.5rem;
  }
  main .page1 p {
    font-size: 1rem;
    width: 90%;
  }
  main .page2 .scroller h4 {
    font-size: 50px;
  }
  main .page2 .about-us {
    flex-direction: column;
    padding: 0 0.5rem;
  }
  main .page2 .about-us img {
    width: 80%;
  }
  main .page2 .about-us .about-us-text {
    text-align: center;
    width: 100%;
  }
  main .page2 .about-us .about-us-text h3 {
    font-size: 2.8rem;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: latin_900;
  }
  main .page2 .about-us .about-us-text p {
    font-size: 1.2rem;
    font-family: latin_400;
    line-height: 1.8;
  }
  main .page2 .about-us .about-us-text #note {
    margin-top: 1.7rem;
    margin-bottom: 1rem;
  }
  main .page2 .card-container {
    height: 155vh;
    flex-direction: column;
  }
  main .page2 .card-container .card {
    width: 90%;
    height: 100%;
  }
  main .page2 .card-container .card:nth-child(1) {
    margin-top: 4rem;
  }
  main .page2 .card-container .card:nth-child(3) {
    margin-bottom: 2.7rem;
  }
  main .page2 .greendiv {
    height: 18vh;
  }
  main .page2 .greendiv h4 {
    font-size: 1rem;
    width: 100%;
  }
  main .page3 p {
    font-size: 1.5rem;
    width: 87%;
  }
  main .page3 img {
    height: 3%;
  }
  main .page3 #quote-left {
    top: 20%;
    left: 5%;
  }
  main .page3 #quote-right {
    bottom: 20%;
    right: 5%;
  }
  main .page4 {
    height: 70vh;
    flex-direction: column;
    text-align: center;
    margin-bottom: 2.5rem;
  }
  main .page4 h1 {
    font-size: 1.5rem;
    top: -5%;
    color: #95c11e;
    -webkit-text-stroke: 1px #9dcb1f;
  }
  main .page4 .elem {
    width: 90%;
    height: 100%;
  }
  main .page4 .elem h2 {
    font-size: 1.5rem;
  }
  main .fotter {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 1rem;
    height: -moz-fit-content;
    height: fit-content;
  }
  main .fotter #logo {
    width: 30%;
  }
}/*# sourceMappingURL=style.css.map */