body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
  }
  
  input, textarea {
    font-family: 'Poppins', sans-serif;
    outline: none;
  }
  #firstP {
    margin-top: 10%;
    text-shadow:  2px 1px 2px rgb(147, 123, 59);
  }
 
  header {
    width: 100%;
    height: 90vh;
    background-image: url('public/images/wallpaper.png');
    background-position: left;
    background-size: cover;
    text-shadow:  2px 1px 2px rgb(133, 113, 58);
  }
  
  nav {
    background-image: linear-gradient(to left,  #91ac41, #e4b476, #f69dad);
    width: 100%;
    height: 77px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 28px;
    box-sizing: border-box;
    position: fixed;
    z-index: 10;
  }
  .nav.active .nav__links{
    top: 3em;
  }
  .nav__icon-menu {
    margin-left: -70%;
    cursor: pointer;
  }
  .nav__links {
   margin-left: -10%;
  }
  .nav__content{
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav__links{
    position: absolute;
    top: -150vh;
    left: 0;
    background-color: rgba(255,255,255, .8);
    backdrop-filter: blur(5px);
  
    width: 100%;
    height: 100vh;
    padding-top: 4em;
  
    display: flex;
    flex-direction: column;
    align-items: center;
  
    transition: .8s ease;
  }
  
  .nav__link{
    margin-bottom: 2em;
  }
  
  .nav__link a{
    font-size: var(--middle-font-size);
    font-weight: 500;
    color: var(--second-text-color);
    text-decoration: underline;
  }
  
  li{
    list-style-type: none;
  }
  
  a{
    text-decoration: none;
    color: inherit;
    font-size: inherit;
  }
  .logo {
    width: 40px;
  }
  
  .menu-item {
    color: black;
    font-weight: 600;
    font-size: 14px;
    margin-right: 24px;
    cursor: pointer;
  }
  
  .dropdown-wrapper {
    display: inline-block;
    position: relative;
  }
  
  .dropdown-wrapper:hover .dropdown {
    display: block;
  }
  
  .dropdown {
    width: 150px;
    border-top: 2px solid rgb(170, 210, 54);
    border-radius: 5px;
    padding: 20px;
    position: absolute;
    right: 24px;
    background-image: linear-gradient(to right,  rgb(210, 236, 131), #efbcc6);
    /* background-color: rgb(210, 236, 131); */
    box-shadow: 0 2px 5px #1a0303;
    display: none;
  }
  
  .dropdown a {
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #ccc;
    padding: 4px;
    cursor: pointer;
  }
  
  .dropdown a:last-of-type {
    border: 0;
  }
  
  .menu-item i {
    padding-left: 4px;
  }

  .types {
    display: none;
    position: absolute;
    height: 320px;
    width: 200px;
    background-image: linear-gradient(to left,  #91ac41, #e4b476, #f69dad);
    margin-top: 10%;
    margin-left: -50%; 
    border-radius: 5px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.575);
  }

  .closeX {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin-left: 5%;
    margin-top: 5%;
    height: 20px;
    width: 20px;
    background-color: #c156d1;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.575);
  }

  .infoText {
    position: absolute;
    margin-top: 15%;
  }
  
  
  #landing-section {
    width: 100%;
    height: 120vh;
  }
  
  #main-text-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  #main-text-wrapper h1 {
    /* margin-top: -20%; */
    width: 100%;
    max-width: 1100px;
    font-size: 20px;
    font-weight: 600;
    /* letter-spacing: 8.8px; */
    /* line-height: 1.2; */
    text-align: center;
    /* margin: 0; */
  }
  
  #main-text-wrapper p {
    width: 100%;
    max-width: 1100px;
    /* font-size: 14px; */
    letter-spacing: 0.5px;
    font-weight: 400;
    color: white;
    text-align: center;
    /* padding-top: 32px; */
  }
  
  #main-text-wrapper ul li {
    color: white;
    padding: 10px 12px;
  }
  #main-text-wrapper ul li:nth-child(1) {
    animation: 1s ease-out 0s 1 slideInFromTop
  }
  #main-text-wrapper ul li:nth-child(2) {
    animation: 3s ease-out 0s 1 slideInFromTop
  }
  #main-text-wrapper ul li:nth-child(3) {
    animation: 5s ease-out 0s 1 slideInFromTop
  }
  @keyframes slideInFromTop {
    0% {
      transform: translateY(-800%);
    }
    100% {
      transform: translateY(0);
    }
  }
  
  /* STEPS SECTION STYLES START */
  #steps-section {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: stretch;
  }
  
  .step-item, .step-item2{ 
    /* width: 400px; */
    height: 500px;
    padding: 112px 48px;
    text-align: center;
    color: white;
    box-sizing: border-box;
  }
  
  .step-item img {
    /* margin-top: -15%; */
    width: 100px;
    height: 100px;
     animation: move 4s linear;
  transform: translateX(10%) 
}

@keyframes move {
  0% {
    transform: translateX(50vw) 
  }
}

  .step-item2 img {
    font-size: 96px;
    width: 100px;
    height: 100px;
     animation: move2 5s linear;
  transform: translateX(0%) 
}

