<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --black: #1e1e1e;
  --orange: #f4b141;
  --gainsboro: gainsboro;
  --accent: #c1c033;
  --olive: #8d8a3b;
  --dim-grey: #5a5a5a;
  --floral-white: #f1eee7;
}

.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-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 50%;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

body {
  color: #5a5a5a;
  font-family: Barlow, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}

h1 {
  color: var(--black);
  text-transform: capitalize;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Barlow, sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 65px;
}

h2 {
  color: var(--black);
  text-transform: capitalize;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Barlow, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
}

h3 {
  color: var(--black);
  text-transform: capitalize;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Barlow, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

h4 {
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Barlow, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

h5 {
  color: var(--black);
  text-transform: capitalize;
  margin-top: 18px;
  margin-bottom: 10px;
  font-family: Barlow, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

h6 {
  color: var(--black);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Barlow, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.5em;
}

a {
  color: var(--black);
  cursor: pointer;
  font-family: Barlow, sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: color .4s;
}

a:hover {
  color: #626262;
  text-decoration: none;
}

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

li {
  color: var(--black);
  padding-top: 3px;
  padding-bottom: 3px;
}

form {
  text-align: left;
}

label {
  color: var(--black);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-family: Barlow, sans-serif;
  font-size: 12px;
  font-weight: 500;
  display: block;
}

blockquote {
  border-left: 5px solid var(--orange);
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px 20px;
  font-size: 18px;
  font-style: italic;
  line-height: 22px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
  font-family: Barlow, sans-serif;
  font-size: 12px;
}

.section {
  padding-top: 55px;
  padding-bottom: 55px;
  position: relative;
}

.section.green-overlay {
  background-image: linear-gradient(rgba(141, 138, 59, .5), rgba(141, 138, 59, .5)), url('../images/agriculture-1845835_1920.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  margin-bottom: -60px;
  padding-top: 110px;
  padding-bottom: 110px;
  overflow: hidden;
}

.section.relative {
  position: relative;
}

.section.wholesale-section {
  background-image: url('../images/green-harvester-at-daytime-1058349.webp');
  background-position: 50%;
  background-size: cover;
}

.section.dark {
  background-color: var(--black);
}

.container {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.container.flex-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.title {
  text-transform: capitalize;
  font-size: 70px;
  font-weight: 900;
  line-height: 84px;
}

.title.white {
  color: #fff;
}

.title-wrapper {
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.title-wrapper.half-width {
  max-width: 600px;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: var(--gainsboro);
  margin-top: 30px;
  margin-bottom: 30px;
}

.subtitle {
  color: var(--orange);
  text-transform: lowercase;
  margin-bottom: -20px;
  font-family: Sacramento, sans-serif;
  font-size: 36px;
  line-height: 36px;
}

.button-wrapper {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 20px;
}

.button {
  background-color: var(--accent);
  text-transform: capitalize;
  border-radius: 25px;
  margin-top: 20px;
  padding: 15px 34px;
  font-family: Barlow, sans-serif;
  font-weight: 700;
  transition: background-color .4s;
}

.button:hover {
  background-color: var(--olive);
  color: #fff;
}

.button.inverse {
  color: var(--accent);
  background-color: #fff;
}

.accent {
  background-color: var(--accent);
}

.hero-section {
  min-height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/harvester-1764800_1280.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-top: 75px;
  padding-bottom: 75px;
}

.top-nav-container {
  height: 100px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: grid;
}

.contact-info-container.mobile {
  display: none;
}

.bottom-nav-container {
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.navbar {
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
}

.nav-link {
  color: #fff;
  text-transform: capitalize;
  align-items: center;
  margin-left: 15px;
  margin-right: 15px;
  padding: 0;
  font-family: Barlow, sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.nav-link:hover, .nav-link.w--current {
  color: var(--accent);
}

.hero-content-wrapper {
  max-width: 800px;
  color: #fff;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: 18px;
  display: flex;
}

.grid-4-column {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.content-block {
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding-top: 13px;
  padding-bottom: 13px;
  display: flex;
}

.content-block.with-border {
  border: 1px solid var(--gainsboro);
  padding-bottom: 33px;
  padding-left: 10px;
  padding-right: 10px;
}

.content-block.width-65 {
  max-width: 65px;
  padding-top: 0;
  padding-bottom: 0;
}

.circle-image {
  width: 140px;
  height: 140px;
  object-fit: cover;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 100px;
}

.grid-2-column {
  grid-column-gap: 0px;
  grid-template-rows: auto;
}

.grid-2-column.wide {
  grid-column-gap: 60px;
}

.text-card {
  text-align: left;
  margin-top: 80px;
  margin-bottom: 80px;
  padding-left: 100px;
  padding-right: 100px;
}

.text-card.reduced-margin {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  padding-right: 40px;
}

.full-image {
  width: 100%;
  height: 100%;
  max-height: 680px;
  object-fit: cover;
}

.grid-1-third {
  grid-column-gap: 60px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.stats-wrapper {
  height: 300px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.white-text {
  color: #fff;
}

.olive-label {
  color: var(--olive);
  margin-top: 5px;
}

.statistic {
  text-align: center;
  margin-left: 20px;
  margin-right: 20px;
}

.quality-control-grid {
  max-width: 240px;
  grid-column-gap: 5px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: start;
  display: grid;
}

.small-circle-image {
  min-height: 65px;
  object-fit: cover;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 100px;
}

.product-grid {
  grid-column-gap: 20px;
  grid-row-gap: 50px;
}

.product-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-bottom: 1px dashed #dcdcdc;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.product-wrapper:active {
  background-color: var(--floral-white);
}

.square-image {
  min-height: 95px;
  min-width: 95px;
  object-fit: cover;
}

.product-title {
  margin-top: 0;
  margin-bottom: 0;
}

.product-subtitle {
  color: var(--accent);
  margin-top: 0;
}

.product-description {
  color: var(--dim-grey);
  margin-top: 10px;
  font-weight: 400;
}

.sale-content-wrapper {
  min-height: 490px;
  background-color: var(--floral-white);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  margin-left: 40px;
  margin-right: 40px;
  padding-bottom: 20px;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
}

.footer-content-wrapper {
  background-image: linear-gradient(rgba(193, 192, 51, .85), rgba(193, 192, 51, .85)), url('../images/wheat-field-5075775_1920.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer-bottom-content {
  background-color: var(--olive);
  color: #fff;
  padding: 15px 20px;
  font-family: Barlow, sans-serif;
}

.white-link {
  color: #fff;
  text-decoration: none;
  display: block;
}

.white-link:hover {
  color: var(--black);
  text-decoration: none;
}

.white-link.inline {
  margin-right: 10px;
  display: inline-block;
}

.inline-link-wrapper {
  display: flex;
}

.social-icon {
  width: 16px;
  height: 16px;
  object-fit: cover;
}

.social-link {
  margin-right: 10px;
  transition: transform .4s, opacity .4s, color .4s;
  transform: translate(0);
}

.social-link:hover {
  opacity: .8;
  transform: translate(0, -1px);
}

.drawing-left {
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.drawing-right {
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
  transform: rotate(-86deg);
}

.footer-bottom-container {
  max-width: 1160px;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.logo {
  width: 140px;
  transition: opacity .2s;
}

.logo:hover {
  opacity: .8;
}

.full-image-container {
  max-height: 680px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.dropdown-icon {
  width: 9px;
  margin-left: 5px;
}

.nav-menu {
  display: flex;
}

.dropdown-list {
  background-color: var(--black);
}

.dropdown-list.w--open {
  max-width: 240px;
  background-color: rgba(30, 30, 30, .85);
  border-radius: 15px;
  padding-top: 20px;
  padding-bottom: 10px;
}

.dropdown-link {
  color: #fefcfc;
  margin-bottom: 10px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 16px;
}

.dropdown-link:hover, .dropdown-link.w--current {
  color: var(--accent);
}

.contact-link {
  color: var(--floral-white);
  margin-right: 10px;
  font-weight: 400;
  transition: opacity .2s;
}

.contact-link:hover {
  opacity: .8;
  color: var(--floral-white);
}

.callout-block {
  z-index: 99;
  width: 150px;
  height: 150px;
  background-color: var(--accent);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.subpage-hero-section {
  min-height: 50vh;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/wheat-field-5075775_1920.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-top: 75px;
  padding-bottom: 75px;
}

.subpage-hero-section.product-page {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/isak-engstrom-rgYkWfIaWHs-unsplash.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.subpage-hero-section.sales-page {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/silo-2022754_1920.webp');
  background-position: 0 0, 50% 100%;
  background-size: auto, cover;
}

.subpage-hero-section.employment-page {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/peasant-452904_1280.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.subpage-hero-section.our-history {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/cereal-1866559_1280.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.subpage-hero-section.about-us-page {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/harvest-482720_1920.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.subpage-hero-section.sustainable-page {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/agriculture-1867212_1280.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.subpage-hero-section.contact-page {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/green-harvester-at-daytime-1058349.webp');
  background-position: 0 0, 50% 100%;
  background-size: auto, cover;
}

.double-image-wrapper {
  width: 100%;
  height: 80vh;
  position: relative;
}

.bottom-right {
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.bottom-left {
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.top-right {
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.landscape-image {
  max-width: 90%;
  object-fit: cover;
}

.block-image {
  height: 80%;
  max-width: 80%;
  object-fit: cover;
}

.cta-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 55px;
  padding-bottom: 55px;
  display: flex;
}

.grid-6-column {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: center;
  justify-items: center;
}

.flush-with-top {
  margin-top: 0;
  padding-top: 0;
}

.input {
  height: 50px;
  border: 1px solid var(--gainsboro);
  background-color: var(--floral-white);
  border-radius: 15px;
  padding-left: 20px;
  padding-right: 20px;
}

.input:hover {
  background-color: #f7f5f0;
}

.input:focus {
  border-color: var(--olive);
  background-color: #fff;
}

.input.text-area {
  min-height: 200px;
}

.radio-button-label {
  color: var(--black);
  font-weight: 500;
}

.select {
  height: 100%;
  color: var(--dim-grey);
  background-color: rgba(0, 0, 0, 0);
  border: 0 solid #000;
  padding-left: 10px;
  padding-right: 20px;
  font-family: Roboto Slab, sans-serif;
}

.select:hover {
  background-color: #f7f5f0;
}

.select:focus {
  border-color: var(--olive);
  background-color: rgba(0, 0, 0, 0);
}

.paragraph {
  color: var(--dim-grey);
}

.select-wrapper {
  height: 50px;
  border: 1px solid var(--gainsboro);
  background-color: var(--floral-white);
  border-radius: 15px;
  margin-bottom: 10px;
  padding-left: 10px;
  padding-right: 20px;
}

.select-wrapper:hover {
  background-color: #f7f5f0;
}

.select-wrapper:focus {
  border-color: var(--olive);
  background-color: #fff;
}

.checkbox-label {
  font-family: Barlow, sans-serif;
  font-weight: 500;
}

.checkbox-field {
  justify-content: flex-start;
  align-items: center;
  padding-top: 2px;
  padding-bottom: 2px;
  display: flex;
}

.checkbox {
  width: 15px;
  height: 15px;
  border-width: 2px;
  margin-top: 0;
  margin-right: 5px;
  padding: 10px;
}

.checkbox.w--redirected-checked {
  border-color: var(--accent);
  background-color: var(--accent);
  background-size: 12px 12px;
}

.form-grid-2-column {
  grid-column-gap: 10px;
  grid-template-rows: auto;
  margin-bottom: 10px;
}

.radio-button-field {
  justify-content: flex-start;
  align-items: center;
  padding-top: 2px;
  padding-bottom: 2px;
  display: flex;
}

.radio-button {
  width: 15px;
  height: 15px;
  border-width: 2px;
  margin-top: 0;
  margin-right: 5px;
  padding: 10px;
}

.radio-button.w--redirected-checked {
  border-width: 2px;
  border-color: var(--accent);
  background-color: #fff;
  background-image: none;
}

.success-message {
  background-color: var(--accent);
  color: #fff;
  text-align: center;
  border-radius: 15px;
}

.error-message {
  min-height: 50px;
  color: #fff;
  text-align: center;
  background-color: #f41a1a;
  border-radius: 15px;
  padding-top: 12px;
}

.quote-wrapper {
  max-width: 600px;
  text-align: center;
}

.quote-paragraph {
  color: var(--black);
  margin-top: 30px;
  font-size: 20px;
  font-style: italic;
}

.by-person {
  font-family: Barlow, sans-serif;
}

.grid-3-column {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.long-content-wrapper {
  max-width: 940px;
}

.cover-image {
  object-fit: cover;
}

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

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

.utility-page-form {
  min-width: 340px;
  text-align: center;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.map {
  min-height: 30vh;
  min-width: 100%;
}

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

.masonry-grid {
  column-count: 3;
  column-gap: 10px;
}

.masonry-image {
  margin-bottom: 10px;
}

.no-margins {
  margin-top: 0;
  margin-bottom: 0;
}

.contact-info-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.offset-section {
  padding-bottom: 55px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section.green-overlay {
    padding-top: 75px;
  }

  .title {
    font-size: 65px;
    line-height: 78px;
  }

  .title.white {
    margin-top: 10px;
  }

  .hero-section {
    min-height: 80vh;
  }

  .top-nav-container {
    height: 80px;
  }

  .contact-info-container {
    display: none;
  }

  .contact-info-container.mobile {
    border-top: 1px solid var(--dim-grey);
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    display: flex;
  }

  .nav-link {
    margin-bottom: 10px;
  }

  .grid-2-column {
    grid-column-gap: 15px;
  }

  .text-card {
    padding-left: 40px;
    padding-right: 40px;
  }

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

  .stats-wrapper {
    height: 250px;
  }

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

  .sale-content-wrapper {
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .nav-menu {
    background-color: rgba(30, 30, 30, .95);
    border-radius: 15px;
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left: 5px;
  }

  .dropdown-list.w--open {
    background-color: rgba(0, 0, 0, 0);
    padding-top: 10px;
  }

  .dropdown-link {
    color: #d2d2d2;
    padding-left: 25px;
  }

  .menu-button {
    padding-bottom: 14px;
  }

  .menu-button.w--open {
    background-color: rgba(30, 30, 30, .4);
    border-radius: 15px;
  }

  .contact-link:hover {
    color: var(--accent);
  }

  .double-image-wrapper {
    height: 60vh;
    min-height: 50vh;
  }

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

  .input {
    margin-bottom: 15px;
  }

  .input.text-area {
    min-height: 200px;
    padding-top: 14px;
  }

  .select-wrapper {
    margin-bottom: 15px;
  }

  .no-margins {
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 46px;
    line-height: 60px;
  }

  h2 {
    font-size: 33px;
    line-height: 40px;
  }

  h3 {
    font-size: 28px;
    line-height: 37px;
  }

  h5 {
    font-size: 16px;
    line-height: 20px;
  }

  .section.green-overlay {
    padding-top: 40px;
    padding-bottom: 65px;
  }

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

  .title {
    font-size: 45px;
    line-height: 50px;
  }

  .title-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero-section {
    padding-top: 40px;
  }

  .hero-content-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 16px;
  }

  .grid-4-column {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }

  .circle-image {
    width: 110px;
    height: 110px;
  }

  .grid-2-column {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .text-card {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .text-card.reduced-margin {
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left: 0;
    padding-right: 0;
  }

  .sale-content-wrapper {
    min-height: 380px;
  }

  .inline-link-wrapper {
    margin-bottom: 5px;
  }

  .drawing-left, .drawing-right {
    width: 150px;
  }

  .footer-bottom-container {
    flex-wrap: wrap;
  }

  .quote-paragraph {
    font-size: 18px;
  }
}

@media screen and (max-width: 479px) {
  .section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section.relative {
    padding-top: 25px;
    padding-bottom: 25px;
  }

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

  .title {
    font-size: 35px;
    line-height: 40px;
  }

  .title-wrapper {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .top-nav-container {
    height: 80px;
    grid-column-gap: 5px;
    grid-template-columns: .75fr 1fr .75fr;
  }

  .hero-content-wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
  }

  .grid-4-column {
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
  }

  .circle-image {
    width: 100px;
    height: 100px;
  }

  .text-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .stats-wrapper {
    height: 180px;
  }

  .square-image {
    min-height: 80px;
    min-width: 80px;
  }

  .sale-content-wrapper {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .white-link.inline {
    margin-bottom: 5px;
  }

  .inline-link-wrapper {
    flex-wrap: wrap;
  }

  .drawing-left, .drawing-right {
    width: 60px;
  }

  .footer-bottom-container {
    padding-left: 0;
    padding-right: 0;
  }

  .callout-block {
    width: 100px;
    height: 100px;
  }

  .subpage-hero-section {
    min-height: 30vh;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .grid-6-column {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .grid-3-column {
    grid-column-gap: 10px;
  }

  .contact-info-grid {
    grid-column-gap: 10px;
    grid-template-columns: 1fr;
  }

  .offset-section {
    padding-bottom: 36px;
  }
}

#w-node-b82763ad-2c40-eae7-f607-0a560a2ad5dd-23dbe262 {
  align-self: center;
}

#w-node-ca11fba8-0df0-3d0c-9938-7eba595cab46-23dbe262 {
  align-self: end;
}

#w-node-_355f8bb3-299c-e25f-a484-4d6bfef2da93-23dbe262 {
  justify-self: center;
}

#w-node-d634514d-1ce9-fe8e-bff8-683d0a1f2e31-0a1f2e26, #w-node-d634514d-1ce9-fe8e-bff8-683d0a1f2e3a-0a1f2e26, #w-node-d634514d-1ce9-fe8e-bff8-683d0a1f2e43-0a1f2e26, #w-node-d634514d-1ce9-fe8e-bff8-683d0a1f2e4c-0a1f2e26 {
  align-self: start;
  justify-self: center;
}

#w-node-_020d03e1-42a5-a22b-0544-22af89f1a481-89f1a478 {
  justify-self: center;
}

#w-node-_020d03e1-42a5-a22b-0544-22af89f1a483-89f1a478 {
  justify-self: end;
}

#w-node-_9282fbdc-eefc-da7d-51e0-308bd12796af-23dbe26e {
  align-self: center;
  justify-self: center;
}

#w-node-_5eebdf3e-a717-32e0-4d6a-2688b1c206d7-23dbe26e, #w-node-_49dcdb6d-40ee-461b-4ed6-ce66b8bcd2b3-23dbe26e {
  align-self: center;
}

#w-node-a196cf60-8c85-0e3f-d7a4-9d8101ea71b6-23dbe26e {
  align-self: center;
  justify-self: center;
}

#w-node-a196cf60-8c85-0e3f-d7a4-9d8101ea71b9-23dbe26e {
  align-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-ca11fba8-0df0-3d0c-9938-7eba595cab46-23dbe262 {
    order: 9999;
  }

  #w-node-_020d03e1-42a5-a22b-0544-22af89f1a488-89f1a478 {
    justify-self: end;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_49dcdb6d-40ee-461b-4ed6-ce66b8bcd2b3-23dbe26e {
    order: 9999;
  }
}


</pre></body></html>