:root {
  --grey-60: #78807b;
  --green: #0d4131;
  --white-81: white;
  --white-80: #fffc;
  --grey-80: #2b2f4e;
  --white-82: #fff;
  --primary: #c0ca67;
  --orange: #f58a21;
  --grey-40: #a3a6c5;
  --grey-20: #ebebf7;
  --grey-10: #fafafe;
  --accent-red: #ff7f7f;
}

.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: var(--grey-60);
  background-color: #fff;
  font-family: Noto Sans, sans-serif;
  font-size: 16px;
  line-height: 28px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: bold;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: bold;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}

p {
  margin-bottom: 0;
}

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

img {
  max-width: 100%;
  display: inline-block;
}

strong {
  font-weight: bold;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

.menu-button {
  cursor: pointer;
  display: none;
}

.nav-link {
  color: var(--green);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  display: flex;
}

.nav-link.button {
  border: 1px solid var(--green);
  border-radius: 10rem;
  height: auto;
  margin-left: 20px;
  padding: 12px 28px;
  line-height: 1;
  transition: all .2s;
}

.nav-link.button:hover {
  background-color: var(--green);
  color: var(--white-81);
}

.nav-menu {
  align-items: center;
  height: 100%;
  display: flex;
}

.navigation-back-home {
  z-index: 300;
  border-bottom: 1px solid var(--white-81);
  background-color: var(--white-80);
  width: 100%;
  height: 88px;
  position: fixed;
}

.brand {
  width: 250px;
}

.content-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  position: relative;
}

.content-wrapper.top-margin {
  margin-top: 80px;
}

.content-wrapper.center {
  justify-content: center;
}

.content-wrapper.top-align {
  justify-content: space-between;
  align-items: flex-start;
}

.content-wrapper.strech-align {
  justify-content: space-between;
  align-items: stretch;
}

.grey-80 {
  background-color: var(--grey-80);
  border-radius: 8px;
  width: 100px;
  height: 100px;
  margin-right: 14px;
}

.style-guide {
  flex-direction: column;
  display: flex;
}

.medium-paragraph {
  color: var(--green);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
}

.medium-paragraph.padding-right {
  padding-right: 2px;
}

.typography {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: stretch;
  place-items: flex-start start;
  display: flex;
}

.semibold-paragraph {
  text-align: center;
  letter-spacing: .5px;
  font-weight: 600;
  line-height: 24px;
}

.h1 {
  z-index: 200;
  color: var(--green);
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4vw;
  font-weight: 400;
  line-height: 1.2;
}

.h1.white {
  color: var(--white-82);
}

.title-wrapper {
  justify-content: flex-start;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 30px;
  display: flex;
}

.small-title {
  margin-top: 6px;
  margin-bottom: 40px;
  font-family: Poppins, sans-serif;
}

.underline-button {
  color: var(--primary);
  align-self: flex-end;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
}

.colors {
  grid-column-gap: 10px;
  grid-row-gap: 40px;
  grid-template-rows: repeat(auto-fit, minmax(auto, 100px));
  grid-template-columns: repeat(auto-fit, minmax(max-content, 194px));
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: grid;
}

.h3 {
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
}

.h3.green {
  color: var(--primary);
  font-weight: 400;
}

