:root {
  --poopins: "Poppins";
  --lato: "Lato", sans-serif;
  --brand-color: #09bc76;
}

html {
  scroll-behavior: smooth;
}

body {
  scroll-snap-type: y mandatory;
  font-family: var(--poopins), var(--lato);
}
/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: #09bc76 #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 5px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--brand-color);
  border-radius: 8px;
  border: 0px none #ffffff;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* swiper */

.swiper-container {
  width: 520px;
  height: 370px;
  background: var(--brand-color);
  border-radius: 10px;
  position: absolute;
  right: 110px;
  margin-top: 130px;
  z-index: 0 !important;
}

.s1 {
  background-image: url(../images/farm1.webp);
  object-fit: cover;
  background-size: 520px 370px;
}
.s2 {
  background-image: url(../images/farm2.webp);
  object-fit: cover;
  background-size: 520px 370px;
}

.s3 {
  background-image: url(../images/farm3.webp);
  object-fit: cover;
  background-size: 520px 370px;
}

.s4 {
  background-image: url(../images/farm4.webp);
  object-fit: cover;
  background-size: 520px 370px;
}

.s5 {
  background-image: url(../images/farm5.webp);
  object-fit: cover;
  background-size: 520px 370px;
}

.s6 {
  background-image: url(../images/farm6.webp);
  object-fit: cover;
  background-size: 520px 370px;
}

.s7 {
  background-image: url(../images/farm7.webp);
  object-fit: cover;
  background-size: 520px 370px;
}

.s8 {
  background-image: url(../images/farm8.webp);
  object-fit: cover;
  background-size: 520px 370px;
}

.s9 {
  background-image: url(../images/farm9.webp);
  object-fit: cover;
  background-size: 520px 370px;
}
.s10 {
  background-image: url(../images/farm10.webp);
  object-fit: cover;
  background-size: 520px 370px;
}
.s11 {
  background-image: url(../images/farm11.webp);
  object-fit: cover;
  background-size: 520px 370px;
}

.s12 {
  background-image: url(../images/farm12.webp);
  object-fit: cover;
  background-size: 520px 370px;
}

.s13 {
  background-image: url(../images/farm13.webp);
  object-fit: cover;
  background-size: 520px 370px;
}

.s14 {
  background-image: url(../images/farm14.webp);
  object-fit: cover;
  background-size: 520px 370px;
}

/* swiper ends */

/* nav */

body {
  margin: 0;
}

.menu-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: -3px 3px 8px rgba(243, 235, 235, 0.849);
  background: #ffffff;
  color: #000000;
  padding: 20px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  box-sizing: border-box;
}

.menu-logo {
  line-height: 0;
  margin: 0 20px;
  color: var(--brand-color) !important;
}

.menu-container a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

.menu-container a:hover {
  color: #09bc76;
}

.menu-container input {
  display: block;
  width: 35px;
  height: 25px;
  margin: 0;
  position: absolute;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

/* Burger menu */
.menu-container span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #000000;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

.menu-container span:first-child {
  transform-origin: 0% 0%;
}

.menu-container span:nth-child(3) {
  transform-origin: 0% 100%;
}

.menu-container input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(3px, -1px);
  background: #ffffff;
}

.menu-container input:checked ~ span:nth-child(4) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

.menu-container input:checked ~ span:nth-child(3) {
  transform: rotate(-45deg) translate(-5px, 11px);
}

.menu ul {
  list-style: none;
}

.menu li {
  padding: 10px 0;
  font-size: 16px;
}

/* desktop styles */
@media only screen and (min-width: 736px) {
  .menu-container {
    width: 100%;
  }

  .menu-logo {
    display: none;
  }
  .menu-container a {
    color: #000000;
  }

  .menu-container input {
    display: none;
  }

  /* Burger menu */
  .menu-container span {
    display: none;
  }

  .menu {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .menu ul {
    display: flex;
    padding: 0;
  }

  .menu li {
    padding: 0 15px;
  }
}

.menu-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  background: #ffffff;
  color: #000000;
  padding: 10px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  box-sizing: border-box;
}

.menu-container a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-container a:hover {
  color: #09bc76;
}

