:root {
  /* COLORS */
  --color-bg: #f2f2f2;
  --color-black: #2b333c;
  --color-green: #133c1e;
  --color-green-light: #d7df23;
  --color-grey: #cccccc;
  --color-grey-light: #f0f2f5;
  --color-grey-dark: #4f5966;
  --color-orange: #f26322;
  --color-white: #ffffff;
  /* Effects */
  --linear-gradient: linear-gradient(250deg, #39b54a -40%, #133c1e 72%);
}

/* RESET */
/* Box sizing rules */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a {
  text-decoration: none;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

html {
  background-color: var(--color-bg);
  color: var(--color-grey-dark);
  font-family: 'Lato', sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 8rem;
}

section {
  overflow: hidden;
  position: relative;
  width: 100vw;
}

.title {
  display: block;
  margin-bottom: 5rem;
  position: relative;
}

.title:before {
  background: var(--color-green-light);
  bottom: -2rem;
  content: '';
  display: block;
  height: 0.5rem;
  left: 0;
  position: absolute;
  width: 5rem;
}

.title h2 {
  color: var(--color-orange);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.3rem;
  line-height: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .title h2 {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
}

.title span {
  color: var(--color-green);
  display: block;
  font-size: 3.6rem;
  line-height: 4.4rem;
}

@media (max-width: 768px) {
  .title span {
    font-size: 3rem;
    line-height: 3.6rem;
  }
}

p {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.content {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  max-width: 144rem;
  padding: 0 2.4rem;
  position: relative;
  width: 100%;
}

.slick-slider {
  position: relative;
  width: 100%;
}

.slick-slider .slick-arrow {
  background-color: var(--color-green-light);
  background-position: center center;
  background-repeat: no-repeat;
  border: none;
  border-radius: 50%;
  color: transparent;
  cursor: pointer;
  height: 2.7rem;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.7rem;
  z-index: 4;
}

.slick-slider .slick-arrow.slick-prev {
  background-image: url(../images/icon-arrow-left.svg);
  background-position: 0.7rem center;
  left: 5rem;
}

.slick-slider .slick-arrow.slick-next {
  background-image: url(../images/icon-arrow-right.svg);
  right: 5rem;
}

main {
  display: block;
  margin-top: 8rem;
  width: 100vw;
}

@media (max-width: 768px) {
  main {
    margin-top: 7rem;
  }
}

header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-white);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  left: 0;
  padding: 2.1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
}

@media (max-width: 768px) {
  header {
    padding: 1.6rem 0;
  }
}

header .content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 768px) {
  header .content {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

header ul {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 768px) {
  header ul {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    background: var(--color-white);
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    right: 0;
    position: fixed;
    top: 7rem;
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
    width: 75%;
  }
}

header ul.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

header ul li {
  margin-left: 4.8rem;
}

@media (max-width: 768px) {
  header ul li {
    border-top: 0.1rem solid var(--color-grey-dark);
    margin: 0 !important;
    width: 100%;
  }
}

header ul li a {
  color: var(--color-grey-dark);
  display: block;
  font-size: 1.6rem;
  line-height: 2.4rem;
}

@media (max-width: 768px) {
  header ul li a {
    padding: 0.8rem 2.4rem;
    text-align: right;
  }
}

header #icon-menu {
  display: none;
}

@media (max-width: 768px) {
  header #icon-menu {
    display: block;
  }
}

#top #top-banner .item {
  display: block;
  position: relative;
}

#top #top-banner .item:before {
  background: radial-gradient(132.3% 55.61% at 50% 91.01%, rgba(58, 86, 16, 0.5) 51.26%, rgba(255, 255, 255, 0) 100%);
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

#top #top-banner .item span {
  color: var(--color-white);
  bottom: 10rem;
  display: block;
  font-size: 4.5rem;
  font-weight: 700;
  left: 50%;
  line-height: 5rem;
  max-width: 67.5rem;
  position: absolute;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80%;
  z-index: 2;
}

@media (max-width: 768px) {
  #top #top-banner .item span {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
}

