* {
  font-family: "Quicksand", sans-serif;
  margin: 0;
  cursor: default;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

body {
  width: 100vw;
  background-color: #7E9156;
  overflow-x: clip;
}
body::-webkit-scrollbar {
  display: none;
}

button {
  border: none;
  background-color: #7E9156;
  border-radius: 0.2em 1em;
  color: white;
  box-sizing: border-box;
  padding: 0.5em 1em;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0em;
  word-spacing: 0em;
}
button:hover {
  cursor: pointer;
}

nav {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
  position: fixed;
  z-index: 4;
  box-sizing: border-box;
  width: 100%;
  height: 2rem;
  background-color: white;
  backdrop-filter: grayscale(0) blur(6px);
  padding: 3rem 28rem;
}
nav .logo-icon {
  height: 3rem;
  width: 3rem;
  fill: #6F804C;
}
nav .menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
  gap: 3rem;
}
nav .menu p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 0em;
  word-spacing: 0em;
  color: #7E9156;
  user-select: none;
  transition: color 0.2s;
}
nav .menu p:hover {
  cursor: pointer;
  color: #6F804C;
}

section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 12rem 28rem;
}
section div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
  gap: 8rem;
  width: 100%;
  height: 100%;
}
section div div {
  flex: 1;
}

section.quality .img-wrapper {
  transform: scaleX(-1);
}
section.quality .header-container::after {
  scale: -1 1;
}
section.quality .header-container::before {
  scale: -1 1;
  right: 0;
  bottom: 0;
  rotate: 12deg;
}

.header-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
  text-align: center;
  position: relative;
}
.header-container h1, .header-container span, .header-container .button {
  font-size: 8rem;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: -0.02em;
  word-spacing: 0em;
  font-family: "Agenor Neue", sans-serif;
  color: white;
  text-align: center;
  width: 100%;
}
.header-container p {
  font-size: 3.125rem;
  font-weight: 300;
  line-height: 1.2em;
  letter-spacing: 0.02em;
  word-spacing: 0em;
  color: white;
  text-wrap: balance;
  animation-delay: 0.2s;
}
.header-container::after, .header-container::before {
  content: "";
  position: absolute;
  z-index: -1;
  background: #6F804C;
  opacity: 1;
  border-radius: 32rem 0;
  width: 40rem;
  height: 40rem;
}
.header-container::before {
  right: -4rem;
  bottom: -6rem;
  width: 16rem;
  height: 12rem;
  rotate: 4deg;
}

section.section-white {
  align-items: start;
  background-color: white;
}
section.section-white .header-container {
  width: 60%;
  align-items: start;
}
section.section-white .header-container p, section.section-white .header-container h1, section.section-white .header-container span {
  font-weight: 300;
  color: #7E9156;
  text-align: left;
  text-wrap: balance;
  line-height: 1.05em;
}
section.section-white .header-container span {
  font-weight: 500;
}
section.section-white .header-container p {
  font-size: 4rem;
  font-weight: 400;
  width: 100%;
}

.img-wrapper {
  position: relative;
  width: 50rem;
  height: 50rem;
  scale: -1 1;
}
.img-wrapper img {
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  border-radius: 34rem 0;
  border: 2rem solid #7E9156;
  transform-origin: bottom left;
  opacity: 0;
  animation: leaf-rotate 1s 0s ease forwards paused, opacity-in 0.5s 0s ease forwards paused;
  transition: transform 0.2s ease;
  transform: rotate(-10deg);
}
.img-wrapper .leaf-shadow, .img-wrapper .leaf-shadow-right {
  position: absolute;
  transform-origin: bottom left;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #6F804C;
  border-radius: 34rem 0;
  transform: rotate(-20deg);
  rotate: 10deg;
  opacity: 0;
  animation: leaf-rotate 1s 0s ease forwards paused, opacity-in 1s 0s ease forwards paused;
}
.img-wrapper .leaf-shadow-right {
  transform: rotate(15deg);
  rotate: 5deg;
}

.button-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
  width: fit-content;
  border-radius: 3rem;
  margin-top: 1rem;
}
.button-wrapper:hover .button {
  transform: translateY(-1rem);
}
.button-wrapper:hover .button-shadow {
  visibility: visible;
  height: 3rem;
  transform: translateY(-0.5rem);
}
.button-wrapper .button, .button-wrapper .button-shadow {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1em;
  letter-spacing: 0em;
  word-spacing: 0em;
  font-family: "Agenor Neue", sans-serif;
  position: relative;
  color: white;
  background-color: #7E9156;
  padding: 1rem 2.5rem;
  width: 12rem;
  height: 2.5rem;
  border-radius: 3rem;
  z-index: 1;
  transition: all 0.2s 0s ease;
  cursor: pointer;
}
.button-wrapper .button-shadow {
  background-color: #6F804C;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  visibility: hidden;
}

.ivy-bg {
  position: absolute;
  z-index: 5;
  user-select: none;
  right: -26rem;
  top: 0;
  height: 100rem;
  scale: -1 1;
  --parallax-y: -30%;
  --parallax-x: 0;
  animation: parallax 1s 0s linear;
  animation-timeline: scroll();
}
.ivy-bg.left {
  --parallax-y: -50%;
  --parallax-x: 0;
  top: -12rem;
  left: -72rem;
}
.ivy-bg.bottom {
  top: 262rem;
  right: unset;
  left: -56rem;
  --parallax-y: -20%;
  scale: 1;
}
.ivy-bg.bottom.right {
  left: unset;
  right: -66rem;
  --parallax-y: -30%;
  scale: 1.5;
}

.plant-body {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: -5%;
  height: 105%;
  transform-origin: top center;
  scale: -3 3;
  translate: -50% 0;
  --path-offset: -128%;
  animation: path-scroll 1s linear;
  animation-timeline: scroll();
  stroke-dashoffset: 60%;
  stroke-dasharray: 60%;
  stroke-linecap: round;
}

section.download .buttons-horizontally {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
  width: fit-content;
  z-index: 10;
}
section.download .button, section.download .button-shadow {
  width: 16rem;
}

.placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0em;
  word-spacing: 0em;
  border: 0.75rem dotted #8c3a3a;
  color: #8c3a3a;
  border-radius: 2rem;
  text-align: center;
  padding: 4rem 4rem;
  flex: 0.5 1;
}

.trigger-animation img, .trigger-animation p, .trigger-animation h1, .trigger-animation div {
  animation-play-state: running !important;
}

/*# sourceMappingURL=style.css.map */
