@font-face {
  font-family: Pretendard;
  src: url('../fonts/Pretendard-SemiBold.otf') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Pretendard;
  src: url('../fonts/Pretendard-ExtraBold.otf') format("opentype"), url('../fonts/Pretendard-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Pretendard;
  src: url('../fonts/Pretendard-Black.otf') format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Pretendard;
  src: url('../fonts/Pretendard-ExtraLight.otf') format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Pretendard;
  src: url('../fonts/Pretendard-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Pretendard;
  src: url('../fonts/Pretendard-Thin.otf') format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Pretendard;
  src: url('../fonts/Pretendard-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Pretendard;
  src: url('../fonts/Pretendard-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --global--font-family: Pretendard, Arial, sans-serif;
  --colors--black: #060709;
  --colors--brand-primary: #0c5544;
  --container-sizing--container-large: 1440px;
  --colors--agrowhub-green: #39b54a;
  --container-sizing--container-full: 100vw;
  --container-sizing--container-small: 1080px;
  --colors--white: #fff;
  --colors--brand-tertiary: #a2bf30;
  --colors--gray-2: whitesmoke;
  --colors--gray-3: #d3d3d3;
  --colors--brand-secondary: #15755e;
  --colors--gray-1: #f9f9f9;
  --colors--gray-5: #575757;
  --colors--black-2: #0c0d0f;
  --colors--gray-4: #888;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  font-family: var(--global--font-family);
  color: var(--colors--black);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.1;
}

h1 {
  letter-spacing: -.2rem;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.1;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 1.1;
}

h3 {
  letter-spacing: -.05rem;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.1;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.1;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
}

p {
  margin-bottom: 0;
  font-size: 1.25rem;
  line-height: 150%;
}

a {
  color: inherit;
  text-decoration: underline;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

li {
  margin-bottom: 4px;
  line-height: 1.5;
}

blockquote {
  border-left: 5px solid var(--colors--brand-primary);
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 1rem;
  line-height: 1.1;
}

.section-hero {
  background-color: #06070900;
  background-image: linear-gradient(0deg, #fff0, #0009 70%, #000000bf);
  background-position: 0 0;
  flex-flow: column;
  justify-content: center;
  min-height: calc(100vh - 44px);
  display: flex;
  position: relative;
}

.section-promo {
  opacity: 1;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #fff3;
  border-radius: 50px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  height: 44px;
  display: flex;
  position: absolute;
  inset: 20px 48px 15px;
}

.container {
  max-width: var(--container-sizing--container-large);
  color: var(--colors--agrowhub-green);
  flex-flow: column;
  height: 100%;
  padding-left: 48px;
  padding-right: 48px;
  display: flex;
}

.container.full {
  max-width: var(--container-sizing--container-full);
  padding-left: 0;
  padding-right: 0;
}

.container.small {
  max-width: var(--container-sizing--container-small);
}

.promo-wrapper {
  color: var(--colors--white);
  background-color: #39b54a00;
  justify-content: center;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.promo-text {
  color: var(--colors--white);
  font-size: 1.125rem;
}

.promo-text-link {
  color: var(--colors--brand-tertiary);
  text-decoration: none;
  -webkit-text-decoration-color: var(--colors--agrowhub-green);
  text-decoration-color: var(--colors--agrowhub-green);
  text-decoration-style: solid;
  transition: opacity .2s cubic-bezier(.165, .84, .44, 1);
}

.promo-text-link:hover {
  opacity: .8;
}

.hero-heading {
  color: var(--colors--white);
  font-weight: 500;
}

.hero-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.hero-paragraph {
  color: var(--colors--white);
  font-size: 1.5rem;
}

.hero-button-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.button {
  background-color: var(--colors--white);
  color: var(--colors--brand-primary);
  white-space: nowrap;
  word-break: keep-all;
  border-radius: 100vw;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 150%;
  transition: color .2s cubic-bezier(.165, .84, .44, 1), background-color .2s cubic-bezier(.165, .84, .44, 1);
  display: inline-flex;
}

.button:hover {
  background-color: var(--colors--gray-2);
}

.button.secondary {
  background-color: var(--colors--white);
  color: var(--colors--agrowhub-green);
}

.button.secondary:hover {
  background-color: var(--colors--gray-3);
}

.button.primary {
  background-color: var(--colors--agrowhub-green);
  color: var(--colors--white);
  overflow: hidden;
}

.button.primary:hover {
  background-color: var(--colors--brand-secondary);
}

.section-about {
  background-color: var(--colors--gray-1);
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  justify-content: space-between;
  align-items: start;
}

.about-heading {
  color: var(--colors--gray-5);
  font-size: 2rem;
  line-height: 120%;
}

.text-reveal-text {
  font-size: 4.5vh;
  font-weight: 400;
  line-height: 1.25;
}

.section-solution {
  padding-top: 80px;
  padding-bottom: 80px;
}

.solution-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  overflow: hidden;
}

.solution-heading {
  color: var(--colors--gray-5);
  max-width: 550px;
}

.solution-subheading {
  color: var(--colors--gray-5);
  max-width: 500px;
}

.solution-item {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.solution-image {
  aspect-ratio: 1;
  width: 100%;
}

.solution-label {
  background-color: var(--colors--agrowhub-green);
  border-radius: 100vw;
  padding: 10px;
}

.solution-tag-text {
  color: var(--colors--white);
  font-weight: 500;
}

.solution-description {
  color: var(--colors--gray-5);
  font-size: 1.5rem;
}

.solution-image-wrapper {
  width: 100%;
  margin-bottom: 8px;
  overflow: hidden;
}

.solution-heading-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  display: flex;
}

.section-clients {
  padding-top: 80px;
  padding-bottom: 80px;
}

.clients-heading-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.clients-heading, .clients-description {
  color: var(--colors--gray-5);
  max-width: 850px;
}

.clients-logo-carousel {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.clients-logo-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  flex: none;
  justify-content: space-around;
  align-items: center;
  min-width: 100%;
  display: flex;
}

.client-image {
  flex: none;
  height: 100%;
  max-height: 50%;
}

.client-logo-wrapper {
  background-color: var(--colors--gray-1);
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  width: 184px;
  height: 184px;
  padding: 24px;
  display: flex;
}

.section-how-to {
  background-color: var(--colors--gray-1);
  padding-top: 80px;
  padding-bottom: 80px;
}

.how-to-wrapper {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 6fr 4fr;
  align-items: stretch;
}

.how-to-image-wrapper {
  flex: 1;
}

.how-to-content-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  flex: none;
  height: 100%;
  display: flex;
}

.steps-image {
  width: 100%;
}

.how-to-heading {
  color: var(--colors--gray-5);
  max-width: 850px;
}

.timeline {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 40px;
  display: flex;
  position: relative;
}

.timeline-indicator {
  background-color: var(--colors--agrowhub-green);
  color: var(--colors--white);
  border-radius: 100vw;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
  transform: translate(0, 8px);
}

.timeline-content {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 500;
}

.timeline-subtitle {
  color: var(--colors--gray-5);
  font-size: 1.125rem;
}

.timeline-path {
  border-left-style: dashed;
  border-left-width: 1px;
  border-left-color: var(--colors--brand-primary);
  height: calc(100% - 32px);
  position: absolute;
  inset: auto auto 0% 16px;
  transform: translate(0, 8px);
}

.how-to-button-wrapper {
  flex: 1;
  align-items: flex-end;
  display: flex;
}

.section-faq {
  padding-top: 80px;
  padding-bottom: 80px;
  display: none;
}

.faq-heading-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.faq-heading {
  color: var(--colors--gray-5);
  max-width: 850px;
}

.faq-description {
  color: var(--colors--gray-5);
  max-width: 850px;
  font-size: 1.25rem;
}

.faq-list {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
}

.accordion-card {
  background-color: var(--colors--gray-1);
  cursor: pointer;
  border-radius: 12px;
  flex-flow: column;
  grid-template-rows: auto 0;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-bottom: 24px;
  display: flex;
  overflow: hidden;
}

.accordion-heading {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px 0;
  display: flex;
}

.accordion-title {
  color: var(--colors--gray-5);
  flex: 1;
  font-size: 2rem;
  font-weight: 500;
}

.accordion-toggle {
  border: 1px solid var(--colors--brand-primary);
  border-radius: 100vw;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.path-8gi6r {
  -webkit-text-stroke-color: inherit;
  color: inherit;
}

.chevron-down {
  color: var(--colors--brand-primary);
  width: 16px;
}

.accordion-content {
  width: 100%;
  height: 0;
  padding-left: 40px;
  padding-right: 40px;
  transition: max-height .4s cubic-bezier(.165, .84, .44, 1);
  overflow: hidden;
}

.accordion-content-text {
  color: var(--colors--gray-5);
  margin-top: 1rem;
  font-size: 1.25rem;
}

.section-cta {
  background-color: var(--colors--black);
  background-image: linear-gradient(0deg, #00000080 50%, #0000), url('../images/cta.webp');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  padding-top: 80px;
  padding-bottom: 80px;
}

.cta-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  max-width: 700px;
  display: flex;
}

.cta-heading, .cta-description {
  color: var(--colors--white);
  max-width: 850px;
}

.cta-button-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: flex;
}

.footer {
  background-color: var(--colors--black);
  color: var(--colors--white);
  margin-bottom: 40px;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.footer-lower {
  grid-column-gap: 24px;
  grid-row-gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.footer-content {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-block {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-row-title {
  color: var(--colors--agrowhub-green);
  font-size: 1rem;
  font-weight: 500;
}

.footer-link {
  color: var(--colors--gray-3);
  font-size: .9rem;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--colors--agrowhub-green);
  text-decoration: none;
}

.footer-social-block {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-social-link {
  border: 1px solid var(--colors--gray-5);
  color: var(--colors--white);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  transition: opacity .2s cubic-bezier(.165, .84, .44, 1);
  display: flex;
}

.footer-social-link:hover {
  background-color: var(--colors--white);
  color: var(--colors--black);
}

.copyright-text {
  color: var(--colors--gray-5);
  font-size: 1rem;
  text-decoration: none;
}

.copyright-text._2 {
  color: var(--colors--white);
}

.copyright-text._1 {
  color: var(--colors--gray-5);
  font-size: .9rem;
}

.copyright-text._1.disclamer {
  color: var(--colors--gray-5);
}

.footer-upper {
  border-bottom: 1px solid var(--colors--agrowhub-green);
  justify-content: space-between;
  place-items: center start;
  padding-bottom: 24px;
}

.brand-logo-link {
  letter-spacing: 12px;
  text-transform: uppercase;
  color: inherit;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
}

.footer-description {
  color: var(--colors--gray-3);
  max-width: 460px;
  font-size: 1rem;
}

.copyright-block {
  background-color: var(--colors--agrowhub-green);
  border-radius: 50px;
  margin-bottom: 40px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  display: block;
}

.footer-wrapper {
  padding-top: 50px;
}

.navbar {
  background-color: #0000;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  inset: 80px 0% auto;
}

.navbar-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: var(--colors--white);
  background-color: #ffffff1a;
  border-radius: 100vw;
  justify-content: flex-start;
  align-items: center;
  padding: 4px;
  display: none;
}

.nav-menu {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 8px;
  padding-right: 8px;
  display: flex;
}

.nav-link {
  color: inherit;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
}

.nav-link:hover {
  background-color: #0000000d;
}

.nav-link:focus-visible, .nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-button {
  border-radius: 24px;
  justify-content: flex-end;
  align-items: center;
  width: 0;
  display: flex;
  overflow: hidden;
}

.nav-shadow {
  pointer-events: none;
  border-radius: 100vh;
  position: absolute;
  inset: 0%;
  box-shadow: 0 4px 20px #0000001a;
}

.nav-logo-wrapper {
  color: var(--colors--white);
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.nav-cta-wrapper {
  justify-content: flex-end;
  display: flex;
  overflow: hidden;
}

.about-description-wrapper {
  flex: none;
}

.text-reveal {
  color: var(--colors--agrowhub-green);
  position: relative;
  overflow: hidden;
}

.text-reveal.indent {
  text-indent: 64px;
}

.text-reveal-overlay {
  z-index: 1;
  background-color: var(--colors--gray-1);
  opacity: .9;
  pointer-events: none;
  position: absolute;
  inset: 0%;
}

.cursor-area {
  z-index: 9999;
  pointer-events: none;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0%;
}

.cursor-icon {
  background-color: var(--colors--brand-primary);
  opacity: 0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.cursor-arrow-icon {
  color: #fff;
}

.social-icon {
  color: inherit;
}

.hero-heading-line-wrapper, .hero-paragraph-wrapper, .solution-card-wrapper {
  overflow: hidden;
}

.outer-animation {
  border-radius: 0;
  overflow: hidden;
}

.solution-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.accordion-wrapper {
  width: 100%;
}

.hamburger-icon {
  color: #fff;
}

.nav-menu-item {
  margin-bottom: 0;
}

.nav-menu-header {
  color: var(--colors--black);
  display: none;
  overflow: hidden;
}

.ikonik-6pjwv {
  color: #060709;
}

.nav-logo-link, .footer-logo-link {
  color: inherit;
  text-decoration: none;
}

.utility-heading-section {
  background-color: var(--colors--brand-primary);
  color: var(--colors--white);
  border-bottom: 1px solid #181818;
  padding: 80px 30px;
  position: relative;
}

.utility-heading-wrapper {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.item-name {
  font-weight: 400;
}

.content-heading {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.content-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  place-items: baseline start;
  display: grid;
}

.link {
  line-height: 150%;
}

.font-box {
  border: 2px none var(--colors--black);
  background-color: var(--colors--gray-2);
  justify-content: center;
  align-items: center;
  width: 100px;
  padding: 16px;
  display: flex;
}

.item-description {
  color: var(--colors--gray-5);
  font-size: 1rem;
}

.color-dot {
  border: 4px solid var(--colors--gray-2);
  background-color: var(--colors--white);
  border-radius: 100%;
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

.color-dot.brand-secondary {
  background-color: var(--colors--brand-secondary);
}

.color-dot.tertiary {
  background-color: var(--colors--brand-tertiary);
}

.color-dot.black {
  background-color: var(--colors--black);
}

.color-dot.black-2 {
  background-color: var(--colors--black-2);
}

.color-dot.gray-1 {
  background-color: var(--colors--gray-1);
}

.color-dot.gray-2 {
  background-color: var(--colors--gray-2);
}

.color-dot.gray-3 {
  background-color: var(--colors--gray-3);
}

.color-dot.gray-4 {
  background-color: var(--colors--gray-5);
}

.color-dot.white {
  background-color: var(--colors--white);
}

.styleguide-content-wrapper {
  grid-column-gap: 64px;
  grid-row-gap: 32px;
  grid-template-columns: .25fr .5fr;
  align-items: start;
}

.content-button {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-columns: .5fr 1fr;
  padding-bottom: 80px;
  display: flex;
}

.color-item {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
}

.content-typography {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-columns: .5fr 1fr;
  padding-bottom: 80px;
  display: flex;
}

.font-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.content-color {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  align-items: stretch;
}

.color-row {
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  justify-content: flex-start;
  justify-items: start;
  width: 100%;
}

.styleguide-button-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-columns: .5fr 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.font-sample {
  font-size: 2rem;
}

.utility-content-section {
  padding: 80px 30px;
  position: relative;
}

.instructions-content-wrapper {
  grid-column-gap: 64px;
  grid-row-gap: 32px;
  grid-template-columns: .25fr .5fr 1fr;
  align-items: start;
}

.copyright-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: wrap;
  justify-content: space-between;
  display: flex;
}

.copyright-wrapper._2 {
  justify-content: space-between;
  margin-bottom: 0;
}

.copyright-wrapper._1 {
  justify-content: center;
  margin-bottom: 20px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

._404-section {
  background-color: #0000;
  padding: 80px 30px;
}

.container-2 {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

._404-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.not-found-text {
  color: var(--colors--brand-primary);
  font-size: 20rem;
}

._404-button-wrapper {
  margin-top: 16px;
}

.button-wrapper {
  color: #131313;
  background-color: #eb8317;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-wrapper:hover {
  color: #131313;
}

.button-text {
  z-index: 1;
  color: inherit;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
}

.button-mask {
  background-color: #fff;
  position: absolute;
  inset: 0;
  transform: translate(0, 101%);
}

.image {
  width: 160px;
}

.hero-background {
  box-sizing: border-box;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  opacity: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: auto;
  display: none;
  position: absolute;
  inset: 0%;
  overflow: visible;
}

.div-block {
  opacity: .19;
  width: 100%;
  max-width: 1864.24rem;
  height: 100vh;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  position: absolute;
  inset: 0%;
}

.background-video {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.text-span {
  color: var(--colors--agrowhub-green);
  -webkit-text-stroke-color: var(--colors--agrowhub-green);
  text-decoration: none;
  -webkit-text-decoration-color: var(--colors--agrowhub-green);
  text-decoration-color: var(--colors--agrowhub-green);
}

.hero-background-2 {
  box-sizing: border-box;
  opacity: 1;
  color: #060709;
  align-self: auto;
  display: block;
  position: absolute;
  inset: 0%;
}

.div-block-2 {
  opacity: .19;
  background-image: url('../images/Asset-4.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: fixed;
  width: 100%;
  max-width: 1864.24rem;
  height: 100vh;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  position: absolute;
  inset: 0%;
}

.background-video-2 {
  width: 100%;
  height: 100%;
  display: block;
}

.text-span-2 {
  color: var(--colors--agrowhub-green);
  font-weight: 600;
  text-decoration: none;
}

.text-span-3, .text-span-4 {
  color: var(--colors--agrowhub-green);
}

.image-2 {
  opacity: 1;
  width: 100px;
  margin-right: 0;
}

.link-2 {
  text-decoration: none;
}

.link-block {
  justify-content: flex-end;
  display: flex;
}

.text-span-5 {
  background-image: linear-gradient(to bottom, var(--colors--agrowhub-green), var(--colors--agrowhub-green));
  color: var(--colors--white);
  text-overflow: clip;
  white-space: normal;
  word-break: normal;
  border-radius: 4px;
  padding-left: 5px;
  padding-right: 5px;
}

.bold-text {
  color: var(--colors--agrowhub-green);
}

.text-span-6 {
  color: var(--colors--agrowhub-green);
  font-weight: 600;
}

.text-span-7 {
  background-color: var(--colors--agrowhub-green);
  color: var(--colors--white);
  border-radius: 4px;
  padding-left: 5px;
  padding-right: 5px;
}

.link-block-movil {
  justify-content: flex-end;
  display: none;
}

.image-logo-center {
  opacity: 1;
  width: 100px;
  margin-right: 0;
}

.text-span-8 {
  color: var(--colors--agrowhub-green);
}

.div-block-3 {
  flex-flow: row;
  justify-content: center;
  width: 30%;
  margin-bottom: 40px;
  display: flex;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 3.75rem;
  }

  .section-promo {
    left: 24px;
    right: 24px;
  }

  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-paragraph {
    font-size: 1.25rem;
  }

  .about-wrapper {
    flex-flow: column;
    grid-template-columns: 1fr;
  }

  .about-heading {
    font-size: 1.5rem;
  }

  .text-reveal-text {
    font-size: 4vw;
  }

  .solution-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .solution-heading {
    max-width: 500px;
  }

  .solution-heading-wrapper {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .client-image {
    height: 40px;
  }

  .how-to-wrapper {
    grid-template-columns: 6fr;
  }

  .section-cta {
    background-image: url('../images/cta_1.webp');
    background-position: 40% 0;
    background-size: auto;
    padding-top: 170px;
    padding-bottom: 170px;
  }

  .footer-lower {
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
  }

  .footer-content {
    grid-column-gap: 16px;
    grid-row-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    display: flex;
  }

  .footer-description {
    justify-content: flex-start;
    max-width: none;
    display: flex;
  }

  .navbar {
    background-color: #fff0;
    top: 80px;
  }

  .navbar-wrapper {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .nav-menu-wrapper {
    z-index: 20;
    background-color: var(--colors--white);
    color: var(--colors--black);
    border-radius: 0;
    height: 100vh;
    padding: 0;
    position: fixed;
    inset: 0%;
    transform: translate(0, -44px);
  }

  .nav-menu {
    background-color: #fff;
    flex-flow: column;
    justify-content: space-around;
    align-items: stretch;
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
  }

  .nav-link {
    padding: 24px 0;
    display: block;
  }

  .hamburger-button {
    padding: 12px;
    display: none;
    position: relative;
  }

  .hamburger-button.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .nav-button {
    justify-content: flex-start;
    align-items: center;
    width: auto;
    padding: 32px 24px;
  }

  .nav-shadow {
    display: none;
  }

  .nav-logo-wrapper {
    flex: 1;
    justify-content: flex-start;
    align-items: center;
  }

  .nav-cta-wrapper {
    justify-content: flex-end;
    align-items: center;
  }

  .hamburger-icon {
    vertical-align: middle;
    display: none;
  }

  .nav-menu-item {
    border-bottom: 1px solid var(--colors--gray-3);
    text-align: left;
    padding-bottom: 8px;
  }

  .nav-menu-header {
    color: var(--colors--black);
    flex: 1;
    justify-content: space-between;
    align-items: center;
    padding: 32px 24px;
    display: flex;
  }

  .close-button {
    padding: 12px;
  }

  .ikonik-6pjwv {
    color: var(--colors--black);
  }

  .utility-heading-wrapper {
    flex-flow: column;
  }

  .content-heading {
    position: static;
  }

  .styleguide-content-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1.75fr;
  }

  .color-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .instructions-content-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1.75fr;
  }

  .container-2 {
    max-width: 728px;
  }

  .not-found-text {
    font-size: 18rem;
  }

  .hero-background-2 {
    display: block;
  }

  .div-block-3 {
    width: 40%;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    letter-spacing: -.1rem;
    font-size: 2.25rem;
  }

  h2 {
    letter-spacing: -.1rem;
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.45rem;
  }

  h4 {
    font-size: 1.15rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6, p {
    font-size: .875rem;
  }

  ul, ol {
    padding-left: 24px;
  }

  li {
    font-size: .875rem;
  }

  .section-promo {
    height: 40px;
    left: 16px;
    right: 16px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .promo-text, .hero-paragraph {
    font-size: .875rem;
  }

  .button {
    padding: 8px 16px;
    font-size: .75rem;
  }

  .section-about {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-heading {
    letter-spacing: 0;
    font-size: .875rem;
  }

  .section-solution {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .solution-tag-text {
    font-size: 1rem;
  }

  .solution-description {
    font-size: 1.125rem;
  }

  .section-clients {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .client-logo-wrapper {
    width: 100px;
    height: 100px;
  }

  .section-how-to {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .timeline-title {
    font-size: 1rem;
  }

  .timeline-subtitle {
    font-size: .875rem;
  }

  .section-faq {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .accordion-card {
    padding-bottom: 16px;
  }

  .accordion-heading {
    padding-top: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .accordion-title {
    font-size: 1.5rem;
  }

  .accordion-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .accordion-content-text {
    font-size: .875rem;
  }

  .section-cta {
    background-position: 40% 30%;
    padding-top: 40px;
    padding-bottom: 195px;
  }

  .footer-lower {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .footer-content {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-row-title {
    font-size: 1rem;
  }

  .footer-link {
    font-size: .875rem;
  }

  .footer-link:hover {
    color: #1a1b1fbf;
  }

  .copyright-text {
    font-size: .8755rem;
  }

  .brand-logo-link {
    font-size: 1.25rem;
  }

  .navbar {
    top: 80px;
  }

  .navbar-wrapper {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-link {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .text-reveal.indent {
    text-indent: 32px;
  }

  .utility-heading-section {
    padding: 60px 15px;
  }

  .item-name, .item-description {
    font-size: .875rem;
  }

  .color-dot {
    width: 48px;
    height: 48px;
  }

  .content-category {
    font-size: .875rem;
  }

  .color-row {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .utility-content-section, ._404-section {
    padding: 60px 15px;
  }

  .not-found-text {
    font-size: 15rem;
  }

  .hero-background-2 {
    display: block;
  }

  .div-block-3 {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 479px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .promo-text {
    font-size: .75rem;
  }

  .hero-heading {
    font-size: 1.75rem;
  }

  .client-image {
    height: 40px;
  }

  .how-to-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .section-cta {
    background-position: 50% 0;
    background-size: auto 130%;
  }

  .footer-lower {
    margin-bottom: 0;
  }

  .footer-content {
    display: block;
  }

  .footer-block {
    text-align: center;
    align-items: center;
    margin-bottom: 40px;
  }

  .footer-link {
    line-height: 1.2;
  }

  .copyright-text._2 {
    text-align: center;
    margin-bottom: 10px;
    text-decoration: none;
  }

  .copyright-text._1 {
    text-align: center;
  }

  .footer-upper {
    flex-flow: column;
    display: flex;
  }

  .brand-logo-link {
    letter-spacing: 4px;
    font-size: 1rem;
  }

  .footer-description {
    text-align: center;
    justify-content: center;
  }

  .copyright-block {
    background-color: var(--colors--black);
  }

  .nav-menu {
    flex-direction: column;
  }

  .footer-logo-link.w--current {
    margin-bottom: 20px;
  }

  .content-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: .25fr 1fr;
  }

  .font-box {
    width: 64px;
  }

  .styleguide-content-wrapper {
    grid-template-columns: 1fr;
  }

  .font-wrapper {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .color-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .instructions-content-wrapper {
    grid-template-columns: 1fr;
  }

  .copyright-wrapper._2 {
    text-align: left;
    flex-flow: column;
    align-items: center;
  }

  .container-2 {
    max-width: none;
  }

  .not-found-text {
    font-size: 10rem;
  }

  .button-wrapper {
    padding: 8px 16px;
    font-size: 1rem;
  }

  .link-block {
    display: none;
  }

  .div-block-3 {
    width: 60%;
  }
}

#w-node-eb761af4-a183-c0c1-ad61-7387abef6b12-4184b0dd {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_1661f5b7-935a-7675-6709-42499e9d0cc6-4184b0dd {
  grid-area: span 1 / span 8 / span 1 / span 8;
}

#w-node-_38019a7b-9035-c2f3-5bef-19a036c415b1-4184b0dd, #w-node-_473fecf7-140e-ecde-835f-486369ac24ff-4184b0dd {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_25517f30-ff4a-bfc0-ed06-a73f77d79289-4184b0dd, #w-node-d5c9439a-ccbe-0150-1e54-4e98d001857f-4184b0dd, #w-node-a3a79ad1-0070-03ae-313f-551aade484d8-4184b0dd {
  grid-area: span 1 / span 6 / span 1 / span 6;
  justify-self: end;
}

#w-node-_04f9ee46-57e2-b88e-5905-f6fff066b569-f066b549, #w-node-_04f9ee46-57e2-b88e-5905-f6fff066b574-f066b549 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-eb761af4-a183-c0c1-ad61-7387abef6b12-4184b0dd, #w-node-_1661f5b7-935a-7675-6709-42499e9d0cc6-4184b0dd {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_04f9ee46-57e2-b88e-5905-f6fff066b574-f066b549 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-ExtraBold.otf') format('opentype'), url('../fonts/Pretendard-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-ExtraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}