#top #top-banner .item img {
  width: 100%;
}

#top .scroll {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../images/icon-scroll.png) center no-repeat;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 3.6rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 13rem;
  z-index: 2;
}

#top .scroll span {
  border: 0.2rem solid var(--color-green-light);
  border-radius: 0.9rem;
  display: block;
  height: 2.6rem;
  position: relative;
  width: 1.8rem;
}

#top .scroll span:before {
  background: var(--color-green-light);
  content: '';
  display: block;
  height: 0.6rem;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0.5rem;
  width: 0.2rem;
}

#about {
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--color-bg)), color-stop(65%, var(--color-bg)), color-stop(65%, var(--color-white)), to(var(--color-white)));
  background-image: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg) 65%, var(--color-white) 65%, var(--color-white) 100%);
  padding: 10rem 0;
}

@media (max-width: 768px) {
  #about {
    padding: 6rem 0;
  }
}

#about .content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
      grid-template-columns: repeat(12, 1fr);
}

#about .content .left {
  background-image: radial-gradient(var(--color-green-light) 15%, transparent 16%), radial-gradient(var(--color-green-light) 15%, transparent 16%);
  background-size: 2rem 2rem;
  background-position: 0 0;
  -ms-grid-column: 1;
  -ms-grid-column-span: 8;
  grid-column: 1 / span 8;
  -ms-grid-row: 1;
  -ms-grid-row-span: 6;
  grid-row: 1 / span 6;
  position: relative;
}

@media (max-width: 768px) {
  #about .content .left {
    background: none;
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    grid-column: 1 / span 12;
  }
}

#about .content .left:before {
  background-image: -webkit-gradient(linear, left top, right top, from(var(--color-bg)), color-stop(70%, var(--color-bg)), to(transparent));
  background-image: linear-gradient(90deg, var(--color-bg) 0%, var(--color-bg) 70%, transparent 100%);
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

@media (max-width: 768px) {
  #about .content .left:before {
    display: none;
  }
}

#about .content .left .title {
  max-width: 45rem;
  width: 100%;
}

@media (max-width: 768px) {
  #about .content .left .title {
    max-width: 100%;
  }
}

#about .content .left .title span {
  text-transform: uppercase;
  font-weight: 600;
}

#about .content .left .title span strong {
  display: block;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 6.6rem;
}

@media (max-width: 768px) {
  #about .content .left .title span strong {
    font-size: 4.2rem;
    line-height: 5rem;
  }
}

#about .content .left p {
  max-width: 35rem;
  position: relative;
  width: 100%;
}

@media (max-width: 768px) {
  #about .content .left p {
    max-width: 100%;
  }
}

#about .content .img-1 {
  -ms-grid-column: 9;
  -ms-grid-column-span: 4;
  grid-column: 9 / span 4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 6;
  grid-row: 1 / span 6;
  width: 100%;
}

@media (max-width: 768px) {
  #about .content .img-1 {
    -ms-grid-column: 2;
    -ms-grid-column-span: 11;
    grid-column: 2 / span 11;
    -ms-grid-row: 8;
    -ms-grid-row-span: 4;
    grid-row: 8 / span 4;
  }
}

#about .content .img-2 {
  -ms-grid-column: 6;
  -ms-grid-column-span: 4;
  grid-column: 6 / span 4;
  -ms-grid-row: 5;
  -ms-grid-row-span: 3;
  grid-row: 5 / span 3;
  width: 100%;
  z-index: 1;
}

@media (max-width: 768px) {
  #about .content .img-2 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 7;
    grid-column: 1 / span 7;
    -ms-grid-row: 11;
    -ms-grid-row-span: 3;
    grid-row: 11 / span 3;
  }
}

#about .content .img-3 {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 6;
  grid-row: 6;
}

@media (max-width: 768px) {
  #about .content .img-3 {
    -ms-grid-column: 10;
    grid-column: 10;
    -ms-grid-row: 13;
    grid-row: 13;
  }
}

#products {
  background: var(--linear-gradient);
  padding: 5rem 0 2rem;
}