@keyframes move2 {
  0% {
    transform: translateX(-60vw) 
  }
}
  
  
  .step-item:hover img, .step-item2:hover img{
    transform: scale(1.5, 1.5);
    -webkit-text-stroke: 1px #212121;
    transition: 0.25s;
  }
  
  .step-item h3, .step-item2 h3 {
    font-weight: 600;
    font-size: 24px;
  }
  
  .step-item p, .step-item2 p {
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 1.6;
    margin-top: 0;
  }

  #steps-section div {
  }
  
  #first-step {
    background-image: linear-gradient(45deg, #29735a, #d3f3e8);
    /* background-color: #5acda6; */
  }
  
  #second-step {
    background-image: linear-gradient(45deg, #91ac41, #e9f3ca);
    /* background-color: #91ac41; */
  }
  
  #third-step {
    background-image: linear-gradient(45deg, #e4b476, #efe2d3);
    /* background-color: #e4b476; */
  }
  
  #fourth-step {
    background-image: linear-gradient(45deg, #f69dad, #f8dde2);
    /* background-color: #f69dad; */
  }
  /* STEPS SECTION STYLES END */
  
  
  
  /* STORE SECTION STYLES START */
  #store-section {
    width: 100%;
    background-color: #f7eee2;
    padding-top: 75px;
    padding-bottom: 75px;
    text-align: center;
  }
  
  #fresh-food-heading {
    color: #91ac41;
    font-size: 24px;
    font-family: 'Caveat', cursive;
    margin: 0;
    margin-top: 35px;
  }
  
  #store-section > h3 {
    font-size: 44px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 8px;
  }
  
  #store-desc {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #8b8b99;
    letter-spacing: 0.5px;
    margin-bottom: 55px;
  }
  
  #store-items-wrapper {
    width: 100%;
    max-width: 1140px;
    display: flex;
    justify-content: stretch;
    margin: 0 auto;
  }
  
  .store-item {
    width: 25%;
    text-align: center;
    padding: 24px;
  }
  
  .icon-wrapper {
    /* margin-left: 14%; */
    display: inline-block;
    background-image: linear-gradient(45deg, #a96e20, #f7f4ef);
    box-shadow: 0 2px 5px #1a0303;
    /* background-color: #e3b375;    */
    border-radius: 50%;
    padding: 40px;
    color: white;
    opacity: 0;
    transform: translateX(0px);
    transition: all 0.8s ease-out;
    transition-delay: 0.6s;
  }

  .scroll-animation3 {
    opacity: 1;
    transform: translateX(1);
  }
  
  .store-item:hover .icon-wrapper{
    transform: scale(1.1, 1.1);
  }
  
  .icon-wrapper i {
    font-size: 60px;
  }
  
  .store-item h3 {
    font-size: 24px;
    font-weight: 600;
  }
  
  .store-item p {
    font-size: 16px;
    letter-spacing: 0.5px;
    font-weight: 500;
    color: #8b8b99;
  }
  /* STORE SECTION STYLES ENDS */
  
  
  
  /* VIDEO SECTION STYLES START */
  #video-section h3 {
    color: #8b8b99;
    font-size: 44px;
    font-weight: 400;
  }
  
  #video-section > div {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
  }
  
  #line-separator {
    width: 96px;
    display: inline-block;
    height: 1px;
    background-color: #e4b476;
    margin-bottom: 36px;
  }
  
  #video-section iframe {
    width: 100%;
    height: 425px;
  }
  
  /* VIDEO SECTION STYLES END */
  
  
  
  /* ADDRESS SECTION STYLES START */
  #address-wrapper {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 100px 0;
  }
  
  #address-wrapper > div {
    width: 50%;
  }
  
  #address-wrapper > div:last-of-type{
    width: 40%;
  }
  
  .green-heading {
    color: #91ac41;
    font-size: 24px;
    font-family: 'Caveat', cursive;
    margin: 0;
    margin-top: 35px;
  }
  
  .section-heading {
    /* font-size: 400; */
    font-size: 34px;
    /* width: 1000px; */
    margin: 0;
  }
  
  .section-description {
    font-size: 16px;
    font-weight: 400;
    color: #8b8b99;
    letter-spacing: 0.5px;
  }
  
  .address-heading {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    margin-top: 32px;
  }
  
  .address-lines {
    font-size: 16px;
    font-weight: 400;
    color: #8b8b99;
    letter-spacing: 0.5px;
    line-height: 2;
    margin: 0;
  }
  
  .input-box {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    color: #8b8b99;
    border-radius: 6px;
    border: 1px solid #e5e6ec;
    margin-bottom: 16px;
    box-sizing: border-box;
  }
  
  #btn-submit {
    font-size: 16px;
  }
  
  /* ADDRESS SECTION STYLES END */
  
  
  
  /* FOOTER SECTION STYLES START */
  footer {
    background-image: linear-gradient(to left, #8b3d4c, #7d623e, #4d5a25);
    color: white;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 30px 0px;
  }
  a {
    color: white;
  }
  a span {
    text-decoration: underline;
  }
 
  /* FOOTER SECTION STYLES END */



  /* logo animation */

  .home .tree p span {
    font-size: 3.8vw;
    color: grey;
    font-weight: 500;
    display: none;
  }
  
  .home .tree p span.text-in {
    display: block;
    animation: textIn 0.5s ease;
  }
  .home .tree p span.text-out {
    animation: textOut 0.5s ease;
  }
  @keyframes textIn {
    0% {
      transform: translateY(100%);
    }
    100% {
      transform: translateY(0%);
    }
  }
  @keyframes textOut {
    0% {
      transform: translateY(0%);
    }
    100% {
      transform: translateY(-100%);
    }
  }