.h3.top-margin {
  text-align: center;
  max-width: 800px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.h3.white {
  color: var(--white-81);
}

.h2 {
  color: var(--green);
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.25rem;
  font-weight: 400;
  line-height: 54px;
}

.h2.center {
  text-align: center;
}

.h2.top-margin {
  margin-top: 20px;
}

.style-guide-title {
  z-index: 200;
  color: var(--grey-80);
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
}

.style-guide-content {
  justify-content: space-between;
  width: 100%;
  margin-bottom: 100px;
  display: flex;
}

.button-primary {
  background-color: var(--orange);
  color: var(--white-81);
  border-radius: 500px;
  justify-content: center;
  align-items: center;
  padding: 18px 36px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.button-primary:hover {
  background-color: #e07812;
}

.button-primary.top-margin {
  margin-top: 50px;
  margin-bottom: 10px;
}

.h4 {
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 400;
  line-height: 36px;
}

.h4.margin-bottom {
  margin-bottom: 28px;
}

.small-paragraph {
  font-size: 14px;
  line-height: 20px;
}

.small-paragraph.right-padding {
  padding-right: 6px;
}

.small-paragraph.padding {
  padding-left: 6px;
  padding-right: 6px;
}

.colors-wrapper {
  align-items: center;
  display: flex;
}

.style-guide-header {
  background-color: var(--white-81);
  justify-content: center;
  align-items: center;
  padding-top: 200px;
  padding-bottom: 60px;
  display: flex;
}

.style-guide-wrapper {
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.small-medium-paragraph {
  color: var(--grey-80);
  letter-spacing: .8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.xs-paragraph {
  letter-spacing: .2px;
  font-size: 12px;
  line-height: 20px;
}

.xs-paragraph.center {
  text-align: center;
  margin-top: 6px;
}

.xs-paragraph.center.opacity-90 {
  opacity: .9;
}

.xs-paragraph.small-pading {
  padding-left: 4px;
  padding-right: 4px;
}

.xs-paragraph.padding-right {
  padding-right: 4px;
}

.xs-paragraph.padding-left {
  padding-left: 4px;
}

.xs-medium-paragraph {
  color: var(--grey-80);
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

.grey-60 {
  background-color: var(--grey-60);
  border-radius: 8px;
  width: 100px;
  height: 100px;
  margin-right: 14px;
}

.grey-40 {
  background-color: var(--grey-40);
  border-radius: 8px;
  width: 100px;
  height: 100px;
  margin-right: 14px;
}

.grey-20 {
  background-color: var(--grey-20);
  border-radius: 8px;
  width: 100px;
  height: 100px;
  margin-right: 14px;
}

.grey-10 {
  border: 1px solid var(--grey-40);
  background-color: var(--grey-10);
  border-radius: 8px;
  width: 100px;
  height: 100px;
  margin-right: 14px;
}

.primary {
  background-color: var(--primary);
  border-radius: 8px;
  width: 100px;
  height: 100px;
  margin-right: 14px;
}

.primary-light {
  background-color: #d7e181;
  border-radius: 8px;
  width: 100px;
  height: 100px;
  margin-right: 14px;
}

.accent-red {
  background-color: #ff7f7f;
  border-radius: 8px;
  width: 100px;
  height: 100px;
  margin-right: 14px;
}

.accent-red-light {
  background-color: #fcafaf;
  border-radius: 8px;
  width: 100px;
  height: 100px;
  margin-right: 14px;
}

.accent-orange {
  background-color: #f5cb98;
  border-radius: 8px;
  width: 100px;
  height: 100px;
  margin-right: 14px;
}

.dot {
  color: var(--primary);
}

.call-icon {
  margin-right: 8px;
}

.underline {
  background-color: var(--primary);
  transform-origin: 0%;
  width: 100%;
  height: 2px;
  margin-top: 2px;
}

.buttons-wrapper {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  max-width: 600px;
  display: flex;
}

.rich-text-white {
  background-color: var(--white-81);
  border-radius: 8px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 60px;
}

.rich-text-white h2 {
  color: var(--grey-80);
  letter-spacing: -1px;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 600;
}

.rich-text-white p {
  letter-spacing: .2px;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 32px;
}

.rich-text-white strong {
  color: var(--grey-80);
  font-weight: 600;
}

.rich-text-white blockquote {
  border-left-color: var(--primary);
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
}

.rich-text-white h4 {
  color: var(--grey-80);
  letter-spacing: -1px;
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}

.rich-text-white ul {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 60px;
}

.rich-text-white li {
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 18px;
  line-height: 32px;
}

.rich-text-white img {
  max-width: 90%;
  margin-top: 20px;
}

.rich-text-white figcaption {
  margin-top: 10px;
  margin-bottom: 60px;
}

.footer {
  background-color: var(--green);
  color: var(--white-82);
}

.footer-top {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
}

.contact-wrapper {
  max-width: 20rem;
  margin-right: 40px;
  display: flex;
}

.opening-wrapper {
  width: 324px;
  font-size: 14px;
  line-height: 24px;
}

.contact-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.map {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  width: 396px;
  height: 396px;
}

.opening-content {
  border-bottom: 1.5px solid var(--grey-20);
  justify-content: space-between;
  width: 100%;
  margin-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.footer-bottom {
  border-top: 1.2px solid var(--grey-20);
  background-color: var(--white-81);
  justify-content: center;
  padding: 50px 16px;
  display: flex;
}

.link-footer {
  color: var(--grey-80);
  font-weight: 500;
  text-decoration: none;
}

.footer-span {
  color: var(--primary);
  padding-left: 4px;
  padding-right: 4px;
  font-size: 14px;
}

.image {
  width: 100%;
}

.navigation {
  border-bottom: 1px solid var(--white-81);
  background-color: var(--white-81);
  height: 88px;
  position: fixed;
  inset: 0% 0% auto;
}

.hero-section {
  background-image: linear-gradient(122deg, #041e16, #041e16d1 32%, #041e1600), url('../images/KF-Hero.jpg');
  background-position: 0 0, 100% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: 100%;
  height: 100vh;
}

.hero-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  position: relative;
}

.hero-content {
  color: var(--white-81);
  flex-direction: column;
  align-items: flex-start;
  max-width: 63%;
  margin-top: 5%;
  display: flex;
}

.social-links {
  justify-content: space-between;
  width: 120px;
  margin-bottom: 28px;
  margin-left: 16px;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
}

.mouse-icon {
  border: 2px solid var(--grey-80);
  border-radius: 500px;
  justify-content: center;
  align-items: flex-start;
  width: 24px;
  height: 36px;
  margin-bottom: 28px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 6px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.our-services {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
}

.our-services.changelog {
  padding-top: 0;
}

.our-services.green-background {
  background-color: #d4e0dd;
}

.features-wrapper {
  background-color: var(--green);
  color: var(--white-82);
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin-top: 8rem;
  margin-bottom: 6rem;
  display: flex;
  box-shadow: 0 40px 50px -20px #b0b3ce4d;
}

.feature-wrapper {
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 23rem;
  margin-left: auto;
  margin-right: auto;
  padding: 70px 50px;
  display: flex;
  position: relative;
}

.feature-image {
  width: 4rem;
  margin-bottom: 1.5rem;
}

.vertical-line {
  background-color: var(--grey-20);
  opacity: .5;
  width: 1px;
  height: 11rem;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.card-wrapper {
  color: var(--grey-60);
  width: 100%;
  max-width: 548px;
  height: 220px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 30px -8px #b0b3ce4d;
}

.card-content {
  background-color: var(--white-81);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  display: flex;
}

.card-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  width: 100%;
  max-width: 180px;
  height: 100%;
}

.inline-text {
  align-items: center;
  display: flex;
}

.news-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: minmax(220px, 548px) minmax(220px, 548px);
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  padding-top: 40px;
  display: grid;
}

.tabs {
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.tabs-menu {
  justify-content: flex-end;
  margin-bottom: 50px;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
}

.tab-link {
  color: var(--grey-40);
  background-color: #0000;
  padding: 12px 36px;
}

.tab-link.w--current {
  background-color: var(--white-81);
  color: var(--grey-80);
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 14px 20px -6px #b0b3ce4d;
}

.collection-list {
  grid-column-gap: 12px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, minmax(min-content, 260px));
  grid-auto-columns: 1fr;
  justify-content: space-between;
  justify-items: stretch;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  display: grid;
}

.collection-item {
  border-radius: 8px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: repeat(auto-fit, minmax(max-content, 268px));
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  height: 328px;
  text-decoration: none;
  display: flex;
  box-shadow: 0 20px 30px -8px #b0b3ce4d;
}

.item-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
  display: flex;
}

.item-content {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 16px;
  display: block;
}

.bottom-content {
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  display: flex;
}

.vegan-label {
  background-image: url('../images/noun-carrot.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
  margin-left: 6px;
}

.spicy-label {
  background-image: url('../images/noun-spicy.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
  margin-left: 6px;
}

.tabs-content {
  width: 100%;
}

.top-content {
  grid-column-gap: 16px;
  grid-row-gap: 6px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.new-text {
  background-color: var(--white-81);
  color: var(--grey-60);
  border-radius: 4px;
  margin-bottom: 10px;
  margin-right: 10px;
  padding: 2px 10px;
  font-size: 14px;
  line-height: 20px;
}

.discount-text {
  color: var(--white-81);
  background-color: #ff5a5a;
  border-radius: 4px;
  margin-bottom: 10px;
  margin-right: 10px;
  padding: 2px 10px;
  font-size: 14px;
  line-height: 20px;
  display: flex;
}

.empty-state {
  letter-spacing: .3px;
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 328px;
  display: flex;
}

.div-block {
  background-image: url('../images/noun-spoon-and-fork.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 140px;
  height: 140px;
}

.large-image-1 {
  background-image: url('../images/KF-About-02.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: .5rem;
}

.large-image-1.is-1 {
  background-image: url('../images/KF-About-Groceries-02.webp');
}

.large-image-1.is-2 {
  background-image: url('../images/KF-About-Kemasan-02.webp');
}

.large-image-1.is-3 {
  background-image: url('../images/KF-About-Kemasan-8.jpg');
}

.large-image-1.is-4 {
  background-image: url('../images/KF-About-Kemasan-11.jpg');
}

.small-image-1 {
  background-image: url('../images/KF-About-04.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: .5rem;
  justify-content: center;
  align-items: flex-end;
}

.small-image-1.is-2 {
  background-image: url('../images/KF-About-Kemasan-04.webp');
}

.small-image-1.is-1 {
  background-image: url('../images/KF-About-Sayur-04.jpg');
}

.small-image-1.is-3 {
  background-image: url('../images/KF-About-Kemasan-6.jpg');
}

.small-image-1.is-4 {
  background-image: url('../images/KF-About-Kemasan-10.jpg');
}

.image-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 50%;
  height: 596px;
  display: grid;
}

.large-image-2 {
  background-image: url('../images/KF-About-03.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: .5rem;
}

.large-image-2.is-2 {
  background-image: url('../images/KF-About-Kemasan-03.webp');
}

.large-image-2.is-3 {
  background-image: url('../images/KF-About-Kemasan-5.jpg');
}

.large-image-2.is-4 {
  background-image: url('../images/KF-About-Kemasan-9.jpg');
}

.small-image-2 {
  background-image: url('../images/KF-About-01.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: .5rem;
}

.small-image-2.is-2 {
  background-image: url('../images/KF-About-Kemasan-01.webp');
}

.small-image-2.is-1 {
  background-image: url('../images/KF-About-Groceries-01.webp');
}

.small-image-2.is-3 {
  background-image: url('../images/KF-About-Kemasan-7.jpg');
}

.small-image-2.is-4 {
  background-image: url('../images/KF-About-Kemasan-12.jpg');
}

.about-content {
  grid-row-gap: 2rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  width: 50%;
  margin-left: 10%;
  display: grid;
}

.about-content.reverse {
  order: -1;
  margin-left: 0%;
  margin-right: 10%;
}

.button-wrapper {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.button-wrapper.horizontal {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  justify-content: center;
  align-items: center;
}

.gallery-grid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, minmax(auto, 224px)) 200px 200px 200px 200px;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 6.25rem;
  padding-bottom: 14rem;
  display: grid;
}

.gallery-image-wrapper {
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.lightbox-link {
  width: 100%;
  height: 100%;
  display: flex;
}

.gallery-image {
  object-fit: cover;
  width: 100%;
}

.image-overlay {
  z-index: 100;
  background-color: #282a36b3;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.first-letter {
  float: left;
  color: var(--grey-80);
  margin-top: 40px;
  margin-left: 60px;
  margin-right: 8px;
  font-size: 60px;
  line-height: 62px;
}

.small-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 820px;
  height: 100%;
  margin: 80px auto;
  padding-left: 16px;
  padding-right: 16px;
  display: block;
  position: relative;
}

.rich-text {
  border-radius: 8px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

.rich-text h2 {
  color: var(--grey-80);
  letter-spacing: -1px;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 600;
}

.rich-text p {
  letter-spacing: .2px;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 32px;
}

.rich-text strong {
  color: var(--grey-80);
  font-weight: 600;
}

.rich-text blockquote {
  border-left-color: var(--primary);
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
}

.rich-text h4 {
  color: var(--grey-80);
  letter-spacing: -1px;
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}

.rich-text ul {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 60px;
}

.rich-text li {
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 18px;
  line-height: 32px;
}

.rich-text img {
  max-width: 90%;
  margin-top: 20px;
}

.rich-text figcaption {
  margin-top: 10px;
  margin-bottom: 60px;
}

.rich-text h3 {
  color: var(--grey-80);
  font-size: 28px;
  font-weight: 600;
}

.license-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 168px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.license-paragraph {
  max-width: 700px;
  margin-top: 20px;
}

.license-content {
  background-color: var(--white-81);
  border-radius: 8px;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px 40px 10px 10px;
  display: flex;
}

.license-links {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center space-between;
  place-items: center stretch;
  display: grid;
}

.icons-license {
  border: 1.5px solid var(--grey-20);
  background-image: url('../images/Icons_1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  width: 160px;
  height: 160px;
  margin-right: 40px;
}

.flex-wrapper {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: repeat(auto-fit, minmax(max-content, 300px));
  grid-auto-columns: 1fr;
  margin-top: 40px;
  margin-bottom: 80px;
  display: flex;
}

.fonts-license {
  border: 1.5px solid var(--grey-20);
  background-image: url('../images/Fonts_1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  width: 160px;
  height: 160px;
  margin-right: 40px;
}

.images-license {
  border: 1.5px solid var(--grey-20);
  background-image: url('../images/Images_1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  width: 160px;
  height: 160px;
  margin-right: 40px;
}

.license-link {
  color: var(--grey-60);
  text-decoration: none;
}

.changelog-header {
  background-image: linear-gradient(#fffc, #fff9), url('../images/yogurtfruit_1.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: 100%;
  padding-top: 168px;
  padding-bottom: 80px;
}

.version-description {
  margin-top: 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;
  align-items: center;
  width: 340px;
  display: flex;
}

.image-error {
  height: 180px;
  margin-bottom: 20px;
}

.social-link {
  color: var(--white-82);
  width: 28px;
  height: 28px;
}

.social-link.facebook {
  background-image: url('../images/ionicons-facebook.svg');
}

.social-link.instagram {
  background-image: url('../images/ionicons-instagram.svg');
}

.social-link.green {
  color: var(--green);
}

.news-page-list {
  grid-column-gap: 16px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: minmax(220px, 548px) minmax(220px, 548px);
  grid-auto-columns: 1fr;
  justify-content: space-between;
  justify-items: stretch;
  width: 100%;
  margin-top: 60px;
  display: grid;
}

.utility-page-form {
  flex-direction: column;
  display: flex;
}

.input {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--grey-40);
  background-color: #0000;
  height: 40px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo-large {
  height: 40px;
  margin-bottom: 40px;
}

.collection-list-wrapper {
  width: 100%;
}

.collection-list-wrapper.top-margin {
  margin-top: 40px;
}

.breadcrumbs {
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.link {
  color: var(--grey-80);
  font-weight: 600;
  line-height: 28px;
  text-decoration: none;
  display: flex;
}

.link:hover {
  text-decoration: underline;
}

.slash {
  color: var(--grey-40);
  margin-left: 6px;
  margin-right: 6px;
  display: inline;
}

.breadcrumb-text {
  color: var(--grey-40);
  display: inline;
}

.image-item-page {
  border-radius: 8px;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  width: 50%;
  max-height: 480px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.grid-details {
  grid-column-gap: 10px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: min-content 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-content-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-self: flex-start;
  width: 50%;
  margin-left: 60px;
  display: grid;
}

.vegan-label-item {
  background-image: url('../images/noun-carrot.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 28px;
  height: 28px;
}

.spicy-label-item {
  background-image: url('../images/noun-spicy.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 28px;
  height: 28px;
  margin-left: 6px;
}

.new-label-item {
  background-color: var(--white-81);
  color: var(--grey-60);
  border-radius: 4px;
  margin-top: 20px;
  margin-right: 20px;
  padding: 6px 14px;
  font-size: 16px;
  line-height: 20px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.discount-label-item {
  color: var(--white-81);
  background-color: #ff5a5a;
  border-radius: 4px;
  margin-top: 20px;
  margin-bottom: 10px;
  margin-right: 20px;
  padding: 6px 14px;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.business-value {
  padding-bottom: 0;
  padding-left: 10%;
  padding-right: 10%;
  display: block;
}

.list-clients.hide, .highlighted-products.hide, .cta-section.hide {
  display: none;
}

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

.max-width-medium {
  max-width: 37rem;
}

.product-category {
  padding-top: 120px;
  padding-bottom: 120px;
  display: block;
}

.product-category-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}

.product-category-item {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  display: flex;
}

.product-category-image-wrapper {
  aspect-ratio: 3 / 3.5;
  border-radius: 8px;
  overflow: hidden;
}

.product-category-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.product-category-content-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  max-width: 24rem;
  display: flex;
}

.container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 10%;
  padding-right: 10%;
  position: relative;
}

.container.top-margin {
  margin-top: 80px;
}

.container.center {
  justify-content: center;
}

.heading-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  display: flex;
}

.spacer._80 {
  height: 80px;
}

.spacer._8 {
  height: 8px;
}

.spacer._40 {
  height: 2.5rem;
}

.spacer._16 {
  height: 1rem;
}

.spacer._64 {
  height: 4rem;
}

.spacer._24 {
  height: 1.5rem;
}

.service-category-image-wrapper-copy {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
}

.sitemap-wrapper {
  flex-flow: column;
  display: flex;
}

.sitemap-heading {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 500;
}

.sitemap-link {
  opacity: .8;
  color: var(--white-82);
  font-weight: 300;
  text-decoration: none;
  transition: all .2s;
}

.sitemap-link:hover {
  opacity: 1;
}

.footer-social {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  justify-content: flex-start;
  align-items: center;
  width: 120px;
  margin-top: 32px;
  margin-bottom: 28px;
  display: flex;
}

.button-outline {
  border: 1px solid var(--white-82);
  color: var(--white-81);
  background-color: #2b2f4e00;
  border-radius: 500px;
  justify-content: center;
  align-items: center;
  padding: 14px 40px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.button-outline.top-margin {
  margin-top: 50px;
  margin-bottom: 10px;
}

.button-orange {
  color: var(--white-81);
  background-color: #f58a21;
  border-radius: 500px;
  justify-content: center;
  align-items: center;
  padding: 1.125rem 2.25rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.button-orange.top-margin {
  background-color: var(--orange);
  margin-top: 50px;
  margin-bottom: 10px;
}

.button-orange.is-cta {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  width: 16rem;
}

.button-orange.is-cta:hover {
  background-color: #d37315;
}

.button-orange.is-secondary {
  background-color: #ffffff1a;
  border: 1px solid #ffffff4d;
  width: 16rem;
}

.button-orange.is-secondary:hover {
  background-color: #fff3;
}

.button-orange.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  display: inline-flex;
}

.button-orange.is-icon:hover {
  background-color: #d37315;
}

.footer-grid {
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  width: 100%;
}

.footer-right {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.h5 {
  margin-bottom: .25rem;
  font-size: 1.75rem;
  line-height: 1.2;
}

.banner-section {
  position: relative;
}

.banner-content {
  padding: 27vh 10% 3rem;
}

.banner-content.contact {
  padding-top: 25vh;
}

.banner-content.smaller {
  padding-top: 18vh;
}

.banner-image-wrapper {
  height: 75vh;
  overflow: hidden;
}

.banner-image {
  object-fit: cover;
  width: 100%;
  height: 120%;
}

.contact-section {
  background-image: linear-gradient(#0003, #0003), url('../images/KF-CTA-2_1.webp');
  background-position: 0 0, 100% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  width: 100%;
  height: 80vh;
}

.call-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  position: relative;
}

.call-content {
  background-color: var(--green);
  color: var(--white-81);
  text-align: center;
  border-radius: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60%;
  max-width: 50rem;
  padding-top: 4rem;
  padding-bottom: 3.75rem;
  display: flex;
}

.max-width-small {
  max-width: 27rem;
}

.service-image-wrapper {
  aspect-ratio: 46 / 48;
  border-radius: 1rem;
  height: 55vh;
  overflow: hidden;
}

.service-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.service-content {
  grid-row-gap: 40px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 50%;
  margin-left: 10%;
  display: grid;
}

.service-content.reverse {
  margin-left: 0%;
  margin-right: 20%;
}

.service-bottom-content {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: auto;
  display: flex;
}

.service-top-content {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 30rem;
  display: flex;
}

.service-top-content.larger {
  max-width: 40rem;
}

.list-client-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.logo-client {
  height: 3rem;
}

.logo-client.bigger {
  height: 4.5rem;
}

.icon-small {
  width: 1rem;
  height: 1rem;
}

.contact-form {
  z-index: 9999;
  background-color: #000000b3;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.contact-form-inner {
  background-color: #fff;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 35rem;
  height: 37rem;
  padding: 2rem 2.5rem;
  display: flex;
  position: relative;
}

.contact-form-inner.grey {
  pointer-events: auto;
  background-color: #f2f2f2;
}

.contact-heading {
  text-align: center;
  letter-spacing: -.02em;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.contact-heading.align-left {
  text-align: left;
}

.text-field {
  color: #000;
  background-color: #fff0;
  border-top: 1px #000;
  border-left: 1px #000;
  border-right: 1px #000;
  margin-bottom: .75rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: 0;
}

.text-area {
  background-color: #fff0;
  border-top: 1px #000;
  border-left: 1px #000;
  border-right: 1px #000;
  min-height: 130px;
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: 0;
}

.submit-button {
  background-color: var(--orange);
  width: 100%;
  margin-top: 1.5rem;
  padding: .75rem 1rem;
}

.close-pop-up {
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  padding: .5rem;
  position: absolute;
  inset: 1.5rem 1.25rem auto auto;
}

.gallery-heading {
  text-align: center;
}

.text-content-center {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.text-full-section {
  background-color: #cdddd8;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
}

.text-full-section.changelog {
  padding-top: 0;
}

.text-full-section.white-bg {
  background-color: #cdddd800;
}

.paragraph-center {
  color: var(--green);
  text-align: center;
  font-size: 1rem;
}

.max-width-large {
  max-width: 45rem;
}

.contact-left-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.contact-right-wrapper {
  width: 26.25rem;
}

.contact-page-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 120px;
  display: flex;
}

.contact-page-section.changelog {
  padding-top: 0;
}

.contact-form-sticky {
  pointer-events: none;
  justify-content: flex-end;
  align-items: center;
  display: none;
  position: absolute;
  inset: 15% 10% 0% 0%;
}

.contact-item {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.contact-link-heading {
  color: #000;
  font-weight: 500;
}

.contact-link-item {
  color: var(--grey-60);
  max-width: 23rem;
  text-decoration: none;
}

.contact-link-item.address {
  color: #000;
}

.contact-icon {
  color: var(--green);
  justify-content: center;
  align-items: center;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  display: flex;
}

.address-wrapper {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.button-address {
  background-color: var(--orange);
  color: var(--white-81);
  border-radius: 500px;
  justify-content: center;
  align-items: center;
  padding: 14px 36px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  display: flex;
}

.button-address.top-margin {
  margin-top: 50px;
  margin-bottom: 10px;
}

.footer-link {
  color: var(--white-82);
  text-decoration: none;
}

.footer-logo {
  width: 10rem;
}

.banner-trigger {
  pointer-events: none;
  width: 100%;
  height: 100vh;
  position: absolute;
  inset: 0% 0% auto;
}

.service-category-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}

.list-client-slider {
  background-color: #ddd0;
  width: 100%;
  height: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  position: static;
  overflow: hidden;
}

.list-client-slider-mask {
  width: 10rem;
  overflow: visible;
}

.list-client-slider-slide {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

.slider-arrow {
  z-index: 10;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  inset: 0% auto 0% 0%;
}

.slider-arrow.right {
  inset: 0% 0% 0% auto;
}

.slider-nav {
  font-size: 10px;
  display: none;
  inset: auto 0% 0%;
}

.list-client-image-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.list-client-image {
  object-fit: contain;
  height: 3.25rem;
}

.slider-icon {
  color: #000;
  width: 2rem;
  height: 2rem;
  margin-left: .1rem;
}

.slider-icon.flip {
  margin-left: 0;
  margin-right: .1rem;
  transform: rotate(180deg);
}

.list-client-slider-wrapper {
  width: 65rem;
  margin-bottom: 6rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.list-client-slider-wrapper.smaller {
  width: 35rem;
  margin-left: 0;
  margin-right: 0;
}

.slider-overlay {
  z-index: 1;
  background-image: linear-gradient(90deg, #fff 30%, #fff0);
  width: 6rem;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.slider-overlay.right {
  background-image: linear-gradient(270deg, #fff 30%, #fff0);
  inset: 0% 0% 0% auto;
}

.banner-overview {
  z-index: 2;
  height: 20rem;
  position: relative;
}

.banner-overview-content {
  background-color: var(--green);
  color: var(--white-82);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 43rem;
  height: 17rem;
  margin-top: -8rem;
  margin-left: auto;
  margin-right: auto;
  padding: 2.5rem 3.75rem;
  font-size: 1.5rem;
  line-height: 1.2;
  display: flex;
}

.flow-image {
  width: 40rem;
}

.facility-image {
  width: 50rem;
}

.nav-content-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  position: relative;
}

.nav-content-wrapper.top-margin {
  margin-top: 80px;
}

.nav-content-wrapper.center {
  justify-content: center;
}

.nav-content-wrapper.top-align {
  justify-content: space-between;
  align-items: flex-start;
}

.nav-content-wrapper.strech-align {
  justify-content: space-between;
  align-items: stretch;
}

@media screen and (max-width: 991px) {
  .menu-button {
    z-index: 2000;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    display: flex;
    position: relative;
  }

  .nav-link {
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 1.25rem;
  }

  .nav-link.button {
    border-style: none;
    margin-left: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-link.button:hover {
    background-color: #0d413100;
  }

  .nav-menu {
    z-index: 400;
    transform-origin: 50% 0;
    background-color: #fff;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 27rem;
    margin-top: 80px;
    padding: 0 40px 20px;
    display: none;
    position: absolute;
    inset: 0%;
    box-shadow: 0 40px 40px -40px #7c809b80;
  }

  .content-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
    padding-left: 5%;
    padding-right: 5%;
  }

  .content-wrapper.vertical-align {
    flex-direction: column;
    padding-left: 5%;
    padding-right: 5%;
  }

  .content-wrapper.strech-align {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
    padding-left: 5%;
    padding-right: 5%;
  }

  .top-burger-line {
    background-color: var(--grey-60);
    border-radius: 20px;
    width: 28px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .center-burger-line {
    background-color: var(--grey-60);
    border-radius: 20px;
    width: 28px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .bottom-burger-line {
    background-color: var(--grey-60);
    border-radius: 20px;
    width: 28px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .semibold-paragraph {
    letter-spacing: .2px;
    font-size: 14px;
  }

  .h1 {
    justify-content: center;
    align-items: center;
    font-size: 42px;
  }

  .h1.white {
    font-size: 3rem;
  }

  .h3.top-margin {
    margin-left: 16px;
    margin-right: 16px;
  }

  .h3.white {
    font-size: 32px;
  }

  .h2 {
    font-size: 2.5rem;
    line-height: 48px;
  }

  .style-guide-title {
    justify-content: center;
    align-items: center;
    max-width: 400px;
    font-size: 42px;
    line-height: 42px;
  }

  .button-primary, .button-primary.top-margin {
    padding-left: 32px;
    padding-right: 32px;
    font-size: 14px;
    line-height: 20px;
  }

  .underline {
    display: none;
  }

  .contact-wrapper {
    justify-content: center;
    align-items: center;
    max-width: none;
    margin-right: 0;
  }

  .opening-wrapper {
    order: -1;
    margin-bottom: 60px;
  }

  .contact-content {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .footer-bottom {
    text-align: center;
  }

  .hero-section {
    height: 80vh;
    box-shadow: 0 10px 40px #b0b3ce4d;
  }

  .hero-content {
    max-width: 100%;
    margin-top: 2rem;
  }

  .social-links {
    margin-bottom: 40px;
  }

  .mouse-icon {
    display: none;
  }

  .our-services {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .features-wrapper {
    margin-top: 5rem;
    margin-bottom: 4rem;
  }

  .feature-wrapper {
    padding: 40px 20px;
  }

  .feature-image {
    width: 3rem;
  }

  .card-wrapper {
    max-width: 100%;
  }

  .card-content {
    width: 100%;
  }

  .card-image {
    max-width: 200px;
  }

  .news-list {
    grid-template-columns: 100%;
    justify-content: stretch;
    justify-items: stretch;
    padding-left: 40px;
    padding-right: 40px;
  }

  .tab-link {
    font-size: 14px;
    line-height: 20px;
  }

  .tab-link.w--current {
    line-height: 20px;
  }

  .collection-list {
    grid-template-columns: repeat(auto-fit, 32%);
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }

  .image-grid {
    order: -1;
    width: 100%;
    margin-top: 0;
    margin-bottom: 16px;
  }

  .about-content {
    grid-row-gap: 20px;
    place-items: start center;
    width: 100%;
    margin-left: 0;
  }

  .about-content.reverse {
    order: 0;
    margin-right: auto;
  }

  .about-content.center-align {
    text-align: center;
  }

  .button-wrapper.horizontal {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

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

  .image-overlay {
    display: none;
  }

  .news-page-list {
    grid-template-columns: 100%;
    justify-content: stretch;
    justify-items: stretch;
    padding-left: 40px;
    padding-right: 40px;
  }

  .image-item-page {
    width: 80%;
    margin-bottom: 40px;
  }

  .grid-content-item {
    align-self: center;
    width: 80%;
    margin-left: 0;
  }

  .business-value {
    padding-left: 5%;
    padding-right: 5%;
  }

  .product-category {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .product-category-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr 1fr;
  }

  .container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .container.vertical-align {
    flex-direction: column;
  }

  .footer-social {
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }

  .button-outline, .button-outline.top-margin, .button-orange, .button-orange.top-margin {
    padding-left: 32px;
    padding-right: 32px;
    font-size: 14px;
    line-height: 20px;
  }

  .button-orange.is-cta, .button-orange.is-secondary {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 2fr;
  }

  .h5 {
    font-size: 1.5rem;
  }

  .banner-content {
    padding: 10rem 5% 2rem;
  }

  .banner-content.smaller {
    padding-top: 4rem;
  }

  .banner-image-wrapper {
    height: 23rem;
  }

  .contact-section {
    height: 38rem;
    box-shadow: 0 10px 40px #b0b3ce4d;
  }

  .call-content {
    width: 100%;
    padding-bottom: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .service-image-wrapper {
    order: -1;
    height: 32rem;
  }

  .service-image-wrapper.is-last {
    order: 1;
    width: 100%;
    height: auto;
  }

  .service-content {
    grid-row-gap: 20px;
    width: 100%;
    margin-left: 0;
  }

  .service-bottom-content {
    margin-top: 2rem;
  }

  .service-top-content {
    max-width: none;
  }

  .contact-form-inner.grey {
    width: 90%;
    height: auto;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
  }

  .text-full-section, .contact-page-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .contact-form-sticky {
    justify-content: center;
    align-items: center;
    position: static;
  }

  .button-address, .button-address.top-margin {
    padding-left: 32px;
    padding-right: 32px;
    font-size: 14px;
    line-height: 20px;
  }

  .service-category-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .list-client-slider-wrapper {
    width: 100%;
  }

  .list-client-slider-wrapper.smaller {
    width: 100%;
    margin-bottom: 0;
  }

  .banner-overview {
    height: 15rem;
  }

  .banner-overview-content {
    width: 90%;
    height: 15rem;
    margin-top: -6rem;
    padding: 2rem 3rem;
    font-size: 1.25rem;
  }

  .flow-image {
    width: 100%;
  }

  .nav-content-wrapper {
    padding-left: 5%;
    padding-right: 5%;
  }

  .nav-content-wrapper.vertical-align {
    flex-direction: column;
    padding-left: 5%;
    padding-right: 5%;
  }

  .nav-content-wrapper.strech-align {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media screen and (max-width: 767px) {
  .menu-button {
    flex-direction: column;
    order: 1;
    justify-content: center;
    align-items: center;
    padding: 4px;
    display: flex;
  }

  .nav-link {
    height: auto;
    margin-left: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    justify-content: center;
  }

  .content-wrapper.vertical-align {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .medium-paragraph {
    font-size: 22px;
  }

  .h1 {
    font-size: 34px;
  }

  .h1.white {
    font-size: 2.5rem;
  }

  .underline-button {
    margin-left: 10px;
  }

  .h3 {
    font-size: 32px;
  }

  .h2 {
    flex: 1;
    font-size: 2rem;
  }

  .style-guide-title {
    text-align: center;
  }

  .contact-wrapper {
    margin-right: 0;
  }

  .contact-content {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    display: grid;
  }

  .map {
    width: 280px;
    height: 320px;
  }

  .hero-section {
    background-position: 0 0, 100% 0;
    background-size: auto, cover;
  }

  .features-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .vertical-line {
    width: 100%;
    height: 1px;
    inset: 0% 0% auto;
  }

  .card-wrapper {
    height: 240px;
  }

  .card-image {
    max-width: 180px;
  }

  .news-list {
    padding-left: 0;
    padding-right: 0;
  }

  .tabs {
    align-items: center;
  }

  .collection-list {
    grid-template-rows: auto;
    grid-template-columns: repeat(auto-fit, minmax(min-content, 240px));
  }

  .collection-item {
    height: 100%;
  }

  .item-image {
    height: 160px;
  }

  .item-content {
    height: 200px;
  }

  .image-grid {
    width: 100%;
  }

  .about-content {
    width: 100%;
    margin-left: 0;
  }

  .gallery-grid {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    padding-bottom: 10rem;
  }

  .image-error {
    height: 120px;
  }

  .news-page-list {
    padding-left: 0;
    padding-right: 0;
  }

  .image-item-page {
    width: 100%;
    max-height: 340px;
  }

  .grid-content-item {
    width: 100%;
  }

  .footer-social {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .footer-right {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    text-align: center;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .banner-content {
    padding-top: 8rem;
  }

  .banner-image-wrapper {
    height: 18rem;
  }

  .contact-section {
    background-image: linear-gradient(#0000, #0000), url('../images/KF-CTA-2_1.webp');
    background-position: 0 0, 100% 0;
    background-size: auto, cover;
    height: 41rem;
  }

  .service-image-wrapper {
    height: 28rem;
  }

  .service-content {
    width: 100%;
    margin-left: 0;
  }

  .logo-client.bigger {
    height: 3.5rem;
  }

  .contact-page-section {
    padding-top: 0;
  }

  .service-category-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 16px;
    line-height: 1.4;
  }

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

  .nav-menu {
    height: 20rem;
    margin-top: 70px;
    padding-top: 0;
  }

  .brand {
    max-width: 80%;
  }

  .content-wrapper, .content-wrapper.strech-align {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .semibold-paragraph {
    line-height: 20px;
  }

  .h1 {
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
    font-size: 30px;
  }

  .h1.white {
    font-size: 2.25rem;
  }

  .small-title {
    font-size: 14px;
    line-height: 20px;
  }

  .underline-button {
    margin-top: 10px;
  }

  .h3 {
    letter-spacing: 0;
    font-size: 24px;
  }

  .h3.white {
    font-size: 28px;
  }

  .h2 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .style-guide-title {
    max-width: 300px;
    margin-left: 0;
    margin-right: 0;
    font-size: 32px;
    line-height: 42px;
  }

  .style-guide-content {
    flex-direction: column;
  }

  .button-primary {
    padding: 16px 32px;
  }

  .h4 {
    text-align: center;
    font-size: 20px;
    line-height: 30px;
  }

  .h4.align-left {
    text-align: left;
  }

  .small-paragraph {
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 1.4;
  }

  .small-medium-paragraph {
    letter-spacing: 0;
    font-size: 12px;
    line-height: 18px;
  }

  .xs-paragraph.padding-left {
    padding-left: 2px;
  }

  .rich-text-white {
    max-width: 100%;
    padding: 20px;
  }

  .rich-text-white h2 {
    font-size: 26px;
  }

  .rich-text-white p, .rich-text-white blockquote, .rich-text-white li {
    font-size: 16px;
    line-height: 28px;
  }

  .footer-top {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .contact-wrapper {
    flex-direction: column;
    width: 100%;
  }

  .opening-wrapper {
    width: 80%;
  }

  .contact-content {
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .map {
    border-top-right-radius: 0;
    border-bottom-left-radius: 8px;
    width: 100%;
  }

  .footer-span {
    padding-left: 6px;
    padding-right: 6px;
  }

  .navigation {
    height: 70px;
  }

  .hero-section {
    box-shadow: none;
    height: 100svh;
  }

  .hero-wrapper {
    justify-content: center;
  }

  .hero-content {
    text-align: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin-top: 3rem;
  }

  .social-links {
    margin-bottom: 60px;
    margin-left: 0;
    left: auto;
  }

  .our-services {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .features-wrapper {
    flex-direction: column;
  }

  .feature-wrapper {
    padding: 40px;
  }

  .card-wrapper {
    flex-direction: column;
    height: 100%;
  }

  .card-content {
    border-top-right-radius: 0;
    border-bottom-left-radius: 8px;
  }

  .card-image {
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0;
    max-width: 100%;
    height: 140px;
  }

  .inline-text {
    margin-bottom: 6px;
  }

  .news-list {
    grid-row-gap: 40px;
    grid-template-columns: 100%;
  }

  .tabs {
    align-items: flex-start;
    width: 100vw;
    display: block;
    overflow: hidden;
  }

  .tabs-menu {
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 30px;
    overflow: scroll;
  }

  .tab-link {
    padding-left: 32px;
    padding-right: 32px;
  }

  .collection-list {
    grid-row-gap: 30px;
    grid-template-columns: repeat(auto-fit, 100%);
  }

  .collection-item {
    flex-direction: row;
  }

  .item-image {
    border-top-right-radius: 0;
    border-bottom-left-radius: 8px;
    justify-content: center;
    width: 120px;
    height: 100%;
  }

  .item-content {
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0;
    width: 90%;
    height: 180px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .vegan-label, .spicy-label {
    width: 20px;
    height: 20px;
    margin-left: 4px;
  }

  .new-text, .discount-text {
    margin-right: 0;
  }

  .image-grid {
    height: 320px;
  }

  .gallery-grid {
    padding-top: 3rem;
    padding-bottom: 6rem;
  }

  .first-letter {
    margin-top: 20px;
    margin-left: 20px;
    font-size: 54px;
    line-height: 54px;
  }

  .small-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .rich-text {
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .rich-text h2 {
    font-size: 26px;
  }

  .rich-text p, .rich-text blockquote {
    font-size: 16px;
    line-height: 28px;
  }

  .rich-text h4 {
    font-size: 18px;
    line-height: 26px;
  }

  .rich-text li {
    font-size: 16px;
    line-height: 28px;
  }

  .rich-text h3 {
    font-size: 20px;
    line-height: 28px;
  }

  .utility-page-content {
    margin-left: 16px;
    margin-right: 16px;
  }

  .news-page-list {
    grid-template-columns: 100%;
  }

  .image-item-page {
    border-top-right-radius: 0;
    border-bottom-left-radius: 8px;
    justify-content: center;
    margin-bottom: 10px;
  }

  .vegan-label-item, .spicy-label-item {
    width: 20px;
    height: 20px;
    margin-left: 4px;
  }

  .discount-label-item {
    margin-right: 0;
  }

  .product-category {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .product-category.smaller-top-padding {
    padding-top: 40px;
  }

  .product-category-grid {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .product-category-image-wrapper {
    aspect-ratio: 3 / 3;
  }

  .heading-wrapper {
    margin-bottom: 40px;
  }

  .sitemap-link {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .footer-social {
    margin-bottom: 40px;
    margin-left: 0;
    left: auto;
  }

  .button-outline {
    padding: 10px 32px;
  }

  .button-orange {
    padding: 1rem 32px;
  }

  .banner-content {
    padding-bottom: 1.5rem;
  }

  .banner-image-wrapper {
    height: 11rem;
  }

  .contact-section {
    box-shadow: none;
    height: 37rem;
  }

  .call-wrapper {
    justify-content: center;
    padding-left: 7%;
    padding-right: 7%;
  }

  .call-content {
    text-align: center;
    align-items: center;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .service-image-wrapper {
    height: 17rem;
  }

  .service-image-wrapper.is-last {
    width: 100%;
    height: auto;
  }

  .service-content {
    grid-row-gap: 16px;
  }

  .service-top-content {
    margin-bottom: 0;
  }

  .logo-client.bigger {
    height: 3rem;
  }

  .contact-form-inner.grey {
    padding: 3rem 1.5rem 2rem;
  }

  .text-content-center.no-padding {
    padding-top: 0;
  }

  .contact-left-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .contact-icon {
    color: var(--green);
    flex: none;
    padding: 0;
  }

  .button-address {
    padding: 10px 32px;
  }

  .footer-logo {
    width: 7rem;
  }

  .list-client-slider {
    padding-bottom: 4rem;
    padding-left: 0;
    padding-right: 0;
  }

  .list-client-slider-mask {
    width: 7rem;
  }

  .slider-arrow {
    display: none;
  }

  .slider-nav {
    font-size: 8px;
    display: block;
  }

  .list-client-image {
    object-fit: contain;
    height: 3.5rem;
  }

  .list-client-slider-wrapper {
    margin-bottom: 4rem;
  }

  .slider-overlay {
    width: 2rem;
  }

  .banner-overview-content {
    height: auto;
    margin-top: -4rem;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 1rem;
    line-height: 1.3;
  }
}

#w-node-heading-2-edb65a0a, #w-node-f4e9a699-a395-bad1-0023-bffe47d0ad7a-edb65a0a, #w-node-fec2cadf-9002-a760-0939-b2f6fda5d55f-edb65a0a {
  grid-area: 1 / 1 / 2 / 3;
}