.menu-container input {
  display: block;
  width: 35px;
  height: 25px;
  margin: 0;
  position: absolute;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

/* Burger menu */
.menu-container span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #000000;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

.menu-container span:first-child {
  transform-origin: 0% 0%;
}

.menu-container span:nth-child(3) {
  transform-origin: 0% 100%;
}

.menu-container input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(3px, -1px);
  background: #ffffff;
}

.menu-container input:checked ~ span:nth-child(4) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

.menu-container input:checked ~ span:nth-child(3) {
  transform: rotate(-45deg) translate(-5px, 11px);
}

.menu ul {
  list-style: none;
}

.menu li {
  padding: 10px 0;
  font-size: 18px;
}

/* desktop styles */
@media only screen and (min-width: 736px) {
  .menu-container {
    width: 100%;
    position: fixed;
    top: 0;
    font-size: 25px;
  }

  .menu-container a {
    color: #000000;
  }

  .menu-container input {
    display: none;
  }

  .shop {
    padding: 7px 20px;
    border-radius: 7px;
    color: #ffffff !important;
    background: var(--brand-color);
  }
  /* Burger menu */
  .menu-container span {
    display: none;
  }

  .menu {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .menu ul {
    display: flex;
    padding: 0;
  }

  .menu li {
    padding: 0 20px;
  }
}

/* desktop ends */

/* nav ends */

.logo {
  color: var(--brand-color);
  animation: color-animation 4s alternate-reverse infinite;
  font-weight: 500;
}

a {
  color: black;
  text-decoration: none;
}

#buy {
  background: var(--brand-color);
  padding: 7px 25px 7px 25px;
  border-radius: 7px;
  color: white;
  font-weight: 600;
  transition: background 0.3s;
}
#buy:hover {
  color: var(--brand-color);
  background: rgb(255, 255, 255);
}

li:hover {
  transition: transform 0.1s;
  transform: scale(1.04);
}

#blob {
  position: absolute;
  bottom: 0;
  right: 0;
}

h1 {
  margin-top: 50px;
  margin-left: 40px;
  font-size: 10em;
  color: white;
  padding-top: 60px;
  font-family: var(--poopins);
}

section {
  min-height: 100vh;
}

section img.bgmangoes {
  z-index: -2;
  object-fit: cover;
  height: 100vh;
  width: 100%;
  top: 5px;
  position: absolute;
}

.rainbow {
  margin-left: 70px;
}

.farmers {
  position: absolute;
  top: 195px;
  left: 530px;
}

.link:hover {
  color: var(--brand-color);
}

.con {
  color: var(--brand-color);
}

.twomain p:first-child {
  font-size: 3.3125em;
  font-weight: 700;
  position: absolute;
  left: 27px;
  margin-top: 90px;
}

.twomain p:nth-child(2) {
  font-size: 1.6em;
  font-weight: 500;
  line-height: 45px;
  font-family: var(--lato);
  position: absolute;
  margin-top: 200px;
  left: 35px;
  padding-top: 10px;
  width: 650px;
}

.twomain p:nth-child(2):before {
  content: "";
  padding-left: 70px;
}

.twomain a {
  border-radius: 10px;
  padding: 15px 26px;
  position: absolute;
  font-size: 23px;
  margin-top: 417px;
  left: 35px;
  color: white;
  background: var(--brand-color);
}

.color {
  background: var(--brand-color);
  height: 80vh;
}

.para3 {
  font-size: 3.3125em;
  font-weight: 700;
  position: absolute;
  left: 27px;
  margin-top: 140px;
}

.para4 {
  font-size: 1.4em;
  position: absolute;
  left: 25px;
  padding: 10px;
  width: 700px;
  font-family: var(--lato);
  font-weight: 500;
  margin-top: 240px;
  line-height: 2;
}

.para4 a {
  text-decoration: underline;
}

#map {
  width: 580px;
  height: 400px;
  position: absolute;
  right: 30px;
  margin-top: 150px;
  border-radius: 7px;
}

.three {
  background: var(--brand-color);
}

.four div {
  display: flex;
  justify-content: center;
}

.para5 {
  margin-top: 1%;
  font-size: 4.1em;
}

.four div {
  text-align: center;
}

.para5 a {
  color: #4267b2;
  text-decoration: underline;
}

.four iframe {
  padding-top: 20px;
  margin-left: 30%;
  border-radius: 7px;
}

.heading {
  color: #fafafa;
}
