:root {
  --black: #1e1e1e;
  --orange: #f4b141;
  --floral-white: #f1eee7;
  --gainsboro: gainsboro;
  --sky-blue: #2aabe2;
  --dim-grey: #5a5a5a;
  --accent: #c1c033;
  --highlight-grey: #828282;
  --medium-blue: #0013e0;
  --olive: #8d8a3b;
}

.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;
}

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

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 {
  margin-bottom: 23px;
  padding-top: 0;
  padding-bottom: 0;
  display: inline;
  position: relative;
  overflow: visible;
}

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

.section.relative {
  display: inline-block;
  position: relative;
}

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

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

.container {
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: inline;
  overflow: auto;
}

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

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

.title.white {
  color: var(--black);
  text-align: center;
  margin-left: 0;
}

.title.white.left {
  text-align: left;
  margin-left: 20px;
}

.title.white.left.blacki {
  color: var(--black);
}

.title.white.evenwhiter {
  color: var(--floral-white);
}

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

.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;
  align-self: center;
  margin-bottom: -20px;
  font-family: Sacramento, sans-serif;
  font-size: 36px;
  line-height: 36px;
}

.subtitle.invis {
  display: none;
}

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

.button {
  color: var(--sky-blue);
  text-transform: capitalize;
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 25px;
  margin-top: 20px;
  padding: 15px 34px;
  font-family: Barlow, sans-serif;
  font-weight: 700;
  transition: background-color .4s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

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

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

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

.hero-section {
  min-height: 0;
  object-fit: fill;
  background-image: none;
  padding-top: 0;
  padding-bottom: 75px;
  display: block;
}

.top-nav-container {
  height: 100px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: rgba(0, 0, 0, 0);
  grid-template: "."
  / 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  display: grid;
}

.social-icon-container {
  margin-left: 20px;
  display: none;
}

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

.bottom-nav-container {
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  margin-top: -33px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
}

.navbar {
  color: rgba(0, 0, 0, 0);
  background-color: #fff;
  margin-left: 0;
  margin-right: 0;
  top: -20px;
}

.nav-link {
  color: var(--black);
  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 {
  color: var(--highlight-grey);
}

.nav-link.w--current {
  color: var(--black);
}

.nav-link.language {
  margin-left: 0;
  margin-right: 0;
  display: inline;
}

.hero-content-wrapper {
  max-width: none;
  color: #fff;
  text-align: center;
  object-fit: fill;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 30px;
  padding-left: 0;
  font-size: 18px;
  display: block;
}

.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: fill;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border: 1px solid #000;
  border-radius: 100px;
}

.grid-2-column {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

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

.grid-2-column.services.simpleline {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: minmax(200px, 1fr) 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

.text-card {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 80px;
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
}

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

.text-card.margin-services {
  justify-content: center;
  margin-bottom: 20px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.text-card.margin-services.centerservices {
  align-items: center;
}

.full-image {
  width: 100%;
  height: 100%;
  max-height: 600px;
  max-width: 600px;
  min-height: auto;
  min-width: 400px;
  object-fit: contain;
  padding-top: 0;
  padding-bottom: 0;
  overflow: auto;
}

.full-image.services {
  width: 250px;
  height: 250px;
  max-height: 100%;
  max-width: 100%;
  min-height: 0;
  min-width: 400px;
  object-fit: cover;
  object-position: 50% 50%;
  overflow: hidden;
}

.full-image.services.diagram {
  width: auto;
  height: auto;
  max-height: none;
  max-width: none;
  min-height: auto;
  min-width: auto;
  aspect-ratio: auto;
  object-fit: none;
  object-position: 50% 50%;
  margin-top: 20px;
  margin-bottom: 20px;
  overflow: visible;
}

.full-image.about {
  width: 100%;
  height: 100%;
  max-height: 550px;
  max-width: 800px;
  min-height: 300px;
  min-width: 400px;
  object-fit: fill;
  object-position: 70% 9%;
  margin-top: 25px;
  margin-left: -37px;
  position: static;
}

.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(--gainsboro);
  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 auto 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;
  background-color: var(--floral-white);
  object-fit: contain;
  background-image: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9));
  border-radius: 100px;
}

.product-grid {
  grid-column-gap: 20px;
  grid-row-gap: 50px;
  grid-template-rows: auto auto auto;
  grid-template-areas: "."
                       "."
                       "Area";
  justify-content: start;
  margin-left: 20px;
  margin-right: 20px;
  display: block;
}

.product-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px #000;
  grid-template-rows: auto;
  grid-template-columns: .25fr .4fr;
  grid-auto-columns: 1fr;
  padding-bottom: 10px;
  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(--black);
  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-color: var(--sky-blue);
  background-image: linear-gradient(360deg, var(--medium-blue), white 91%);
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer-bottom-content {
  background-color: var(--medium-blue);
  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;
  background-color: var(--sky-blue);
  object-fit: cover;
  display: none;
}

.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 {
  margin-top: 13px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 5%;
  transform: rotate(-86deg);
}

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

.logo {
  width: 180px;
  min-height: 70px;
  min-width: 280px;
  margin-left: 15px;
  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;
}

.full-image-container.invis {
  display: none;
}

.dropdown-icon {
  width: 9px;
  background-color: var(--dim-grey);
  margin-left: 5px;
}

.nav-menu {
  margin-left: -104px;
  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 {
  color: var(--medium-blue);
}

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

.contact-link {
  color: #2aabe2;
  margin-right: 20px;
  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 {
  min-height: 60vh;
  background-image: url('../images/nyborg-bridge-16.png');
  background-position: 50% 100%;
  background-repeat: repeat;
  background-size: cover;
  padding-top: 0;
  padding-bottom: 0;
  overflow: visible;
}

.subpage-hero-section.product-page.ourprojects {
  min-height: 45vh;
  background-image: url('../images/nyborg-bridge-14.png');
  background-position: 50% 100%;
}

.subpage-hero-section.product-page.employment {
  min-height: 45vh;
  background-image: url('../images/nyborg-bridge-21.png');
  background-position: 50% 0;
}

.subpage-hero-section.sales-page {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/silo-2022754_1920.jpg');
  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.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-top: 0;
  padding-bottom: 0;
}

.subpage-hero-section.our-history {
  min-height: 0;
  background-image: url('../images/IMG_20220719_202738.jpeg');
  background-position: 50%;
  background-size: cover;
  padding-top: 0;
  padding-bottom: 0;
}

.subpage-hero-section.our-history.our-values-banner {
  min-height: 140vh;
  background-image: url('../images/nyborg-bridge-19.png');
}

.subpage-hero-section.our-history.our-values-banner.employment-banner {
  min-height: 49vh;
  background-image: url('../images/nyborg-bridge-22.png');
  background-position: 50% 100%;
}

.subpage-hero-section.our-history.bigger {
  min-height: 45vh;
}

.subpage-hero-section.about-us-page {
  min-height: 0;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/IMG_1527.PNG');
  background-position: 0 0, 50% 40%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  padding-top: 0;
  padding-bottom: 0;
}

.subpage-hero-section.about-us-page.aboutus {
  min-height: 60vh;
  opacity: 1;
  mix-blend-mode: normal;
  background-image: url('../images/nyborg-bridge-18.png');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: scroll;
  margin-bottom: 10px;
}

.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 {
  min-height: 42vh;
  background-image: url('../images/nyborg-bridge-7.png');
  background-position: 50% 23%;
  background-size: cover;
  background-attachment: scroll;
  padding-top: 0;
  padding-bottom: 0;
}

.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(--dim-grey);
  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-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: stretch;
  justify-items: stretch;
  margin-left: 50px;
  margin-right: 50px;
  display: flex;
}

.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;
}

.card-heading {
  align-self: center;
  margin-top: 0;
  padding-left: 0;
}

.card-heading.totheleft {
  align-self: flex-start;
}

.card-heading.invis {
  color: #fff;
}

.card-body {
  max-width: 850px;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  font-size: 25px;
  display: flex;
}

.card-body.forservices {
  padding-left: 0;
  padding-right: 0;
}

.card-body.forservices.smallertext {
  font-size: 18px;
}

.card-body.forservices.smallertext.evensamllertext {
  font-size: 15px;
}

.card-body.leftleft {
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
}

.card-body.nopaddingtop {
  margin-top: 0;
}

.card-body.left123 {
  text-align: left;
}

.card-body.left123.smallertext {
  max-height: 600px;
  max-width: 600px;
  min-height: auto;
  min-width: 400px;
  margin-top: 35px;
  font-size: 18px;
}

.card-body.left123.smallertext.evensmallertext {
  margin-top: 10px;
  font-size: 16px;
}

.card-body.left123.smallertext.evensmallertext.evenevensmall {
  font-size: 15px;
}

.nav-link-pages {
  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: none;
}

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

.nav-link-invisible {
  color: var(--black);
  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: block;
}

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

.nav-link-invisible.w--current {
  color: var(--highlight-grey);
}

.nav-link-copy {
  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-copy:hover {
  color: var(--accent);
}

.nav-link-copy.w--current {
  color: var(--highlight-grey);
}

.nav-link-invisible-2 {
  color: var(--black);
  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: block;
}

.nav-link-invisible-2:hover {
  color: var(--accent);
}

.nav-link-invisible-2.w--current {
  color: var(--highlight-grey);
}

.nav-link-invisible-3 {
  color: var(--black);
  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: block;
}

.nav-link-invisible-3:hover {
  color: var(--accent);
}

.nav-link-invisible-3.w--current {
  color: var(--highlight-grey);
}

.heading {
  margin-top: 9px;
  margin-left: 20px;
}

.slider {
  background-color: rgba(0, 0, 0, 0);
}

.slide {
  color: rgba(0, 0, 0, 0);
}

.image {
  max-width: 70%;
}

.div-block {
  justify-content: center;
  display: flex;
}

.brand-2 {
  padding-left: 10px;
}

.bold-text, .heading-2, .link {
  font-weight: 400;
}

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

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

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

.container-2 {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 10px;
  display: block;
}

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

.heading-3 {
  text-align: center;
  margin-top: 0;
}

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

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

.section-values.relative {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: inline-block;
  position: absolute;
  top: 282.6px;
}

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

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

.image-2 {
  max-height: 15%;
  max-width: 15%;
  min-height: auto;
  min-width: auto;
  object-fit: scale-down;
  object-position: 50% 50%;
  align-self: center;
  margin-right: -18px;
  padding-right: 0;
  overflow: scroll;
}

.link-2 {
  text-align: left;
  flex: 0 auto;
  align-self: center;
  align-items: flex-end;
  margin-top: 0;
  margin-right: 92px;
  padding-right: 0;
  display: flex;
}

.columns {
  align-self: center;
}

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

.image-3 {
  max-width: 12%;
  flex: 1;
  order: 1;
  align-self: auto;
  margin-left: 0;
  margin-right: 10px;
  display: block;
}

.div-block-2 {
  justify-content: flex-end;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  display: flex;
  position: static;
}

.div-block-2.separation {
  margin-top: 19px;
}

.container-copy {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: block;
  overflow: visible;
}

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

.container-background {
  height: auto;
  max-height: none;
  min-height: auto;
  -webkit-text-fill-color: inherit;
  object-fit: fill;
  background-clip: border-box;
  flex-flow: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: inline;
  overflow: visible;
}

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

.image-4 {
  opacity: 1;
  display: inline;
}

.body {
  background-color: #fff;
  display: block;
}

.text-block {
  color: var(--black);
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.logo1_logo {
  max-height: 5.5rem;
}

.padding-section-medium {
  padding-top: 0;
  padding-bottom: 5rem;
}

.logo1_component {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: flex;
}

.text-size-medium {
  font-size: 1.125rem;
  display: block;
}

.section_logo1 {
  margin-top: 20px;
}

.padding-global {
  padding-left: 5%;
  padding-right: 5%;
  display: inline;
}

.text-align-center {
  text-align: center;
  justify-content: center;
  display: flex;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.rich-text-block {
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.image-5 {
  object-fit: contain;
  display: inline-block;
}

.div-block-3 {
  max-height: none;
  object-fit: scale-down;
}

.container-3 {
  overflow: visible;
}

.container-4 {
  object-fit: contain;
  object-position: 20% 50%;
  padding: 0 150px;
  display: block;
}

.container-5 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  object-fit: fill;
  flex-direction: row;
  grid-template: "."
                 "Area"
                 / 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  margin-top: 28px;
  display: grid;
  overflow: visible;
}

.video {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  flex: 1;
  order: 1;
  overflow: visible;
}

.shrink-down {
  max-width: none;
  font-size: 18px;
}

.container-6 {
  margin-top: 15px;
  margin-bottom: 35px;
}

.link-3, .link-4 {
  display: inline;
}

.text-block-2 {
  color: var(--black);
  display: inline;
}

.div-block-4 {
  z-index: 99999;
  margin-right: 60px;
  position: relative;
}

.nav-link-2 {
  color: #1e1e1e;
  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-2:hover {
  color: #828282;
}

.nav-link-2.w--current {
  color: #1e1e1e;
}

.nav-link-2.language, .nav-link-2.language-copy, .nav-link-2.language-copy-copy {
  margin-left: 0;
  margin-right: 0;
  display: inline;
}

.translate-home-en.w--current {
  color: var(--black);
  padding-bottom: 0;
  padding-right: 0;
}

.translate-home-dk {
  padding-bottom: 0;
  padding-left: 0;
}

.div-block-5 {
  flex-flow: row;
  justify-content: flex-end;
  padding-left: 0;
  display: flex;
  position: relative;
  top: 69px;
  right: 70px;
}

.link-5 {
  z-index: 9999999;
  margin-right: 0;
  padding-right: 47px;
  position: absolute;
}

.link-6 {
  z-index: 9999999;
  margin-left: 0;
  padding-left: 0;
  position: absolute;
}

@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;
  }

  .nav-link-pages, .nav-link-invisible, .nav-link-copy, .nav-link-invisible-2, .nav-link-invisible-3 {
    margin-bottom: 10px;
  }

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

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

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

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

@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;
  }

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

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

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .logo1_logo {
    max-height: 3rem;
  }

  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .logo1_component {
    padding-top: 1rem;
  }

  .text-size-medium {
    font-size: 1rem;
  }
}

@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;
  }

  .container.flex-container {
    margin-top: -76px;
  }

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

  .title.white, .title.white.evenwhiter {
    color: var(--black);
  }

  .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;
  }

  .bottom-nav-container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: inline-block;
    position: relative;
    left: 104px;
  }

  .nav-link {
    color: var(--floral-white);
  }

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

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

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

  .grid-2-column {
    flex-direction: column;
    display: block;
  }

  .grid-2-column.services.simpleline {
    flex-direction: column;
    display: flex;
  }

  .text-card {
    object-fit: none;
    flex-direction: column;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-card.margin-services.centerservices {
    display: flex;
  }

  .full-image.services {
    min-width: 250px;
  }

  .full-image.about {
    min-width: auto;
    margin-top: 85px;
    margin-left: 0;
  }

  .stats-wrapper {
    height: 180px;
  }

  .product-wrapper {
    align-content: stretch;
  }

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

  .product-description {
    margin-right: -83px;
    display: block;
  }

  .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;
  }

  .logo {
    min-width: 240px;
  }

  .nav-menu {
    width: 400px;
    min-width: 0;
    flex-direction: column;
    margin-left: 0;
    display: block;
  }

  .menu-button {
    margin-left: -27px;
    margin-right: 20px;
    padding-right: 0;
  }

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

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

  .subpage-hero-section.product-page {
    min-height: 40vh;
  }

  .subpage-hero-section.our-history.our-values-banner {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .subpage-hero-section.about-us-page.aboutus {
    min-height: 30vh;
  }

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

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

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

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

  .card-heading.totheleft {
    font-size: 28px;
  }

  .card-body {
    margin-left: 10px;
    margin-right: 10px;
  }

  .card-body.left123.smallertext.evensmallertext.evenevensmall {
    min-width: auto;
    align-items: center;
    margin-top: 76px;
  }

  .dropdown, .dropdown.services {
    display: block;
  }

  .nav-link-invisible-2 {
    color: var(--gainsboro);
  }

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

  .section-values {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section-values.relative {
    margin-top: -83px;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 25px;
    display: block;
  }

  .link-2 {
    justify-content: center;
    margin-right: 0;
  }

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

  .icon {
    background-color: #2600ff;
  }

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

  .text-block {
    color: var(--gainsboro);
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .logo1_component {
    justify-content: center;
  }

  .container-3 {
    align-self: center;
  }

  .container-5 {
    flex-direction: column;
    justify-items: center;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
  }

  .text-in-employment {
    margin-left: 10px;
    margin-right: 10px;
  }

  .div-block-5 {
    top: -1px;
    right: 17px;
  }

  .rich-text-block-2 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .container-7 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .body-2 {
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
    display: block;
  }
}

#w-node-dd502aee-df03-3967-6105-176398522343-9852233c {
  grid-area: 1 / 2 / 2 / 3;
}

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

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

#w-node-_85cc5f6a-d551-80b2-defd-9541d846226f-952de19f {
  align-self: start;
  justify-self: center;
}

