* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Albert Sans", sans-serif;
  scroll-behavior: smooth;
  outline: none;
}
.p-lr {
  padding-left: 108px;
  padding-right: 108px;
}
button {
  border: none;
  background: transparent;
  cursor: pointer;
}
body {
  background: #fff;
}
body.overhidden {
  overflow: hidden;
}
.navbar {
  width: 100%;
  padding: 16px 0;
  box-shadow: 0px 3px 7.4px 0px rgba(145, 145, 145, 0.19);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 13;
  background: #fff;
  border-bottom: 1px solid #fafafa;
  .navbar-container {
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    .nav-logo {
      width: 63px;
      min-width: 63px;
      display: flex;
      align-items: center;
      justify-content: center;
      img {
        width: 100%;
        height: 100%;
      }
    }
    .navbar-main {
      display: flex;
      align-items: center;
      gap: 36px;
      .nav-link {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #27382a;
      }
      .language {
        display: flex;
        flex-direction: column;
        align-items: start;
        position: relative;
        .current-lang {
          display: flex;
          align-items: center;
          gap: 6px;
          span {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #27382a;
          }
          img {
            width: 24px;
            height: 24px;
            min-width: 24px;
            transition: 0.3s ease-in-out;
          }
        }
        .other-languages {
          display: flex;
          flex-direction: column;
          align-items: start;
          width: 100%;
          position: absolute;
          z-index: 15;
          left: 0;
          top: 46px;
          padding: 8px;
          background: #fff;
          border-radius: 4px;
          box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.12);
          gap: 8px;
          transition: 0.3s ease-in-out;
          opacity: 0;
          visibility: hidden;
          .lang-item {
            font-size: 16px;
            line-height: 24px;
            color: #0c221d;
            font-weight: 400;
            width: 100%;
            display: flex;
            align-items: center;
            gap: 6px;
            img {
              width: 24px;
              height: 24px;
              min-width: 24px;
            }
            &:first-child {
              padding-bottom: 8px;
              border-bottom: 1px solid #f2f2f2;
            }
          }
        }
      }
      .language.active {
        .current-lang {
          .downIcon {
            transform: rotate(180deg);
          }
        }
        .other-languages {
          top: 36px;
          opacity: 1;
          visibility: visible;
        }
      }
      .hamburger {
        position: relative;
        display: none;
        align-items: center;
        justify-content: center;
        min-width: 32px;
        width: 32px;
        height: 32px;
        img {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          transition: 0.3s ease-in-out;
        }
        .hamburgerIcon {
          transform: scale(1);
        }
        .closeIcon {
          transform: scale(0);
        }
      }
      .hamburger.active {
        .hamburgerIcon {
          transform: scale(0);
        }
        .closeIcon {
          transform: scale(1);
        }
      }
    }
  }
}
.mobile-menu-container {
  position: fixed;
  top: 88px;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  background: #fff;
  z-index: 12;
  padding: 20px;
  display: none;
  flex-direction: column;
  align-items: start;
  transition: 0.3s ease-in-out;
  border-top: 1px solid #f8f8f8;
  opacity: 0;
  visibility: hidden;
  box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.08);
  .mobile-menu-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    .mobile-link {
      padding: 10px 12px;
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      color: #091a16;
    }
  }
}
.mobile-menu-container.showedMobileMenu {
  display: none;
  opacity: 1;
  visibility: visible;
  height: 349px;
  overflow: initial;
}
.home-hero {
  max-width: 1440px;
  width: 100%;
  margin: 147px auto 0;
  .home-hero-container {
    position: relative;
    width: 100%;
    border: 1px solid #f6f6f6;
    box-shadow: 0px 2px 9.1px 0px rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 60px;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    &::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      border-radius: 24px;
      background: linear-gradient(
        180deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0.55) 69.23%,
        #def4e2 100%
      );
    }
    .hero-content {
      max-width: 540px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      .hero-title {
        font-weight: 700;
        font-size: 60px;
        line-height: 70px;
        color: #0a0a0a;
        span {
          font-weight: 400;
          font-style: Italic;
          color: #5a5a5a;
        }
      }
      .hero-description {
        margin-top: 16px;
        ul {
          padding-left: 18px;
        }
        p,
        li,
        span {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #747474;
        }
      }
      .hero-link {
        margin-top: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        max-width: 240px;
        width: 100%;
        border-radius: 100px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        color: #fff;
        background: #5c8564;
        padding: 16px;
        transition: 0.25s ease-in-out;
        img {
          width: 24px;
          height: 24px;
          min-width: 24px;
          transition: 0.25s ease-in-out;
        }
        &:hover {
          background: #415e47;
          img {
            transform: rotate(45deg);
          }
        }
      }
    }
    .home-hero-image {
      max-width: 500px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      .hero-image {
        width: 100%;
      }
      .heroDecoration {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -2;
        object-fit: cover;
        border-radius: 24px;
      }
    }
  }
}
.how-we-work {
  max-width: 1440px;
  width: 100%;
  margin: 40px auto 0;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    color: #27382a;
  }
  .how-we-work-cards {
    width: 100%;
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    .how-we-work-card {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      height: auto;
      box-shadow: 0px 2px 9.1px 0px rgba(0, 0, 0, 0.05);
      border-radius: 16px;
      background: #fff;
      .card-image {
        height: 204px;
        width: 100%;
        border-radius: 16px 16px 0 0;
        img {
          width: 100%;
          height: 100%;
          border-radius: 16px 16px 0 0;
          object-fit: cover;
        }
      }
      .card-body {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 16px 30px;
        .card-title {
          font-weight: 500;
          font-size: 20px;
          line-height: 30px;
          color: #334937;
        }
        .description {
          margin-top: 12px;
          ul {
            padding-left: 18px;
          }
          p,
          li,
          span {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #949494;
          }
        }
      }
    }
  }
  .more {
    margin: 36px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 312px;
    width: 100%;
    border-radius: 100px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    background: #5c8564;
    padding: 16px;
    transition: 0.25s ease-in-out;
    img {
      width: 24px;
      height: 24px;
      min-width: 24px;
      transition: 0.25s ease-in-out;
    }
    &:hover {
      background: #415e47;
      img {
        transform: rotate(45deg);
      }
    }
  }
}
.home-our-fruits {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    color: #27382a;
  }
  .section-description {
    margin-top: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #949494;
  }
  .our-fruits-cards {
    width: 100%;
    margin-top: 40px;
    display: grid;
    justify-content: space-between;
    grid-template-columns: repeat(4, minmax(0, 184px));
    gap: 24px;
    .our-fruit-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      height: auto;
      .card-image {
        width: 100%;
        transition: 0.25s ease-in-out;
        img {
          width: 100%;
          height: 100%;
        }
      }
      .card-title {
        margin-top: 16px;
        font-weight: 500;
        font-size: 20px;
        line-height: 30px;
        color: #27382a;
      }
      &:hover {
        .card-image {
          transform: scale(1.05);
        }
      }
    }
  }
  .more {
    margin: 36px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 312px;
    width: 100%;
    border-radius: 100px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    background: #5c8564;
    padding: 16px;
    transition: 0.25s ease-in-out;
    img {
      width: 24px;
      height: 24px;
      min-width: 24px;
      transition: 0.25s ease-in-out;
    }
    &:hover {
      background: #415e47;
      img {
        transform: rotate(45deg);
      }
    }
  }
}
.home-packaging {
  width: 100%;
  margin-top: 80px;
  padding: 100px 0;
  background: #dce8df;
  .home-packaging-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    justify-content: space-between;
    position: relative;
    .packaging-content {
      position: relative;
      z-index: 2;
      max-width: 410px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      .section-title {
        font-weight: 500;
        font-size: 48px;
        line-height: 56px;
        color: #27382a;
      }
      .section-description {
        margin-top: 16px;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        color: #747474;
      }
      .more {
        margin-top: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        max-width: 312px;
        width: 100%;
        border-radius: 100px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        color: #fff;
        background: #5c8564;
        padding: 16px;
        transition: 0.25s ease-in-out;
        img {
          width: 24px;
          height: 24px;
          min-width: 24px;
          transition: 0.25s ease-in-out;
        }
        &:hover {
          background: #415e47;
          img {
            transform: rotate(45deg);
          }
        }
      }
    }
    .packaging-cards {
      position: relative;
      z-index: 2;
      max-width: 744px;
      width: 100%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      .packaging-card {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        background: #ffffff;
        border: 1px solid #e8e8e8;
        border-radius: 20px;
        padding: 16px 20px;
        .card-image {
          width: 100%;
          height: 200px;
          box-shadow: 4px 0px 8px 0px rgba(0, 0, 0, 0.08);
          background: #e8e8e8;
          padding: 10px 40px;
          border-radius: 12px;
          display: flex;
          align-items: center;
          justify-content: center;
          img {
            max-width: 100%;
            height: 100%;
            object-fit: contain;
          }
        }
        .card-body {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          width: 100%;
          margin-top: 24px;
          .card-title {
            font-weight: 500;
            font-size: 22px;
            line-height: 32px;
            color: #5c8564;
          }
          .card-description {
            width: 100%;
            margin-top: 12px;
            margin-bottom: 24px;
            ul {
              padding-left: 18px;
            }
            p,
            li,
            span {
              font-weight: 400;
              font-size: 14px;
              line-height: 18px;
              color: #949494;
            }
          }
          .card-properties {
            margin-top: auto;
            width: 100%;
            display: flex;
            align-items: flex-start;
            gap: 24px;
            padding-top: 24px;
            border-top: 1px solid #e2e2e2;
            .property-item {
              display: flex;
              flex-direction: column;
              align-items: flex-start;
              gap: 4px;
              p {
                font-weight: 400;
                font-size: 12px;
                line-height: 16px;
                color: #b5b5b5;
              }
              span {
                font-weight: 400;
                font-size: 14px;
                line-height: 18px;
                color: #949494;
              }
            }
          }
        }
      }
    }
    .blueberryDecor {
      width: 206px;
      position: absolute;
      left: 127px;
      bottom: -60px;
      z-index: 0;
    }
    .cherryDecor {
      width: 187px;
      position: absolute;
      right: 14px;
      top: -80px;
      z-index: 0;
    }
  }
}
.home-market-logistics {
  max-width: 1440px;
  width: 100%;
  margin: 40px auto 0;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    color: #27382a;
  }
  .section-description {
    margin-top: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #949494;
  }
  .market-logistics-images {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    .market-logistics-image {
      width: 100%;
      height: 400px;
      border-radius: 20px;
      overflow: hidden;
      img {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        object-fit: cover;
        transition: 0.25s ease-in-out;
      }
      &:hover {
        img {
          transform: scale(1.1);
        }
      }
    }
  }
  .market-logistics-boxes {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    .market-logistic-box {
      border-radius: 16px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      background: #f6f6f6;
      border: 1px solid #e8e8e8;
      padding: 24px;
      .card-title {
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
        color: #444444;
      }
      .card-description {
        margin-top: 16px;
        p {
          font-weight: 400;
          font-size: 14px;
          line-height: 18px;
          color: #5a5a5a;
        }
      }
    }
  }
  .more {
    margin: 24px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 312px;
    width: 100%;
    border-radius: 100px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    background: #5c8564;
    padding: 16px;
    transition: 0.25s ease-in-out;
    img {
      width: 24px;
      height: 24px;
      min-width: 24px;
      transition: 0.25s ease-in-out;
    }
    &:hover {
      background: #415e47;
      img {
        transform: rotate(45deg);
      }
    }
  }
}
footer {
  margin-top: 40px;
  width: 100%;
  background: #f6f6f6;
  padding: 60px 0;
  .footer-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .footer-main {
      width: 100%;
      display: flex;
      align-items: start;
      justify-content: space-between;
      gap: 40px;
      .footer-logo {
        width: 150px;
        min-width: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        img {
          width: 100%;
        }
      }
      .footer-links {
        display: flex;
        align-items: center;
        gap: 36px;
        .footer-link {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #27382a;
        }
      }
    }
    .footer-bottom {
      width: 100%;
      margin-top: 24px;
      padding-top: 24px;
      border-top: 1px solid #e2e2e2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      .all-right-reserved-txt {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #a3a3a3;
      }
      .socials {
        display: flex;
        align-items: center;
        gap: 16px;
        .social-item {
          width: 40px;
          height: 40px;
          min-width: 40px;
          display: flex;
          align-items: center;
          justify-content: center;
          background: #f2f2f2;
          border-radius: 100px;
          transition: 0.25s ease-in-out;
          img {
            width: 20px;
            height: 20px;
            transition: 0.25s ease-in-out;
          }
          &:hover {
            background: #5c8564;
            img {
              filter: brightness(1000);
            }
          }
        }
      }
    }
  }
}