#products .title {
  width: 100%;
}

#products .title span {
  color: var(--color-white);
  font-size: 5.6rem;
  line-height: 6.8rem;
}

@media (max-width: 768px) {
  #products .title span {
    font-size: 3rem;
    line-height: 3.6rem;
  }
}

#products #product-banner {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

#products #product-banner .item {
  cursor: pointer;
  margin: 0 3rem 3rem;
  width: 15.5rem;
}

#products #product-banner .item img {
  border-radius: 1rem;
  display: block;
  height: 14.2rem;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.4;
  -webkit-transition: all linear 0.25s;
  transition: all linear 0.25s;
  width: 16.5rem;
}

#products #product-banner .item span {
  color: var(--color-white);
  display: block;
  font-size: 1.8rem;
  margin-top: 1rem;
  text-align: center;
}

#products #product-banner .item:hover img {
  opacity: 1;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

#location {
  background-color: var(--color-white);
  background-image: url(../images/dots.svg);
  background-position: left bottom;
  background-repeat: no-repeat;
  padding: 7rem 0;
}

#location .content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 768px) {
  #location .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#location .content > div {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
}

#location .content > div.left {
  width: 60%;
  z-index: 1;
}

@media (max-width: 768px) {
  #location .content > div.left {
    width: 100%;
  }
}

#location .content > div.left .title span {
  font-size: 5.6rem;
  line-height: 6.8rem;
}

@media (max-width: 768px) {
  #location .content > div.left .title span {
    font-size: 4.2rem;
    line-height: 5rem;
  }
}

#location .content > div.left p {
  margin: 2rem 0 6rem;
  width: 46rem;
}

@media (max-width: 768px) {
  #location .content > div.left p {
    width: 100%;
  }
}

#location .content > div.left .box {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3rem 0 6rem;
  position: relative;
  width: 100%;
}

#location .content > div.left .box:after {
  background: var(--color-green);
  content: '';
  display: block;
  height: 65%;
  left: -100%;
  position: absolute;
  top: 0;
  width: 100%;
}

@media (max-width: 768px) {
  #location .content > div.left .box:after {
    display: none;
  }
}

#location .content > div.left .box:before {
  background: var(--linear-gradient);
  border-radius: 0 1rem 1rem 0;
  content: '';
  display: block;
  height: 65%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

@media (max-width: 768px) {
  #location .content > div.left .box:before {
    border-radius: 0;
    left: -2.4rem;
    width: calc(100% + 4.8rem);
  }
}

#location .content > div.left .box img {
  position: relative;
}

#location .content > div.left .box p {
  color: var(--color-white);
  margin-bottom: 5rem;
  position: relative;
  width: calc(100% - 10rem);
}

@media (max-width: 768px) {
  #location .content > div.left .box p {
    width: 100%;
  }
}

#location .content > div.left .box p:before {
  background: var(--color-green-light);
  bottom: -2rem;
  content: '';
  display: block;
  height: 0.5rem;
  left: 0;
  position: absolute;
  width: 5rem;
}

#location .content > div.left #location-banner .slick-arrow {
  top: auto;
  bottom: 3rem;
}

@media (max-width: 768px) {
  #location .content > div.left #location-banner .slick-arrow {
    bottom: -4rem;
  }
}

#location .content > div.left #location-banner .slick-arrow.slick-prev {
  left: auto;
  right: 5rem;
}

#location .content > div.left #location-banner .slick-arrow.slick-next {
  right: 0;
}

#location .content > div.left #location-banner .slick-list {
  border-radius: 1rem;
  padding: 0 0 1rem 0;
  width: calc(100% - 10rem);
}

@media (max-width: 768px) {
  #location .content > div.left #location-banner .slick-list {
    width: 100%;
  }
}

#location .content > div.left #location-banner .item {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background: var(--color-white);
  border-radius: 1rem;
  -webkit-box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 19rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  overflow: hidden;
  width: 100%;
}

#location .content > div.left #location-banner .item img {
  display: block;
  height: 19rem;
  width: 17.8rem;
}