#w-node-bbe04410-7dbf-cdce-b62c-43ceb7970112-952de19f {
  align-self: start;
  justify-self: start;
}

#w-node-_64a8bb45-4c2d-5b0c-67bd-7df712068aea-cb31fdb5 {
  align-self: start;
  justify-self: center;
}

#w-node-_64a8bb45-4c2d-5b0c-67bd-7df712068af0-cb31fdb5 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_64a8bb45-4c2d-5b0c-67bd-7df712068af1-cb31fdb5, #w-node-_64a8bb45-4c2d-5b0c-67bd-7df712068af8-cb31fdb5 {
  align-self: start;
  justify-self: center;
}

#w-node-_5eebdf3e-a717-32e0-4d6a-2688b1c206d7-828d49c5 {
  align-self: center;
}

#w-node-_6fce341a-8e2c-04b7-98e6-2db53491374c-828d49c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_49dcdb6d-40ee-461b-4ed6-ce66b8bcd2b3-828d49c5, #w-node-_5a749d0b-3dc4-3bc0-89c0-d13bfd62a35c-828d49c5, #w-node-_5de94d81-be57-82a1-04c2-1052d1349a05-828d49c5 {
  align-self: center;
}

#w-node-f23e720c-5e24-128c-48c6-5d09d25d9175-828d49c5 {
  align-self: center;
  justify-self: center;
}

