.sidcuphidden {
  opacity: 0;
}

.translucent {
  filter: brightness(0.6) blur(5px);
}

.transformTranslucent {
  filter: brightness(0.6) blur(5px);
}

/* Fonts */
@font-face {
  font-family: DMSans;
  src: url("./fonts/DMSans-Regular.ttf");
}
/* No Select */
.noselect,
img {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */ /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
   supported by Chrome, Edge, Opera and Firefox */
}

input,
textarea,
button,
select,
a,
svg,
div {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*::-moz-selection {
  color: #A0D219;
  background-color: #ffffff;
  text-shadow: none;
}

*::selection {
  color: #A0D219;
  background-color: #ffffff;
  text-shadow: none;
}

/* width */
::-webkit-scrollbar {
  width: 0;
  -webkit-user-select: auto;
          user-select: auto;
}

/* Track */
/* Handle */
/* Defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: #000000;
  /* cursor: none; */
}

body {
  z-index: 100;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
  font-size: 10px;
  background-color: #000000;
}
body footer{
  font-size: 1.6rem;    
}
#contact-form{
    font-size: 1.6rem;
}

@media only screen and (max-width: 768px) {
    body footer{
  font-size: 2rem;    
}
#contact-form{
    font-size: 2rem;
}
}

.webgl {
  position: fixed;
  outline: none;
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

main {
  position: relative;
  z-index: 1;
  background-color: #000000;
  pointer-events: auto;
}

.scrollStartSection {
  width: 100%;
}

/* Loading Page */
.loadingPage {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 9999999999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  pointer-events: none;
}

.loadingBlur {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.loadingPageBottomHalf {
  position: relative;
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  background-color: #000000;
  pointer-events: none;
  padding-inline: 30vw;
}

.loadingPageTopHalf {
  position: relative;
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
  background-color: #000000;
  pointer-events: none;
  padding-inline: 30vw;
}

.loadingTop {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 5vw;
}

.loadingFlag {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: right center;
}

.loadingTextContainer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #A0D219;
  border-left: 1px solid #A0D219;
  border-bottom: 1px solid #A0D219;
  padding: 1rem;
  background-color: #A0D219;
}

.loadingText {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  z-index: 1;
  text-shadow: -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, 1px 1px 0 #000000;
}

.loadingOutline {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  z-index: 0;
  padding-bottom: 0.5rem;
  padding-right: 0.5rem;
  text-shadow: -1px -1px 0 #A0D219, 1px -1px 0 #A0D219, -1px 1px 0 #A0D219, 1px 1px 0 #A0D219;
}

.loadingFlagPoleTop {
  position: relative;
  width: 5px;
  height: 6.7rem;
  background-color: #ffffff;
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
}

.loadingMiddle {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-right: 5vw;
  overflow: hidden;
}

.loadingBall {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #ffffff;
}

.loadingFlagPoleBottom {
  position: relative;
  width: 5px;
  height: 20rem;
  background-color: #ffffff;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
}

.loadingBottom {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.loadingGround {
  width: 100%;
  height: 2px;
  background-color: #A0D219;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
}

#loadingGround1 {
  border-top: 1px solid #000000;
}

#loadingGround2 {
  border-bottom: 1px solid #000000;
}

.heroSection {
  position: relative;
  width: 100%;
  height: 91rem;
  padding: min(20rem, 10vw);
  display: flex;
  justify-content: center;
  align-items: center;
}

.heroSectionLogo {
  position: absolute;
  padding-inline: min(20rem, 10vw);
  padding-top: 5rem;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: -1;
}

.logoImage {
  height: 10rem;
}

.heroSectionHeader {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  perspective: 1000px;
}

.heroSectionHeaderTop {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 17rem;
}

.heroSectionHeaderTopOver {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  transform: scale(0.9);
}

.heroSectionHeaderTopUnder {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  transform: scale(0.9);
}

.heroSectionHeaderMiddle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 17rem;
}

.heroSectionHeaderMiddleOver {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  transform: scale(0.9);
}

.heroSectionHeaderMiddleUnder {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  transform: scale(0.9);
}

.heroSectionHeaderBottom {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 17rem;
}

.heroSectionHeaderBottomOver {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  transform: scale(0.9);
}

.heroSectionHeaderBottomUnder {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  transform: scale(0.9);
}

.heroSectionHeaderText {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17rem;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  z-index: 1;
  text-shadow: -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, 1px 1px 0 #000000;
}

.heroSectionHeaderOutline {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17rem;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  z-index: 0;
  padding-bottom: 1rem;
  padding-right: 1rem;
  text-shadow: -1px -1px 0 #A0D219, 1px -1px 0 #A0D219, -1px 1px 0 #A0D219, 1px 1px 0 #A0D219;
}

