@font-face {
  font-family: 'Milker';
  src: url('assets/milker/Milker.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #FFF8EC;
  --yellow:  #FFB059;
  --red: #430D0D;
  --orange: #E74723;
  --green: #0E3D2B;
  --scrub-height: 1600px; 
}

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--red);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  background: var(--red);
  overflow-x: hidden;
  position: relative;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(67, 13, 13, 0.95);
  backdrop-filter: blur(10px);
}

nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 15px 36px;
  box-sizing: border-box;
  color: var(--red);
}


ul {
  display: flex;
  gap: 35px;
  list-style-type: none;
}

ul li a {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links ul {
  display: flex;
  gap: 35px;
  list-style-type: none;
}

.burger {
  display: none;
  background: none;
  border: none;
  width: 28px;
  height: 22px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: all 0.25s ease;
}

.burger.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}


.section_1 {
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section_1 video {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;      
  z-index: -1; 
}

.hero_inside {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 56px;
  z-index: 99;
}

.pasture {
  display: flex;
  align-items: center;
  gap: 25px;
  color: var(--white, #FFF8EC);
  font-family: 'Milker';
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  align-self: flex-start;
}

.orchard {
  display: flex;
  align-items: center;
  gap: 25px;
  color: var(--white, #FFF8EC);
  font-family: 'Milker';
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  align-self: flex-end;
}

.hero_inside h1 {
  color: var(--white, #FFF8EC);
  font-family: 'Milker';
  font-size: 128px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  text-align: center;
}

.hero_inside button {
  display: flex;
  height: fit-content;
  width: fit-content;
  padding: 10px 35px;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border-radius: 35.372px;
  background: var(--white, #FFF8EC);
  color: var(--red, #430D0D);
  text-align: center;
  font-family: 'Poppins';
  font-size: 15.721px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
  border: none;
}

.sec1_overlay {
  width: 100%;
  height: 124px;
  background: linear-gradient(180deg, rgba(67, 13, 13, 0.00) 0%, rgba(67, 13, 13, 0.78) 50%, #430D0D 100%);
  position: absolute;
  bottom: 0;
  z-index: 99;
}

h2 {
  color: var(--yellow, #FFB059);
  text-align: center;
  font-family: 'Milker';
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px; /* 166.667% */
}

h3 {
  color: var(--yellow, #FFB059);
  text-align: center;
  font-family: 'Poppins';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 175% */
}

.section_2 {
  margin: 90px 0;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  justify-content: center;
}

.categories-wrapper {
  margin-top: 40px;
  width: 85%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.categories-window {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.section_2 .category-card {
  display: none;
}

.section_2 .category-card.is-active {
  display: flex;
}

.category-nav {
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.category-nav img {
  width: 32px;
  height: auto;
}

.category-nav--prev img {
  transform: rotate(180deg);
}

.category-nav:hover {
  transform: scale(1.05);
}

.category-nav:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.category-nav:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.section_2 {
  margin: 90px 0;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  justify-content: center;
}

.categories-wrapper {
  margin-top: 40px;
  width: 85%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.categories-window {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.section_2 .category-card {
  display: none;
}

.section_2 .category-card.is-active {
  display: flex;
}

.category-nav {
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.category-nav img {
  width: 32px;
  height: auto;
}

.category-nav--prev img {
  transform: rotate(180deg);
}

.category-nav:hover {
  transform: scale(1.05);
}

.category-nav:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.category-nav:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.section_2 model-viewer {
  width: 400px;
  height: 400px;
  margin: auto;
  display: block;
  position: absolute;
  margin: auto;
  top: 140px;
  z-index: 999;
}

.category_1 {
  display: flex;
  max-width: 1297px;
  width: 100%;
  height: 624px;
  position: relative;
  justify-content: center;
}

.category_1 h1 {
  color: var(--white, #FFF8EC);
  font-family: 'Milker';
  font-size: 227.968px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 40px;
  z-index: 1;
}

.category_1 img, .category_2 img, .category_3 img {
  position: absolute;
}

.category_1 img:nth-of-type(1) {
  width: 226.241px;
  height: 397.217px;
  transform: rotate(-70.738deg);
  aspect-ratio: 226.24/397.22;
  left: 277.5px;
  z-index: 2;
  bottom: 50px;
}

.category_1 img:nth-of-type(2) {
  width: 226.241px;
  height: 397.217px;
  aspect-ratio: 226.24/397.22; 
  transform: rotate(65deg); 
  right: 322px;
  z-index: 2;
  bottom: 70px;
}

.category_1 img:nth-of-type(3) {
  height: 267.69px;
  transform: rotate(-20deg);
  flex-shrink: 0;
  top: 0;
  left: 350px;
}

.category_1 img:nth-of-type(4) {
  height: 192.612px;
  aspect-ratio: 226.24/397.22; 
  transform: rotate(60deg); 
  right: 263px;
}

.category_1 img:nth-of-type(5) {
  width: 211.13px;
  height: 140.753px;
  right: 180px;
  top: 280px;
  z-index: 2;
}

.category_1 img:nth-of-type(6) {
  width: 129.527px;
  height: 86.352px;
  left: 140px;
  top: 60px;
  z-index: 2;
}

.category_1 img:nth-of-type(7) {
  width: 140.753px;
  height: 207.244px;
  aspect-ratio: 140.75/207.24;
  left: 115px;
  bottom: 70px;
}

.category_1 img:nth-of-type(8) {
  width: 179.611px;
  height: 200.336px;
  right: 290px;
  top: 0;
}

.category_2 {
  position: relative;
  display: flex;
  max-width: 1297px;
  width: 100%;
  height: 624px;
  position: relative;
  justify-content: center;
}

.category_2 h1 {
  color:var(--white);
  font-family: 'Milker';
  font-size: 155.433px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 130px;
  z-index: 1;
}

.category_2 img:nth-of-type(1) {
  width: 226.241px;
  height: 397.217px;
  transform: rotate(-70.738deg);
  left: 390px;
  z-index: 2;
  bottom: 50px;
}

.category_2 img:nth-of-type(2) {
  width: 226.241px;
  height: 397.217px;
  transform: rotate(65deg); 
  right: 360px;
  z-index: 2;
  bottom: 70px;
}

.category_2 img:nth-of-type(3) {
  height: 280px;
  transform: rotate(20deg); 
  right: 180px;
  top: 20px;
}

.category_2 img:nth-of-type(4) {
  width: 300px;
  left: 130px;
  top: 20px;
  z-index: 0;
}

.category_2 img:nth-of-type(5) {
  width: 271px;
  left: 100px;
  bottom: 200px;
  z-index: 1;
}

.category_2 img:nth-of-type(6) {
  width: 200px;
  right: 240px;
  top: 60px;
  z-index: 1;
}

.category_3 {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 1297px;
  width: 100%;
  height: 635px;
  position: relative;
  justify-content: center;
  align-items: center;
}

.category_3 h1 {
  color:var(--white);
  text-align: center;
  font-family: Milker;
  font-size: 227.968px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  z-index: 1;
}

.category_3 img:nth-of-type(1) {
  width: 540px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  bottom: 50px;
}

.category_3 img:nth-of-type(2) {
  width: 307.411px;
  left: 0;
  z-index: 2;
  bottom: 70px;
}

.category_3 img:nth-of-type(3) {
  width: 242.648px;
  left: 0;
  top: 20px;
}

.category_3 img:nth-of-type(4) {
  width: 167.522px;
  left: 0;
  top: 0;
  z-index: 0;
}

.category_3 img:nth-of-type(5) {
  width: 349.724px;
  right: 0;
  bottom: 0;
  transform: scaleX(-1);
  z-index: 1;
}

.category_3 img:nth-of-type(6) {
  width: 196.882px;
  right: 0;
  top: 100px;
  z-index: 1;
}

.category_3 img:nth-of-type(7) {
  width: 158.887px;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.section_3 {
  background-image: url(assets/sec3_bg.png);
  display: flex;
  flex-direction: column;
  gap: 290px;
  padding: 91px 30px;
  box-sizing: border-box;
  background-repeat: no-repeat;
  width: 100%;
  background-size: cover;
  background-attachment: fixed;
}

.section_3 h1 {
  color: var(--white, #FFF8EC);
  font-family: 'Milker';
  font-size: 51px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px; /* 117.647% */
}

.sec3_bottom {
  max-height: 245px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sec3_bottom p {
  color: var(--white, #FFF8EC);
  text-align: center;
  font-family: 'Poppins';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 257px;
}

.sec3_bottom_numbs {
  display: flex;
  gap: 55px;
  align-self: flex-end;
}

.numbers {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.sec3_bottom_numbs h4 {
  color: var(--white, #FFF8EC);
  text-align: center;
  font-family: 'Milker';
  font-size: 96px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px; /* 62.5% */
}

.sec3_bottom_numbs p {
  color: var(--white, #FFF8EC);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: left;
}

.section_4 {
  display: flex;
  flex-direction: column;
  gap: 85px;
  align-items: center;
  justify-content: center;
  margin: 143px 0;
}

.sec4_cards_holder {
  display: flex;
  gap: 40px;
}

.sec4_card {
  border-radius: 30px;
  background: var(--white, #FFF8EC);
  width: 357px;
  height: fit-content;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sec4_3dwrapper {
  border-radius: 30px;
  background: var(--orange, #E74723);
  height: 288px;
  width: 310px;
  position: relative;
  display: flex;
  align-items: start;
  justify-content: center;
  overflow: hidden;
}

.sec4_card_text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sec4_card_text h4 {
  color: var(--red, #430D0D);
  text-align: center;
  font-family: 'Poppins';
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
}

.sec4_card_text  p:nth-of-type(1) { 
  color: var(--red, #430D0D);
  text-align: center;
  font-family: 'Poppins';
  font-size: 15.3px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px; /* 189.542% */
}

.sec4_card_text  p:nth-of-type(2) { 
  color: var(--orange, #E74723);
  text-align: center;
  font-family: 'Poppins';
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 156.863% */
}

.sec4_card button {
  display: flex;
  padding: 15px 115px;
  box-sizing: border-box;
  border-radius: 40px;
  background: var(--green, #0E3D2B);
  color: var(--white, #FFF8EC);
  text-align: center;
  font-family:'Poppins';
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 176.471% */
}

.section_4 model-viewer {
  width: 400px;
  height: 290px;
  z-index: 999;
}

.section_5 {
  background: var(--yellow, #FFB059);
  height: 664px;
  display: flex;
  flex-direction: column;
  gap: 85px;
  position: relative;
  justify-content: center;
  align-items: center;

}

.section_5 > img {
  width: 369px;
  height: 246px;
  position: absolute;
  z-index: 0;
}

.section_5 > img:first-of-type {
  left: 0;
  top: 0;
}

.section_5 > img:last-of-type {
  transform: scaleX(-1);
  right: 0;
  bottom: 0;
}

.sec5_cards_wrapper {
  display: flex;
  gap: 26px;
  z-index: 1;
}

.sec5_card {
  border-radius: 30px;
  background: var(--orange, #E74723);
  padding: 25px;
  box-sizing: border-box;
  min-width: 262px;
  max-width: 262px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sec5_card h4 {
  color: var(--white, #FFF8EC);
  text-align: center;
  font-family: 'Poppins';
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 164.706% */
}

.sec5_card p {
  color: var(--white, #FFF8EC);
  text-align: center;
  font-family: 'Poppins';
  font-size: 13.6px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.red h2, .red h3 {
  color: var(--red, #430D0D);
}

.white h2, .white h3 {
  color: var(--white);
}

.section_6 {
  display: flex;
  flex-direction: column;
  gap: 85px;
  width: 100%;
  padding: 91px 0;
  box-sizing: border-box;
  align-items: center;
}

.testimonials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  height: fit-content;
}

.testimonial_content {
  display: flex;
  align-items: center;
  width: 80%;
  position: relative;
  justify-content: center;
  gap: 0;
}

.testimonial_quotes {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  min-height: 425px;
  max-width: 547px;
  min-width: 547px;
  flex-shrink: 0;
}

.testimonial_quote {
  position: absolute;
  width: 547px;
  height: 337px;  
  padding: 30px;
  box-sizing: border-box;
  border-radius: 200px 20px 20px 200px;
  background: var(--yellow);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: all 0.5s ease;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
}

.testimonial_quote.active {
  opacity: 1;
}

.testimonial_quote p {
  color: var(--red, #430D0D);
  font-family: 'Poppins';
  font-size: 35px;
  font-style: italic;
  font-weight: 900;
  line-height: normal;
}

.testimonial_green {
  position: absolute;
  border-radius: 100px 0 0 100px;
  background: #0E3D2B;
  width: 340px;
  height: 160px;
  top: 287px;
  right: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 60px;
  box-sizing: border-box;
}

.stars {
  color: var(--yellow, #FFB059);
  font-size: 28px;
  letter-spacing: 4px;
}

.testimonial_author {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial_author strong {
  color: var(--white);
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.testimonial_author p {
  color: var(--white);
  font-family: Poppins;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.testimonial_image_wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 500px;
  max-width: 450px;
  min-width: 450px;
  flex-shrink: 0;
}

.testimonial_img {
  position: absolute;
  width: 448px;
  height: 448px;
  object-fit: cover;
  border-radius: 25px;
  opacity: 0;
  transition: all 0.5s ease;
  top: 0;
  left: 0;
}

.testimonial_img.active {
  opacity: 1;
}

.testimonial_dots {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--white);
}

.section_7 {
  background: var(--green);
  padding: 80px 30px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.newsletter-content {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.newsletter-logo {
  width: 200px;
  height: auto;
}

.newsletter-content h2 {
  color: var(--white);
  font-family: 'Milker';
  font-size: 32px;
  font-weight: 400;
  text-align: center;
}

.newsletter-content p {
  color: var(--white);
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  line-height: 24px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  width: 100%;
  max-width: 500px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 35px;
  background: var(--white);
  color: var(--red);
  font-family: 'Poppins';
  font-size: 16px;
  box-sizing: border-box;
}

.newsletter-form input::placeholder {
  color: rgba(67, 13, 13, 0.6);
}

.newsletter-form button {
  padding: 15px 40px;
  border: none;
  border-radius: 35px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #c63d1a;
}

footer {
  background: var(--white);
  padding: 50px 30px 25px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--red);
  font-family: 'Poppins';
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-social {
  display: flex;
  gap: 18px;
  margin-bottom: 15px;
}

.footer-social a {
  color: var(--red);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  color: var(--orange);
}

.footer-copyright {
  color: var(--red);
  font-family: 'Poppins';
  font-size: 11px;
  font-weight: 400;
  text-align: center;
  margin-top: 5px;
}

ul li {
  position: relative;
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--orange);
}

.nav-link.active::after {
  width: 100%;
}

.section_2_about {
  position: relative;
  height: 100vh;
  background: var(--red);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 900px;
}

.section_2_about h2 {
  position: absolute;
  color: var(--white, #FFF8EC);
  text-align: center;
  font-family: Milker;
  font-size: 128px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width:  1072px;
}

.spin_images {
  position: relative;
  width: 1000vw;
  height: 60vh;
}

.spin_images img {
  position: absolute;
  height: 512px;
  width: auto;
  max-width: 358px;
}

.spin_images img:nth-of-type(1) {
  left: 0;
  top: 60%;
  display: none;
}

.spin_images img:nth-of-type(2) {
  left: 0;
  top: 15%;
  transform: rotate(-20deg);
}

.spin_images img:nth-of-type(3) {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 32%;
}

.spin_images img:nth-of-type(4) {
  right: 0;
  top: 15%;
  transform: rotate(20deg);
}

.spin_images img:nth-of-type(5) {
  right: 8%;
  bottom: 5%;
  display: none;
}

.section_3_about {
  background: var(--yellow, #FFB059);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 40px;
  box-sizing: border-box;
  position: relative;
  height: 978px;
}

.section_3_about model-viewer {
  width: 550px;
  height: 821px;
  overflow: visible;
}

.section_3_about h2 {
  position: absolute;
  color: var(--white, #FFF8EC);
  text-align: center;
  font-family: 'Milker';
  font-size: 128px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.section_3_about h2:nth-of-type(1) {
  top: 200px;
  left: 320px;
}

.section_3_about h2:nth-of-type(2) {
  top: 400px;
  right: 280px;
}

.section_3_about h2:nth-of-type(3) {
  bottom: 200px;
  left: 230px;
}

.HotspotAnnotation {
  position: relative;
  /* transform: translate(-50%, -50%); */
  display: flex;
  gap: 10px;
  align-items: center;
  display: flex;
  padding: 20px 10px;
  color: var(--red, #430D0D);
  font-family: 'Poppins';
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: default;
}

.Hotspot {
  background: #FFC879;
  border-radius: 40px;
  border: 3px solid #230707;
  box-shadow: 0 18px 25px rgba(0, 0, 0, 0.18);
}

.hotspot-number {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FFF8EC;
  border: 3px solid #230707;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Milker';
  font-size: 10px;
}

.section_4_about {
  height: fit-content;             
  background: var(--red);
}

.timeline_wrapper {
  position: relative;
  height: fit-content;             
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.timeline_inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 40px 160px;
}

.timeline_inner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 130px;
  background: var(--orange);
  transform: translateX(-50%);
  opacity: 0;
}

.timeline_line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 130px;
  height: 0;
  background: var(--orange);
  transform: translateX(-50%);
  transform-origin: top center;
  z-index: 0;
}

.timeline_item {
  position: relative;
  margin-top: -100px;
  z-index: 1;
}

.timeline_card {
  max-width: 320px;
  background: transparent;
  color: var(--white);
}

.timeline_card img {
  width: 100%;
  display: block;
  margin-bottom: 14px;
}

.timeline_title {
  color: var(--yellow);
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  text-align: center;
  text-transform: uppercase;
}

.timeline_card p {
  font-family: 'Poppins';
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}


.timeline_item_left .timeline_card {
  margin-right: auto;
}

.timeline_item_right .timeline_card {
  margin-left: auto;
}


.timeline_year {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Milker';
  font-size: 80px;
  font-weight: 400;
  color: var(--white);
}

.year1 {
  transform: translate(-88%, -50%);
}

.year2 {
  transform: translate(-23%, -50%);
}

.titlered {
  color: var(--red);
}

.timeline_item::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 38%;
  width: 200px;    
  height: 120px;     
  background: url('assets/dotted line.svg') no-repeat center;
  background-size: contain;
  transform: translate(-50%, -50%);
}

.timeline_item_left::after {
  right: 50%;
}

.timeline_item_right::after {
  left: 55%;
  transform: scaleX(-1);
  bottom: 30px;
}

.section_3 h1 {
  color: var(--white, #FFF8EC);
  font-family: 'Milker';
  font-size: 51px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px; /* 117.647% */
}

.sec3_bottom {
  max-height: 300px;
  gap: 40px;
}

.sec3_bottom p {
  width: 257px;
}

.sec3_bottom_numbs {
  gap: 55px;
}

.numbers {
  align-items: start;
}

.sec3_bottom_numbs h4 {
  font-size: 86px;
}

.section_4 {
  gap: 30px;
  margin: 100px 0;
}

.sec4_cards_holder {
  transform: scale(0.8);
}

.section_2_products {
 height: 800px;
 display: flex;
 align-items: center;
 justify-content: center;
}

.section_2_products model-viewer {
  width: 800px;
  height: 800px;
}

.sec2_left {
  background: var(--green);
  width: 842px;
  height: 339px;
  padding-top: 30px;
  box-sizing: border-box;
  border-radius: 23.447px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: -170px;
  
}

.farm_fresh_content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.section_2_products h2 {
  color: var(--white);
  font-family: Milker;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.farm_fresh_content p {
  color: var(--white);
  font-family: 'Poppins';
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}

.section_3_products {
  background: var(--red);
  padding: 40px;
}

.products_topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.sort_by {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sort_by label {
  color: var(--white);
  font-family: 'Poppins';
  font-size: 16px;
}

.sort_by select {
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--white);
  color: var(--red);
  font-family: 'Poppins';
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.view_toggle {
  display: flex;
  gap: 10px;
}

.view_toggle button {
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
}

.view_toggle button.active {
  background: var(--orange);
  border-color: var(--orange);
}

.products_main {
  display: flex;
  gap: 30px;
}

.products_sidebar {
  width: 280px;
  background: #F5E6D3;
  padding: 30px;
  border-radius: 15px;
  height: fit-content;
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
}

.products_sidebar h3 {
  color: var(--red);
  font-family: 'Poppins';
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 0;
}

.category_list {
  margin-bottom: 30px;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.category_item {
  margin-bottom: 12px;
}

.category_list a {
  color: var(--red);
  font-family: 'Poppins';
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  padding: 5px 0;
}

.category_list a:hover,
.category_list a.category_active {
  color: var(--orange);
  font-weight: 600;
}

.price_filter {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(67, 13, 13, 0.2);
}

.price_filter h3 {
  margin-bottom: 15px;
}

.price_slider {
  width: 100%;
  margin: 15px 0;
}

.price_range {
  display: flex;
  justify-content: space-between;
  color: var(--red);
  font-family: 'Poppins';
  font-size: 14px;
  width: 100%;
}

.top_rated, .top_brands {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(67, 13, 13, 0.1);
}

.top_rated:last-of-type,
.top_brands:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.rated_list, .brands_list {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.rated_item, .brand_item {
  color: var(--red);
  font-family: 'Poppins';
  font-size: 14px;
  margin-bottom: 12px;
  display: block;
  width: 100%;
}

.top_rated .stars {
  color: #FFB059;
  font-size: 14px;
  letter-spacing: 2px;
  display: inline-block;
  margin-right: 8px;
}

.top_brands li {
  cursor: pointer;
  transition: color 0.3s;
}

.top_brands li:hover {
  color: var(--orange);
}

.clear_all_btn {
  width: 100%;
  padding: 12px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Poppins';
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.clear_all_btn:hover {
  background: var(--orange);
}

.products_grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.product_card {
  background: #F5E6D3;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.product_card:hover {
  transform: translateY(-5px);
}

.product_top {
  background: #FFCF99;
  width: 100%;
  height: 239px;
  display: flex;
  flex-direction: column;
  padding: 13px;
  box-sizing: border-box;
}

.product_top_top {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.products_label1 {
  width: 28px;
  height: 26px;
  background: var(--white, #FFF8EC);
  border-radius: 5px;
  display: flex;
  padding: 5px 10px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}

.products_label2 {
  color: var(--green, #0E3D2B);
  font-family: 'Poppins';
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 14.842px; /* 133.333% */
  border-radius: 15px;
  background: var(--white, #FFF8EC);
  display: flex;
  padding: 5px 10px;
  box-sizing: border-box;
  align-items: center;
  gap: 7px;
}

.product_top_down {
  border-radius: 5px;
  background: var(--white, #FFF8EC);
  display: inline-flex;
  padding: 5px 10px;
  width: fit-content;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
  color: var(--green, #0E3D2B);
  text-align: center;
  font-family: 'Poppins';
  font-size: 14.842px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.263px; /* 150% */
}

.product_down {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 13px;
  align-items: flex-start;
}

.product_card h4 {
  color: var(--red, #430D0D);
  font-family: 'Milker';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.263px; /* 139.145% */
}

.product_card p {
  color: var(--green, #0E3D2B);
  font-family: Poppins;
  font-size: 14.842px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.263px; /* 150% */
}

.products_middle {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.product_price {
  color: var(--grey, #99A1AF);
  font-family: 'Poppins';
  font-size: 14.842px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.263px; /* 150% */
}

.product_tag {
  border-radius: 15px;
  background: var(--green, #0E3D2B);
  display: flex;
  height: fit-content;
  width: fit-content;
  padding: 5px 10px;
  box-sizing: border-box;
  color: var(--white, #FFF8EC);
  font-family: 'Poppins';
  font-size: 11.132px;
  font-style: normal;
  font-weight: 400;
  line-height: 14.842px; /* 133.333% */
}

.add_to_cart {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  border: none;
  background: var(--orange, #E74723);
  color: var(--white, #FFF8EC);
  font-family: 'Poppins';
  font-size: 12.987px;
  font-style: normal;
  font-weight: 600;
  line-height: 18.553px; /* 142.857% */
  cursor: pointer;
  transition: all 0.3 ease;
}

.add_to_cart:hover {
  background: #0a2d1f;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}

.pagination_link {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Poppins';
  font-size: 14px;
  transition: all 0.3s;
}

.pagination_link:hover,
.pagination_link.active {
  background: var(--orange);
}

.section_4_products {
  background: var(--red);
  padding: 100px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.section_4_img_left,
.section_4_img_right {
  width: 150px;
}

.section_4_text {
  flex: 1;
  text-align: center;
}

.section_4_text h2 {
  color: var(--white);
  font-family: 'Milker';
  font-size: 72px;
  font-weight: 400;
  line-height: 1.2;
}


.best_icon img {
  position: relative;
  display: inline-block;
  width: 142px;
  height: 90px;
  padding: 0 15px;
  align-self: center;
}

.section_5_products {
  background-image: url('assets/farm.png');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /* background-attachment: fixed; */
  padding: 30px 0;
}

.story_hero {
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--yellow, #FFB059);
}

.story_hero model-viewer {
  position: fixed;
  top: 12vh;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(260px, 30vw, 420px);
  height: auto;
  z-index: 99;
  pointer-events: none;
}

.section_2_story {
  padding: 120px 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.story_quote_content {
  display: flex;
  align-items: center;
}

.story_quote_block {
  width: 488px;
  height: 550px;
  border-radius: 30px;
  background: var(--orange, #E74723);
}

.story_quote_content p {
  color: var(--white, #FFF8EC);
  font-family: 'Milker';
  font-size: 79px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 673px;
}

.section_3_story {
  background: var(--green, #0E3D2B);
  width:100%;
  height: 512px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section_3_story h2 {
  width: 490px;
  color: var(--white, #FFF8EC);
  font-family: Milker;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.section_3_story img {
  width: 544px;
  height: 620.162px;
}

.knife {
  margin: -60px -30px 0 0;
  position: absolute;
  height: 692.904px;
  right: 0;
}

.knife img {
  width: 1219.308px;
  height: 692.904px;
}

.section_4_story {
  height: 1500px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.section_4_story model-viewer {
  height: 800px;
  width: 800px;
  margin-top: 300px;
}

.section_5_story img {
  width: 100%;
}

@media (max-width: 1200px) {
  .section_2_about {
    height: auto;
    min-height: auto;
    padding: 80px 5vw 120px;
  }

  .section_2_about h2 {
    font-size: clamp(56px, 8vw, 96px);
  }

  .spin_images {
    width: 100%;
    max-width: 960px;
    height: auto;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .section_3_about {
    padding: 80px 5vw;
    height: auto;
  }

  .section_3_about h2 {
    position: static;
    font-size: clamp(42px, 8vw, 82px);
    margin-bottom: 25px;
  }

  .section_3_about model-viewer {
    width: min(100%, 520px);
    height: clamp(360px, 70vw, 640px);
  }
}

@media (max-width: 900px) {
  .spin_images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .spin_images img {
    position: static !important;
    width: clamp(160px, 40vw, 260px);
    height: auto;
    transform: none !important;
  }
}

@media (max-width: 640px) {
  .section_2_about h2 {
    font-size: clamp(36px, 10vw, 56px);
  }

  .section_3_about {
    padding: 60px 24px;
  }

  .section_3_about h2 {
    font-size: clamp(36px, 12vw, 64px);
  }
}

@media (max-width: 1200px) {
  .section_2_products {
    flex-wrap: wrap;
    height: auto;
    padding: 80px 5vw;
    gap: 40px;
  }

  .sec2_left {
    width: 100%;
    margin-right: 0;
    align-items: center;
    text-align: center;
    padding: 30px;
  }

  .farm_fresh_content {
    justify-content: center;
  }

  .section_2_products model-viewer {
    position: relative;
    width: min(100%, 560px);
    height: clamp(360px, 60vw, 560px);
  }

  .products_sidebar {
    width: min(320px, 35%);
  }
}

@media (max-width: 992px) {
  .products_main {
    flex-direction: column;
  }

  .products_sidebar {
    width: 100%;
    position: static;
  }

  .products_grid {
    width: 100%;
  }
}

.product_card model-viewer {
  width: 100%;
  height: clamp(220px, 28vw, 300px);
}

@media (max-width: 640px) {
  .section_2_products {
    padding: 60px 24px;
  }

  .sec2_left {
    padding: 24px;
  }

  .section_2_products model-viewer {
    width: 100%;
    height: clamp(280px, 70vw, 400px);
  }

  .products_topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .view_toggle {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 1100px) {
  .story_hero {
    padding: 0 5vw;
  }

  .story_hero h1 {
    font-size: clamp(48px, 7vw, 76px);
  }

  .story_hero model-viewer {
    position: static;
    transform: none;
    width: min(70vw, 420px);
    height: clamp(320px, 50vw, 420px);
    margin-top: 40px;
  }

  .story_quote_content {
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .section_2_story {
    padding: 80px 5vw;
  }

  .story_quote_content {
    flex-direction: column;
    text-align: center;
  }

  .story_quote_block {
    width: min(100%, 360px);
    height: 300px;
  }

  .story_quote_content p {
    font-size: clamp(36px, 8vw, 54px);
  }

  .section_3_story {
    flex-direction: column;
    height: auto;
    padding: 60px 5vw;
    text-align: center;
  }

  .section_3_story h2 {
    width: 100%;
  }

  .section_3_story img {
    width: min(100%, 420px);
    height: auto;
  }

  .knife {
    position: relative;
    width: 100%;
    margin: 40px auto;
  }

  .knife img {
    width: 100%;
    height: auto;
  }

  .section_4_story {
    height: auto;
    padding: 80px 5vw;
  }

  .section_4_story model-viewer {
    width: min(100%, 520px);
    height: clamp(320px, 70vw, 600px);
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .story_hero h1 {
    font-size: clamp(36px, 10vw, 52px);
  }

  .story_quote_block {
    height: 200px;
  }

  .story_quote_content p {
    font-size: clamp(28px, 10vw, 42px);
  }

  .section_3_story {
    gap: 40px;
  }

  .knife {
    display: none;
  }
}

@media (max-width: 1200px) {
  
   .hero_inside h1 {
    font-size: 96px;
  }

  .section_2_about {
    padding: 60px 20px;
  }

  .timeline_year {
    font-size: 72px;
  }

  .products_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section_4_text h2 {
    font-size: 56px;
  }

 .categories-wrapper {
    transform: scale(0.8);
  }

  
.category_1 img:nth-of-type(1) {
  width: 226.241px;
  height: 397.217px;
  transform: rotate(-70.738deg);
  aspect-ratio: 226.24/397.22;
  left: 230px;
  z-index: 2;
  bottom: 50px;
}

.category_1 img:nth-of-type(2) {
  width: 226.241px;
  height: 397.217px;
  aspect-ratio: 226.24/397.22; 
  transform: rotate(65deg); 
  right: 200px;
  z-index: 2;
  bottom: 70px;
}

.category_1 img:nth-of-type(3) {
  height: 267.69px;
  transform: rotate(-20deg);
  flex-shrink: 0;
  top: 0;
  left: 220px;
}

.category_1 img:nth-of-type(4) {
  height: 192.612px;
  aspect-ratio: 226.24/397.22; 
  transform: rotate(60deg); 
  right: 180px;
}

.category_1 img:nth-of-type(5) {
  width: 211.13px;
  height: 140.753px;
  right: 70px;
  top: 280px;
  z-index: 2;
}

.category_1 img:nth-of-type(6) {
  width: 129.527px;
  height: 86.352px;
  left: 0;
  top: 60px;
  z-index: 2;
}

.category_1 img:nth-of-type(7) {
  width: 140.753px;
  height: 207.244px;
  aspect-ratio: 140.75/207.24;
  left: 60px;
  bottom: 90px;
}

.category_1 img:nth-of-type(8) {
  width: 179.611px;
  height: 200.336px;
  right: 200px;
  top: 0;
}


.category_2 img:nth-of-type(1) {
  width: 226.241px;
  height: 397.217px;
  transform: rotate(-70.738deg);
  left: 390px;
  z-index: 2;
  bottom: 50px;
}

.category_2 img:nth-of-type(2) {
  width: 226.241px;
  height: 397.217px;
  transform: rotate(65deg); 
  right: 360px;
  z-index: 2;
  bottom: 70px;
}

.category_2 img:nth-of-type(3) {
  height: 280px;
  transform: rotate(20deg); 
  right: 180px;
  top: 20px;
}

.category_2 img:nth-of-type(4) {
  width: 300px;
  left: 130px;
  top: 20px;
  z-index: 0;
}

.category_2 img:nth-of-type(5) {
  width: 271px;
  left: 100px;
  bottom: 200px;
  z-index: 1;
}

.category_2 img:nth-of-type(6) {
  width: 200px;
  right: 240px;
  top: 60px;
  z-index: 1;
}

.category_3 {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 1297px;
  width: 100%;
  height: 635px;
  position: relative;
  justify-content: center;
  align-items: center;
}

.category_3 img:nth-of-type(1) {
  width: 540px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  bottom: 50px;
}

.category_3 img:nth-of-type(2) {
  width: 307.411px;
  left: 0;
  z-index: 2;
  bottom: 70px;
}

.category_3 img:nth-of-type(3) {
  width: 242.648px;
  left: 0;
  top: 20px;
}

.category_3 img:nth-of-type(4) {
  width: 167.522px;
  left: 0;
  top: 0;
  z-index: 0;
}

.category_3 img:nth-of-type(5) {
  width: 349.724px;
  right: 0;
  bottom: 0;
  transform: scaleX(-1);
  z-index: 1;
}

.category_3 img:nth-of-type(6) {
  width: 196.882px;
  right: 0;
  top: 100px;
  z-index: 1;
}

.category_3 img:nth-of-type(7) {
  width: 158.887px;
  right: 0;
  bottom: 0;
  z-index: 1;
}

}

@media (max-width: 968px) {
  
  .section_5 {
    background: var(--yellow, #FFB059);
    height: fit-content;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 85px;
    position: relative;
    justify-content: center;
    align-items: center;

  }

  .section_5 > img {
    width: 369px;
    height: 246px;
    position: absolute;
    z-index: 0;
  }

  .section_5 > img:first-of-type {
    left: 0;
    top: 0;
  }

  .section_5 > img:last-of-type {
    transform: scaleX(-1);
    right: 0;
    bottom: 0;
  }

  .sec5_cards_wrapper {
    display: flex;
    gap: 26px;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .sec5_card {
    border-radius: 30px;
    background: var(--orange, #E74723);
    padding: 25px;
    box-sizing: border-box;
    min-width: 262px;
    max-width: 262px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .sec5_card h4 {
    color: var(--white, #FFF8EC);
    text-align: center;
    font-family: 'Poppins';
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 164.706% */
  }

  .sec5_card p {
    color: var(--white, #FFF8EC);
    text-align: center;
    font-family: 'Poppins';
    font-size: 13.6px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  nav {
    padding: 15px 20px;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .burger {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    background: var(--red);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links ul {
    flex-direction: column;
    gap: 30px;
    padding: 100px 40px;
    width: 100%;
    align-items: flex-start;
  }

  .nav-links .nav-link {
    font-size: 20px;
    padding: 10px 0;
  }

  nav > ul {
    display: none;
  }

  .section_2_about h2 {
    font-size: 80px;
    padding: 0 30px;
  }

  .timeline_inner {
    padding: 100px 30px 120px;
  }

  .timeline_year {
    font-size: 64px;
  }

  .section_2_products {
    padding: 60px 30px;
  }

  .farm_fresh_content h2 {
    font-size: 52px;
  }

  .products_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section_4_text h2 {
    font-size: 48px;
  }

  .hero_inside h1 {
    font-size: 72px;
  }

  .categories-wrapper {
    transform: scale(0.6);
  }


  .hero_inside {
    gap: 40px;
  }

  .sec3_bottom_numbs {
    gap: 30px;
  }

  .section_3 h1 {
    font-size: 51px;
  }

  .sec3_bottom {
    max-height: 300px;
    gap: 40px;
  }

  .sec3_bottom p {
    width: 360px;
  }

  .sec3_bottom_numbs {
    gap: 35px;
  }

  .numbers {
    align-items: start;
  }

  .sec3_bottom_numbs h4 {
    font-size: 62px;
  }

  .sec3_bottom_numbs p {
    text-align: left;
    width: 200px;
  }

  .sec4_cards_holder {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section_5 {
    background: var(--yellow, #FFB059);
    height: fit-content;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 85px;
    position: relative;
    justify-content: center;
    align-items: center;

  }

  .section_5 > img {
    width: 369px;
    height: 246px;
    position: absolute;
    z-index: 0;
  }

  .section_5 > img:first-of-type {
    left: 0;
    top: 0;
  }

  .section_5 > img:last-of-type {
    transform: scaleX(-1);
    right: 0;
    bottom: 0;
  }

  .sec5_cards_wrapper {
    display: flex;
    gap: 26px;
    z-index: 1;
    flex-wrap: wrap;
  }

  .sec5_card {
    border-radius: 30px;
    background: var(--orange, #E74723);
    padding: 25px;
    box-sizing: border-box;
    min-width: 262px;
    max-width: 262px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .sec5_card h4 {
    color: var(--white, #FFF8EC);
    text-align: center;
    font-family: 'Poppins';
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 164.706% */
  }

  .sec5_card p {
    color: var(--white, #FFF8EC);
    text-align: center;
    font-family: 'Poppins';
    font-size: 13.6px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .section_6 {
    display: flex;
    flex-direction: column;
    gap: 85px;
    width: 100%;
    padding: 91px 0;
    box-sizing: border-box;
    align-items: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }

.testimonials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  height: fit-content;
}

.testimonial_content {
  display: flex;
  align-items: center;
  width: 80%;
  position: relative;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}

.testimonial_quotes {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
  order: 2;
  min-height: 380px;
  width: 100%;
  margin-bottom: 0;
}

.testimonial_quote {
  position: absolute;
  width: 90%;
  max-width: 520px;
  height: 300px;  
  padding: 25px;
  box-sizing: border-box;
  border-radius: 200px 20px 20px 200px;
  background: var(--yellow);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: all 0.5s ease;
  align-items: center;
  justify-content: center;
  top: 0;
  right: auto;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial_quote.active {
  opacity: 1;
}

.testimonial_quote p {
  color: var(--red, #430D0D);
  font-family: 'Poppins';
  font-size: 28px;
  font-style: italic;
  font-weight: 900;
  line-height: normal;
}

.testimonial_green {
  position: absolute;
  border-radius: 100px 0 0 100px;
  background: #0E3D2B;
  width: 400px;
  height: 140px;
  top: 250px;
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 60px;
  box-sizing: border-box;
}

.stars {
  color: var(--yellow, #FFB059);
  font-size: 28px;
  letter-spacing: 4px;
}

.testimonial_author {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial_author strong {
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.testimonial_author p {
  font-family: Poppins;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.testimonial_image_wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 400px;
  min-height: 400px;
  max-width: 450px;
  width: 100%;
  order: 1;
  margin-bottom: 0;
  flex-shrink: 0;
}

.testimonial_img {
  position: absolute;
  width: 85%;
  max-width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 25px;
  opacity: 0;
  transition: all 0.5s ease;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial_img.active {
  opacity: 1;
}

.products_grid {
  grid-template-columns: repeat(2, 1fr);
}

.section_4_text h2 {
  font-size: 56px;
}

  .section_2_products {
    flex-direction: column;
    text-align: center;
  }

  .products_main {
    flex-direction: column;
  }

  .products_sidebar {
    width: 100%;
    position: static;
  }

  .products_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section_4_products {
    flex-direction: column;
  }

  .section_4_img_left,
  .section_4_img_right {
    width: 100px;
    height: 100px;
  }

  .section_4_text h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .hero_inside h1 {
    font-size: 48px;
  }

  .hero_inside {
    gap: 30px;
    padding: 0 20px;
  }

  .pasture, .orchard {
    font-size: 12px;
  }

   .categories-wrapper {
      transform: scale(0.45);
    }
      .sec3_bottom_numbs {
      gap: 30px;
    }

  .section_3 h1 {
    font-size: 80px;
    text-align: center;
  }

  .sec3_bottom {
    max-height: none;
    gap: 50px;
    align-items: center;
  }

  .sec3_bottom p {
    width: 360px;
  }

  .sec3_bottom_numbs {
    gap: 35px;
  }

  .numbers {
    align-items: center;
  }

  .sec3_bottom_numbs h4 {
    font-size: 90px;
  }

  .sec3_bottom_numbs p {
    text-align: center;
    width: 240px;
  }

  .section_3 {
    padding: 60px 20px;
    gap: 40px;
    align-items: center;
  }

  .section_3 h1 {
    font-size: 36px;
    width: 500px;
  }

  .sec3_bottom_numbs {
    flex-direction: column;
    gap: 30px;
    align-self: center;
  }

  .sec3_bottom_numbs h4 {
    font-size: 64px;
  }

  .section_4 {
    margin: 100px 0;
    gap: 0;
  }

  .section_5 {
    padding: 60px 20px;
    height: auto;
    gap: 60px;
  }

  .section_5 > img {
    width: 200px;
    height: 150px;
  }

  .sec5_card {
    min-width: 100%;
    max-width: 100%;
  }

  .section_6 {
    padding: 60px 20px;
    gap: 60px;
  }

  .testimonial_content {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 30px;
  }

  .testimonial_quotes {
    order: 2;
    align-items: center;
    min-height: 360px;
    width: 100%;
    margin-bottom: 0;
  }

  .testimonial_quote {
    position: absolute;
    width: 90%;
    max-width: 480px;
    height: 280px;  
    padding: 20px;
    top: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .testimonial_quote p {
    font-size: 25px;
    text-align: center;
  }

  .testimonial_green {
    position: absolute;
    width: 85%;
    max-width: 320px;
    height: 120px;
    top: 230px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    padding: 30px;
  }

  .testimonial_image_wrapper {
    order: 1;
    width: 100%;
    max-width: 450px;
    min-width: auto;
    height: 350px;
    min-height: 350px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .testimonial_img {
    width: 90%;
    max-width: 350px;
    height: 350px;
    left: 50%;
    transform: translateX(-50%);
  }

  .section_7 {
    padding: 60px 20px;
  }

  .newsletter-content h2 {
    font-size: 28px;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-links a {
    font-size: 16px;
  }
  

     .categories-wrapper {
      transform: scale(0.37);
    }

    .section_2_about h2 {
    font-size: 40px;
    padding: 0 20px;
    }

  .section_1 .hero_inside h1 {
    font-size: 48px;
  }

  .products_grid {
    grid-template-columns: 1fr;
  }

  .section_4_text h2 {
    font-size: 32px;
  }

  .spin_images img {
    height: 300px;
    max-width: 250px;
  }

  .spin_images img:nth-of-type(2) {
    left: 10%;
    top: 20%;
  }

  .spin_images img:nth-of-type(3) {
    width: 40%;
    top: 10%;
  }

  .spin_images img:nth-of-type(4) {
    right: 10%;
    top: 20%;
  }

  .bite-layout {
    height: 500px;
  }

  .bite-top {
    top: 50px;
    left: 20px;
    font-size: 80px;
  }

  .bite-right {
    top: 120px;
    right: 20px;
    font-size: 80px;
  }

  .bite-bottom {
    bottom: 50px;
    left: 20px;
    font-size: 80px;
  }

  .bite-plant-wrapper {
    width: 250px;
    height: 350px;
  }

  .hotspot-card {
    max-width: 280px;
    padding: 12px 20px 12px 60px;
    font-size: 12px;
  }

  .hotspot-number {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .timeline_inner {
    padding: 80px 20px 100px;
  }

  .timeline_inner::before {
    width: 4px;
  }

  .timeline_card {
    max-width: 100%;
  }

  .timeline_item_left .timeline_card,
  .timeline_item_right .timeline_card {
    margin: 0 auto;
    padding: 0;
  }

  .timeline_year {
    font-size: 48px;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 20px auto;
    text-align: center;
  }

  .year1,
  .year2 {
    transform: none;
    left: auto;
    position: relative;
    margin: 20px auto;
  }

  .timeline_item::after {
    display: none;
  }

  .section_2_products {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }

  .farm_fresh_content {
    max-width: 100%;
    text-align: center;
  }

  .farm_fresh_content h2 {
    font-size: 42px;
  }


  .products_topbar {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .products_sidebar {
    width: 100%;
    position: static;
  }

  .section_4_products {
    padding: 60px 20px;
  }

  .section_4_text h2 {
    font-size: 28px;
  }

  .section_4_img_left,
  .section_4_img_right {
    width: 80px;
    height: 80px;
  }

  .section_5_products {
    padding: 80px 20px;
  }

  .apple_pear_panel {
    padding: 30px 20px;
  }

  .apple_pear_panel h2 {
    font-size: 36px;
  }
}