#w-node-_2f8881e0-aebb-8864-59b5-67db6f2095e4-84c7ce96 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-bcb7b4e8-2e51-dfc5-c40f-10701df608fb-84c7ce96 {
  grid-area: Area;
}

#w-node-_989c5181-f0c6-f375-1955-f984878eaa5d-2c5f6430 {
  justify-self: start;
}

#w-node-_989c5181-f0c6-f375-1955-f984878eaa5e-2c5f6430 {
  justify-self: end;
}

#w-node-adff4430-3f52-74e1-8432-7637356eca08-2c5f6430 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-d30d0d2d-1fed-b328-81e8-ceb178c7e830-67d421c1 {
  justify-self: start;
}

#w-node-d30d0d2d-1fed-b328-81e8-ceb178c7e831-67d421c1 {
  justify-self: end;
}

#w-node-_2a7b08ea-ebd1-a4e5-8b42-d88bd5984245-67d421c1 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_33b6162b-85d4-773c-beb3-fc7551d6b3a7-512ce65a {
  justify-self: start;
}

#w-node-_33b6162b-85d4-773c-beb3-fc7551d6b3a8-512ce65a {
  justify-self: end;
}

#w-node-_5eebdf3e-a717-32e0-4d6a-2688b1c206d7-512ce65a {
  align-self: center;
}