@media (max-width: 768px) {
  #location .content > div.left #location-banner .item img {
    width: 11rem;
  }
}

#location .content > div.left #location-banner .item .description {
  padding: 2rem;
  width: calc(100% - 17.8rem);
}

@media (max-width: 768px) {
  #location .content > div.left #location-banner .item .description {
    width: calc(100% - 11rem);
  }
}

#location .content > div.left #location-banner .item .description span {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  width: 100%;
}

@media (max-width: 768px) {
  #location .content > div.left #location-banner .item .description span {
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
}

#location .content > div.left #location-banner .item .description small {
  display: block;
  font-size: 1.4rem;
  line-height: 2rem;
  width: 100%;
}

#location .content > div.left #location-banner .item .description ul {
  display: block;
  margin-top: 2.5rem;
  width: 100%;
}

@media (max-width: 768px) {
  #location .content > div.left #location-banner .item .description ul {
    margin-top: 1.5rem;
  }
}

#location .content > div.left #location-banner .item .description ul li {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
  width: 100%;
}

@media (max-width: 768px) {
  #location .content > div.left #location-banner .item .description ul li {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
}

#location .content > div.right {
  margin-left: -10%;
  width: 50%;
}

@media (max-width: 768px) {
  #location .content > div.right {
    margin: 0;
    width: 100%;
  }
}

#location .content > div.right img {
  width: 100%;
}

#solution {
  padding: 8rem 0;
  position: relative;
}

#solution:before {
  background: url(../images/down.png) 0 0 no-repeat;
  display: block;
  content: '';
  height: 3.6rem;
  left: 50%;
  position: absolute;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 12.6rem;
}

#solution:after {
  background: url(../images/agro.svg) 0 0 no-repeat;
  background-size: cover;
  display: block;
  content: '';
  height: 20rem;
  position: absolute;
  right: -4.5rem;
  top: 3.5rem;
  width: 50rem;
}

@media (max-width: 768px) {
  #solution:after {
    height: 11.5rem;
    right: -2rem;
    width: 28.5rem;
  }
}

#solution .title {
  max-width: 62rem;
  width: 100%;
}

@media (max-width: 768px) {
  #solution .title {
    margin-top: 8rem;
  }
}

#solution .title span {
  font-size: 4.8rem;
  line-height: 5.8rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  #solution .title span {
    font-size: 3rem;
    line-height: 3.6rem;
  }
}

#solution .grid {
  display: -ms-grid;
  display: grid;
  gap: 3rem;
  -ms-grid-columns: (minmax(35rem, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
  position: relative;
  width: 100%;
  z-index: 1;
}

@media (max-width: 768px) {
  #solution .grid {
    -ms-grid-columns: (minmax(30rem, 1fr))[auto-fill];
        grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  }
}

#solution .grid .item {
  border-radius: 1rem;
  cursor: pointer;
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}

#solution .grid .item img {
  height: 100%;
  width: 100%;
}

#solution .grid .item h4 {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(16.47%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.27)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 16.47%, rgba(0, 0, 0, 0.27) 100%);
  color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2.4rem;
  font-weight: 700;
  height: 100%;
  left: 0;
  padding: 4.5rem 3rem;
  position: absolute;
  top: 0;
  width: 100%;
}

#solution .grid .item .about {
  background: var(--color-green);
  color: var(--color-white);
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  padding: 3rem;
  position: absolute;
  top: 0;
  -webkit-transition: all linear 0.25s;
  transition: all linear 0.25s;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 100%;
}

#solution .grid .item .about span {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  width: 100%;
}

#solution .grid .item:hover .about {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

#livestock {
  background: var(--linear-gradient);
  padding: 6rem 0;
  position: relative;
}

#livestock:before {
  background: url(../images/dots.svg) 0 0;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 14.5rem;
}

@media (max-width: 768px) {
  #livestock:before {
    bottom: 0;
    height: 42%;
    top: auto;
  }
}

#livestock .content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  #livestock .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

#livestock .content .left img {
  border-radius: 1rem;
}

