:root {
  --border: #d1d1d1;
  --light-orange: #ff7547;
  --orange: #f46435;
  --light-green: #8dc63f;
  --green: #50b948;
  --dark-green: #519c47;
}

@font-face {
  font-family: AmaticSC;
  src: url(../fonts/AmaticSC-Regular.ttf);
}

@font-face {
  font-family: AmaticSC;
  font-weight: bold;
  src: url(../fonts/AmaticSC-Bold.ttf);
}

* {
  margin: 0;
  padding: 0;
}

html { height: 100%; }

body {
  box-sizing: border-box;
  font: 300 16px 'Roboto', sans-serif;
  min-height: 100%;
  padding-bottom: 295px !important;
  position: relative;
}

img {
  max-width: calc(100vw - 40px);
  vertical-align: middle;
}

a.button {
  background-color: var(--orange);
  border-radius: 10px;
  color: #fff !important;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  padding: 14px 30px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.25s ease-in-out;
}

a.button:hover { background-color: var(--light-orange); }

/* ==========================================================================
   Header
   ========================================================================== */

header {
  display: grid;
  gap: 20px;
  grid-template-columns: auto 1fr;
  place-items: start end;
  padding: 30px 30px 0 30px;
}

#menu-main-menu {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  gap: 20px 40px;
  justify-content: center;
  list-style: none;
}

#menu-main-menu > li:not(.button) > a {
  display: block;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
}

#menu-main-menu > li:not(.button) > a {
  border-bottom: 3px solid transparent;
  color: #212121;
  padding: 3px 0;
  transition: border-bottom-color 0.25s ease-in-out;
}

#menu-main-menu > li:not(.button) > a:hover { border-bottom-color: var(--green); }

#menu-main-menu > li.button > a {
  background-color: var(--orange);
  border-radius: 10px;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  padding: 14px 30px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.25s ease-in-out;
}

#menu-main-menu > li.button > a:hover { background-color: var(--light-orange); }

/* ==========================================================================
   Mobile Menu
   ========================================================================== */

#mainMenu {
  background-color: var(--green);
  height: 100vh;
  overflow-x: hidden;
  position: fixed;
    top: 0;
    right: 0;
  transition: 1s;
  width: 0;
  z-index: 998;
}

#mainMenu.show { width: 100%; }

#mainMenu ul { list-style: none; }

.mobile-menu { margin: 30px; }

.mobile-menu a {
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 400;
  margin: 20px 0;
  text-decoration: none;
  white-space: nowrap;
}

.mobile-menu a.button {
  background-color: transparent;
  padding: 0;
  text-transform: none;
}
  
/* ==========================================================================
    Mobile Menu Toggle
    ========================================================================== */
    
#openMenu {
  background-color: #212121;
  display: none;
  padding: 20px 15px;
  position: fixed;
    top: 0;
    right: 0;
  transition: .5s;
  width: 41px;
  z-index: 999;
}

#openMenu.open {
  background-color: var(--green);
  color: #fff;
}

#menuTitle {
  position: relative;
  text-align: center;
  transition: .5s;
}
    
/* ==========================================================================
    Mobile Menu Icon Transition Effect
    ========================================================================== */
  
#btn {
  cursor: pointer;
  display: block;
  height: 30px;
  position: relative;
  transition: .5s;
  z-index: 200;
}

#btn .icon,
#btn .icon::before,
#btn .icon::after {
  background: #fff;
  content: '';
  display: block;
  height: 2px;
  position: absolute;
  transition: top ease .5s .5s, transform ease .5s;
  width: 41px;
}

#btn .icon {
  top: 14px;
  left: 2px;
}

#btn .icon::before { top: -8px; }

#btn .icon::after { top: 8px; }

#btn.active .icon { background: transparent; }

#btn.active .icon::before { transform: rotate(45deg); }

#btn.active .icon::after { transform: rotate(-45deg); }

#btn.active .icon::before,
#btn.active .icon::after {
  background-color: #fff;
  top: 0;
  transition: top ease .5s, transform ease .5s .5s;
}

/* ==========================================================================
   Banner
   ========================================================================== */

.banner {
  background: url("../images/grass-bg.jpg") left bottom repeat-x;
  text-align: center;
}

.banner img { max-width: 100%; }

/* ==========================================================================
   Section 1
   ========================================================================== */

