html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
  overflow: hidden;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
@font-face {
  font-family: 'acumin';
  src: url('../assets/acumin-regular.otf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'acumin';
  src: url('../assets/acumin-semibold.otf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'optima';
  src: url('../assets/Optima.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'optima';
  src: url('../assets/Optima\ Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'optima';
  src: url('../assets/Optima\ Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'optima';
  src: url('../assets/Optima\ Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}
.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trail-ink {
  position: absolute;
  width: 30px;
  height: 0.5px;
  background: #000;
  border-radius: 0;
  transform: rotate(0deg);
  pointer-events: none;
  z-index: 9999;
  filter: blur(0.5px);
  transition: background 1s ease, box-shadow 1s ease;
}
.trail-ink.white {
  background: #fff;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
}
@keyframes inkFade {
  50% {
    opacity: 0.3;
    transform: scale(1.5) rotate(10deg);
  }
  to {
    opacity: 0;
    transform: scale(2) rotate(25deg);
  }
}
* {
  transition: opacity 1s ease-in-out;
}
.header .main-logo {
  transition: background-image 1s ease-in-out;
}
.header .main-logo::before {
  transition: background-image 0.6s ease-in-out, opacity 0.6s ease-in-out;
}
.header .main-logo::after {
  transition: opacity 0.6s ease-in-out;
}
.footer ul li a {
  transition: color 2s ease-in-out;
}
.bersembunyi {
  opacity: 0;
  pointer-events: none;
}
.tampil {
  opacity: 1;
  pointer-events: auto;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.container {
  margin: 0 auto;
  max-width: 980px;
}
@media (max-width: 768px) {
  .container {
    max-width: 768px;
  }
}
header {
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
}
header .main-logo {
  position: relative;
  display: block;
  max-width: 200px;
  width: 100%;
  height: 60px;
  text-decoration: none;
  overflow: hidden;
}
header .main-logo::before,
header .main-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
header .main-logo::before {
  opacity: 1;
  z-index: 1;
}
header .main-logo::after {
  opacity: 0;
  z-index: 2;
}
header .main-logo:hover::before {
  opacity: 0;
}
header .main-logo:hover::after {
  opacity: 1;
}
header .main-logo.green::before {
  background-image: url(../assets/logo-text-green.svg);
}
header .main-logo.green::after {
  background-image: url(../assets/tree-green.svg);
}
header .main-logo.brown::before {
  background-image: url(../assets/logo-text-brown.svg);
}
header .main-logo.brown::after {
  background-image: url(../assets/tree-brown.svg);
}
header .main-logo.white::before {
  background-image: url(../assets/logo-text-white.svg);
}
header .main-logo.white::after {
  background-image: url(../assets/tree-white.svg);
}
@media (max-width: 768px) {
  header {
    height: 129px;
  }
  header .main-logo {
    max-width: 163px;
    height: 15px;
  }
  header .main-logo::before {
    background-size: cover;
  }
  header .main-logo:hover::before {
    opacity: 1;
  }
  header .main-logo:hover::after {
    opacity: 0;
  }
}
footer {
  height: 90px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
}
footer.white .nav-menu li a {
  color: #ffffff;
}
footer.brown .nav-menu li a {
  color: #a28d7f;
}
footer h4 {
  font-family: 'optima', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #1d2e2a;
  transition: opacity 0.5s ease;
  position: absolute;
}
footer .nav-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 74px;
  align-items: center;
}
footer .nav-menu li {
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.5s ease;
  display: flex;
  align-items: center;
  justify-self: center;
}
footer .nav-menu li a {
  font-family: 'optima', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #1d2e2a;
  text-decoration: none;
  text-transform: uppercase;
}
footer .nav-menu li:hover {
  border-bottom-color: #9b9b9b;
}
footer .nav-menu li.active {
  border-bottom-color: #9b9b9b;
}
@media (max-width: 768px) {
  footer {
    height: 129px;
  }
  footer h4 {
    font-family: 'optima', Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0.12em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0c2319;
  }
  footer .nav-menu {
    display: flex;
    gap: 38px;
  }
  footer .nav-menu li {
    border-bottom: 0;
  }
  footer .nav-menu li a {
    font-family: 'optima', Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0.012em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #0c2319;
  }
  footer .nav-menu li:hover {
    border-bottom-color: transparent;
  }
}
.home-page {
  z-index: 50;
  width: 100%;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-out;
}
.home-page.mutlakanDia {
  z-index: 999999;
  position: absolute;
}
.home-page::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: -10;
  background: url(../assets/brown-backgroud.png) no-repeat center;
  background-size: cover;
}
.home-page video {
  width: 100%;
  height: calc(100% - 90px * 2);
  mix-blend-mode: darken;
}
@media (max-width: 768px) {
  .home-page {
    display: flex;
    align-items: center;
    justify-self: center;
  }
  .home-page video {
    height: calc(100% - 129px * 2);
  }
}
.about-page {
  z-index: 40;
  height: 100dvh;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.about-page::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: -10;
  background: url(../assets/brown-backgroud.png) no-repeat center;
  background-size: cover;
}
.about-page section {
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}
.about-page section.open {
  opacity: 1;
}
.about-page section.open .title {
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInLeft 0.4s ease 0.1s forwards;
}
.about-page section.open .paragraph {
  opacity: 0;
  transform: translateX(20px);
  animation: fadeInRight 0.4s ease 0.2s forwards;
}
.about-page section.open .grid .unit {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.4s ease 0.3s forwards;
}
.about-page section.open .grid .unit:nth-child(2) {
  animation-delay: 0.4s;
  transform: translateY(-20px);
  animation-name: fadeInDown;
}
.about-page section.open .grid .unit:nth-child(3) {
  animation-delay: 0.5s;
  transform: translateX(-20px);
  animation-name: fadeInLeft;
}
.about-page section.open .grid .unit .img {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.4s ease 0.6s forwards;
}
.about-page section.open .grid .unit .title {
  opacity: 0;
  transform: translateX(15px);
  animation: fadeInRight 0.4s ease 0.7s forwards;
}
.about-page section:not(.open) .title {
  animation: fadeOutLeft 0.4s ease forwards;
}
.about-page section:not(.open) .paragraph {
  animation: fadeOutRight 0.4s ease forwards;
}
.about-page section:not(.open) .grid .unit {
  animation: fadeOutDown 0.4s ease forwards;
}
.about-page section:not(.open) .grid .unit:nth-child(2) {
  animation-name: fadeOutUp;
}
.about-page section:not(.open) .grid .unit:nth-child(3) {
  animation-name: fadeOutLeft;
}
.about-page section:not(.open) .grid .unit .img {
  animation: fadeOutUp 0.4s ease forwards;
}
.about-page section:not(.open) .grid .unit .title {
  animation: fadeOutRight 0.4s ease forwards;
}
.about-page .section-one,
.about-page .section-two,
.about-page .section-three {
  display: flex;
  flex-direction: column;
}
.about-page .section-one .title,
.about-page .section-two .title,
.about-page .section-three .title {
  font-family: 'optima', Arial, sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 72px;
  letter-spacing: -0.01em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #a28d7f;
}
.about-page .section-one .paragraph,
.about-page .section-two .paragraph,
.about-page .section-three .paragraph {
  font-family: 'acumin', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #1d2e2a;
}
.about-page .section-two .title,
.about-page .section-three .title {
  margin-bottom: 48px;
}
.about-page .section-four.mobile,
.about-page .section-five.mobile {
  display: none;
}
.about-page .section-four .grid,
.about-page .section-five .grid {
  display: flex;
  align-items: start;
  gap: 70px;
}
.about-page .section-four .grid .unit,
.about-page .section-five .grid .unit {
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.about-page .section-four .grid .unit .img,
.about-page .section-five .grid .unit .img {
  width: 110px;
  height: 110px;
  margin-bottom: 27px;
}
.about-page .section-four .grid .unit .title,
.about-page .section-five .grid .unit .title {
  font-family: 'optima', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #a28d7f;
  text-transform: uppercase;
  margin-bottom: 14px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-page .section-four .grid .unit p,
.about-page .section-five .grid .unit p {
  font-family: 'acumin', Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #1d2e2a;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-20px);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(20px);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(20px);
  }
}
@media (max-width: 768px) {
  .about-page section {
    width: calc(100% - 60px);
    left: 30px;
  }
  .about-page .section-one .title,
  .about-page .section-two .title,
  .about-page .section-three .title {
    font-family: 'optima', Arial, sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    letter-spacing: -0.01em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #a28d7f;
  }
  .about-page .section-one .title br,
  .about-page .section-two .title br,
  .about-page .section-three .title br {
    display: none;
  }
  .about-page .section-one .paragraph,
  .about-page .section-two .paragraph,
  .about-page .section-three .paragraph {
    font-family: 'acumin', Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #1d2e2a;
  }
  .about-page .section-one .paragraph br,
  .about-page .section-two .paragraph br,
  .about-page .section-three .paragraph br {
    display: none;
  }
  .about-page .section-two .title,
  .about-page .section-three .title {
    margin-bottom: 30px;
  }
  .about-page .section-four.desktop,
  .about-page .section-five.desktop {
    display: none;
  }
  .about-page .section-four.mobile,
  .about-page .section-five.mobile {
    display: flex;
  }
  .about-page .section-four .grid,
  .about-page .section-five .grid {
    gap: 42px;
    flex-direction: column;
  }
  .about-page .section-four .grid .unit,
  .about-page .section-five .grid .unit {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .about-page .section-four .grid .unit.desktop,
  .about-page .section-five .grid .unit.desktop {
    display: none;
  }
  .about-page .section-four .grid .unit .img,
  .about-page .section-five .grid .unit .img {
    width: 83px;
    height: 83px;
    margin-bottom: 10px;
  }
  .about-page .section-four .grid .unit .title,
  .about-page .section-five .grid .unit .title {
    font-family: 'optima', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.01em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #a28d7f;
    height: fit-content;
  }
  .about-page .section-four .grid .unit p,
  .about-page .section-five .grid .unit p {
    font-family: 'acumin', Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #1d2e2a;
  }
  .about-page .section-four .grid .unit p br,
  .about-page .section-five .grid .unit p br {
    display: none;
  }
}
.investors-page {
  z-index: 40;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.investors-page::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: -10;
  background: url(../assets/green-background.png) no-repeat center;
  background-size: cover;
}
.investors-page .content {
  width: 386px;
  height: fit-content;
  position: absolute;
  top: calc(50% - 262px/2);
}
.investors-page .content h2 {
  font-family: 'optima', Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: 0;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #a28d7f;
  margin-bottom: 76px;
}
.investors-page .content form .unit {
  display: flex;
  align-items: center;
  border-bottom: solid 1.5px #a28d7f;
  margin-bottom: 27px;
  padding-bottom: 10px;
}
.investors-page .content form .unit:last-of-type {
  margin-bottom: 22px;
}
.investors-page .content form .unit label {
  font-family: 'acumin', Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #a28d7f;
}
.investors-page .content form .unit input {
  all: unset;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0;
  margin: 0;
  height: 17px;
  width: 100%;
  font-family: 'acumin', Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0;
  text-align: right;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #a28d7f;
}
.investors-page .content form .unit input:-webkit-autofill {
  box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  background-color: transparent !important;
  -webkit-text-fill-color: #a28d7f !important;
  transition: background-color 9999s ease-in-out 0s;
}
.investors-page .content form .submit {
  all: unset;
  font-family: 'optima', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #a28d7f;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 768px) {
  .investors-page .content {
    width: calc(100% - 60px);
    left: 30px;
    top: calc(50% - 274px/2);
  }
  .investors-page .content h2 {
    font-family: 'optima', Arial, sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 39px;
    letter-spacing: 0;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #a28d7f;
    margin-bottom: 55;
  }
  .investors-page .content form .unit {
    margin-bottom: 25px;
    padding-bottom: 15px;
  }
  .investors-page .content form .unit:last-of-type {
    margin-bottom: 30px;
  }
}
.contact-page {
  z-index: 40;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-page::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: -10;
  background: url(../assets/contact-backgroud.jpg) no-repeat center;
  background-size: cover;
}
.contact-page .content {
  width: 500px;
  height: fit-content;
  position: absolute;
  top: calc(50% - 197px/2);
}
.contact-page .content h2 {
  font-family: 'optima', Arial, sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 72px;
  letter-spacing: 0;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #ffffff;
  margin-bottom: 30px;
}
.contact-page .content p {
  font-family: 'optima', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #ffffff;
}
.contact-page .content p a {
  font-family: 'optima', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  font-style: italic;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.contact-page .content p a:hover {
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 768px) {
  .contact-page::after {
    background: url(../assets/contact-background-mobile.jpg) no-repeat center;
    background-size: cover;
    background-position: right;
  }
  .contact-page .content {
    width: calc(100% - 60px);
    left: 30px;
    top: calc(50% - 125px/2);
  }
  .contact-page .content h2 {
    font-family: 'optima', Arial, sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    letter-spacing: 0;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
  }
  .contact-page .content p {
    font-family: 'acumin', Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
  }
  .contact-page .content p a {
    font-family: 'optima', Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
  }
}