@media (max-width: 768px) {
  #livestock .content .left {
    margin-top: 5rem;
    width: 100%;
  }
  #livestock .content .left img {
    width: 100%;
  }
}

#livestock .content .right {
  color: var(--color-white);
  margin-left: 7.5rem;
}

@media (max-width: 768px) {
  #livestock .content .right {
    margin: 0;
  }
}

#livestock .content .right .title span {
  color: var(--color-white);
  font-weight: 700;
}

#livestock .content .right p {
  max-width: 530px;
  width: 100%;
}

#culture {
  background: var(--color-white);
  padding: 8rem 0 11.5rem;
  position: relative;
}

#culture:before {
  background: url(../images/dots.svg) 0 0 no-repeat;
  content: '';
  display: block;
  height: 54.5rem;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 17.5rem;
}

#culture .content > div {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

@media (max-width: 768px) {
  #culture .content > div.first {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#culture .content > div.first .left {
  max-width: 64rem;
}

#culture .content > div.first .left p {
  margin-bottom: 2rem;
}

#culture .content > div.first .left p strong {
  display: block;
  font-weight: 700;
}

#culture .content > div.first .left .title span {
  font-weight: 700;
}

#culture .content > div.second {
  border-top: 0.1rem solid rgba(179, 146, 111, 0.3);
  margin-top: 4rem;
  padding-top: 4rem;
}

@media (max-width: 768px) {
  #culture .content > div.second {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

#culture .content > div.second .right {
  max-width: 64rem;
}

#culture .content > div.second .right .title {
  width: 60%;
}

@media (max-width: 768px) {
  #culture .content > div.second .right .title {
    width: 100%;
  }
}

#culture .content > div.second .right .title span {
  font-weight: 700;
}

#culture .content > div.third {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media (max-width: 768px) {
  #culture .content > div.third {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: -2.4rem;
    width: calc(100% + 4.8rem);
  }
}

#culture .content > div.third .left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: var(--color-green);
  border-radius: 0 1rem 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: -7.5rem;
  position: relative;
  -webkit-transform: translateY(4.5rem);
          transform: translateY(4.5rem);
  width: calc(100% + 7.5rem);
}

@media (max-width: 768px) {
  #culture .content > div.third .left {
    border-radius: 0;
    padding: 7rem 2.4rem 15rem;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    width: 100%;
  }
}

#culture .content > div.third .left:before {
  background: var(--color-green);
  content: '';
  height: 100%;
  left: -40rem;
  position: absolute;
  top: 0;
  width: 40rem;
}

@media (max-width: 768px) {
  #culture .content > div.third .left:before {
    display: none;
  }
}

#culture .content > div.third .left:after {
  background-image: url(../images/dots.svg);
  background-position: 100% top;
  background-repeat: no-repeat;
  content: '';
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  width: 14rem;
}

#culture .content > div.third .left div,
#culture .content > div.third .left p {
  color: var(--color-white);
  max-width: 38rem;
}

#culture .content > div.third .left div span,
#culture .content > div.third .left p span {
  color: var(--color-white);
}

#culture .content > div.third .left .title span {
  font-weight: 700;
}

#culture .content > div.third .right {
  display: block;
  max-width: 62rem;
}

@media (max-width: 768px) {
  #culture .content > div.third .right {
    margin: -10rem 0 0 auto;
    width: 90%;
  }
}

#culture .content > div.third .right img {
  border-radius: 1rem;
  display: block;
}

#culture .content > div.third .right .slick-slider .slick-list {
  border-radius: 1rem;
}

#culture .content > div.third .right .slick-slider .slick-arrow.slick-prev {
  bottom: -5rem;
  left: 10rem;
  top: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#culture .content > div.third .right .slick-slider .slick-arrow.slick-next {
  bottom: -5rem;
  left: 15rem;
  right: auto;
  top: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (max-width: 768px) {
  #culture .content > div > div {
    max-width: 100% !important;
    width: 100%;
  }
  #culture .content > div > div img {
    width: 100%;
  }
}