#w-node-_6fce341a-8e2c-04b7-98e6-2db53491374c-512ce65a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_49dcdb6d-40ee-461b-4ed6-ce66b8bcd2b3-512ce65a, #w-node-_5a749d0b-3dc4-3bc0-89c0-d13bfd62a35c-512ce65a, #w-node-_5de94d81-be57-82a1-04c2-1052d1349a05-512ce65a {
  align-self: center;
}

#w-node-f23e720c-5e24-128c-48c6-5d09d25d9175-512ce65a {
  align-self: center;
  justify-self: center;
}

#w-node-_14c868df-1040-9b00-e7c4-3a89d4f5879b-512ce65a {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_20e9e061-1c0e-5786-89b3-f595626c4be2-8f14aab8 {
  justify-self: start;
}

#w-node-_20e9e061-1c0e-5786-89b3-f595626c4be3-8f14aab8 {
  justify-self: end;
}

#w-node-_46f3d059-e5cc-14e6-364f-d05eeb9097cf-8f14aab8 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-f6434fb6-be5e-38f6-d22c-1bf1b7613576-83c8b497 {
  justify-self: start;
}

#w-node-f6434fb6-be5e-38f6-d22c-1bf1b7613577-83c8b497 {
  justify-self: end;
}

#w-node-_85cc5f6a-d551-80b2-defd-9541d846226f-83c8b497 {
  align-self: start;
  justify-self: center;
}