.breadcrumb {
  max-width: 1440px;
  width: 100%;
  margin: 120px auto 0;
  .breadcrumb-main {
    background: #f8fafe;
    box-shadow: 0px 4px 9.3px 0px rgba(83, 140, 105, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    padding: 8px;
    width: max-content;
    max-width: 100%;
    .breadcrumb-item {
      font-weight: 400;
      font-size: 14px;
      line-height: 20px;
      color: #000;
    }
    .breadcrumb-current {
      padding: 6px 10px;
      background: rgba(83, 140, 105, 0.07);
      border-radius: 6px;
      font-weight: 400;
      font-size: 14px;
      line-height: 20px;
      color: #2d4637;
    }
  }
}
.about-hero {
  max-width: 1440px;
  width: 100%;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  .about-hero-content {
    max-width: 520px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    .about-hero-title {
      font-weight: 600;
      font-size: 48px;
      line-height: 56px;
      color: #27382a;
    }
    .description {
      margin-top: 20px;
      ul {
        padding-left: 18px;
      }
      p,
      li,
      span {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #5a5a5a;
      }
    }
  }
  .about-hero-image {
    max-width: 550px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      width: 100%;
      height: 100%;
    }
  }
}
.about-principles {
  margin-top: 40px;
  padding: 40px 0;
  background: #f0fdf4;
  .about-principles-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .section-title {
      font-weight: 600;
      font-size: 48px;
      line-height: 56px;
      color: #27382a;
    }
    .section-description {
      margin-top: 12px;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #a3a3a3;
    }
    .about-principles-items {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      margin-top: 24px;
      gap: 24px;
      .principle-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        border: 1px solid #f6f6f6;
        box-shadow: 0px 4px 13.4px 0px rgba(0, 0, 0, 0.05);
        background: #fff;
        border-radius: 16px;
        padding: 24px;
        .icon {
          width: 64px;
          height: 64px;
          min-width: 64px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 100px;
          background: #f0fdf4;

          img {
            width: 32px;
            height: 32px;
          }
        }
        .item-title {
          margin-top: 24px;
          font-weight: 500;
          font-size: 20px;
          line-height: 30px;
          color: #27382a;
        }
        .item-description {
          margin-top: 12px;
          ul {
            padding-left: 18px;
          }
          p,
          li,
          span {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #747474;
          }
        }
      }
    }
  }
}
.about-team {
  max-width: 1440px;
  width: 100%;
  margin: 40px auto 0;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    color: #27382a;
  }
  .section-description {
    margin-top: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #a3a3a3;
  }
  .team-cards {
    width: 100%;
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    .team-member {
      width: 100%;
      height: 340px;
      border-radius: 12px;
      position: relative;
      padding: 18px;
      display: flex;
      align-items: end;
      justify-content: start;
      img {
        width: 100%;
        height: 100%;
        border-radius: 12px;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        filter: grayscale(100);
        transition: 0.3s ease-in-out;
      }
      .card-body {
        width: 100%;
        position: relative;
        z-index: 2;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 12px;
        padding: 10px 20px;
        .member-fName {
          font-weight: 500;
          font-size: 16px;
          line-height: 24px;
          color: #27382a;
        }
        .member-position {
          font-weight: 400;
          font-size: 14px;
          line-height: 24px;
          color: #949494;
        }
      }
      &:hover {
        img {
          filter: initial;
        }
      }
    }
  }
}
.about-video {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  border-radius: 20px;
  video {
    width: 100%;
    height: 650px;
    border-radius: 20px;
    object-fit: cover;
  }
}
.page-banner {
  max-width: 1440px;
  width: 100%;
  margin: 30px auto 0;
  .banner-main {
    padding: 20px;
    width: 100%;
    height: 480px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    .banner-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
      filter: brightness(72%);
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }
    .banner-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
      display: flex;
      flex-direction: column;
      align-items: center;
      .banner-title {
        font-weight: 600;
        font-size: 48px;
        line-height: 56px;
        color: #fff;
        text-align: center;
      }
      .description {
        margin-top: 16px;
        max-width: 500px;
        ul {
          padding-left: 18px;
        }
        p,
        li,
        span {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #fff;
          text-align: center;
        }
      }
    }
  }
}
.our-fruits {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    color: #27382a;
  }
  .section-description {
    margin-top: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #a3a3a3;
  }
  .our-fruits-cards {
    width: 100%;
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    .fruit-card {
      width: 100%;
      transition: 0.25s ease-in-out;
      background: #f0fdf4;
      border: 1px solid #e8f5ec;
      border-radius: 20px;
      padding: 52px 24px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      .fruit-name {
        font-weight: 600;
        font-size: 24px;
        line-height: 34px;
        color: #27382a;
      }
      .description {
        margin-top: 12px;
        ul {
          padding-left: 18px;
        }
        p,
        li,
        span {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #868686;
        }
      }
      .card-body {
        width: 100%;
        margin-top: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        .fruit-properties {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          gap: 8px;
          .property-item {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #333333;
          }
        }
        .fruit-image {
          min-width: 180px;
          width: 180px;
          height: 200px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 24px;
          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 24px;
          }
        }
      }
      &:hover {
        transform: translateY(-2px);
        box-shadow: 0px 2px 9.1px 0px rgba(0, 0, 0, 0.06);
      }
    }
  }
}
.our-production-journey {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    color: #27382a;
  }
  .section-description {
    margin-top: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #a3a3a3;
  }
  .journey-items {
    width: 100%;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    .journey-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      width: 100%;
      .item-image {
        max-width: 600px;
        width: 100%;
        height: 660px;
        border-radius: 20px;
        overflow: hidden;
        img {
          width: 100%;
          height: 100%;
          border-radius: 20px;
          object-fit: cover;
          transition: 0.3s ease-in-out;
        }
        &:hover {
          img {
            transform: scale(1.1);
          }
        }
      }
      .item-content {
        max-width: 500px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        .journey-name {
          font-weight: 600;
          font-size: 32px;
          line-height: 40px;
          color: #27382a;
        }
        .description {
          margin-top: 16px;
          ul {
            padding-left: 18px;
          }
          p,
          li,
          span {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #949494;
          }
        }
        .journey-boxes {
          width: 100%;
          margin-top: 40px;
          width: 100%;
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 24px;
          .journey-box {
            width: 100%;
            padding: 16px;
            background: #f0fdf4;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            .journey-box-name {
              font-weight: 600;
              font-size: 18px;
              line-height: 26px;
              color: #27382a;
            }
            .journey-box-description {
              margin-top: 16px;
              ul {
                padding-left: 18px;
              }
              p,
              li,
              span {
                font-weight: 400;
                font-size: 14px;
                line-height: 20px;
                color: #949494;
              }
            }
          }
        }
      }
      &:nth-child(even) {
        flex-direction: row-reverse;
      }
    }
  }
}
.packaging-options {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    color: #27382a;
  }
  .section-description {
    margin-top: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #a3a3a3;
  }
  .option-cards {
    width: 100%;
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    .option-card {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      border: 1px solid #e8f5ec;
      background: #f2fdf5;
      border-radius: 16px;
      transition: 0.25s ease-in-out;
      .card-image {
        width: 100%;
        height: 400px;
        border-radius: 16px 16px 0 0;
        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          border-radius: 16px 16px 0 0;
        }
      }
      .card-body {
        border-radius: 0 0 16px 16px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        .package-name {
          font-weight: 600;
          font-size: 36px;
          line-height: 46px;
          color: #27382a;
          span {
            color: #54795b;
          }
        }
        .package-weight {
          margin-top: 16px;
          font-weight: 600;
          font-size: 22px;
          line-height: 32px;
          color: #333333;
        }
        .description {
          margin-top: 12px;
          ul {
            width: 100%;
          }
          p,
          li,
          span {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #949494;
          }
        }
      }
      &:hover {
        transform: translateY(-2px);
        box-shadow: 0px 2px 9.1px 0px rgba(0, 0, 0, 0.12);
      }
    }
  }
}
.packaging-gallery {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    color: #27382a;
  }
  .section-description {
    margin-top: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #a3a3a3;
  }
  .packaging-gallery-cards {
    width: 100%;
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    .gallery-card {
      width: 100%;
      height: 260px;
      border-radius: 16px;
      overflow: hidden;
      img {
        width: 100%;
        height: 100%;
        border-radius: 16px;
        transition: 0.25s ease-in-out;
        object-fit: cover;
      }
      &:hover {
        img {
          transform: scale(1.1);
        }
      }
    }
  }
}
.packaging-production-branding {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    color: #27382a;
  }
  .section-description {
    margin-top: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #a3a3a3;
  }
  .production-branding-cards {
    width: 100%;
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    .production-branding-card {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      border: 1px solid #f2f2f2;
      border-radius: 16px;
      transition: 0.25s ease-in-out;
      .card-image {
        width: 100%;
        height: 400px;
        border-radius: 16px 16px 0 0;
        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          border-radius: 16px 16px 0 0;
        }
      }
      .card-body {
        border-radius: 0 0 16px 16px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        .card-title {
          font-weight: 600;
          font-size: 32px;
          line-height: 42px;
          color: #333333;
        }
        .description {
          margin-top: 12px;
          ul {
            width: 100%;
          }
          p,
          li,
          span {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #949494;
          }
        }
      }
      &:hover {
        transform: translateY(-2px);
        box-shadow: 0px 2px 9.1px 0px rgba(0, 0, 0, 0.12);
      }
    }
  }
}
.contact-container {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  .contact-main {
    width: 100%;
    gap: 24px;
    display: grid;
    grid-template-columns: 496px calc(100% - 520px);
    .contact-box {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: start;
      background: #fff;
      border: 1px solid rgba(92, 92, 92, 0.05);
      box-shadow: 0px 4px 8.6px 0px rgba(132, 132, 132, 0.05);
      padding: 40px 24px;
      border-radius: 16px;
      .box-title {
        font-weight: 600;
        font-size: 32px;
        line-height: 40px;
        color: #091a16;
      }
      .box-description {
        width: 100%;
        margin-top: 12px;
        li,
        p {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #666666;
        }
        ul {
          padding-left: 18px;
        }
      }
      .contact-items {
        margin-top: 24px;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 16px;
        width: 100%;
        .contact-item {
          width: 100%;
          display: flex;
          align-items: center;
          gap: 12px;
          .item-icon {
            width: 56px;
            height: 56px;
            min-width: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #538c69;
            border-radius: 100px;
            img {
              width: 28px;
              height: 28px;
              min-width: 28px;
            }
          }
          .item-body {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: start;
            gap: 8px;
            .item-title {
              font-weight: 500;
              font-size: 16px;
              line-height: 24px;
              color: #2c3e2f;
            }
            p,
            a {
              font-weight: 400;
              font-size: 14px;
              line-height: 18px;
              color: #666666;
            }
          }
        }
      }
      .contact-socials {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 16px;
        width: 100%;
        .contact-social-title {
          font-weight: 600;
          font-size: 16px;
          line-height: 24px;
          color: #091a16;
        }
        .social-items {
          width: 100%;
          display: flex;
          align-items: center;
          flex-wrap: wrap;
          gap: 16px;
          .social-item {
            width: 40px;
            height: 40px;
            min-width: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #538c69;
            border-radius: 100px;
            img {
              width: 20px;
              height: 20px;
              min-width: 20px;
            }
          }
        }
      }
    }
    .contact-form {
      width: 100%;
      background: #fff;
      border: 1px solid rgba(92, 92, 92, 0.05);
      box-shadow: 0px 4px 8.6px 0px rgba(132, 132, 132, 0.05);
      padding: 40px 24px;
      border-radius: 16px;
      .form-items {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        .form-item {
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 16px;
          width: 100%;
          label {
            font-weight: 600;
            font-size: 14px;
            line-height: 18px;
            color: #848484;
            position: relative;
            sup {
              position: absolute;
              top: -4px;
            }
          }
          input,
          select,
          textarea {
            width: 100%;
            padding: 16px;
            background: #fbfbfb;
            border: 1px solid #f3f3f3;
            box-shadow: 0px 4px 5.5px 0px rgba(241, 241, 241, 0.25);
            border-radius: 16px;
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #091a16;
            height: 58px;
            &::placeholder {
              color: #848484;
            }
          }
        }
        .formTextarea {
          grid-column: span 2;
          textarea {
            resize: none;
            height: 90px;
          }
        }
      }
      .sendForm {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 24px;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #fff;
        background: #538c69;
        border-radius: 100px;
        padding: 16px;
        transition: 0.3s ease-in-out;
        img {
          width: 24px;
          height: 24px;
          min-width: 24px;
        }
        &:hover {
          background: #415e47;
        }
      }
    }
  }
  .map {
    height: 460px;
    width: 100%;
    border-radius: 16px;
    margin-top: 36px;
    iframe {
      width: 100%;
      height: 100%;
      border-radius: 16px;
    }
  }
}
.our-clients {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    color: #27382a;
  }
  .section-description {
    margin-top: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #a3a3a3;
  }
  .desktop-clients {
    width: 100%;
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    .client-item {
      padding: 30px;
      width: 100%;
      height: 188px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #efefef;
      background: #fff;
      border-radius: 16px;
      img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }
  }
  .mobile-clients-slide {
    display: none;
    width: 100%;
    margin-top: 20px;
    .client-item {
      padding: 16px;
      width: 190px;
      height: 124px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #efefef;
      background: #fff;
      border-radius: 16px;
      img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }
  }
}
.quality-certifications {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    color: #27382a;
  }
  .section-description {
    margin-top: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #a3a3a3;
  }
  .certificates {
    width: 100%;
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    .certificate-item {
      width: 100%;
      height: 144px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #efefef;
      border-radius: 16px;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
      }
    }
  }
}
.success-gallery {
  max-width: 1440px;
  width: 100%;
  margin: 30px auto 0;
  .section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    color: #27382a;
  }
  .section-description {
    margin-top: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #a3a3a3;
  }
  .desktop-gallery {
    width: 100%;
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    .gallery-item {
      width: 100%;
      height: 280px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #eff3f0;
      border-radius: 16px;
      position: relative;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
      }
      &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        border-radius: 16px;
        background: linear-gradient(
          0deg,
          rgba(26, 26, 26, 0.8) 0%,
          rgba(0, 0, 0, 0) 100%
        );
      }
    }
  }
  .mobile-successGallery-slide {
    display: none;
    width: 100%;
    margin-top: 20px;
    padding-bottom: 32px;
    .gallery-item {
      width: 353px;
      height: 210px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #eff3f0;
      border-radius: 16px;
      position: relative;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
      }
      &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        border-radius: 16px;
        background: linear-gradient(
          0deg,
          rgba(26, 26, 26, 0.8) 0%,
          rgba(0, 0, 0, 0) 100%
        );
      }
    }
    .swiper-pagination {
      bottom: 0;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      .swiper-pagination-bullet {
        opacity: 1;
        margin: 0;
        width: 8px;
        height: 8px;
        background: #e8e8e8;
        border-radius: 100px;
        transition: 0.25s ease-in-out;
      }
      .swiper-pagination-bullet-active {
        width: 24px;
        background: #5c8564;
      }
    }
  }
}
@media only screen and (max-width: 1250px) {
  .p-lr {
    padding-left: 60px;
    padding-right: 60px;
  }
  .navbar {
    padding: 12px 0;
    .navbar-container {
      .nav-logo {
        width: 60px;
      }
      .navbar-main {
        gap: 20px;
      }
    }
  }
  .home-hero {
    margin: 120px auto 0;
    .home-hero-container {
      padding: 40px;
      min-height: 500px;
      gap: 30px;
      .hero-content {
        max-width: 500px;
        .hero-title {
          font-size: 48px;
          line-height: 58px;
        }
        .hero-description {
          margin-top: 12px;
          p,
          li,
          span {
            font-size: 14px;
            line-height: 20px;
          }
        }
        .hero-link {
          margin-top: 20px;
          gap: 10px;
          max-width: 220px;
          padding: 12px;
        }
      }
      .home-hero-image {
        max-width: 450px;
      }
    }
  }
  .how-we-work {
    .section-title {
      font-size: 36px;
      line-height: 44px;
    }
    .how-we-work-cards {
      margin-top: 20px;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      .how-we-work-card {
        .card-image {
          height: 334px;
        }
      }
    }
    .more {
      margin: 28px auto 0;
      max-width: 282px;
      padding: 12px;
    }
  }
  .home-our-fruits {
    margin: 64px auto 0;
    .section-title {
      font-size: 36px;
      line-height: 44px;
    }
    .our-fruits-cards {
      margin-top: 32px;
      grid-template-columns: repeat(4, minmax(0, 164px));
      gap: 20px;
    }
    .more {
      margin: 28px auto 0;
      max-width: 282px;
      padding: 12px;
    }
  }
  .home-packaging {
    margin-top: 64px;
    padding: 68px 0;
    .home-packaging-container {
      gap: 30px;
      .packaging-content {
        max-width: 320px;
        .section-title {
          font-size: 36px;
          line-height: 44px;
        }
        .section-description {
          margin-top: 12px;
          font-size: 14px;
          line-height: 20px;
        }
        .more {
          max-width: 282px;
          padding: 12px;
        }
      }
      .packaging-cards {
        max-width: 684px;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        .packaging-card {
          .card-image {
            height: 160px;
            padding: 10px 30px;
          }
        }
      }
      .blueberryDecor {
        width: 160px;
        left: 67px;
        bottom: -28px;
      }
      .cherryDecor {
        width: 137px;
        right: 10px;
        top: -48px;
      }
    }
  }
  .home-market-logistics {
    margin: 32px auto 0;
    .section-title {
      font-size: 36px;
      line-height: 44px;
    }
    .market-logistics-images {
      margin-top: 20px;
      gap: 20px;
      .market-logistics-image {
        height: 340px;
      }
    }
    .market-logistics-boxes {
      margin-top: 26px;
      gap: 20px;
    }
    .more {
      margin: 20px auto 0;
      max-width: 282px;
      padding: 12px;
    }
  }
  footer {
    margin-top: 32px;
    padding: 48px 0;
    .footer-container {
      .footer-main {
        gap: 30px;
        .footer-logo {
          width: 120px;
          min-width: 120px;
        }
        .footer-links {
          gap: 30px;
          .footer-link {
            font-size: 14px;
            line-height: 20px;
          }
        }
      }
      .footer-bottom {
        margin-top: 20px;
        padding-top: 20px;
        .all-right-reserved-txt {
          font-size: 14px;
          line-height: 20px;
        }
      }
    }
  }
  .breadcrumb {
    margin: 108px auto 0;
  }
  .about-hero {
    margin: 32px auto 0;
    gap: 20px;
    .about-hero-content {
      max-width: 480px;
      .about-hero-title {
        font-size: 36px;
        line-height: 44px;
      }
      .description {
        margin-top: 16px;
        p,
        li,
        span {
          font-size: 14px;
          line-height: 20px;
        }
      }
    }
    .about-hero-image {
      max-width: 500px;
    }
  }
  .about-principles {
    margin-top: 32px;
    .about-principles-container {
      .section-title {
        font-size: 36px;
        line-height: 44px;
      }
      .about-principles-items {
        margin-top: 20px;
        gap: 20px;
      }
    }
  }
  .about-team {
    margin: 32px auto 0;
    .section-title {
      font-size: 36px;
      line-height: 44px;
    }
    .team-cards {
      margin-top: 20px;
      gap: 20px;
      .team-member {
        height: 300px;
      }
    }
  }
  .about-video {
    margin: 64px auto 0;
    video {
      height: 550px;
    }
  }
  .page-banner {
    margin: 24px auto 0;
    .banner-main {
      height: 400px;
      .banner-content {
        max-width: 650px;
        .banner-title {
          font-size: 36px;
          line-height: 44px;
        }
        .description {
          margin-top: 12px;
          max-width: 450px;
          p,
          li,
          span {
            font-size: 14px;
            line-height: 20px;
          }
        }
      }
    }
  }
  .our-fruits {
    margin: 64px auto 0;
    .section-title {
      font-size: 36px;
      line-height: 44px;
    }
    .our-fruits-cards {
      margin-top: 20px;
      gap: 20px;
      .fruit-card {
        padding: 32px 16px;
        .card-body {
          margin-top: 12px;
          gap: 20px;
        }
      }
    }
  }
  .our-production-journey {
    margin: 64px auto 0;
    .section-title {
      font-size: 36px;
      line-height: 44px;
    }
    .journey-items {
      margin-top: 20px;
      gap: 20px;
      .journey-item {
        gap: 30px;
        .item-image {
          max-width: 540px;
          height: 600px;
        }
        .item-content {
          max-width: 450px;
          .journey-name {
            font-size: 26px;
            line-height: 36px;
          }
          .description {
            margin-top: 12px;
          }
          .journey-boxes {
            margin-top: 30px;
            gap: 16px;
            .journey-box {
              .journey-box-description {
                margin-top: 12px;
              }
            }
          }
        }
      }
    }
  }
  .packaging-options {
    margin: 64px auto 0;
    .section-title {
      font-size: 36px;
      line-height: 44px;
    }
    .option-cards {
      margin-top: 20px;
      gap: 20px;
      .option-card {
        .card-image {
          height: 350px;
        }
        .card-body {
          .package-name {
            font-size: 30px;
            line-height: 40px;
          }
          .package-weight {
            margin-top: 12px;
            font-size: 18px;
            line-height: 28px;
          }
          .description {
            p,
            li,
            span {
              font-size: 14px;
              line-height: 20px;
            }
          }
        }
      }
    }
  }
  .packaging-gallery {
    margin: 64px auto 0;
    .section-title {
      font-size: 36px;
      line-height: 44px;
    }
    .packaging-gallery-cards {
      margin-top: 20px;
      gap: 20px;
      .gallery-card {
        height: 220px;
      }
    }
  }
  .packaging-production-branding {
    margin: 64px auto 0;
    .section-title {
      font-size: 36px;
      line-height: 44px;
    }
    .production-branding-cards {
      margin-top: 20px;
      gap: 20px;
      .production-branding-card {
        .card-image {
          height: 350px;
        }
        .card-body {
          .card-title {
            font-size: 28px;
            line-height: 36px;
          }
          .description {
            margin-top: 10px;
          }
        }
      }
    }
  }
  .contact-container {
    margin: 64px auto 0;
    .contact-main {
      gap: 20px;
      grid-template-columns: 396px calc(100% - 416px);
      .contact-form {
        .form-items {
          gap: 20px;
        }
        .sendForm {
          margin-top: 20px;
          padding: 12px;
        }
      }
    }
    .map {
      height: 330px;
    }
  }
  .our-clients {
    margin: 64px auto 0;
    .section-title {
      font-size: 36px;
      line-height: 44px;
    }
    .desktop-clients {
      margin-top: 20px;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      .client-item {
        padding: 20px;
        height: 168px;
      }
    }
  }
  .quality-certifications {
    margin: 64px auto 0;
    .section-title {
      font-size: 36px;
      line-height: 44px;
    }
    .certificates {
      margin-top: 20px;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      .certificate-item {
        height: 164px;
      }
    }
  }
  .success-gallery {
    margin: 24px auto 0;
    .section-title {
      font-size: 36px;
      line-height: 44px;
    }
    .desktop-gallery {
      margin-top: 20px;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      .gallery-item {
        height: 240px;
      }
    }
  }
}
@media only screen and (max-width: 992px) {
  .navbar {
    .navbar-container {
      .nav-logo {
        width: 60px;
      }
      .navbar-main {
        gap: 16px;
        .nav-link {
          display: none;
        }
        .hamburger {
          display: flex;
        }
      }
    }
  }
  .mobile-menu-container {
    display: flex;
  }
  .mobile-menu-container.showedMobileMenu {
    display: flex;
  }
  .how-we-work {
    .how-we-work-cards {
      .how-we-work-card {
        .card-image {
          height: 264px;
        }
      }
    }
  }
  .home-our-fruits {
    .our-fruits-cards {
      justify-content: space-around;
      grid-template-columns: repeat(2, minmax(0, 184px));
    }
  }
  .home-packaging {
    .home-packaging-container {
      flex-direction: column;
      .packaging-content {
        max-width: 100%;
      }
      .packaging-cards {
        max-width: 100%;
        .packaging-card {
          .card-image {
            height: 200px;
          }
        }
      }
      .blueberryDecor {
        width: 160px;
        left: 0px;
        bottom: -68px;
      }
    }
  }
  .home-market-logistics {
    .market-logistics-images {
      .market-logistics-image {
        height: 280px;
      }
    }
  }
  footer {
    .footer-container {
      .footer-main {
        flex-direction: column;
      }
    }
  }
  .about-hero {
    margin: 32px auto 0;
    .about-hero-content {
      max-width: 480px;
      .about-hero-title {
        font-size: 36px;
        line-height: 44px;
      }
      .description {
        margin-top: 16px;
        p,
        li,
        span {
          font-size: 14px;
          line-height: 20px;
        }
      }
    }
    .about-hero-image {
      max-width: 500px;
    }
  }
  .about-principles {
    .about-principles-container {
      .about-principles-items {
        grid-template-columns: repeat(1, 1fr);
      }
    }
  }
  .about-team {
    .team-cards {
      grid-template-columns: repeat(3, 1fr);
      .team-member {
        height: 320px;
      }
    }
  }
  .about-video {
    video {
      height: 450px;
    }
  }
  .our-fruits {
    .our-fruits-cards {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .our-production-journey {
    .journey-items {
      .journey-item {
        flex-direction: column-reverse;
        align-items: flex-start;
        .item-image {
          max-width: 100%;
          height: 500px;
        }
        .item-content {
          max-width: 100%;
        }
        &:nth-child(even) {
          flex-direction: column-reverse;
        }
      }
    }
  }
  .packaging-options {
    .option-cards {
      .option-card {
        .card-image {
          height: 300px;
        }
      }
    }
  }
  .packaging-gallery {
    .packaging-gallery-cards {
      grid-template-columns: repeat(2, 1fr);
      .gallery-card {
        height: 260px;
      }
    }
  }
  .packaging-production-branding {
    .production-branding-cards {
      .production-branding-card {
        .card-image {
          height: 300px;
        }
      }
    }
  }
  .contact-container {
    .contact-main {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .quality-certifications {
    .certificates {
      grid-template-columns: repeat(3, 1fr);
      .certificate-item {
        height: 154px;
      }
    }
  }
  .success-gallery {
    margin: 24px auto 0;
    .section-title {
      font-size: 36px;
      line-height: 44px;
    }
    .desktop-gallery {
      grid-template-columns: repeat(2, 1fr);
      .gallery-item {
        height: 240px;
      }
    }
  }
}
@media only screen and (max-width: 768px) {
  .p-lr {
    padding-left: 20px;
    padding-right: 20px;
  }
  .home-hero {
    margin: 105px auto 0;
    .home-hero-container {
      padding: 0;
      min-height: 0;
      gap: 24px;
      flex-direction: column-reverse;
      align-items: flex-start;
      border: none;
      box-shadow: none;
      border-radius: 0;
      &::after {
        display: none;
      }
      .hero-content {
        max-width: 100%;
        .hero-title {
          font-size: 36px;
          line-height: 44px;
        }
        .hero-link {
          margin-top: 16px;
          max-width: 200px;
        }
      }
      .home-hero-image {
        max-width: 100%;
        border: 1px solid #f6f6f6;
        box-shadow: 0px 2px 9.1px 0px rgba(0, 0, 0, 0.05);
        border-radius: 24px;
        position: relative;
        padding: 56px 20px;
        &::after {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: -1;
          border-radius: 24px;
          background: linear-gradient(
            180deg,
            #ffffff 0%,
            rgba(255, 255, 255, 0.55) 69.23%,
            #def4e2 100%
          );
        }
        .hero-image {
          max-width: 450px;
        }
      }
    }
  }
  .how-we-work {
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .how-we-work-cards {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      .how-we-work-card {
        .card-image {
          height: 224px;
        }
      }
    }
    .more {
      margin: 20px auto 0;
      max-width: 242px;
    }
  }
  .home-our-fruits {
    margin: 48px auto 0;
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .our-fruits-cards {
      margin-top: 24px;
    }
    .more {
      margin: 20px auto 0;
      max-width: 242px;
    }
  }
  .home-packaging {
    margin-top: 48px;
    padding: 36px 0;
    .home-packaging-container {
      gap: 36px;
      .packaging-content {
        .section-title {
          font-size: 24px;
          line-height: 32px;
        }
      }
      .packaging-cards {
        gap: 16px;
        .packaging-card {
          .card-image {
            height: 160px;
            padding: 10px 20px;
          }
        }
      }
      .cherryDecor {
        width: 120px;
        right: 0px;
        top: -36px;
      }
      .blueberryDecor {
        width: 120px;
        bottom: -36px;
      }
    }
  }
  .home-market-logistics {
    margin: 24px auto 0;
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .market-logistics-images {
      grid-template-columns: repeat(1, 1fr);
      gap: 16px;
      .market-logistics-image {
        height: 440px;
      }
    }
    .market-logistics-boxes {
      margin-top: 16px;
      grid-template-columns: repeat(1, 1fr);
      gap: 16px;
    }
    .more {
      max-width: 242px;
    }
  }
  footer {
    margin-top: 24px;
    padding: 36px 0;
    .footer-container {
      .footer-main {
        .footer-logo {
          width: 96px;
          min-width: 96px;
        }
        .footer-links {
          flex-direction: column;
          align-items: flex-start;
          gap: 24px;
        }
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }
  }
  .breadcrumb {
    display: none;
  }
  .about-hero {
    margin: 104px auto 0;
    flex-direction: column-reverse;
    .about-hero-content {
      max-width: 100%;
      .about-hero-title {
        font-size: 24px;
        line-height: 32px;
      }
    }
    .about-hero-image {
      max-width: 100%;
    }
  }
  .about-principles {
    margin-top: 24px;
    .about-principles-container {
      .section-title {
        font-size: 24px;
        line-height: 32px;
      }
      .about-principles-items {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
      }
    }
  }
  .about-team {
    margin: 24px auto 0;
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .team-cards {
      gap: 16px;
      grid-template-columns: repeat(2, 1fr);
      .team-member {
        height: 360px;
      }
    }
  }
  .about-video {
    margin: 48px auto 0;
    video {
      height: 350px;
    }
  }
  .page-banner {
    margin: 104px auto 0;
    .banner-main {
      height: 340px;
      .banner-content {
        .banner-title {
          font-size: 24px;
          line-height: 32px;
        }
      }
    }
  }
  .our-fruits {
    margin: 48px auto 0;
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .our-fruits-cards {
      gap: 16px;
      .fruit-card {
        padding: 24px 12px;
        .card-body {
          gap: 16px;
        }
      }
    }
  }
  .our-production-journey {
    margin: 48px auto 0;
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .journey-items {
      gap: 16px;
      .journey-item {
        gap: 20px;
        .item-image {
          height: 400px;
        }
        .item-content {
          .journey-name {
            font-size: 20px;
            line-height: 30px;
          }
          .journey-boxes {
            margin-top: 20px;
            gap: 12px;
          }
        }
      }
    }
  }
  .packaging-options {
    margin: 48px auto 0;
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .option-cards {
      margin-top: 20px;
      gap: 16px;
      .option-card {
        .card-image {
          height: 250px;
        }
        .card-body {
          .package-name {
            font-size: 24px;
            line-height: 36px;
          }
        }
      }
    }
  }
  .packaging-gallery {
    margin: 48px auto 0;
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .packaging-gallery-cards {
      gap: 16px;
      .gallery-card {
        height: 240px;
      }
    }
  }
  .packaging-production-branding {
    margin: 48px auto 0;
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .production-branding-cards {
      gap: 16px;
      .production-branding-card {
        .card-image {
          height: 250px;
        }
        .card-body {
          .card-title {
            font-size: 24px;
            line-height: 32px;
          }
        }
      }
    }
  }
  .contact-container {
    margin: 48px auto 0;
    .contact-main {
      gap: 16px;
      .contact-form {
        .form-items {
          gap: 16px;
        }
        .sendForm {
          margin-top: 16px;
        }
      }
    }
    .map {
      height: 200px;
    }
  }
  .our-clients {
    margin: 48px auto 0;
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .desktop-clients {
      display: none;
    }
    .mobile-clients-slide {
      display: block;
    }
  }
  .quality-certifications {
    margin: 48px auto 0;
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .certificates {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      .certificate-item {
        height: 204px;
      }
    }
  }
  .success-gallery {
    margin: 104px auto 0;
    .section-title {
      font-size: 24px;
      line-height: 32px;
    }
    .desktop-gallery {
      display: none;
    }
    .mobile-successGallery-slide {
      display: block;
    }
  }
}
@media only screen and (max-width: 575px) {
  .home-hero {
    .home-hero-container {
      .home-hero-image {
        .hero-image {
          max-width: 260px;
        }
      }
    }
  }
  .how-we-work {
    .how-we-work-cards {
      grid-template-columns: repeat(1, 1fr);
      .how-we-work-card {
        .card-image {
          height: 204px;
        }
      }
    }
    .more {
      max-width: 100%;
    }
  }
  .home-our-fruits {
    .our-fruits-cards {
      justify-content: center;
      gap: 36px;
      grid-template-columns: repeat(1, minmax(0, 353px));
    }
    .more {
      max-width: 100%;
    }
  }
  .home-packaging {
    .home-packaging-container {
      .packaging-content {
        .more {
          max-width: 100%;
        }
      }
      .packaging-cards {
        grid-template-columns: repeat(1, 1fr);
        .packaging-card {
          .card-image {
            height: 200px;
          }
        }
      }
    }
  }
  .home-market-logistics {
    .market-logistics-images {
      .market-logistics-image {
        height: 310px;
      }
    }
    .more {
      max-width: 100%;
    }
  }
  .about-team {
    .team-cards {
      grid-template-columns: repeat(1, 1fr);
      .team-member {
        height: 340px;
      }
    }
  }
  .about-video {
    video {
      height: 250px;
    }
  }
  .page-banner {
    .banner-main {
      height: 260px;
    }
  }
  .our-fruits {
    .our-fruits-cards {
      .fruit-card {
        .card-body {
          flex-direction: column;
          .fruit-image {
            min-width: 0;
            width: 100%;
            height: 270px;
          }
        }
      }
    }
  }
  .our-production-journey {
    .journey-items {
      .journey-item {
        .item-image {
          height: 300px;
        }
        .item-content {
          .journey-boxes {
            grid-template-columns: repeat(1, 1fr);
          }
        }
      }
    }
  }
  .packaging-options {
    .option-cards {
      grid-template-columns: repeat(1, 1fr);
      .option-card {
        .card-image {
          height: 210px;
        }
      }
    }
  }
  .packaging-gallery {
    .packaging-gallery-cards {
      grid-template-columns: repeat(1, 1fr);
      .gallery-card {
        height: 235px;
      }
    }
  }
  .packaging-production-branding {
    .production-branding-cards {
      grid-template-columns: repeat(1, 1fr);
      .production-branding-card {
        .card-image {
          height: 210px;
        }
      }
    }
  }
  .contact-container {
    .contact-main {
      .contact-form {
        .form-items {
          grid-template-columns: repeat(1, 1fr);
          .formTextarea {
            grid-column: span 1;
          }
        }
      }
    }
  }
  .quality-certifications {
    .certificates {
      .certificate-item {
        height: 110px;
      }
    }
  }
}
