<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">header {
  display: flex;
  align-items: center;
  background-color: var(--white);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.home header {
  position: fixed;
  background-color: transparent;
  transition: background-color 0.3s ease-in-out;
}

.home header.active {
  background-color: var(--white);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.breadcrumb {
  text-transform: uppercase;
  font-size: 10px;
  background-color: rgba(205, 224, 162, 0.25);
  color: var(--dark-green-1);
  padding: 6px 10px;
  border-radius: 20px;
  display: none;
}

.menu-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.custom-logo {
  width: 147px;
  object-fit: contain;
  height: unset;
}

.custom-logo-link {
  display: flex;
  align-items: center;
}

/* Initial State of the Menu - Hidden */
#popup-menu {
  position: fixed;
  top: 0;
  right: -280px; /* Start off screen */
  bottom: 0;
  width: 280px; /* Adjust as needed */
  transition: right 0.3s ease-in-out;
  padding: 1.5rem;
  background-color: var(--white);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}

/* State of the Menu when Visible */
#popup-menu.menu-visible {
  right: 0;
}

/* Style for the Menu Trigger Button */
.button--menu {
  /* Add styles for your menu button here */
  width: 26px;
  display: flex;
  gap: 0.6rem;
  flex-direction: column;
  cursor: pointer;
}

.button--menu div {
  height: 2px;
  width: 26px;
  background-color: var(--dark-green-1);
}

.home header .button--menu div {
  background-color: var(--white);
}

.home header.active .button--menu div {
  background-color: var(--dark-green-1);
}

.button--close {
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}

.menu {
  list-style: none;
  display: grid;
  gap: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.menu a {
  text-decoration: unset;
  color: var(--dark-green-1);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px; /* 235.294% */
  letter-spacing: 0.17px;
  text-transform: uppercase;
}

.menu-item {
  border-bottom: 1px solid rgba(205, 224, 162, 0.4);
}

@media (min-width: 768px) {
  .breadcrumb {
    font-size: 13px;
    letter-spacing: 0.13px;
    display: block;
  }
}

@media (min-width: 1024px) {
  .home .custom-logo {
    width: 233px;
    transition: width 0.3s ease-in-out;
  }

  .home header.active .custom-logo {
    width: 147px;
  }
}
</pre></body></html>