.section1-wrapper {
  background: #1a0702 url("../images/soil-bg.jpg") center top no-repeat;
  background-size: auto cover;
  color: #fff;
  padding: 60px;
}

.section1 .grid {
  display: grid;
  grid-template-columns: 551px 572px 660px;
  justify-content: center;
}

.section1 .grid-item { position: relative; }

.section1 .left p {
  position: absolute;
    top: 160px;
  width: 240px; 
}

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

.section1 .center p { margin-top: 53px; }

.section1 .outline {
  border: 1px solid #fff;
  display: inline-block;
  margin-top: 72px;
  padding: 30px;
}

.section1 .right p {
  position: absolute;
    top: 40px;
    right: 0;
  width: 320px;
}

.section1 .right img { margin-top: 125px; }

.section1 h1 {
  font-size: 48px;
  line-height: 48px;
  margin-bottom: 31px;
}

.section1 h2 {
  font: bold 44px 'AmaticSC', sans-serif;
  margin-top: 10px;
  text-align: right;
}

.section1 h2 span { color: #f06533; }

.section1 h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
}

.section1 p { line-height: 1.5em; }

.section1 ul {
  line-height: 1.5em;
  list-style: none;
}

/* ==========================================================================
   Section 2
   ========================================================================== */

.section2-wrapper {
  background: #fff url("../images/grass-bg.jpg") center bottom repeat-x;
  padding: 0 60px;
}

.section2 {
  background: url("../images/spreader.png") right center no-repeat;
  box-sizing: border-box;
  height: 765px;
  margin: 0 auto;
  max-width: 1920px;
  padding: 50px 767px 50px 0;
}

.section2 .grid {
  display: grid;
  grid-column-gap: 40px;
  grid-template-columns: repeat(3, auto);
}

.section2 h1 {
  color: #88c33c;
  font-size: 48px;
  margin-bottom: 31px;
}

.section2 h3 {
  color: #88c33c;
  font-size: 24px;
  font-weight: 500;
  margin: 17px 0 8px 0;
}

.section2 h3:first-child { margin-top: 0; }

.section2 p {
  line-height: 1.5em;
  margin: 8px 0;
}

.section2 ul {
  line-height: 1.5em;
  margin: 8px 0 8px 17px;
}

/* ==========================================================================
   Section 3
   ========================================================================== */

.section3-wrapper {
  font: bold 36px 'AmaticSC', sans-serif;
  padding: 40px;
}

.section3 .grid {
  display: grid;
  grid-column-gap: 100px;
  grid-template-columns: repeat(3, auto);
}

.section3 .text {
  position: relative;
  text-align: center;
}

.section3 .left-arrow {
  position: absolute;
    top: 20px;
    left: -180px;
}

.section3 .right-arrow {
  position: absolute;
    top: 20px;
    right: -181px;
}

.section3 h1 {
  color: var(--light-green);
  font-size: 80px;
  font-weight: bold;
  text-align: center;
}

.section3 h1 span { color: #f06533; }

.section3 h2 {
  font-size: 60px;
  line-height: 1em;
  margin: 44px 20px 18px 20px;
}

.section3 h3 {
  color: var(--light-green);
  font-size: 60px;
  line-height: 1em;
  margin: 22px 0 36px 0;
}

.section3 h3 span { color: #f06533; }

.section3 p { line-height: 1em; }

.section3 .button { font: 400 18px 'Roboto', sans-serif; }

/* ==========================================================================
   Section 4
   ========================================================================== */

.section4-wrapper {
  background-color: var(--dark-green);
  color: #fff;
  padding: 40px 20px;
}

.section4 .grid {
  align-items: center;
  display: grid;
  gap: 30px 40px;
  grid-template-columns: max-content 1fr;
  grid-template-rows: repeat(2, auto);
}

.section4 .image { margin-left: -20px; }

.section4 .label {
  font-size: 24px;
  font-style: italic;
  text-align: center;
}

.section4 .arrow { margin: 0 20px; }

.section4 h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

.section4 p {
  font-weight: 400;
  line-height: 1.5em;
}

.section4 img { max-width: 100%; }

/* ==========================================================================
   Content
   ========================================================================== */

.content {
	margin: 0 auto;
	max-width: 1400px;
  overflow: hidden;
	padding: 80px 20px;
}

.content h1,
.content h2 {
	color: var(--light-green);
  font-size: 48px;
  margin-bottom: 0.75em;
}

.content h3 {
  color: var(--dark-green);
  font-size: 32px;
  font-weight: 500;
  margin: 1em 0 0.8em 0;
}

.content h4 {
  color: var(--dark-green);
  font-size: 24px;
  font-weight: 500;
  margin: 1em 0 0.5em 0;
}

.content p {
	line-height: 1.5em;
	margin: 1em 0;
}

.content p:first-of-type { margin-top: 0; }

.content p:last-of-type { margin-bottom: 0; }

.content a { color: var(--orange); }

.content hr {
  background-color: #ddd;
  border: none;
  height: 1px;
  margin: 2em 0;
}

.flex {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  margin: 2em 0;
}

.left-image {
  display: grid;
  gap: 30px 40px;
  grid-template-columns: 300px 1fr;
  margin: 2em 0;
}

.left-image:last-child { margin-bottom: 0; }

.left-image .image img { max-width: 100%; }

.left-image .text :first-child { margin-top: 0; }

.content .columns { columns: 4; }

.content .columns p { break-inside: avoid; }

.content iframe { vertical-align: middle; }

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
  background-color: #231f20;
  box-sizing: border-box;
  color: #fff;
  padding: 37px 20px 39px 20px;
  position: absolute;
    bottom: 0;
  text-align: center;
  width: 100%;
}

#menu-bottom-menu {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  gap: 20px 30px;
  justify-content: center;
  list-style: none;
  margin-bottom: 28px;
}

