@charset "UTF-8";
/*ABSTRACTS*/
/*
  0-600 : phone
  600-900 : tablet portrait
  900-1200: tablet landscape
  [1200-1800] : current  PC styles
  1800+ : large PC
  */
/*
  $breakpoint arguement choices:

  -phone
  -tab-port
  -tab-land-
  big-desk

  1em=16px

  ORDER: base+typography > general layout +grid > pagelayout > components
  */
/*BASE*/
@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,700,900");
@keyframes flyToMachine {
  0% {
    left: 100%;
    top: 40%;
    opacity: 0;
    scale: 1;
  }
  2% {
    opacity: 1;
  }
  85% {
    left: 20%;
    top: 40%;
  }
  87% {
    opacity: 1;
  }
  100% {
    left: 3%;
    top: 45%;
    scale: 0.5;
    opacity: 0;
  }
}
@keyframes flyToMachineTop {
  0% {
    top: 0;
    left: 100%;
    opacity: 0;
    scale: 1;
  }
  2% {
    opacity: 1;
  }
  85% {
    left: 20%;
    top: 0%;
    opacity: 1;
  }
  87% {
    opacity: 1;
  }
  100% {
    top: 45%;
    left: 3%;
    scale: 0.5;
    opacity: 0;
  }
}
@keyframes flyToMachineMid {
  0% {
    top: 80%;
    left: 100%;
    opacity: 0;
    scale: 1;
  }
  2% {
    opacity: 1;
  }
  85% {
    top: 80%;
    left: 20%;
    opacity: 1;
  }
  87% {
    opacity: 1;
  }
  100% {
    top: 45%;
    left: 3%;
    scale: 0.5;
    opacity: 0;
  }
}
@keyframes foodRain {
  from {
    top: -200px;
    opacity: 1;
  }
  to {
    top: calc(100% - 300px);
    left: calc(50% - 100px);
    opacity: 0;
  }
}
@keyframes slideDown {
  0% {
    opacity: 1;
    top: -100%;
  }
  70% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
@keyframes animateBenefits {
  0% {
    opacity: 0;
    top: 0;
    left: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: 50%;
    left: 90%;
    opacity: 0;
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}
@media (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media (max-width: 37.5em) {
  html {
    font-size: 50%;
  }
}

main {
  min-height: 66vh !important;
}

body {
  font-family: "Verdana", "Geneva", "Tahoma", "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.7rem;
  line-height: 1.2;
  color: rgb(29, 29, 31);
  box-sizing: border-box;
  min-height: 101vh;
}

h1 {
  font-size: 4.8rem;
  font-weight: 400;
  color: rgb(82, 82, 82);
}

h2 {
  font-size: 4.8rem;
  font-weight: 400;
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
  color: rgb(82, 82, 82);
}

h3 {
  font-size: 3.2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: rgb(82, 82, 82);
}

h4 {
  font-size: 2.2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: rgb(82, 82, 82);
}

p {
  font-size: 1.7rem;
  line-height: 2.2rem;
  font-weight: 300;
  margin-bottom: 0;
}

a {
  font-size: 1.7rem;
  text-shadow: none;
  text-decoration: none;
  color: rgb(2, 167, 255);
}

.heading-primary {
  margin-top: 3.6rem;
  margin-bottom: 3.6rem;
  font-weight: 600;
}

@media (max-width: 400px) {
  body {
    font-weight: 300;
    font-size: 1.6rem;
    line-height: 1.12;
  }
  h1, footer h1 {
    font-size: 3.5rem !important;
    font-weight: 400;
    color: rgb(82, 82, 82);
  }
  h2 {
    font-size: 3rem;
    font-weight: 400;
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
    color: rgb(82, 82, 82);
  }
  h3 {
    font-size: 2.6rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: rgb(82, 82, 82);
  }
  h4 {
    font-size: 2.1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: rgb(82, 82, 82);
  }
  p {
    font-size: 1.6rem;
    line-height: 2.2rem;
    font-weight: 300;
    margin-bottom: 0;
  }
  a {
    font-size: 1.6rem;
    text-shadow: none;
    text-decoration: none;
    color: rgb(2, 167, 255);
  }
  .heading-primary {
    margin-top: 3.6rem;
    margin-bottom: 3.6rem;
    font-weight: 600;
  }
}
.u-white-space {
  height: 50vh;
}

.u-content-box {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
}

.u-bold {
  font-weight: bold;
}

.u-mt-0 {
  margin-top: 0;
}

.u-mb-m {
  margin-bottom: 1.8rem;
}

.u-color-primary {
  color: rgb(2, 167, 255);
}

.u-flex {
  display: flex;
  gap: 6rem;
}

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

.u-align-center {
  align-items: center;
}

.u-2-col div {
  width: 50%;
}
.u-2-col div img {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.u-mt-m {
  margin-top: 6rem;
}

.u-pv-xl {
  padding-top: 7.5rem !important;
  padding-bottom: 7.5rem !important;
}

.u-pv-xxl {
  padding-top: 15rem !important;
  padding-bottom: 15rem !important;
}

.u-pt-l {
  padding-top: 3.6rem;
}

.u-pt-xl {
  padding-top: 7.2rem;
}

.u-pt-xxl {
  padding-top: 15rem;
}

.u-pt-huge {
  padding-top: 15rem;
}

.u-pb-l {
  padding-bottom: 3.6rem;
}

.u-pb-xl {
  padding-bottom: 7.2rem;
}

.u-pb-xxl {
  padding-bottom: 15rem;
}

.u-pb-huge {
  padding-bottom: 15rem;
}

.u-margin-bottom-l {
  margin-bottom: 3.6rem;
}

.u-margin-bottom-xl {
  margin-bottom: 7.2rem;
}

.u-margin-bottom-xxl {
  margin-bottom: 15rem;
}

.u-margin-top-xxl {
  margin-top: 15rem;
}

.u-margin-top-none {
  margin-top: 0;
}

.u-text-upper {
  text-transform: uppercase;
}

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

.u-text-color-primary,
.u-text-color-primary h3 {
  color: rgb(82, 82, 82) !important;
}

.u-line-divider {
  width: 100%;
  height: 3px;
  background: rgb(2, 167, 255);
}

.u-color-primary {
  color: rgb(2, 167, 255);
}

@media (max-width: 55rem) {
  .u-content-box {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1201px) {
  .u-content-box {
    padding-left: 0.1rem;
    padding-right: 0.1rem;
  }
}
@media (max-width: 1300px) {
  .u-content-box {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media (max-width: 600px) {
  .u-flex.u-flex-tablet-col {
    flex-direction: column;
  }
  .u-flex.u-flex-tablet-col div {
    width: 100%;
  }
}
.u-btn-look {
  color: black !important;
  margin-top: 3.2rem;
}
.u-btn-look a {
  display: inline-block;
  border-bottom: 2px solid rgb(2, 167, 255);
  padding: 1rem 1rem;
  color: rgb(2, 167, 255);
  border-radius: 5px;
}
.u-btn-look a:hover {
  border-bottom: 2px solid rgb(0, 134, 205);
  padding: 1rem 2rem;
  color: rgb(0, 134, 205);
}
.u-btn-look.colored a {
  display: inline-block;
  border: 1px solid rgb(2, 167, 255);
  padding: 1rem 2rem;
}
.u-btn-look.colored a:hover {
  border: 1px solid white;
  color: white;
  background: rgb(0, 134, 205);
  padding: 1rem 2rem;
}

.u-btn-primary a {
  display: inline-block;
  border: 2px solid rgb(0, 134, 205);
  padding: 1rem 1.5rem;
  color: rgb(0, 134, 205);
  border-radius: 50px;
}
.u-btn-primary a:hover {
  border-bottom: 2px solid rgb(0, 134, 205);
  padding: 1rem 2.5rem;
  color: rgb(0, 134, 205);
}
.u-btn-primary.btn-colored a {
  border: 0px solid rgb(0, 134, 205);
  background: rgb(0, 134, 205);
  color: white;
}
.u-btn-primary.btn-colored a:hover {
  background: rgb(2, 167, 255);
}

button.u-btn-primary {
  display: inline-block;
  border: 1px solid rgb(0, 134, 205);
  padding: 1rem 2rem;
  color: rgb(0, 134, 205);
  border-radius: 50px;
}
button.u-btn-primary:hover {
  border-bottom: 1px solid rgb(2, 167, 255);
  padding: 1rem 3.2rem;
  color: rgb(2, 167, 255);
}
button.u-btn-primary.btn-colored {
  border: 0px solid rgb(0, 134, 205);
  background: rgb(0, 134, 205);
  color: white;
}
button.u-btn-primary.btn-colored:hover {
  background: rgb(2, 167, 255);
}

.u-uppercase {
  text-transform: uppercase;
}

.u-colored-title {
  color: rgb(2, 167, 255);
  font-weight: bold;
  font-size: 4.8rem;
}

.u-msg-title {
  font-size: 3.2rem;
}

.u-colored-subtitle {
  font-size: 3.2rem;
}

.u-subtitle {
  font-size: 2.2rem;
}

.u-link {
  color: rgb(0, 134, 205) !important;
}
.u-link:hover {
  color: rgb(2, 167, 255) !important;
}

.u-special-title-home {
  font-weight: bold;
  font-size: 2.2rem;
  margin-bottom: 6.2rem;
}

.u-special-title-commercial {
  font-size: 4.8rem;
  text-align: center;
  font-weight: bold;
  color: rgb(2, 167, 255);
  margin: 0 0 7.5rem 0;
}

h1.u-special-title-food-waste {
  color: white;
  font-size: 2.2rem !important;
}

.u-special-title-price {
  text-align: center;
  font-weight: bold;
  color: rgb(2, 167, 255);
  margin-bottom: 7.5rem !important;
  font-size: 4.8rem;
}

/*COMPONENTS*/
.resources-tag-card {
  width: 30%;
}
.resources-tag-card > div {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
.resources-tag-card__img {
  width: 100%;
  aspect-ratio: 4/4;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.resources-tag-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.resources-tag-card__img span {
  position: absolute;
  top: 1rem;
  left: 1rem;
  max-width: calc(100% - 2rem);
  background: rgba(2, 167, 255, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}
.resources-tag-card__text {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.resources-tag-card__text .read-more-btn {
  border-bottom: 2px solid rgb(2, 167, 255);
  align-self: flex-start;
  margin-top: 0;
}
.resources-tag-card__text h2,
.resources-tag-card__text h3 {
  margin-top: 0;
  color: rgb(2, 167, 255);
}
.resources-tag-card__text h4,
.resources-tag-card__text h5,
.resources-tag-card__text p {
  color: rgb(2, 167, 255);
}
.resources-tag-card__text h4:not(:last-of-type),
.resources-tag-card__text h5:not(:last-of-type),
.resources-tag-card__text p:not(:last-of-type) {
  margin-bottom: 2rem;
}
@media (max-width: 800px) {
  .resources-tag-card {
    width: 48%;
    max-width: 48%;
  }
}
@media (max-width: 450px) {
  .resources-tag-card {
    width: 100%;
    max-width: 100%;
  }
}
.tags-btn-wrapper {
  display: flex;
  align-items: center;
  margin-top: 3.6rem;
  margin-bottom: 3.6rem;
}
.tags-btn-wrapper .tags-wrapper__msg {
  width: 48%;
  text-align: center;
  margin-right: 3.6rem;
}
.tags-btn-wrapper .tags-wrapper__msg h1,
.tags-btn-wrapper .tags-wrapper__msg h2,
.tags-btn-wrapper .tags-wrapper__msg h3 {
  font-weight: bold;
}
.tags-btn-wrapper .informative-sites__button {
  height: 100%;
}
.tags-btn-wrapper .tags-wrapper__btns {
  display: flex;
}
.tags-btn-wrapper .tags-wrapper__btns button {
  cursor: pointer;
  background: rgb(0, 134, 205);
  border: none;
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
}
.tags-btn-wrapper .tags-wrapper__btns button:hover {
  background: rgb(2, 167, 255);
}
.tags-btn-wrapper .tags-wrapper__btns button.informative-sites__button {
  margin-right: 1rem;
}
.tags-btn-wrapper .category-tags {
  position: relative;
}
.tags-btn-wrapper .category-tags button span {
  margin-left: 0.5rem;
}
.tags-btn-wrapper .category-tags .tags-list {
  display: none;
  position: absolute;
  background: #f1f1f1;
  width: 100%;
  list-style: none;
  z-index: 10;
}
.tags-btn-wrapper .category-tags .tags-list li {
  padding: 5px 5px;
  cursor: pointer;
}
.tags-btn-wrapper .category-tags .tags-list li:not(:last-of-type) {
  border-bottom: 1px solid rgba(2, 167, 255, 0.1);
}
.tags-btn-wrapper .category-tags .tags-list li:hover {
  background: rgb(2, 167, 255);
  color: white;
}
.tags-btn-wrapper .category-tags:hover .tags-list {
  display: block;
}

@media (max-width: 840px) {
  .tags-btn-wrapper .tags-wrapper__msg {
    width: 38%;
  }
}
@media (max-width: 675px) {
  .tags-btn-wrapper .tags-wrapper__msg {
    display: none;
  }
}
.line-separator {
  width: 100%;
  height: 2px;
  background: rgb(2, 167, 255);
  margin: 3.6rem 0;
}

.tags-cards-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 7.2rem;
  gap: 1.8rem;
}
.tags-cards-wrapper:hover a {
  transform: scale(0.975);
}
.tags-cards-wrapper a {
  display: flex;
  align-self: stretch;
  --x: 0%;
  --y: 0%;
  --scaleEl: 1;
  transform: translate(var(--x), var(--y)) scale(var(--scaleEl));
  border-radius: 10px;
  padding: 1.8rem;
}
.tags-cards-wrapper a:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transform: scale(1.025);
}

@media (max-width: 380px) {
  .tags-btn-wrapper .tags-wrapper__btns {
    flex-direction: column;
    width: 100%;
  }
  .tags-btn-wrapper .tags-wrapper__btns > div {
    width: 100%;
  }
  .tags-btn-wrapper .tags-wrapper__btns > div button {
    width: 100%;
  }
  .tags-btn-wrapper .tags-wrapper__btns > div:not(:last-of-type) {
    margin-bottom: 1rem;
  }
}
.informative-sites-wrapper {
  display: none;
  margin-bottom: 7.2rem;
}
.informative-sites-wrapper a.informative-sites-link:hover {
  color: black !important;
}
.informative-sites-wrapper a.informative-sites-link:hover .info-site-text h4:last-of-type {
  color: #15e1ff;
}

a {
  display: block;
  color: black;
  transition: all 0.2s ease-in;
  text-decoration: none;
}

.info-site-box {
  width: 100%;
  display: flex;
  margin-top: 3.6rem;
  margin-bottom: 3.6rem;
}
.info-site-box .info-site-img {
  width: 40%;
  margin-right: 3.6rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
}
.info-site-box .info-site-img img {
  width: 100%;
  pointer-events: none;
}
.info-site-box .info-site-text {
  width: 60%;
}
.info-site-box .info-site-text h2 {
  font-weight: bold;
  margin-top: 1rem;
}
.info-site-box .info-site-text h4:last-of-type {
  color: rgb(2, 167, 255);
  font-weight: bold;
}

.modal {
  display: none;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  justify-content: center;
  align-items: center;
  background: rgba(2, 167, 255, 0.9);
  opacity: 0;
  transition: all 0.3s ease;
}

.modal-content {
  width: 95%;
  max-width: 400px;
  min-height: 200px;
  padding: 1rem;
}

.modal-content button {
  padding: 0.5rem 2rem;
  border: 0;
  background: rgb(2, 167, 255);
  color: white;
}
.modal-content button:hover {
  background: #15e1ff;
}

.article-title-banner {
  min-height: 30rem;
  background: rgb(2, 167, 255);
  padding: 7.2rem 3.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.article-title-banner h1 {
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  color: white;
  max-width: 45ch;
}
.article-title-banner h3 {
  color: white;
  text-align: center;
  text-transform: uppercase;
}
.article-title-banner.no-bg h1 {
  color: rgb(2, 167, 255);
}
.article-title-banner .line {
  height: 3px;
  width: 100%;
  background: white;
  margin: 7.2rem 0 3.6rem 0;
}
.article-title-banner .info {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  gap: 6rem;
}
.article-title-banner .info div {
  width: 33.3333333333%;
  color: white;
  text-align: center;
}
.article-title-banner .info div span {
  font-size: large;
  font-weight: bold;
}

.img-box .article-inner-img {
  width: 100%;
}
.img-box.float-left {
  margin: 6rem;
  margin-top: 1rem;
  width: 40%;
  max-width: 500px;
  float: left;
}
.img-box.center {
  text-align: center;
}
.img-box.center img {
  max-width: 800px;
  margin-top: 3.2rem;
}

@media (max-width: 500px) {
  .img-box.float-left {
    text-align: center;
    width: 100%;
    max-width: 300px;
    margin-bottom: 3.2rem;
    float: none;
  }
}
.go-back {
  margin-top: 7.5rem;
  margin-bottom: 7.5rem;
}
.go-back a {
  display: inline-block;
  background: rgb(0, 134, 205);
  color: white;
  padding: 0.6rem 2rem;
  margin: 0.6rem 1rem;
  border-radius: 50px;
}
.go-back a:hover {
  background: rgb(2, 167, 255);
  padding: 0.6rem 2.5rem;
}
.go-back a i {
  margin-right: 1rem;
}

div.single-article,
main.single-article {
  margin-top: 7.5rem;
  margin-bottom: 15rem;
}
div.single-article section,
main.single-article section {
  margin-bottom: 7.5rem;
}
div.single-article section p,
main.single-article section p {
  margin-bottom: 2rem;
}
div.single-article section a,
main.single-article section a {
  color: rgb(2, 167, 255);
  display: inline-block;
}
div.single-article section a.button,
main.single-article section a.button {
  display: inline-block;
  padding: 0.6rem 2rem;
  margin-top: 2rem;
  color: white;
  border: 1px solid rgb(0, 134, 205);
  color: rgb(0, 134, 205);
  border-radius: 50px;
}
div.single-article section a.button:hover,
main.single-article section a.button:hover {
  border: 1px solid rgb(2, 167, 255);
  background: rgb(2, 167, 255);
  color: white;
}
div.single-article section ol,
div.single-article section ul,
main.single-article section ol,
main.single-article section ul {
  margin-bottom: 2rem;
}
div.single-article section ol li,
div.single-article section ul li,
main.single-article section ol li,
main.single-article section ul li {
  margin-bottom: 1rem;
  margin-left: 5%;
}

.cards {
  display: flex;
  gap: 3.6rem;
}

.card {
  width: 100%;
  flex: 1;
  text-align: center;
}
.card__img {
  width: 100%;
}
.card__img img {
  width: 100%;
  display: inline-block;
}
.card__title {
  margin: 1.5rem;
  font-weight: bold;
  text-transform: capitalize;
  color: rgb(2, 167, 255);
}
.card__text {
  margin: 1.5rem;
}

@media (max-width: 620px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }
  .cards .card {
    max-width: 320px;
  }
}
.cards2 {
  padding-top: 3.6rem;
  padding-bottom: 3.6rem;
}
.cards2 .cards2-section-title {
  font-weight: bold;
  text-align: center;
  margin-bottom: 3.6rem;
}
.cards2.bg-colored {
  background-color: rgb(2, 167, 255);
}
.cards2.bg-colored h1,
.cards2.bg-colored h2,
.cards2.bg-colored h3,
.cards2.bg-colored p {
  color: white;
}
.cards2.bg-colored h2 {
  font-weight: bold;
}
.cards2 .grp {
  margin-bottom: 3.6rem;
}
.cards2 .grp.card-msg {
  text-align: center;
  font-weight: bold;
}

.case-studies {
  margin-top: 15rem;
  margin-bottom: 15rem;
}
.case-studies h2.title {
  color: rgb(2, 167, 255);
  text-align: center;
  font-weight: bold;
  margin-bottom: 3.2rem;
}
.case-studies .individual-study:not(:last-child) {
  margin-bottom: 7.5rem;
}
.case-studies .individual-study .study-title a {
  font-size: 2.2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: rgb(0, 134, 205);
}
.case-studies .individual-study .study-title a:hover {
  text-decoration: underline;
  color: rgb(2, 167, 255);
}
.case-studies .individual-study .study-title i {
  color: red;
  margin-left: 0.5rem;
}
.case-studies .individual-study ul.study-list {
  list-style: none;
}
.case-studies .individual-study ul.study-list li {
  margin-bottom: 1rem;
  font-size: 1.7rem;
  color: rgb(82, 82, 82);
}
.case-studies .individual-study ul.study-list li strong {
  text-transform: uppercase;
}

.contact-us {
  padding-top: 15rem;
  padding-bottom: 15rem;
  background: rgb(2, 167, 255);
  color: white;
}
.contact-us__title h2 {
  font-size: 4.8rem;
  text-align: center;
  font-weight: bold;
  color: white;
  margin: 0 0 7.5rem 0;
}
.contact-us__content {
  display: flex;
  width: 100%;
  gap: 6rem;
}
.contact-us__links {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.contact-us__links > div {
  width: 100%;
  margin-bottom: 3.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-us__links > div.contact-box-v2 {
  flex-direction: row;
}
.contact-us__links > div.contact-box-v2 i {
  justify-self: center;
  text-align: center;
  padding: 2rem;
  background: #68caff;
  color: white;
  display: block;
  width: 12rem;
  min-width: 12rem;
  height: 12rem;
  min-height: 12rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 5rem;
  margin-bottom: 1rem;
  margin-right: 3.2rem;
}
.contact-us__links > div .title {
  font-weight: bold;
  font-size: 3.2rem;
  margin: 0 0 1rem 0;
}
.contact-us__links > div .title i {
  justify-self: center;
  text-align: center;
  padding: 2rem;
  background: #68caff;
  color: white;
  display: block;
  width: 12rem;
  height: 12rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 5rem;
  margin-bottom: 1rem;
}
.contact-us__links > div .link a {
  color: white;
  font-size: 2.2rem;
}
.contact-us__links > div .link a:hover {
  text-decoration: underline;
}
.contact-us__form {
  width: 50%;
}
.contact-us__form form {
  width: 100%;
  border: none;
}
.contact-us__form form input,
.contact-us__form form textarea {
  width: 100%;
  padding: 1.7rem;
  font-size: 2.2rem;
  border-radius: 10px;
  border: 1px solid white;
}
.contact-us__form form input:focus,
.contact-us__form form textarea:focus {
  outline-offset: -2px;
  outline: 3px solid rgb(2, 167, 255);
}
.contact-us__form form div {
  margin-bottom: 3.2rem;
}
.contact-us__form form button[type=submit] {
  padding: 1rem 3.2rem;
  border-radius: 50px;
  color: white;
  background: none;
  font-size: 2.2rem;
  border: 1px solid white;
  transition: 0.3s ease;
}
.contact-us__form form button[type=submit]:hover {
  cursor: pointer;
  color: rgb(2, 167, 255);
  background: white;
}

@media (max-width: 700px) {
  .contact-us__content {
    flex-direction: column;
    gap: 6rem;
  }
  .contact-us__links {
    width: 100%;
    gap: 6rem;
    flex-direction: row;
    justify-content: space-between;
  }
  .contact-us__links > div {
    width: 50%;
  }
  .contact-us__links > div.contact-box-v2 i {
    padding: 1rem;
    margin-right: 1rem;
    width: 9rem;
    min-width: 9rem;
    min-height: 9rem;
    height: 9rem;
    font-size: 3.5rem;
  }
  .contact-us__form {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .contact-us__links > div {
    width: 100%;
  }
  .contact-us__links > div.contact-box-v2 {
    flex-direction: column;
    align-items: start;
  }
  .contact-us__links > div.contact-box-v2 i {
    padding: 1rem;
    margin-right: 1rem;
    width: 9rem;
    min-width: 9rem;
    min-height: 9rem;
    height: 9rem;
    font-size: 3.5rem;
  }
  .contact-us__form {
    width: 100%;
  }
}
@media (max-width: 460px) {
  .contact-us__links {
    gap: 3.2rem;
    flex-direction: column;
  }
  .contact-us__links > div {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
  .contact-us__links > div.contact-box-v2 {
    align-items: center;
  }
}
.cost-benefits {
  margin-top: 15rem;
  margin-bottom: 15rem;
}
.cost-benefits__title h2 {
  font-size: 4.8rem;
  text-align: center;
  font-weight: bold;
  color: rgb(2, 167, 255);
  margin: 0 0 3.2rem 0;
}
.cost-benefits__imgs {
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  gap: 6rem;
  margin-bottom: 6rem;
  margin-top: 6rem;
}
.cost-benefits__imgs > div {
  width: 50%;
  max-width: 350px;
}
.cost-benefits__imgs > div img {
  width: 100%;
}
.cost-benefits__mini-msg h4 {
  margin: 0 0 1rem 0;
  text-align: center;
  font-weight: bold;
}
.cost-benefits__mini-msg a {
  display: inline-block;
  background: rgb(0, 134, 205);
  color: white;
}
.cost-benefits__mini-msg a:hover {
  background: rgb(2, 167, 255);
  color: white;
  border: 2px solid rgb(2, 167, 255);
}

@media (max-width: 420px) {
  .cost-benefits__imgs {
    flex-direction: column;
    gap: 3.2rem;
  }
  .cost-benefits__imgs > div {
    width: 100%;
    max-width: 450px;
  }
  .cost-benefits__imgs > div img {
    width: 100%;
  }
  .cost-benefits h4 {
    font-size: 2.2rem;
    margin: 0 0 1rem 0;
    text-align: center;
    font-weight: bold;
  }
  .cost-benefits a {
    display: inline-block;
    color: white;
    margin-top: 5px;
  }
  .cost-benefits a:hover {
    text-decoration: underline;
  }
}
.digest-options-wrapper {
  padding-top: 15rem;
  padding-bottom: 15rem;
}
.digest-options-wrapper .link {
  text-align: center;
  margin-top: 7.5rem;
}
.digest-options-wrapper .link > div {
  margin-top: 1rem;
}
.digest-options-wrapper .link a {
  font-size: 2.2rem;
  color: white;
}
.digest-options-wrapper > h2 {
  color: rgb(2, 167, 255);
  font-size: 4.8rem;
  font-weight: bold;
}
.digest-options-wrapper .digest-content {
  display: flex;
}
.digest-options-wrapper .digest-content > div {
  width: 50%;
}
.digest-options-wrapper .digest-content .digest-list h2 {
  margin-bottom: 3.6rem;
  color: rgb(2, 167, 255);
  font-weight: bold;
}
.digest-options-wrapper .digest-content .digest-list ul li {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: bold;
  color: rgb(82, 82, 82);
  list-style-position: inside;
}
.digest-options-wrapper .digest-content .digest-list ul li::marker {
  color: rgb(2, 167, 255);
}
.digest-options-wrapper .digest-content .digest-list ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.digest-options-wrapper .digest-content .digest-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.digest-options-wrapper .digest-content .digest-img img {
  width: 100%;
  max-width: 270px;
}

@media (max-width: 550px) {
  .digest-options-wrapper .digest-content {
    flex-direction: column;
  }
  .digest-options-wrapper .digest-content > div {
    width: 100%;
  }
  .digest-options-wrapper .digest-content .digest-list {
    margin-bottom: 36px;
  }
}
.accordion {
  position: relative;
  margin-top: 15rem;
  margin-bottom: 15rem;
}
.accordion__group {
  position: relative;
  z-index: 2;
}
.accordion__group .grp-wrapper {
  transition: max-height 0.5s ease-out;
  max-height: 0;
  overflow: hidden;
}
.accordion__group.active {
  background: white;
}
.accordion__group.active h2.accordion__group--title {
  width: 100%;
  background: white;
  color: rgb(2, 167, 255);
}
.accordion__group.active h2.accordion__group--title:hover {
  color: white;
  background: rgb(2, 167, 255);
}
.accordion__group.active .grp-wrapper {
  transition: max-height 0.5s ease-out;
  background: white;
}
.accordion__group--title {
  position: relative;
  cursor: pointer;
  color: rgb(2, 167, 255);
  font-weight: bold;
  border-bottom: 3px solid rgb(2, 167, 255);
  margin: 0;
  margin-bottom: 3.6rem;
  line-height: 1.5;
  padding-left: 1rem;
  transition: color 0.3s ease-out, background 0.3s ease-out;
  font-size: 2.2rem;
  width: calc(70% - 10rem);
}
.accordion__group--title span {
  pointer-events: none;
}
.accordion__group--title span.title-text-box {
  display: inline-block;
  width: calc(100% - 160px);
}
.accordion__group--title .faq-number {
  position: absolute;
  right: 0;
  width: 130px;
  text-align: end;
}
.accordion__group--title:hover {
  color: white;
  background: rgb(2, 167, 255);
}
.accordion__group--ul {
  list-style: none;
}
.accordion__group--ul .accordion__text {
  position: relative;
  margin-bottom: 3.2rem;
  padding-left: 3.2rem;
}
.accordion__group--ul .accordion__text--question {
  font-weight: bold;
  font-size: 2.2rem;
}
.accordion__group--ul .accordion__text--answer a, .accordion__group--ul .accordion__text--answer.link {
  color: rgb(2, 167, 255);
  font-weight: bold;
}
.accordion__group--ul .accordion__text--answer a:hover, .accordion__group--ul .accordion__text--answer.link:hover {
  text-decoration: underline;
}
.accordion__group--ul .accordion__text--answer:not(:last-child) {
  margin-bottom: 2rem;
}
.accordion__group--ul .accordion__text::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  color: rgb(2, 167, 255);
  background: rgb(2, 167, 255);
  font-weight: bold;
  display: block;
  top: 10px;
  margin-left: -1.5em;
}
.accordion .machine-animation-wrapper {
  position: absolute;
  z-index: -2;
  height: 100%;
  width: calc(30% - 10rem);
  top: 0;
  right: 5%;
  display: flex;
  align-items: flex-end;
}
.accordion .machine-animation-wrapper img {
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 760px) {
  .accordion__group--title {
    width: 100%;
  }
  .accordion .machine-animation-wrapper {
    position: relative;
    z-index: 1;
    height: 100vh;
    width: 100%;
    top: initial;
    right: initial;
    text-align: center;
  }
  .accordion .machine-animation-wrapper img {
    width: 90%;
    max-width: 300px;
  }
}
.fixed-img-section {
  position: relative;
  background-image: url("../../assets/images/fixed-img-section/bg-kitchen-test.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center bottom;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.fixed-img-section h1 {
  max-width: 50ch;
  margin: 3.6rem;
  text-align: center;
  color: white;
  font-weight: bold;
  z-index: 2;
}
.fixed-img-section a {
  display: inline-block;
  background: rgb(0, 134, 205);
  color: white;
  padding: 2rem 4rem;
  z-index: 2;
}
.fixed-img-section a:hover {
  color: white;
}
.fixed-img-section::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero {
  min-height: 80vh;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 15rem;
  overflow: hidden;
}
.hero__title h2 {
  color: rgb(2, 167, 255);
  font-weight: bold;
  font-size: 5rem;
  margin: 7.2rem auto;
  text-align: center;
}
.hero-content {
  margin-top: auto;
  position: relative;
  display: flex;
  gap: 6rem;
  width: 100%;
  min-height: 25vw;
  align-items: flex-end;
}
.hero-content__img {
  width: 30%;
}
.hero-content__img img {
  width: 90%;
}
.hero-content__text {
  width: 70%;
  align-self: flex-end;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-content__text .text-space {
  width: 100%;
}
.hero-content__text h3 {
  font-size: 2.2rem;
  text-align: center;
  margin-top: 0;
}
.hero-content__text h3:not(:last-of-type) {
  margin-bottom: 3.2rem;
}
.hero-content__text h3:last-of-type {
  max-width: 35ch;
  text-align: center;
}
.hero-content__food {
  position: absolute;
  width: 100%;
  height: 45%;
  inset: 0;
  left: 8%;
}
.hero-content__food--row {
  position: absolute;
  display: flex;
  flex: 1 1;
  height: 100%;
  width: 100%;
  top: 0;
}
.hero-content__food--row:nth-child(1) img {
  animation: flyToMachineTop 11s infinite linear;
  position: absolute;
  top: 0%;
}
.hero-content__food--row:nth-child(2) img {
  animation: flyToMachineMid 11s infinite linear;
  position: absolute;
  top: 40%;
}
.hero-content__food--row:nth-child(3) img {
  animation: flyToMachine 11s infinite linear;
  position: absolute;
  top: 80%;
}
.hero-content__food--row img {
  max-height: 8vh;
  max-width: 7%;
  left: 100%;
}
.hero-content__food--row img:nth-child(0) {
  animation-delay: -10s;
}
.hero-content__food--row img:nth-child(1) {
  animation-delay: -9s;
}
.hero-content__food--row img:nth-child(2) {
  animation-delay: -8s;
}
.hero-content__food--row img:nth-child(3) {
  animation-delay: -7s;
}
.hero-content__food--row img:nth-child(4) {
  animation-delay: -6s;
}
.hero-content__food--row img:nth-child(5) {
  animation-delay: -5s;
}
.hero-content__food--row img:nth-child(6) {
  animation-delay: -4s;
}
.hero-content__food--row img:nth-child(7) {
  animation-delay: -3s;
}
.hero-content__food--row img:nth-child(8) {
  animation-delay: -2s;
}
.hero-content__food--row img:nth-child(9) {
  animation-delay: -1s;
}
.hero-content__food--row img:nth-child(10) {
  animation-delay: 0s;
}
.hero-content__food--row img:nth-child(11) {
  animation-delay: 1s;
}
.hero-content__food--row img:nth-child(12) {
  animation-delay: 2s;
}

@media (max-width: 768px) {
  .hero-content {
    min-height: 40vw;
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-content__img {
    width: 30%;
    padding-top: 20vw;
  }
  .hero-content__text {
    width: 100%;
  }
  .hero-content__food {
    height: 45%;
    left: 8%;
  }
  .hero-content__food--row:nth-child(1) img {
    top: 0%;
  }
  .hero-content__food--row:nth-child(2) img {
    top: 40%;
  }
  .hero-content__food--row:nth-child(3) img {
    top: 80%;
  }
  .hero-content__food--row img {
    height: 8vh;
    left: 100%;
  }
}
@media (max-width: 425px) {
  .hero-content__img {
    width: 45%;
    padding-top: 2vw;
  }
  .hero-content__text {
    width: 100%;
  }
  .hero-content__food {
    height: 20%;
    left: 8%;
  }
  .hero-content__food--row:nth-child(1) img {
    top: 0%;
  }
  .hero-content__food--row:nth-child(2) img {
    top: 40%;
  }
  .hero-content__food--row:nth-child(3) {
    display: none;
  }
  .hero-content__food--row:nth-child(3) img {
    top: 80%;
  }
  .hero-content__food--row img {
    max-height: 55%;
    left: 100%;
  }
}
.how-to-use {
  margin-top: 15rem;
  margin-bottom: 15rem;
}
.how-to-use__title h2 {
  font-size: 4.8rem;
  text-align: center;
  font-weight: bold;
  color: rgb(2, 167, 255);
  margin-bottom: 3.2rem;
  margin-top: 0;
}
.how-to-use__cards {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  gap: 6rem;
}
.how-to-use__cards--card {
  width: 33%;
}
.how-to-use__cards--card img {
  width: 100%;
}
.how-to-use__cards--card h4 {
  text-align: center;
  font-size: 2.2rem;
}

@media (max-width: 550px) {
  .how-to-use__cards {
    flex-direction: column;
    align-items: center;
    gap: 6rem;
  }
  .how-to-use__cards--card {
    width: 100%;
    max-width: 350px;
  }
  .how-to-use__cards--card img {
    width: 100%;
  }
  .how-to-use__cards--card h4 {
    text-align: center;
    font-size: 2.2rem;
  }
}
header {
  position: relative;
  width: 100%;
  position: fixed;
  z-index: 99;
  top: 0;
  background: white;
  box-shadow: 0 0 3px 0.1rem rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease-out;
}
header .social {
  display: flex;
  background: rgb(2, 167, 255);
  color: white;
  padding: 0.5rem;
}
header .social > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .social ul {
  display: flex;
  list-style: none;
}
header .social ul a {
  display: inline;
}
header .social ul.s-links a {
  border-radius: 3px;
}
header .social ul.s-links a:hover {
  background: white;
}
header .social ul.s-links a:hover i {
  color: rgb(2, 167, 255);
}
header .social ul li {
  padding: 0.2rem 1.4rem;
}
header .social ul li a {
  color: white;
  padding: 0.2rem 0.4rem;
}
header .social ul li a:hover {
  text-decoration: underline;
}
header.scrolled {
  background: white;
}
header.scrolled .logo img {
  max-width: 120px;
}
header.scrolled nav li {
  font-size: 1.6rem;
}
header.scrolled nav li:hover a {
  color: white;
}
header .navigation {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  padding-right: 0;
}
header .navigation > *, header .navigation a {
  font-size: 1.7rem;
  color: black;
}
header .navigation .logo img {
  height: 40px;
  display: inline-block;
  margin: 0;
}
header .navigation .main-menu {
  display: flex;
  list-style: none;
}
header .navigation .main-menu li > a,
header .navigation .main-menu li > span {
  display: inline-block;
  padding: 1.2rem 0.9rem;
  cursor: pointer;
}
header .navigation .main-menu li > a:hover,
header .navigation .main-menu li > span:hover {
  text-decoration: 2px rgb(2, 167, 255) underline;
}
header .navigation .main-menu .submenu {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  width: 100%;
  transform: scaleY(0);
  transform-origin: top;
  left: 0;
  top: 100%;
  background: rgb(2, 167, 255);
  padding: 4.8rem;
  height: 0;
  max-height: 0;
  transition: transform 0s ease;
}
header .navigation .main-menu .submenu li {
  list-style: none;
}
header .navigation .main-menu .submenu a {
  color: white;
}
header .navigation .main-menu .submenu a:hover {
  text-decoration: 2px white underline;
}
header .navigation .main-menu li > a:hover .submenu,
header .navigation .main-menu li > span:hover .submenu {
  transform: scaleY(1);
  height: initial;
  max-height: 1000px;
  transition: transform 1s cubic-bezier(0.79, -0.02, 0.15, 0.86);
}

.calc-button {
  align-self: stretch;
}

.calc-button.for-pc {
  display: flex;
  align-items: center;
}

.calc-button a {
  padding: 0.6rem 2rem;
  margin: 0.6rem 1rem;
  color: white;
  border: 1px solid rgb(0, 134, 205);
  color: rgb(0, 134, 205);
  border-radius: 50px;
}
.calc-button a:hover {
  border: 1px solid rgb(2, 167, 255);
  background: rgb(2, 167, 255);
  color: white;
}

.nav-white-space {
  height: 74px;
}

.for-mobile {
  display: none;
}

.nav-burger {
  z-index: 99;
  width: 5rem;
  height: 5rem;
  background: rgb(2, 167, 255);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 2px;
  pointer-events: none;
  margin: 3px;
}
.nav-burger span:nth-child(1) {
  width: 70%;
}
.nav-burger span:nth-child(3) {
  width: 70%;
}
.nav-burger:hover {
  background: rgb(0, 134, 205);
}
.nav-burger.open {
  position: relative;
  background: rgb(0, 134, 205);
}
.nav-burger.open span {
  position: absolute;
}
.nav-burger.open span:nth-child(1) {
  transform: rotateZ(45deg) scale(0.8);
}
.nav-burger.open span:nth-child(2) {
  display: none;
}
.nav-burger.open span:nth-child(3) {
  transform: rotateZ(-45deg) scale(0.8);
}

@media (max-width: 820px) {
  header .navigation .logo img {
    height: 30px;
  }
}
@media (max-width: 760px) {
  .nav-white-space {
    height: 40px;
  }
  header .social {
    display: none;
  }
  .calc-button.for-pc {
    display: none;
  }
  .for-mobile {
    display: initial;
  }
  .nav-burger {
    display: flex;
  }
  .navigation {
    padding-left: 15px;
    padding-right: 0;
  }
  header .navigation .main-menu {
    position: fixed;
    top: 0;
    left: 0;
    padding: 4.8rem;
    z-index: 2;
    width: 100vw;
    height: 100vh;
    background: rgb(2, 167, 255);
    color: white;
    display: none;
  }
  header .navigation .main-menu a,
  header .navigation .main-menu span {
    color: white;
    width: 100%;
  }
  header .navigation .main-menu a:hover,
  header .navigation .main-menu span:hover {
    background: rgb(0, 134, 205);
    text-decoration: none !important;
  }
  header .navigation .main-menu.open {
    display: initial;
  }
  header .navigation .main-menu .submenu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 31;
    width: 100vw;
    background: rgb(2, 167, 255);
    color: white;
    transform: scaleY(1);
    min-height: 100vh;
    max-height: 100%;
    display: none;
  }
  header .navigation .main-menu .submenu ul {
    margin-top: 1rem;
  }
  header .navigation .main-menu .submenu a {
    color: white;
  }
  header .navigation .main-menu .submenu .for-mobile {
    display: initial;
  }
  header .navigation .main-menu .submenu .for-mobile .back {
    margin-bottom: 1rem;
    position: fixed;
    left: 0;
    top: 0;
    width: 5rem;
    height: 5rem;
    background: rgb(0, 134, 205);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .navigation .main-menu .submenu .for-mobile .back span {
    position: absolute;
    width: 30%;
    height: 2px;
    display: block;
    background: white;
    color: white;
    transform-origin: left;
  }
  header .navigation .main-menu .submenu .for-mobile .back span:nth-child(1) {
    transform: rotateZ(-46deg);
  }
  header .navigation .main-menu .submenu .for-mobile .back span:nth-child(2) {
    transform: rotateZ(46deg);
  }
  header .navigation .main-menu .submenu.open-submenu {
    display: initial;
  }
}
.msg-modal {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgb(2, 167, 255);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 10%;
}
.msg-modal h1 {
  color: white;
  text-align: center;
}

.msg-modal.active {
  display: flex;
}

.msg-statement {
  padding: 7.2rem 3.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.msg-statement h1,
.msg-statement h3 {
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  color: rgb(2, 167, 255);
}
.msg-statement > h2 {
  margin-top: 3.6rem;
  color: rgb(2, 167, 255);
  font-weight: bold;
}
.msg-statement.msg-bg-color {
  background: rgb(2, 167, 255);
}
.msg-statement.msg-bg-color h1 {
  color: white;
  max-width: 55ch;
  text-align: center;
}
.msg-statement.msg-bg-color h2 {
  color: white;
}
.msg-statement.msg-bg-color h3 {
  color: white;
  font-size: 2.2rem;
}
.msg-statement.mini-msg-box h2 {
  color: black;
}
.msg-statement.mini-msg-box p {
  text-align: center;
}

.product-model {
  margin-top: 15rem;
  margin-bottom: 15rem;
}
.product-model__title h2 {
  font-size: 4.8rem;
  text-align: center;
  font-weight: bold;
  color: rgb(2, 167, 255);
  margin: 0 0 7.5rem 0;
}
.product-model__desc {
  display: flex;
  gap: 6rem;
}
.product-model__desc h3.model-title {
  font-size: 3.2rem;
  font-weight: bold;
  color: rgb(2, 167, 255);
  margin: 0 0 3.2rem 0;
}
.product-model__desc ul {
  list-style: none;
}
.product-model__desc ul li {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
  color: rgb(82, 82, 82);
}
.product-model__desc > div {
  width: 50%;
}
.product-model__desc > div h4 {
  text-align: center;
}
.product-model__desc > div .machine-img {
  width: 100%;
  text-align: center;
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.product-model__desc > div .machine-img img {
  max-width: 450px;
  width: 100%;
}
.product-model__desc > div .machine-img.smaller-machine img {
  max-width: clamp(150px, 325px, 80%);
}

@media (max-width: 550px) {
  .product-model__desc {
    flex-direction: column;
  }
  .product-model__desc > div {
    width: 100%;
  }
}
.requirements {
  display: flex;
  gap: 3.6rem;
}
.requirements > div {
  width: 50%;
}
.requirements > div img {
  width: 100%;
}
.requirements__text--title {
  font-weight: bold;
  color: rgb(2, 167, 255);
  margin-bottom: 3.6rem;
}
.requirements__text--list {
  list-style: none;
}
.requirements__text--list li {
  font-size: 2.2rem;
  line-height: 1.5;
  padding-left: 2.5rem;
}
.requirements__text--list li::before {
  content: "•";
  color: rgb(2, 167, 255);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

@media (max-width: 620px) {
  .requirements {
    flex-direction: column;
  }
  .requirements > div {
    width: 100%;
  }
  .requirements__text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .requirements__text--title {
    text-align: center;
  }
  .requirements__text--list {
    width: 100%;
    max-width: 244px;
  }
  .requirements__text--list li {
    padding-left: 0rem;
  }
  .requirements__text--list li::before {
    margin-left: -1em;
  }
}
.system-benefits {
  margin-top: 15rem;
  margin-bottom: 15rem;
}
.system-benefits > div {
  display: flex;
  align-items: center;
  gap: 6rem;
}
.system-benefits__msg {
  width: 40%;
}
.system-benefits__msg h2 {
  font-size: 4.8rem;
  text-align: center;
  font-weight: bold;
  color: rgb(2, 167, 255);
  max-width: 12ch;
}
.system-benefits__list {
  width: 60%;
  list-style: disc;
}
.system-benefits__list li {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: bold;
  color: rgb(82, 82, 82);
}
.system-benefits__list li::marker {
  color: rgb(2, 167, 255);
}
.system-benefits__list li:not(:last-child) {
  margin-bottom: 1rem;
}

@media (max-width: 800px) {
  .system-benefits > div {
    flex-direction: column;
    gap: 0;
  }
  .system-benefits__msg, .system-benefits__list {
    width: 100%;
  }
  .system-benefits__msg h2, .system-benefits__list h2 {
    max-width: 100%;
    margin-bottom: 3.2rem;
  }
}
.table-section {
  width: 100%;
}

.table.v1 {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}
.table.v1 thead tr {
  background: red;
}
.table.v1 th {
  color: white;
  background: rgb(2, 167, 255);
  padding: 2rem;
  text-align: left;
}
.table.v1 th:not(:last-child) {
  border-right: 1px solid #dcdcdc;
}
.table.v1 td {
  padding: 1rem 2rem;
}
.table.v1 td:not(:last-child) {
  border-right: 1px solid #dcdcdc;
}
.table.v1 tr.colored-bg td {
  background: #68caff;
}

@media (max-width: 420px) {
  .table.v1 {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
.vertical-banner {
  width: 36rem;
  height: 100%;
  max-height: 450px;
  background: rgb(2, 167, 255);
  color: #fff;
  text-align: center;
  padding: 3.6rem;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.5), 0 5px 5px rgba(0, 0, 0, 0.5);
}
.vertical-banner h3 {
  font-weight: bold;
  height: 33%;
  font-size: 3.2rem;
  color: white;
}

.fixedElement {
  min-height: 100%;
  z-index: 1;
}

@media (max-width: 700px) {
  .vertical-banner {
    display: none;
  }
}
.what-does-digest {
  margin-top: 15rem;
  margin-bottom: 15rem;
}
.what-does-digest__title h2 {
  font-size: 4.8rem;
  text-align: center;
  font-weight: bold;
  color: rgb(2, 167, 255);
  margin: 0 0 3.2rem 0;
}
.what-does-digest__list {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.what-does-digest__list--item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12rem;
  margin-bottom: 3.2rem;
}
.what-does-digest__list--item .item-name {
  width: 30%;
}
.what-does-digest__list--item .item-name h3 {
  font-size: 2.2rem;
}
.what-does-digest__list--item .item-img {
  width: 30%;
  text-align: center;
}
.what-does-digest__list--item .item-img img {
  width: 100%;
  max-width: 135px;
}
.what-does-digest__mini-msg h4 {
  font-size: 2.2rem;
  text-align: center;
  font-weight: bold;
}

@media (max-width: 500px) {
  .what-does-digest__list--item {
    gap: 5rem;
  }
  .what-does-digest__list--item .item-name,
  .what-does-digest__list--item .item-img {
    width: 50%;
  }
}
/*LAYOUT*/
footer {
  background: rgb(2, 167, 255);
}
footer h1,
footer h2 {
  color: white;
  font-weight: bold;
  padding: 15rem 5%;
  text-align: center;
}
footer h1 {
  font-size: 4.8rem;
}

/*PAGES*/
.advantages-box {
  margin-top: 36px;
  margin-bottom: 15rem;
  position: relative;
  display: flex;
}

.banner-wrapper {
  position: relative;
  width: 360px;
  margin-right: 6.6rem;
}

.advantages-text {
  padding: 0px 0 0 36px;
}
.advantages-text h2 {
  text-align: center;
}

.advantages-text__box {
  margin-bottom: 10.8rem;
}

.advantages-text__box h3 {
  font-size: 3.2rem;
  color: rgb(2, 167, 255);
  font-weight: 400;
  text-align: center;
}

.advantages-text__box h4 {
  font-size: 1.7rem;
  font-weight: 300;
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .banner-wrapper {
    display: none;
  }
  .advantages-text {
    padding-left: 0;
  }
}
.benefits-banner {
  width: 100%;
  margin-top: 3.2rem;
  margin-bottom: 15rem;
}
.benefits-banner h2 {
  width: 100%;
  color: rgb(2, 167, 255);
  font-weight: bold;
  text-align: center;
  margin-top: 7.2rem;
  margin-bottom: 1.8rem;
}
.benefits-banner .animation-box {
  display: flex;
  align-items: center;
  position: relative;
}
.benefits-banner .animation-box .guy-img {
  height: 100%;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.benefits-banner .animation-box .guy-img img {
  max-height: 100%;
  max-width: clamp(80px, 150px, 70%);
  aspect-ratio: 1/2.25;
}
.benefits-banner .animation-box .machine-img {
  padding-top: 10%;
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.benefits-banner .animation-box .machine-img img {
  max-height: 95%;
  max-width: clamp(150px, 240px, 70%);
}
.benefits-banner .animation-box .food {
  position: absolute;
  top: 38%;
  left: 31%;
  z-index: 2;
  width: 50%;
  height: 15%;
}
.benefits-banner .animation-box .food img {
  position: absolute;
  height: 35%;
  left: 0;
  top: 0;
  opacity: 0;
  animation: animateBenefits 5s infinite ease-in-out;
}
.benefits-banner .animation-box .food img:nth-child(3n) {
  margin-top: -1rem;
}
.benefits-banner .animation-box .food img:nth-child(4n) {
  margin-top: 1rem;
}
.benefits-banner .animation-box .food img:nth-child(0) {
  animation-delay: -4s;
}
.benefits-banner .animation-box .food img:nth-child(1) {
  animation-delay: -3.7s;
}
.benefits-banner .animation-box .food img:nth-child(2) {
  animation-delay: -3.3s;
}
.benefits-banner .animation-box .food img:nth-child(3) {
  animation-delay: -3s;
}
.benefits-banner .animation-box .food img:nth-child(4) {
  animation-delay: -2.8s;
}
.benefits-banner .animation-box .food img:nth-child(5) {
  animation-delay: -2.5s;
}
.benefits-banner .animation-box .food img:nth-child(6) {
  animation-delay: -2.2s;
}
.benefits-banner .animation-box .food img:nth-child(7) {
  animation-delay: -1.9s;
}
.benefits-banner .animation-box .food img:nth-child(8) {
  animation-delay: -1.5s;
}
.benefits-banner .animation-box .food img:nth-child(9) {
  animation-delay: -1.3s;
}
.benefits-banner .animation-box .food img:nth-child(10) {
  animation-delay: -1.1s;
}
.benefits-banner .animation-box .food img:nth-child(11) {
  animation-delay: -0.9s;
}
.benefits-banner .animation-box .food img:nth-child(12) {
  animation-delay: -0.4s;
}
.benefits-banner .animation-box .food img:nth-child(13) {
  animation-delay: -0.1s;
}
.benefits-banner .animation-box .food img:nth-child(14) {
  animation-delay: 0.4s;
}
.benefits-banner .animation-box .food img:nth-child(15) {
  animation-delay: 1s;
}
.benefits-banner .animation-box .food img:nth-child(16) {
  animation-delay: 1.4s;
}
.benefits-banner .animation-box .food img:nth-child(17) {
  animation-delay: 1.7s;
}
.benefits-banner .animation-box .food img:nth-child(18) {
  animation-delay: 2.1s;
}
.benefits-banner .animation-box .food img:nth-child(19) {
  animation-delay: 2.7s;
}
.benefits-banner .animation-box .food img:nth-child(20) {
  animation-delay: 3s;
}
.benefits-banner .animation-box .food img:nth-child(21) {
  animation-delay: 3.3s;
}
.benefits-banner .animation-box .food img:nth-child(22) {
  animation-delay: 3.7s;
}
.benefits-banner .animation-box .food img:nth-child(23) {
  animation-delay: 4s;
}
.benefits-banner .animation-box .food img:nth-child(24) {
  animation-delay: 4.2s;
}
.benefits-banner .animation-box .food img:nth-child(25) {
  animation-delay: 4.7s;
}

.benefits {
  margin-top: 15rem;
  margin-bottom: 15rem;
}
.benefits h2.title {
  color: rgb(2, 167, 255);
  text-align: center;
  font-weight: bold;
  margin-bottom: 3.2rem;
}
.benefits h3.sub-title {
  color: rgb(2, 167, 255);
  text-align: center;
}
.benefits .benefits-imgs {
  margin-top: 3.2rem;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 6rem;
}
.benefits .benefits-imgs div {
  margin-top: 6rem;
  margin-bottom: 6rem;
  width: 50%;
}
.benefits .benefits-imgs div.smaller-80 img {
  max-width: 80%;
}
.benefits .benefits-imgs div.img1 {
  max-width: 450px;
}
.benefits .benefits-imgs div.img2 {
  max-width: 390px;
}
.benefits .benefits-imgs div img {
  width: 100%;
}
.benefits .benefits-imgs div.darbadge {
  max-width: 100%;
}
.benefits .benefits-imgs div.trees {
  max-width: 450px;
}
.benefits .benefits-imgs div h4 {
  margin-top: 6rem;
  text-align: center;
}
.benefits .benefits-text {
  font-weight: bold;
  margin-left: 5%;
}
.benefits .benefits-text ul {
  margin-left: 5%;
  list-style: disc;
}
.benefits .benefits-text ul li {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: bold;
  color: rgb(82, 82, 82);
}
.benefits .benefits-text ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.benefits .benefits-text h4 a {
  background: rgb(0, 134, 205);
  border-color: rgb(0, 134, 205);
  color: white;
  display: inline-block;
}
.benefits .benefits-text h4 a:hover {
  background: rgb(2, 167, 255);
  border-color: rgb(2, 167, 255);
}

.operate {
  margin-top: 15rem;
  margin-bottom: 15rem;
}
.operate h2 {
  font-weight: bold;
  color: rgb(2, 167, 255);
  text-align: center;
  margin-bottom: 3.2rem;
}
.operate .operate-img {
  margin-top: 6rem;
  margin-bottom: 6rem;
  text-align: center;
  width: 100%;
}
.operate .operate-img img {
  width: 100%;
  max-width: 500px;
}

.article-section-title {
  text-align: center;
  color: rgb(2, 167, 255);
  font-weight: bold;
  margin-bottom: 3.2rem;
}

@media (max-width: 1025px) {
  .benefits-banner .animation-box .food {
    left: 32%;
    width: 49%;
    height: 12%;
  }
}
@media (max-width: 890px) {
  .benefits-banner .animation-box .food {
    height: 10%;
    top: 36%;
  }
}
@media (max-width: 550px) {
  .benefits .benefits-imgs {
    flex-direction: column;
    gap: 0rem;
  }
  .benefits .benefits-imgs div {
    width: 90%;
  }
  .benefits .benefits-imgs div.img1 {
    max-width: 450px;
  }
  .benefits .benefits-imgs div.img2 {
    max-width: 300px;
  }
  .benefits .benefits-imgs div img {
    width: 100%;
  }
  .benefits .benefits-imgs div.darbadge {
    max-width: 100%;
  }
  .benefits .benefits-imgs div.trees {
    max-width: 450px;
  }
  .benefits-banner .animation-box .food {
    height: 12%;
    top: 38%;
  }
}
@media (max-width: 450px) {
  .benefits-banner .animation-box .food {
    height: 12%;
    top: 37%;
  }
}
.calc-title {
  display: flex;
  flex-direction: row;
  gap: 6rem;
}
.calc-title img {
  width: 40%;
  max-width: 200px;
  flex: 1 1 200px;
}
.calc-title img h1 {
  width: 60%;
}

.calc-title-wrapper {
  position: relative;
  padding: 0;
}
.calc-title-wrapper h3 {
  text-align: center;
  max-width: 43ch;
  margin: 1rem auto;
}
.calc-title-wrapper img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
}

.calculator {
  border-left: 3px solid rgb(2, 167, 255);
  border-right: 3px solid rgb(2, 167, 255);
}
.calculator__input-box.single .title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 3.2rem;
  font-size: 3.2rem;
}
.calculator__input-box.single form {
  width: 100%;
  padding-left: 3.6rem;
  padding-right: 3.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.calculator__input-box.single form > div {
  width: clamp(200px, 65%, 700px);
}
.calculator__input-box.single form > div.calc-results {
  margin-top: 7.5rem;
}
.calculator__input-box.single form > div.calc-results h3 {
  text-align: center;
}
.calculator__input-box.single form > div:not(:last-child) {
  margin-bottom: 1.8rem;
}
.calculator__input-box.single form > div > div {
  margin-bottom: 5px;
}
.calculator__input-box.single form h2 {
  font-weight: bold;
}
.calculator__input-box.single form input[type=number] {
  font-size: 1.7rem;
  border-radius: 50px;
  padding: 5px 10px;
  line-height: 1.5;
  min-height: 38px;
  margin-right: 5px;
  border: 0px solid rgb(2, 167, 255);
  outline: 3px solid rgb(2, 167, 255);
}
.calculator__input-box.single form label {
  font-size: 2.2rem;
}

.form-btn {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.form-btn button {
  font-size: 2.2rem;
  display: inline-block;
  background: rgb(0, 134, 205);
  color: white;
  border: 1px solid rgb(0, 134, 205);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  transition: all 0.2s ease-in;
  font-weight: bold;
  cursor: pointer;
}
.form-btn button:hover {
  border: 1px solid rgb(2, 167, 255);
  background: rgb(2, 167, 255);
  color: white;
  padding: 1rem 2.5rem;
}

.result-wrapper {
  padding-left: 3.6rem;
  padding-right: 3.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.result-wrapper .calc-results {
  width: 100%;
  max-width: 700px;
  margin-bottom: 4.8rem;
}
.result-wrapper .calc-results h3 {
  text-align: center;
  font-weight: bold;
}
.result-wrapper .calc-results .rez-box {
  display: flex;
  gap: 3.6rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
.result-wrapper .calc-results .rez-box > div {
  width: 29%;
}
.result-wrapper .calc-results .rez-box h3 {
  margin-bottom: 5px;
  text-align: center;
}
.result-wrapper .calc-results .rez-box .rez {
  min-height: 38px;
  width: 100%;
  border: 3px solid rgb(2, 167, 255);
  border-radius: 50px;
  padding: 5px 10px;
  line-height: 1.5;
  font-size: 1.7rem;
}
.result-wrapper .car-rez-box {
  text-align: center;
  margin-top: 3.2rem;
}
.result-wrapper .car-rez-box .car-rez {
  display: inline-block;
  min-height: 38px;
  width: 100%;
  max-width: 175px;
  border: 3px solid rgb(2, 167, 255);
  border-radius: 50px;
  padding: 5px 10px;
  line-height: 1.5;
  font-size: 1.7rem;
  font-weight: normal;
  text-align: left;
}
.result-wrapper .machine-box {
  margin-top: 4.8rem;
}
.result-wrapper .machine-box .title {
  margin-top: 0;
}
.result-wrapper .machine-box .img-animation-box {
  width: 100%;
  margin-top: 4.8rem;
  display: flex;
  overflow: hidden;
}
.result-wrapper .machine-box .img-animation-box.show-big-machine .img {
  transform: translate(-100%);
}
.result-wrapper .machine-box .img-animation-box .img {
  transition: transform 0.5s ease-in;
  width: 100%;
  min-width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.result-wrapper .machine-box .img-animation-box .img img {
  width: 100%;
  max-width: 270px;
}

@media (max-width: 570px) {
  .result-wrapper .calc-results .rez-box {
    justify-content: center;
    gap: 1rem;
  }
  .result-wrapper .calc-results .rez-box > div {
    width: 100%;
    max-width: 350px;
  }
  .result-wrapper .car-rez-box {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .result-wrapper .car-rez-box .car-rez {
    width: 100%;
    max-width: 350px;
    margin-top: 1rem;
  }
  .msg-statement.calc-title img {
    display: none;
  }
}
.commercial-banner {
  width: 100%;
  margin-top: 0;
  margin-bottom: 5rem;
  text-align: center;
}
.commercial-banner .title {
  padding-top: 7.2rem;
  padding-bottom: 1.8rem;
}
.commercial-banner h2 {
  width: 100%;
  color: rgb(2, 167, 255);
  font-weight: bold;
}
.commercial-banner .imgs {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 6rem;
}
.commercial-banner .imgs div {
  width: 50%;
  max-width: 300px;
}
.commercial-banner .imgs div img {
  width: 100%;
}
.commercial-banner .imgs div.machine2 img {
  width: clamp(200px, 400px, 70%);
}
.commercial-banner .imgs.animated .machine1,
.commercial-banner .imgs.animated .machine2 {
  position: relative;
}
.commercial-banner .imgs.animated .machine1 .food-box,
.commercial-banner .imgs.animated .machine2 .food-box {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  margin-bottom: -60px;
  overflow: hidden;
}
.commercial-banner .imgs.animated .machine1 .food-box .row,
.commercial-banner .imgs.animated .machine2 .food-box .row {
  width: 15%;
  height: 100%;
  position: relative;
}
.commercial-banner .imgs.animated .machine1 .food-box .row img,
.commercial-banner .imgs.animated .machine2 .food-box .row img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  animation: slideDown 6s infinite linear;
}
.commercial-banner .imgs.animated .machine1 .food-box .row img.s-size,
.commercial-banner .imgs.animated .machine2 .food-box .row img.s-size {
  max-width: 40%;
}
.commercial-banner .imgs.animated .machine1 .food-box .row img.m-size,
.commercial-banner .imgs.animated .machine2 .food-box .row img.m-size {
  max-width: 60%;
}
.commercial-banner .imgs.animated .machine1 .food-box .row img:nth-child(1),
.commercial-banner .imgs.animated .machine2 .food-box .row img:nth-child(1) {
  animation-delay: -8s;
}
.commercial-banner .imgs.animated .machine1 .food-box .row img:nth-child(2),
.commercial-banner .imgs.animated .machine2 .food-box .row img:nth-child(2) {
  animation-delay: -7s;
}
.commercial-banner .imgs.animated .machine1 .food-box .row img:nth-child(3),
.commercial-banner .imgs.animated .machine2 .food-box .row img:nth-child(3) {
  animation-delay: -6s;
}
.commercial-banner .imgs.animated .machine1 .food-box .row img:nth-child(4),
.commercial-banner .imgs.animated .machine2 .food-box .row img:nth-child(4) {
  animation-delay: -5s;
}
.commercial-banner .imgs.animated .machine1 .food-box .row img:nth-child(5),
.commercial-banner .imgs.animated .machine2 .food-box .row img:nth-child(5) {
  animation-delay: -4s;
}
.commercial-banner .imgs.animated .machine1 .food-box .row img:nth-child(6),
.commercial-banner .imgs.animated .machine2 .food-box .row img:nth-child(6) {
  animation-delay: -3s;
}
.commercial-banner .imgs.animated .machine1 .food-box .row img:nth-child(7),
.commercial-banner .imgs.animated .machine2 .food-box .row img:nth-child(7) {
  animation-delay: -2s;
}
.commercial-banner .imgs.animated .machine1 .food-box .row img:nth-child(8),
.commercial-banner .imgs.animated .machine2 .food-box .row img:nth-child(8) {
  animation-delay: -1s;
}
.commercial-banner .imgs.animated .machine1 .food-box .row.row1,
.commercial-banner .imgs.animated .machine2 .food-box .row.row1 {
  margin-top: -2rem;
}
.commercial-banner .imgs.animated .machine1 .food-box .row.row3,
.commercial-banner .imgs.animated .machine2 .food-box .row.row3 {
  margin-top: -3.2rem;
}

.what-goes-into {
  margin-top: 15rem;
  margin-bottom: 15rem;
}
.what-goes-into h2 {
  text-align: center;
  color: rgb(2, 167, 255);
  font-weight: bold;
  font-size: 4.6rem;
  margin-bottom: 3.2rem;
}
.what-goes-into h4 {
  text-align: center;
}
.what-goes-into .food-grps {
  display: flex;
  gap: 6rem;
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.what-goes-into .food-grps .grp {
  width: 25%;
  text-align: center;
}
.what-goes-into .food-grps .grp img {
  width: 100%;
  max-width: 165px;
}
.what-goes-into .bottom-msg a {
  background: rgb(0, 134, 205);
  border-color: rgb(0, 134, 205);
  color: white;
  margin-top: 1rem;
}
.what-goes-into .bottom-msg a:hover {
  background: rgb(2, 167, 255);
  border-color: rgb(2, 167, 255);
}

@media (max-height: 620px) {
  .hide-tablet {
    display: none;
  }
  .commercial-banner .imgs div {
    width: 50%;
    max-width: 250px;
  }
  .commercial-banner .imgs.animated .machine1 .food-box .row.row2 {
    display: none;
  }
  .commercial-banner .title {
    padding-top: 3.6rem;
    padding-bottom: 1.6rem;
  }
  .commercial-banner .imgs.animated .machine1 .food-box,
  .commercial-banner .imgs.animated .machine2 .food-box {
    height: 200px;
  }
}
@media (max-width: 650px) {
  .commercial-banner .imgs {
    overflow: hidden;
  }
  .what-goes-into .food-grps {
    flex-wrap: wrap;
  }
  .what-goes-into .food-grps .grp {
    width: calc(50% - 3rem);
    text-align: center;
  }
}
@media (max-width: 420px) {
  .commercial-banner .imgs div.machine2 img {
    width: clamp(100px, 200px, 70%);
  }
  .what-goes-into .food-grps {
    flex-wrap: wrap;
  }
  .what-goes-into .food-grps .grp {
    width: calc(100% - 3rem);
    text-align: center;
  }
}
.contact-msg-box {
  background: rgb(2, 167, 255);
  padding: 7.2rem 3.6rem;
}
.contact-msg-box h2,
.contact-msg-box h3 {
  color: white;
  font-weight: bold;
  text-align: center;
}
.contact-msg-box .contact-info {
  display: flex;
  justify-content: space-evenly;
  gap: 6rem;
}
.contact-msg-box .contact-info .contact-box-v2 {
  display: flex;
  align-items: center;
  margin-top: 3.2rem;
}
.contact-msg-box .contact-info .contact-box-v2 i {
  text-align: center;
  padding: 2rem;
  background: #68caff;
  color: white;
  display: block;
  width: 12rem;
  min-width: 12rem;
  height: 12rem;
  min-height: 12rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 5rem;
  margin-bottom: 1rem;
  margin-right: 3.2rem;
}
.contact-msg-box .contact-info .contact-box-v2 .title {
  font-weight: bold;
  margin: 0 0 1rem 0;
  color: white;
}
.contact-msg-box .contact-info .contact-box-v2 .link a {
  color: white;
  font-size: 2.2rem;
}
.contact-msg-box .contact-info .contact-box-v2 .link a:hover {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .contact-msg-box .contact-info {
    flex-direction: column;
    align-items: center;
  }
  .contact-msg-box .contact-info .contact-box-v2 {
    width: 100%;
    max-width: 250px;
  }
  .contact-msg-box .contact-info .contact-box-v2 i {
    padding: 1rem;
    width: 9rem;
    min-width: 9rem;
    height: 9rem;
    min-height: 9rem;
    font-size: 4rem;
  }
}
@media (max-width: 520px) {
  .contact-msg-box {
    background: rgb(2, 167, 255);
    padding: 5rem 2rem;
  }
  .contact-msg-box .contact-info .contact-box-v2 {
    width: 100%;
    max-width: 250px;
    flex-direction: column;
    text-align: center;
  }
  .contact-msg-box .contact-info .contact-box-v2 i {
    margin: 0;
    margin-bottom: 1rem;
  }
}
@media (max-width: 425px) {
  .contact-msg-box .contact-info .contact-box-v2 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact-msg-box .contact-info .contact-box-v2 i {
    margin-right: 0;
  }
}
.corporate-banner {
  border-bottom: 2px solid rgb(2, 167, 255);
  position: relative;
}
.corporate-banner-wrapper {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
.corporate-banner-wrapper .msg,
.corporate-banner-wrapper .img {
  width: 50%;
}
.corporate-banner-wrapper .msg {
  display: flex;
  justify-content: center;
  align-items: center;
}
.corporate-banner-wrapper .img {
  text-align: center;
  position: relative;
  z-index: -1;
}
.corporate-banner-wrapper .img img {
  display: inline-block;
  width: 100%;
  max-width: 550px;
  margin-bottom: -6px;
}

@media (max-width: 800px) {
  .corporate-banner-wrapper {
    flex-direction: column;
  }
  .corporate-banner-wrapper .msg,
  .corporate-banner-wrapper .img {
    width: 100%;
  }
}
.corporate-background,
.corporate-advantage {
  margin-top: 15rem;
  margin-bottom: 15rem;
}
.corporate-background .title,
.corporate-advantage .title {
  text-align: center;
  color: rgb(2, 167, 255);
  font-weight: bold;
  margin-bottom: 3.2rem;
}
.corporate-background .subtitle,
.corporate-advantage .subtitle {
  margin-bottom: 3.2rem;
}
.corporate-background .bottom-msg,
.corporate-advantage .bottom-msg {
  margin-top: 6rem;
  text-align: center;
}
.corporate-background p:not(:last-child),
.corporate-advantage p:not(:last-child) {
  margin-bottom: 1rem;
}

.corporate-advantage .individual-advantage h4 {
  margin: 0 0 1rem 0;
}
.corporate-advantage .individual-advantage:not(:last-child) {
  margin-bottom: 3.2rem;
}

.president {
  background: rgb(2, 167, 255);
  padding-top: 15rem;
  padding-bottom: 15rem;
}
.president .wrapper .title {
  font-weight: bold;
  color: white;
  margin-bottom: 3.2rem;
}
.president .wrapper h4 {
  color: white;
  font-weight: bold;
}

.mission-vision {
  margin-top: 15rem;
  margin-bottom: 15rem;
}
.mission-vision .mission {
  margin-bottom: 7.5rem;
}
.mission-vision .title {
  font-weight: bold;
  color: rgb(2, 167, 255);
  text-align: center;
  margin-bottom: 3.2rem;
}
.mission-vision h4 {
  text-align: center;
}

.our-team {
  margin-top: 15rem;
  margin-bottom: 15rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.our-team .title {
  font-weight: bold;
  color: rgb(2, 167, 255);
  text-align: center;
  margin-bottom: 3.2rem;
}
.our-team .subtitle {
  text-align: center;
  margin: 0;
}
.our-team .title-box,
.our-team .list-box {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.our-team .title-box ul li,
.our-team .list-box ul li {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: bold;
  list-style: none;
  color: rgb(82, 82, 82);
}
.our-team .title-box ul li:not(:last-child),
.our-team .list-box ul li:not(:last-child) {
  margin-bottom: 1rem;
}

@media (max-width: 700px) {
  .our-team {
    flex-direction: column;
  }
  .our-team .title-box,
  .our-team .list-box {
    width: 100%;
  }
  .our-team .title {
    margin-bottom: 1rem;
  }
  .our-team ul li:first-of-type {
    display: none;
  }
}
.address-info {
  background: rgb(2, 167, 255);
  color: white;
}
.address-info .u-content-box {
  padding-top: 15rem;
  padding-bottom: 15rem;
  display: flex;
  justify-content: space-between;
  gap: 6rem;
}
.address-info .u-content-box > div {
  width: 33%;
  display: flex;
  flex-direction: column;
}
.address-info .u-content-box > div .icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.address-info .u-content-box > div .subtitle {
  font-weight: bold;
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 1rem;
}
.address-info .u-content-box > div .text {
  text-align: center;
}
.address-info .u-content-box > div .text.start-horizontal {
  display: flex;
}
.address-info .u-content-box > div .text.start-horizontal .separation-line {
  height: 100%;
  width: 1px;
  border-right: 1px solid white !important;
  background-color: white;
  margin: 0 1rem;
}
.address-info .u-content-box > div .text .grp {
  width: 100%;
  text-align: start;
  justify-content: start;
  flex-direction: column;
}
.address-info .u-content-box > div .text .separation-line {
  width: 100%;
  height: 1px;
  background-color: white;
  margin: 1rem 0;
}
.address-info .u-content-box > div .text > div {
  display: flex;
  justify-content: center;
}
.address-info .u-content-box > div .text > div:not(:last-child) {
  margin-bottom: 1rem;
}
.address-info .u-content-box > div .text > * {
  color: white;
  font-size: 2.2rem;
}
.address-info .u-content-box > div .text span {
  font-weight: bold;
  margin-right: 1rem;
}
.address-info .u-content-box > div .text a {
  color: white;
  font-size: 2.2rem;
}
.address-info .u-content-box > div .text a:hover {
  text-decoration: 1px underline white;
}
.address-info i {
  justify-self: center;
  text-align: center;
  padding: 2rem;
  background: #68caff;
  color: white;
  display: block;
  width: 12rem;
  height: 12rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 5rem;
}

@media (max-width: 770px) {
  .address-info .u-content-box > div {
    width: 33%;
  }
  .address-info .u-content-box > div .text > div {
    flex-wrap: wrap;
  }
}
@media (max-width: 650px) {
  .address-info .u-content-box {
    flex-direction: column;
    align-items: center;
  }
  .address-info .u-content-box > div {
    width: 50%;
  }
}
.contact-map {
  width: 100%;
  height: 450px;
  background: gray;
  display: flex;
  margin-bottom: 15rem;
  justify-content: center;
  align-items: center;
}
.contact-map h1 {
  color: white;
  font-weight: bold;
}

.contact-form {
  display: flex;
  align-items: center;
  gap: 6rem;
  padding-bottom: 15rem;
}
.contact-form .form-text,
.contact-form .form {
  width: 50%;
}
.contact-form .form-text {
  text-align: center;
  width: 50%;
  max-width: 42ch;
}
.contact-form .form-text img {
  width: 100%;
  max-width: 270px;
}
.contact-form .form-text h2 {
  font-weight: bold;
  color: rgb(2, 167, 255);
  margin-bottom: 1rem;
}
.contact-form .form-text p {
  font-weight: bold;
}
.contact-form .form,
.contact-form form {
  flex-grow: 1;
}
.contact-form .form form,
.contact-form form form {
  width: 100%;
}
.contact-form fieldset {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  max-width: 800px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  /* Button styles */
  /* Validation styling */
  /* Additional custom styles */
}
.contact-form fieldset > div {
  margin-bottom: 1.8rem;
}
.contact-form fieldset legend {
  font-weight: bold;
  padding: 0 10px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}
.contact-form fieldset label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.contact-form fieldset input,
.contact-form fieldset textarea {
  display: block;
  border: 1px solid #ddd;
  width: 100%;
  padding: 1.7rem;
  font-size: 2.2rem;
  border-radius: 10px;
}
.contact-form fieldset textarea {
  height: 150px;
}
.contact-form fieldset button {
  cursor: pointer;
  display: inline-block;
  background: white;
  border: 1px solid rgb(0, 134, 205);
  padding: 1rem 3.2rem;
  color: rgb(0, 134, 205);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.contact-form fieldset button:hover {
  border: 1px solid rgb(2, 167, 255);
  color: rgb(2, 167, 255);
}
.contact-form fieldset .firstname,
.contact-form fieldset .lastname {
  width: 50%;
  margin-right: 10px;
  display: inline-block;
}
.contact-form fieldset .message {
  resize: none;
  font-family: "Verdana", "Geneva", "Tahoma", "Roboto", sans-serif;
}
.contact-form button[type=submit] {
  padding: 1rem 3.2rem;
  border-radius: 50px;
  background: rgb(0, 134, 205);
  color: white;
  font-size: 2.2rem;
  border: 1px solid rgb(0, 134, 205);
}
.contact-form button[type=submit]:hover {
  border: 1px solid rgb(2, 167, 255);
  background: rgb(2, 167, 255);
  color: white;
  padding: 1rem 3.2rem;
}

@media (max-width: 600px) {
  .contact-form {
    flex-direction: column;
  }
  .contact-form .form-text,
  .contact-form .form {
    width: 100%;
  }
}
.contact-v3 {
  width: 100%;
  padding: 7.2rem 3.6rem;
  background: rgb(2, 167, 255);
}
.contact-v3 h3 {
  text-align: center;
  font-weight: bold;
  color: white;
}
.contact-v3 .contact-info {
  margin-top: 7.5rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 6rem;
}
.contact-v3 .contact-info div.contact-box-v2 {
  display: flex;
  align-items: center;
  margin-bottom: 3.2rem;
}
.contact-v3 .contact-info div.contact-box-v2 i {
  text-align: center;
  padding: 2rem;
  background: #68caff;
  color: white;
  display: block;
  width: 12rem;
  min-width: 12rem;
  height: 12rem;
  min-height: 12rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 5rem;
  margin-bottom: 1rem;
  margin-right: 3.2rem;
}
.contact-v3 .contact-info div.contact-box-v2 .title {
  font-weight: bold;
  margin: 0 0 1rem 0;
  color: white;
}
.contact-v3 .contact-info div.contact-box-v2 .link a {
  color: white;
  font-size: 2.2rem;
}
.contact-v3 .contact-info div.contact-box-v2 .link a:hover {
  text-decoration: underline;
}

@media (max-width: 850px) {
  .contact-v3 .contact-info div.contact-box-v2 {
    flex-direction: column;
    text-align: center;
    margin-top: 3.2rem;
  }
  .contact-v3 .contact-info div.contact-box-v2 i {
    padding: 1rem;
    width: 9rem;
    min-width: 9rem;
    height: 9rem;
    min-height: 9rem;
    font-size: 4rem;
  }
}
@media (max-width: 550px) {
  .contact-v3 .contact-info {
    flex-direction: column;
  }
}
.distributors h2.title {
  color: rgb(2, 167, 255);
  font-weight: bold;
  text-align: center;
  margin-bottom: 3.2rem;
}
.distributors h4.subtitle {
  text-align: center;
  text-transform: capitalize;
}
.distributors__info {
  margin-top: 6rem;
  margin-bottom: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 9rem;
}
.distributors__info .logo-box {
  width: 50%;
  max-width: 400px;
  flex: 1 1 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.distributors__info .logo-box img {
  width: 100%;
}
.distributors__info .links-box .link {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 310px;
}
.distributors__info .links-box .link .icon {
  margin-right: 1rem;
}
.distributors__info .links-box .link .icon i {
  justify-self: center;
  text-align: center;
  padding: 1rem;
  background: #68caff;
  color: white;
  display: block;
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 2rem;
}
.distributors__info .links-box .link a {
  font-weight: bold;
  color: rgb(2, 167, 255);
}
.distributors__info .links-box .link a:hover {
  color: rgb(0, 134, 205);
}

@media (max-width: 521px) {
  .distributors__info {
    flex-direction: column;
    gap: 2rem;
  }
  .distributors__info .logo-box {
    width: 90%;
    max-width: 250px;
    flex-basis: auto;
    margin-bottom: 3rem;
  }
}
.environmental-section {
  margin-top: 15rem;
  margin-bottom: 15rem;
}
.environmental-section h4.quote {
  color: rgb(82, 82, 82);
  text-align: center;
  font-weight: bold;
  font-size: 2.2rem;
  max-width: 55ch;
  margin: 2rem auto;
}
.environmental-section p:not(:last-child) {
  margin-bottom: 2rem;
}
.environmental-section div {
  margin-left: 5%;
}
.environmental-section div:not(:last-child) {
  margin-bottom: 2rem;
}
.environmental-section a {
  color: rgb(2, 167, 255);
  font-size: 2.2rem;
  text-decoration: underline;
  margin-bottom: 3.2rem;
}
.environmental-section a:hover {
  color: rgb(0, 134, 205);
}
.environmental-section ul {
  width: 100%;
  max-width: 64ch;
  margin: 2rem auto;
  font-weight: bold;
}
.environmental-section ul li {
  font-weight: bold;
  color: rgb(82, 82, 82);
}
.environmental-section ul li:not(:last-child) {
  margin-bottom: 1rem;
}

.environmental-banner-title {
  font-weight: bold;
  color: rgb(2, 167, 255);
  text-align: center;
  margin-bottom: 0;
  padding: 7.2rem;
}
.environmental-banner-img-wrapper {
  display: flex;
  gap: 6rem;
}
.environmental-banner-img-left, .environmental-banner-img-right {
  width: 50%;
}
.environmental-banner-img-left img, .environmental-banner-img-right img {
  width: 100%;
}

.support-installation {
  margin-top: 15rem;
  margin-bottom: 15rem;
}
.support-installation .title {
  color: rgb(2, 167, 255);
  font-weight: bold;
  text-align: center;
  margin-bottom: 3.2rem;
}
.support-installation .subtitle {
  text-align: center;
  text-transform: capitalize;
}
.support-installation .img-box {
  margin-top: 6rem;
  margin-bottom: 6rem;
  display: flex;
  align-items: center;
  gap: 6rem;
}
.support-installation .img-box .img,
.support-installation .img-box .msg {
  width: 50%;
}
.support-installation .img-box .img img {
  width: 100%;
  max-width: 450px;
}
.support-installation .img-box .msg h3 {
  text-align: center;
  color: rgb(2, 167, 255);
  text-transform: capitalize;
}
.support-installation .imgs-wrapper {
  margin-top: 6rem;
  margin-bottom: 6rem;
  width: 100%;
  display: flex;
  gap: 6rem;
  align-items: center;
}
.support-installation .imgs-wrapper .img-left,
.support-installation .imgs-wrapper .img-right {
  width: 50%;
}
.support-installation .imgs-wrapper .img-left img {
  width: 100%;
  max-width: 450px;
}
.support-installation .imgs-wrapper .img-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.support-installation .imgs-wrapper .img-right .row {
  width: 50%;
  max-width: 100px;
  margin: 0 1rem;
}
.support-installation .imgs-wrapper .img-right .row img {
  display: inline-block;
  margin: 1rem;
  width: 100%;
}
.support-installation .text-wrapper {
  margin-top: 3.2rem;
  margin-bottom: 3.2rem;
}
.support-installation .text-wrapper ul {
  list-style-position: inside;
}
.support-installation .text-wrapper ul li {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: bold;
  color: rgb(82, 82, 82);
}
.support-installation .step {
  display: flex;
  align-items: center;
  gap: 6rem;
  margin-top: 3.2rem;
  margin-bottom: 3.2rem;
}
.support-installation .step .text {
  width: 60%;
}
.support-installation .step .img {
  width: 40%;
  text-align: center;
  display: flex;
  justify-content: center;
}
.support-installation .step .img div {
  width: 100%;
  max-width: 150px;
  padding: 1rem;
}
.support-installation .step .img div img {
  width: 100%;
}
.support-installation ul li {
  list-style-position: inside;
  color: rgb(82, 82, 82);
}
.support-installation ul li:not(:last-child) {
  margin-bottom: 1rem;
}

@media (max-width: 530px) {
  .support-installation .img-box {
    width: 100%;
    margin-top: 6rem;
    margin-bottom: 6rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  .support-installation .img-box .img,
  .support-installation .img-box .msg {
    width: 100%;
  }
  .support-installation .img-box .img {
    max-width: 300px;
  }
  .support-installation .imgs-wrapper {
    margin-top: 6rem;
    margin-bottom: 6rem;
    width: 100%;
    display: flex;
    gap: 6rem;
    align-items: center;
    flex-direction: column;
  }
  .support-installation .imgs-wrapper .img-right {
    display: flex;
    justify-content: center;
    align-items: start;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
  }
  .support-installation .imgs-wrapper .img-right .row {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    flex: 1;
  }
  .support-installation .imgs-wrapper .img-right .row img {
    width: calc(20% - 3rem);
  }
}
.machine h2.title {
  text-align: center;
  font-weight: bold;
  color: rgb(2, 167, 255);
  margin-bottom: 7.5rem !important;
}

section.our-range__banner h2 {
  font-weight: bold;
  color: rgb(2, 167, 255);
  font-size: 5rem;
  padding: 7.2rem;
  margin: 0;
  text-align: center;
}
section.our-range__banner .our-range__banner-img-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: end;
  max-height: 325px;
}
section.our-range__banner .our-range__banner-img-wrapper > div {
  width: 50%;
}
section.our-range__banner .our-range__banner-img-wrapper > div.our-range__banner-img-left {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
section.our-range__banner .our-range__banner-img-wrapper > div.our-range__banner-img-left .blue-line {
  width: 40%;
  height: 3px;
  background: rgb(2, 167, 255);
  left: 30%;
  margin-top: -5px;
  z-index: 2;
}
section.our-range__banner .our-range__banner-img-wrapper > div.our-range__banner-img-left img {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  position: relative;
}
section.our-range__banner .our-range__banner-img {
  width: 100%;
  max-width: 500px;
  padding: 0 5rem;
  text-align: right;
}
section.our-range__banner .our-range__banner-img img {
  margin-left: auto;
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 450px) {
  section.our-range__banner .machine-box .machine {
    width: 40%;
  }
  section.our-range__banner .machine-box .machine img {
    display: block;
    width: 100%;
  }
  section.our-range__banner .machine-box .machine h2 {
    font-size: 3.2rem;
  }
}
.our-range-msg h1 {
  font-size: 5rem;
}

.our-range-main .msg-statement h3 {
  color: white;
  text-align: center;
  text-transform: uppercase;
}
.our-range-main section.syker-machines > div {
  margin-top: 10rem;
  margin-bottom: 10rem;
  padding-top: 10rem;
  padding-bottom: 10rem;
  align-items: center;
}
.our-range-main .cards2 {
  padding: 20rem 0;
}
.our-range-main .grp {
  margin-bottom: 0;
}
.our-range-main .grp .grp-title {
  font-size: 3.2rem;
}
.our-range-main .grp h2 {
  margin-bottom: 1rem;
}
.our-range-main .grp h3 {
  font-size: 2.2rem;
  margin-bottom: 1.7rem;
  margin-top: 0;
}
.our-range-main .grp h4 {
  font-weight: normal;
}
.our-range-main .grp.card-msg {
  margin-bottom: 3.2rem;
}
.our-range-main h2 {
  font-size: 5rem;
  margin-bottom: 3.2rem;
}
.our-range-main h3 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
}
.our-range-main h4 {
  font-size: 2.5rem;
  color: white;
}
.our-range-main li {
  font-size: 2.2rem;
  color: rgb(82, 82, 82);
}
.our-range-main .requirements {
  position: relative;
  display: block;
  padding-top: 20rem;
  padding-bottom: 20rem;
  overflow: hidden;
  background: #f5f5f5;
}
.our-range-main .requirements h2 {
  margin-bottom: 3.2rem;
}
.our-range-main .requirements .wrapper {
  width: 100%;
}
.our-range-main .requirements .wrapper > div {
  display: flex;
  width: 100%;
  gap: 6rem;
}
.our-range-main .requirements .wrapper > div div {
  width: 50%;
}
.our-range-main .requirements .wrapper > div div img {
  width: 100%;
}
.our-range-main .requirements .requirements__text {
  margin-bottom: 7.2rem;
  justify-items: center;
}
.our-range-main .requirements .requirements__text ul {
  width: 100%;
  max-width: 81ch;
  margin-left: auto;
  margin-right: auto;
}
.our-range-main .requirements .requirements__text li {
  font-weight: bold;
}
.our-range-main .requirements .requirements__text li::before {
  display: none;
}
.our-range-main .requirements .img-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.our-range-main .requirements .img-box img {
  width: 50%;
}
.our-range-main .table-section {
  margin-top: 20rem;
  margin-bottom: 20rem;
}
.our-range-main .table-section h2 {
  margin-bottom: 3.2rem;
  font-weight: bold;
  color: rgb(2, 167, 255);
}

.hr {
  display: block;
  width: 100%;
  height: 3px;
  background: rgb(2, 167, 255);
}

.range-pricing {
  min-height: 400px;
  padding-top: 15rem;
  padding-bottom: 15rem;
}
.range-pricing .section-title {
  font-size: 4.8rem;
  color: rgb(2, 167, 255);
  font-weight: bold;
  text-align: center;
}
.range-pricing .empty-box {
  height: 300px;
}

@media (min-width: 600px) {
  .extra-margin-top {
    margin-top: 30rem;
  }
}
@media (max-width: 550px) {
  .our-range-main .requirements .img-box {
    flex-direction: column;
    width: 100%;
  }
  .our-range-main .requirements .img-box img {
    width: 100%;
  }
}
.syker-machines ul {
  list-style: none;
}
.syker-machines ul li {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
  color: rgb(82, 82, 82);
}

.machine__img.smaller-img {
  text-align: center;
}
.machine__img.smaller-img img {
  width: 65%;
  max-width: 300px;
}

.machine__img {
  text-align: center;
}

.our-range-main.range-mini h2 {
  font-size: 4.8rem !important;
}
.our-range-main.range-mini h3 {
  font-size: 2.2rem !important;
}
.our-range-main.range-mini h4 {
  font-size: 1.7rem !important;
}
.our-range-main.range-mini .grp h3.grp-title {
  font-size: 3.2rem !important;
  margin-bottom: 1.7rem;
}
.our-range-main.range-mini .grp h4.grp-title {
  font-size: 2.2rem !important;
  font-weight: bold;
}
.our-range-main.range-mini section.syker-machines > div {
  margin-top: 75px;
  margin-bottom: 75px;
  padding-top: 75px;
  padding-bottom: 75px;
}
.our-range-main.range-mini .cards2 {
  padding: 150px 0;
}
.our-range-main.range-mini .requirements {
  padding: 150px 0;
}
.our-range-main.range-mini .table-section {
  margin-top: 150px;
  margin-bottom: 150px;
}
.our-range-main.range-mini .grp .grp-title {
  font-size: 2.2rem !important;
}

section.our-range__banner.range-mini h2 {
  font-size: 48px !important;
}

.requrements__content {
  margin-top: 3.2rem;
  display: flex;
  align-items: center;
  gap: 6rem;
}
.requrements__content ul {
  width: 50%;
  list-style: none;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
}
.requrements__content .img-box {
  width: 50%;
}

@media (max-width: 660px) {
  .requrements__content {
    flex-direction: column;
    align-items: center;
    gap: 6rem;
  }
  .requrements__content ul {
    width: 100%;
    max-width: 32ch;
  }
  .requrements__content .img-box {
    width: 100%;
  }
  section.our-range__banner .our-range__banner-img-wrapper {
    position: relative;
  }
  section.our-range__banner .our-range__banner-img-wrapper .our-range__banner-img {
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
  }
  section.our-range__banner .our-range__banner-img-wrapper .our-range__banner-img img {
    width: 100%;
    max-width: 300px;
  }
  section.our-range__banner .our-range__banner-img-wrapper > div.our-range__banner-img-left {
    width: 100%;
  }
  section.our-range__banner .our-range__banner-img-wrapper > div.our-range__banner-img-left img {
    width: 60%;
    height: auto;
    text-align: start;
  }
}
.support-operations {
  margin-top: 15rem;
  margin-bottom: 15rem;
}
.support-operations .title {
  color: rgb(2, 167, 255);
  font-weight: bold;
  text-align: center;
  margin-bottom: 3.2rem;
}
.support-operations .subtitle {
  text-align: center;
  text-transform: capitalize;
  text-align: center;
}
.support-operations .img-box {
  margin-top: 6rem;
  margin-bottom: 6rem;
  display: flex;
  align-items: center;
  gap: 6rem;
}
.support-operations .img-box .img,
.support-operations .img-box .msg {
  width: 50%;
  text-align: center;
}
.support-operations .img-box .img img {
  width: 100%;
  max-width: 250px;
}
.support-operations .img-box .msg h3 {
  text-align: center;
  color: rgb(2, 167, 255);
  text-transform: capitalize;
}
.support-operations .imgs-wrapper {
  margin-top: 6rem;
  margin-bottom: 6rem;
  width: 100%;
  display: flex;
  gap: 6rem;
  align-items: center;
}
.support-operations .imgs-wrapper .img-left,
.support-operations .imgs-wrapper .img-right {
  width: 50%;
}
.support-operations .imgs-wrapper .img-left img {
  width: 100%;
  max-width: 450px;
}
.support-operations .imgs-wrapper .img-right {
  display: flex;
  gap: 6rem;
}
.support-operations .imgs-wrapper .img-right .row {
  width: 50%;
}
.support-operations .imgs-wrapper .img-right .row img {
  width: 100%;
  max-width: 150px;
}
.support-operations .text-wrapper {
  margin-top: 3.2rem;
  margin-bottom: 3.2rem;
}
.support-operations .text-wrapper ul {
  list-style-position: inside;
}
.support-operations .text-wrapper ul li {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: bold;
  color: rgb(82, 82, 82);
}
.support-operations .step {
  display: flex;
  align-items: center;
  gap: 6rem;
  margin-top: 3.2rem;
  margin-bottom: 3.2rem;
}
.support-operations .step .text {
  width: 60%;
}
.support-operations .step .img {
  width: 40%;
  text-align: center;
  display: flex;
  justify-content: center;
}
.support-operations .step .img div {
  width: 100%;
  max-width: 250px;
  padding: 1rem;
}
.support-operations .step .img div img {
  width: 100%;
  border-radius: 15px;
}
.support-operations .step ul li {
  color: rgb(82, 82, 82);
  list-style-position: inside;
}
.support-operations .step ul li:not(:last-child) {
  margin-bottom: 1rem;
}

.video-wrapper {
  margin-top: 15rem;
  margin-bottom: 15rem;
}
.video-wrapper .title {
  color: rgb(2, 167, 255);
  font-weight: bold;
  text-align: center;
  margin-bottom: 3.2rem;
}
.video-wrapper .subtitle {
  text-align: center;
  max-width: 50ch;
}
.video-wrapper .video-box {
  margin-top: 6rem;
  margin-bottom: 6rem;
  display: flex;
  justify-content: center;
}
.video-wrapper .video-box .video {
  width: 100%;
  max-width: 650px;
  height: auto;
  aspect-ratio: 16/9;
}

.hmi-touch-screen {
  margin-top: 15rem;
  margin-bottom: 15rem;
}
.hmi-touch-screen .title {
  color: rgb(2, 167, 255);
  font-weight: bold;
  text-align: center;
  margin-bottom: 3.2rem;
}
.hmi-touch-screen .subtitle {
  text-align: center;
}
.hmi-touch-screen .table-box {
  text-align: center;
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.hmi-touch-screen .table-box .img {
  width: 100%;
}
.hmi-touch-screen .table-box .img img {
  max-width: 900px;
  width: 100%;
}

.mail-link-v1 {
  display: inline-block;
  font-size: 2.2rem;
}

.supported-food {
  margin-top: 15rem;
  margin-bottom: 15rem;
}
.supported-food .title {
  color: rgb(2, 167, 255);
  font-weight: bold;
  text-align: center;
  margin-bottom: 3.2rem;
}
.supported-food .food-box {
  display: flex;
}
.supported-food .food-box .grp {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.supported-food .food-box .grp h3 {
  font-weight: bold;
  text-align: center;
}
.supported-food .food-box .grp .img {
  margin-top: 6rem;
  margin-bottom: 6rem;
  width: 100%;
  text-align: center;
}
.supported-food .food-box .grp .img img {
  width: 100%;
  max-width: 250px;
}
.supported-food .food-box .grp ul {
  list-style: none;
}
.supported-food .food-box .grp ul li {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: bold;
  color: rgb(82, 82, 82);
}
.supported-food h4 {
  margin-top: 6rem;
}
.supported-food h4 a {
  background: rgb(0, 134, 205);
  border-color: rgb(0, 134, 205);
  color: white;
  margin-top: 1rem;
}
.supported-food h4 a:hover {
  color: white;
  background: rgb(2, 167, 255);
  border-color: rgb(2, 167, 255);
}

@media (max-width: 700px) {
  .support-operations .step {
    display: flex;
    flex-direction: column;
  }
  .support-operations .step .img {
    width: 90%;
  }
}
@media (max-width: 510px) {
  .supported-food .food-box {
    flex-direction: column;
  }
  .supported-food .food-box .grp {
    width: 100%;
  }
  .supported-food .food-box .grp:not(:last-child) {
    margin-bottom: 6rem;
  }
  .support-operations .img-box {
    margin-top: 6rem;
    margin-bottom: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .support-operations .img-box .img,
  .support-operations .img-box .msg {
    width: 90%;
  }
}
@media (max-width: 430px) {
  .support-operations .img-box {
    flex-direction: column;
  }
  .support-operations .img-box .msg,
  .support-operations .img-box .img {
    width: 90%;
  }
}

/*# sourceMappingURL=style.css.map */
