:root {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

:root::-webkit-scrollbar {
  display: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  /* min-height: 100%; */
  height: 100%;
  background: white;
}

.hero {
  width: 100vw;
  height: 100%;
  padding: 4em;
  position: fixed; /* Add this line */
  top: 0; /* Add this line */
  left: 0; /* Add this line */
}

.pre-loader {
  width: 200%;
  height: 100%;
  padding: 2em;
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 0.5em;
  overflow: hidden !important;
  z-index: 2;
}

body.preloader-active {
  overflow: hidden;
}

.fertilia-logo {
  max-width: 20%;
  max-height: 20%;
  
  /*position: static;
  clip-path: none; */
}

.hero-imgs {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-imgs img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
}

.hero-imgs .small-image {
  object-fit: cover;
  /* object-position: center; */
  background-color: white;
  /* or any color that complements your design */
}

.website-content {
  /* border: 4px solid #6937bb; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  z-index: 1;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: auto; /* Add this line to enable scrolling */
}

nav {
  /* border: 3px solid #eb0808; */
  opacity: 0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  display: flex;
  padding: 1.4em;
  z-index: 2;
  transition: background-color 0.3s ease;
}

nav.scrolled {
  background-color: #f0f0f0;
  color: #969494;

}

nav>div {
  flex: 1;
  font-family: "Timmons NY";
  font-size: 36px;
  font-weight: 300;
  color: black;
  text-transform: lowercase;
}

.logo {
  display: flex !important;
  justify-content: start;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  padding-left: 20px;
  background-color: inherit;
  min-height: 50px;
}

.logo img {
  display: block;
  max-width: 30%;
  height: auto;
  max-height: 15vh;
  object-fit: contain;
}

/* .site-info {
  text-align: center;
} */

.website-content .menu-new {
  text-align: right !important;
}

.website-content .menu-new p {
  /* padding-top: 5px !important; */
  padding-right: 100px !important;
}

.menu-new a {
  text-decoration: none;
}

.menu-new a:hover {
  text-decoration: none;
}

.header {
  padding-top: 5%;
  display: block;
  position: relative;
  /*   top: 70%;
  left: 50%; 
  transform: translate(-50%, -50%);*/
  opacity: 0;
  will-change: transform;
  min-height: 100vh;
  width: 100%;
}

.header h1 {
  text-transform: uppercase;
  font-family: "PP Neue World";
  font-size: 20vw;
  font-weight: 200;
  color: black;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.description {
  margin-top: 20px;
  text-align: center;
  width: 100%;
  height: 500px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;

  /* border: 1px solid black; */

}

.presentation {
  padding: 3em;
}

.presentation p {
  opacity: 0;
  font-family: "Timmons NY", sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: black;
  padding-bottom: 3em;
}

.website-content .scroll-down {
  position: absolute;
  left: 50%;
  top: 25%;
  display: block;
  text-align: center;
  font-size: 20px;
  z-index: 2;
  text-decoration: none;
  text-shadow: 0;
  width: 18px;
  height: 18px;
  border-bottom: 2px solid black;
  border-right: 2px solid black;
  -webkit-transform: translate(-50%, 0) rotate(45deg);
  transform: translate(-50%, 0) rotate(45deg);
  animation: fade_move_down 2s cubic-bezier(0.19, 1, 0.22, 1) infinite;
  opacity: 0;
}

@keyframes fade_move_down {
  0% {
    transform: translate(0, -20px) rotate(45deg);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translate(0, 20px) rotate(45deg);
    opacity: 0;
  }
}



@media (max-width: 900px) {
  .presentation {
    padding: 1em;
  }

  .presentation p {
    font-size: 20px;
    font-weight: 400;
  }

  .pre-loader {

    padding: 1em;
    gap: 0.5em;
  }

  .hero {
    padding: 0;
  }

  .logo img,
  .logo a {
    min-width: 55%;
    padding-left: 0;
  }

  nav {
    /*     padding-left: 0;
    padding-right: 0; */
  }

  nav>div {
    font-size: 25px;
  }

  .header {
    padding-top: 70%;
  }

  .website-content .menu-new p {
    padding-right: 10px !important;
    padding-top: 5px;
  }

  .website-content .scroll-down {
    position: absolute;
    top: 20%;
    width: 13px;
    height: 13px;
  }

}