footer {
  background: var(--color-grey-light);
  border-top: 0.3rem solid var(--color-green-light);
  color: var(--color-grey-dark);
  padding: 4.5rem 0;
}

footer .content {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer .content .logo-uptech {
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  footer .content .logo-uptech {
    margin: 0 auto 3rem;
  }
}

footer .content .titles {
  display: block;
  margin: 3rem 0;
  padding-left: 10rem;
  width: 100%;
}

@media (max-width: 768px) {
  footer .content .titles {
    padding: 0;
  }
}

footer .content .titles h2 {
  color: var(--color-green);
  font-size: 2.8rem;
  line-height: 3.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

footer .content .titles a {
  color: var(--color-orange);
  font-size: 1.8rem;
  font-weight: 300;
}

footer .content .data {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2rem;
  padding-left: 10rem;
  width: 100%;
}

@media (max-width: 768px) {
  footer .content .data {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0;
  }
}

footer .content .data .form {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1 / span 2;
}

@media (max-width: 768px) {
  footer .content .data .form {
    width: 100%;
  }
}

footer .content .data .form form {
  display: block;
  max-width: 40rem;
  text-align: right;
  width: 100%;
}

@media (max-width: 768px) {
  footer .content .data .form form {
    max-width: 100%;
  }
}

footer .content .data .form form input[type='text'],
footer .content .data .form form input[type='email'],
footer .content .data .form form textarea {
  background: none;
  border: 0.1rem solid var(--color-grey);
  border-radius: 0.4rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--color-grey-dark);
  height: 3.4rem;
  font-size: 1.6rem;
  margin-top: 2rem;
  outline: none;
  padding: 0 1.5rem;
  width: 100%;
}

footer .content .data .form form input[type='text']:invalid:focus,
footer .content .data .form form input[type='email']:invalid:focus,
footer .content .data .form form textarea:invalid:focus {
  border-color: var(--color-red);
}

footer .content .data .form form textarea {
  height: 8rem;
  padding: 0.6rem 1.5rem;
}

footer .content .data .form form button {
  background: var(--color-green);
  border: none;
  border-radius: 0.4rem;
  color: var(--color-white);
  font-size: 1.6rem;
  height: 3.8rem;
  margin: 2rem 0 0 auto;
  width: 18.5rem;
}

@media (max-width: 768px) {
  footer .content .data .center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 3rem;
    width: 100%;
  }
}

footer .content .data .center .address {
  color: var(--color-black);
  width: 100%;
}

@media (max-width: 768px) {
  footer .content .data .center .address {
    text-align: center;
  }
}

footer .content .data .center .address p {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1rem;
}

footer .content .data .center .address p:nth-child(1), footer .content .data .center .address p:nth-child(2) {
  font-weight: 700;
}

footer .content .data .center .address p:nth-child(3) {
  font-weight: 300;
}

footer .content .data .right {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

@media (max-width: 768px) {
  footer .content .data .right {
    margin-top: 3rem;
    text-align: center;
    width: 100%;
  }
}

footer .content .data .right .bmg {
  display: block;
}

@media (max-width: 768px) {
  footer .content .data .right .bmg {
    margin: 0 auto;
  }
}

footer .content .data .right .bmg span {
  display: block;
}

footer .content .copy {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 0.1rem solid var(--color-grey-dark);
  color: var(--color-grey-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 2rem;
  width: 100%;
}

@media (max-width: 768px) {
  footer .content .copy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

footer .content .copy ul {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 768px) {
  footer .content .copy ul {
    margin-bottom: 1rem;
  }
}

footer .content .copy ul li {
  margin-right: 1.5rem;
}

footer .content .copy ul li:before {
  background: var(--color-green-light);
  border-radius: 50%;
  content: '';
  height: 0.7rem;
  display: inline-block;
  margin-right: 0.5rem;
  width: 0.7rem;
}

footer .content .copy ul li a {
  color: var(--color-grey-dark);
  font-size: 1.4rem;
  text-decoration: underline;
}

footer .content .copy p {
  font-size: 1.2rem;
}
/*# sourceMappingURL=main.css.map */