#w-node-bbe04410-7dbf-cdce-b62c-43ceb7970112-83c8b497 {
  align-self: start;
  justify-self: start;
}

#w-node-ae092eca-818b-e9cc-0dc3-4e594029db25-83c8b497 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-a819ad85-c97d-5c26-1cd5-461c83220ea0-b8242204 {
  justify-self: start;
}

#w-node-a819ad85-c97d-5c26-1cd5-461c83220ea1-b8242204 {
  justify-self: end;
}

#w-node-a101091c-e02b-24a2-74a0-46d9d06e18a8-b8242204 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_871550f8-6cb1-245b-482f-0705b66771b7-5ab6b29d {
  justify-self: start;
}

#w-node-_871550f8-6cb1-245b-482f-0705b66771b8-5ab6b29d {
  justify-self: end;
}

#w-node-_8fa360a8-4968-6d9f-5948-317d0d897fc3-5ab6b29d {
  align-self: start;
  justify-self: center;
}

#w-node-_8fa360a8-4968-6d9f-5948-317d0d897fc9-5ab6b29d {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_8fa360a8-4968-6d9f-5948-317d0d897fca-5ab6b29d, #w-node-_8fa360a8-4968-6d9f-5948-317d0d897fd1-5ab6b29d {
  align-self: start;
  justify-self: center;
}