.heroImageIntro {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.heroSectionImageContainer {
  position: absolute;
  z-index: 1;
  height: 54rem;
  width: 85rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0px 0px 10px 3px #a0d219;
}

.heroSectionImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heroImageContainerOutline1 {
  position: absolute;
  z-index: 0.5;
  height: 54rem;
  width: 85rem;
  border-radius: 1.5rem;
  border: 1px solid #A0D219;
  box-shadow: 0px 0px 10px 3px #a0d219;
}

.heroImageContainerOutline2 {
  position: absolute;
  z-index: 0.5;
  height: 54rem;
  width: 85rem;
  border-radius: 1.5rem;
  border: 1px solid #A0D219;
  opacity: 0.7;
  box-shadow: 0px 0px 10px 3px #a0d219;
}

.heroImageContainerOutline3 {
  position: absolute;
  z-index: 0.5;
  height: 54rem;
  width: 85rem;
  border-radius: 1.5rem;
  border: 1px solid #A0D219;
  opacity: 0.4;
  box-shadow: 0px 0px 10px 3px #a0d219;
}

.introSection {
  padding-inline: min(20rem, 10vw);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15rem;
}

.introSectionText {
  font-family: "Montserrat", sans-serif;
  font-size: 4.5rem;
  color: #ffffff;
  font-weight: 600;
  text-shadow: -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, 1px 1px 0 #000000;
}

.introSectionImageDiv {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
  gap: 4rem;
  padding-top: 14rem;
  perspective: 1000px;
}

.introSectionImageContainer {
  position: relative;
  width: 37rem;
  height: 37rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.5rem;
  transform-style: preserve-3d;
}
.introSectionImageContainer video{
        object-fit: cover;
    width: 100%;
    height: 100%;
}
.introSectionImage {
  width: 100%;
  height: 100%;
}

.introSectionImageName {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  position: absolute;
  color: #ffffff;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.6274509804), 1px -1px 0 rgba(0, 0, 0, 0.6274509804), -1px 1px 0 rgba(0, 0, 0, 0.6274509804), 1px 1px 0 rgba(0, 0, 0, 0.6274509804);
}

.introSectionImageLabel {
  width: 37rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  color: #ffffff;
  text-shadow: -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, 1px 1px 0 #000000;
}

.marqueeSection {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-block: 34rem;
  perspective: 1000px;
}
@media only screen and (max-width: 768px) {
    .marqueeSection {
          padding-block: 16rem;
    }
}
.marqueeSectionSlider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  transform: rotateY(-5deg) rotateZ(-5deg);
}

.marqueeSectionSliderCard {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.marqueeSectionImageContainer {
  width: calc(85rem - 100px);
  height: 44rem;
  overflow: hidden;
  border-radius: 1.5rem;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.marqueeSectionImage {
  height: calc(100% + 20px);
}

.marqueeSectionSliderCardOutline1 {
  position: absolute;
  width: calc(85rem - 100px);
  height: 44rem;
  border-radius: 1.5rem;
  border: 1px solid #A0D219;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
}

.marqueeSectionSliderCardOutline2 {
  position: absolute;
  width: calc(85rem - 100px);
  height: 44rem;
  border-radius: 1.5rem;
  border: 1px solid #A0D219;
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
}

.marqueeSectionSliderCardOutline3 {
  position: absolute;
  width: calc(85rem - 100px);
  height: 44rem;
  border-radius: 1.5rem;
  border: 1px solid #A0D219;
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
}

.cursorSection {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  perspective: 1000px;
}

.cursorFollower {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #A0D219;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 0 2px 0 #000000;
}

.workSection {
  position: relative;
  z-index: 10;
  width: calc(100% - min(40rem, 20vw));
  margin-inline: min(20rem, 10vw);
  margin-bottom: min(20rem, 10vw);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5.5rem;
}

.workSectionTextContainer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.workSectionText {
  white-space: nowrap;
  font-size: 6.4rem;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  z-index: 1;
  text-shadow: -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff, 1px 1px 0 #ffffff;
  pointer-events: auto;
  cursor: default;
}

.workSectionImageContainer {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.workSectionImage {
  position: absolute;
  height: 100%;
}

.mobileSection {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to right, #AEE223 0%, #0C9E3B 100%);
  z-index: -1;
  overflow: hidden;
  box-shadow: 0 0 10vh 10vh #000000;
}

.mobileSectionDimTop {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  background-image: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0) 100%);
  opacity: 1;
}

.mobileSectionDimBottom {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  background-image: linear-gradient(to top, black 0%, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0) 100%);
  opacity: 1;
}

.mobileSectionSlidersContainer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  transform: rotateZ(-30deg);
}