#menu-bottom-menu > li > a {
  color: #fff;
  display: block;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.25s ease-in-out;
}

#menu-bottom-menu > li > a:hover { color: var(--light-green); }

footer .logo { margin-bottom: 13px; }

/* ==========================================================================
   Mobile
   ========================================================================== */

@media only screen  
and (max-width : 1899px) {

header {
  grid-template-columns: auto;
  justify-items: center;
}

.section1 .grid {
  gap: 20px;
  grid-template-columns: auto;
  grid-template-rows: repeat(3, max-content);
  justify-items: center;
  margin-bottom: 60px;
}

.section1 .left { width: 551px; }

.section1 .center { width: 572px; }

.section1 .outline { margin-top: 40px; }

.section1 .right { width: 660px; }

.section1 .lines { display: none; }

.section4 .grid { grid-template-columns: auto; }

.section4 .text { grid-row: 1; }

.section4 .image { margin-left: 0; }

}

@media only screen  
and (max-width : 1399px) {

body { padding-bottom: 0 !important; }

footer { position: relative; }

.section1 .center img { display: none; }

.section2-wrapper { padding: 60px 30px 257px 30px; }

.section2 {
  background: none;
  height: auto;
  padding: 0;
}

.section2 .grid {
  gap: 20px;
  grid-template-columns: auto;
  grid-template-rows: repeat(3, auto);
}

.section3 .grid {
  gap: 30px;
  grid-template-columns: auto;
  grid-template-rows: repeat(3, auto);
  text-align: center;
}

.section3 .left-arrow,
.section3 .right-arrow { display: none; }

.section3 h2 { margin-top: 0; }

.content .columns { columns: 3; }

}

@media only screen  
and (max-width : 1023px) {

.section4 .label { font-size: 22px; }

}

@media only screen  
and (max-width : 767px) {

.main-menu { display: none; }

#openMenu { display: block; }

.section1-wrapper { padding: 60px 30px; }

.section1 h1,
.section2 h1 {
  font-size: 36px;
  line-height: 1em;
}

.section1 p { text-align: left; }

.section1 img { max-width: 100%; }

.section1 .left,
.section1 .center,
.section1 .right { width: auto; }

.section1 .right p,
.section1 .left p {
  position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  width: auto;
}

.section1 .center p { margin: 1em 0 0 0; }

.section1 .right img,
.section1 .left img { display: none; }

.section1 .outline {
  border: none;
  display: block;
  margin-top: 0;
  padding: 0;
  text-align: left;
}

.section3 h1 {
  font-size: 60px;
  line-height: 60px;
  margin-bottom: 0.5em;
}

.section3 h3 {
  font-size: 40px;
  margin: 0.5em 0;
}

.section3 img { max-width: 100%; }

.left-image { grid-template-columns: auto; }

.left-image .image { align-self: center; }

.content .columns { columns: 2; }

}

@media only screen  
and (max-width : 479px) {

.content .columns { columns: 1; }

}