#w-node-_20f94dcd-ed0c-98b3-cda3-0865761cdec1-5ab6b29d {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_61fc336d-4f37-abbc-ee39-94abfe2a51ad-af1854b2 {
  justify-self: start;
}

#w-node-_61fc336d-4f37-abbc-ee39-94abfe2a51ae-af1854b2 {
  justify-self: end;
}

#w-node-ef2bf8ad-bb6f-086b-3be5-3b5ee18b3cdc-af1854b2 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_87398025-4a92-a44d-2fe6-a134d83174bf-168cab4f {
  justify-self: start;
}

#w-node-_87398025-4a92-a44d-2fe6-a134d83174c0-168cab4f {
  justify-self: end;
}

#w-node-_2f8881e0-aebb-8864-59b5-67db6f2095e4-168cab4f {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-bcb7b4e8-2e51-dfc5-c40f-10701df608fb-168cab4f {
  grid-area: Area;
}

#w-node-_2ee089b6-60b9-b05e-b608-8b164f9a8568-168cab4f {
  grid-area: 1 / 2 / 2 / 3;
}

@media screen and (max-width: 991px) {
  #w-node-_020d03e1-42a5-a22b-0544-22af89f1a488-89f1a478, #w-node-_989c5181-f0c6-f375-1955-f984878eaa63-2c5f6430, #w-node-d30d0d2d-1fed-b328-81e8-ceb178c7e836-67d421c1, #w-node-_33b6162b-85d4-773c-beb3-fc7551d6b3ad-512ce65a, #w-node-_20e9e061-1c0e-5786-89b3-f595626c4be8-8f14aab8, #w-node-f6434fb6-be5e-38f6-d22c-1bf1b761357c-83c8b497, #w-node-a819ad85-c97d-5c26-1cd5-461c83220ea6-b8242204, #w-node-_871550f8-6cb1-245b-482f-0705b66771bd-5ab6b29d, #w-node-_61fc336d-4f37-abbc-ee39-94abfe2a51b3-af1854b2, #w-node-_87398025-4a92-a44d-2fe6-a134d83174c5-168cab4f {
    justify-self: end;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_49dcdb6d-40ee-461b-4ed6-ce66b8bcd2b3-828d49c5, #w-node-_5a749d0b-3dc4-3bc0-89c0-d13bfd62a35c-828d49c5, #w-node-_5de94d81-be57-82a1-04c2-1052d1349a05-828d49c5, #w-node-_49dcdb6d-40ee-461b-4ed6-ce66b8bcd2b3-512ce65a, #w-node-_5a749d0b-3dc4-3bc0-89c0-d13bfd62a35c-512ce65a, #w-node-_5de94d81-be57-82a1-04c2-1052d1349a05-512ce65a {
    order: 9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-bbe04410-7dbf-cdce-b62c-43ceb7970112-952de19f, #w-node-bbe04410-7dbf-cdce-b62c-43ceb7970112-83c8b497 {
    justify-self: center;
  }
}