.mobileSectionSlider {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 3rem;
  perspective: 1000px;
}

.mobileSectionImageContainer {
  width: 39vh;
  height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 1.5rem;
}

.mobileSectionImage {
  width: 100%;
}

.featuresSection {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: min(20rem, 10vw);
  gap: 4rem;
}

.featuresSectionTop {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5rem;
}

.featuresSectionImageDiv {
  width: 54rem;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.featuresSectionImageParallax {
  width: 54rem;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.featuresSectionImageContainer {
  width: 54rem;
  height: 42rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.5rem;
  transform-style: preserve-3d;
}

.featuresSectionImage {
  width: 100%;
  position: absolute;
  height: 100%;
  object-fit: cover;
}

.featuresSectionImageLabelContainer {
  width: 54rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}

.featuresSectionImageLabel {
  position: absolute;
  width: 54rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  color: #ffffff;
  text-shadow: -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, 1px 1px 0 #000000;
}

.featuresSectionTextContainer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 3rem;
}

.featuresSectionText {
  white-space: nowrap;
  font-size: 6.4rem;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  z-index: 1;
  text-shadow: -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff, 1px 1px 0 #ffffff;
  pointer-events: auto;
  cursor: default;
}

.visitSection {
  width: 100%;
  padding-block: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 7rem;
}

.visitSectionTextContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.visitSectionHeaderText {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 8rem;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  z-index: 1;
  text-shadow: -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, 1px 1px 0 #000000;
}

.visitSectionHeaderOutline {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 8rem;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  z-index: 0;
  padding-bottom: 0.5rem;
  padding-right: 0.5rem;
  text-shadow: -1px -1px 0 #A0D219, 1px -1px 0 #A0D219, -1px 1px 0 #A0D219, 1px 1px 0 #A0D219;
}

.visitSectionCTA {
  position: relative;
  width: 20.5rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2px;
  background-color: #A0D219;
  border-radius: 3rem;
  box-shadow: 0 0 5px 0 #000000;
  overflow: hidden;
}

.visitSectionCTATextContainer {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  text-align: center;
}

.visitSectionCTAText {
  position: absolute;
  z-index: 1;
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

#visitSectionCTATextWhite {
  color: #ffffff;
}

#visitSectionCTATextBlack {
  color: #000000;
  opacity: 0;
}

.visitSectionCTABackground {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: calc(3rem - 2px);
  background-color: #000000;
  overflow: hidden;
}

.visitSectionCTACircleContainer {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visitSectionCTACircle {
  width: 41rem;
  height: 41rem;
  border-radius: 50%;
  position: absolute;
  margin-top: 30rem;
}

#visitSectionCTACircle1 {
  background-color: #b3e806;
}

#visitSectionCTACircle2 {
  background-color: #039c3e;
}

#visitSectionCTACircle3 {
  background-color: #A0D219;
}

/* Responsive */
@media screen and (max-width: 1800px) {
  html {
    font-size: 9px;
  }
}
@media screen and (max-width: 1600px) {
  html {
    font-size: 8px;
  }
  .workSection {
    margin-bottom: 20rem;
  }
  .workSectionTextContainer {
    flex-direction: column;
    gap: 5.5rem;
  }
  .workSectionText {
    white-space: wrap;
  }
  .workSectionTextLeft {
    width: 100%;
    text-align: left;
  }
  .workSectionTextRight {
    width: 100%;
    text-align: right;
  }
  .featuresSection {
    align-items: flex-start;
    padding-top: 20rem;
  }
  .featuresSectionText {
    white-space: wrap;
    text-align: right;
  }
  .featuresSectionTop {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  .featuresSectionTextContainer {
    width: 100%;
    align-items: flex-end;
    gap: 3rem;
  }
}
@media screen and (max-width: 1300px) {
  html {
    font-size: 7px;
  }
  .heroSectionHeaderText {
    font-size: 14rem;
  }
  .heroSectionHeaderOutline {
    font-size: 14rem;
  }
}
@media screen and (max-width: 950px) {
  .cursorSection {
    opacity: 0;
  }
  .heroSectionHeaderText {
    font-size: 11rem;
  }
  .heroSectionHeaderOutline {
    font-size: 11rem;
  }
  .introSection {
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 0rem;
  }
}
@media screen and (max-width: 750px) {
  html {
    font-size: 6px;
  }
  .heroSectionHeaderText {
    font-size: 8rem;
  }
  .heroSectionHeaderOutline {
    font-size: 8rem;
  }
  .introSectionImageLabel {
    font-size: 2.4rem;
  }
  .featuresSectionImageLabel {
    font-size: 2.4rem;
  }
}/*# sourceMappingURL=index.css.map */