/*
Theme Name: De la Fermier
Theme URI: https://min-code.com
Author: MinCode Group
Author URI: https://min-code.com
Version: 1.0
Text Domain: #
*/

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 62.5%;
}

:root {
  --green: #7ABE37;
  --dark-green: #002011;
}

body {
  font-size: 1.8rem;
  line-height: 150%;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  width: 100%;
  color: var(--dark-green);
}

section {
  scroll-margin-top: 120px;
}

.sticky_position {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  align-self: flex-start;
}

.d-flex {
  flex-wrap: wrap;
}

.h1,
h1 {
  font-size: 6rem;
  line-height: 140%;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 900;
}

.h2,
h2 {
  font-size: 5rem;
  line-height: 140%;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 900;
}

.h3,
h3 {
  font-size: 4rem;
  line-height: 140%;
  font-weight: 900;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.h4,
h4 {
  font-size: 3rem;
  line-height: 140%;
  font-weight: 900;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.h5,
h5 {
  font-size: 2.4rem;
  line-height: 140%;
  font-weight: 900;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.h6,
h6 {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0
}

p {
  font-size: 1.8rem;
  line-height: 150%;
  margin-bottom: 30px;
  color: var(--dark-green);
}

a {
  color: var(--green);
  font-size: 1.8rem;
  line-height: 150%;
  transition: 0.3s;
  text-decoration: none;
}

a:hover {
  color: var(--dark-green);
  transition: 0.3s;
}

ul {
  margin-bottom: 0;
}

b, strong {
  font-weight: 900
}

img {
  width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1470px;
  padding: 0 15px;
  margin: auto;
}


a.main_button {
  font-size: 1.8rem;
  line-height: 120%;
  padding: 16px 40px;
  text-decoration: none;
  display: block;
  width: fit-content;
  transition: 0.3s;
  border-radius: 30px;
  color: white;
  font-weight: 500;
}

a.main_button.dark_button {
  background: var(--dark-green);
}

a.main_button.dark_button:hover {
  background: var(--green);
}

a.main_button.light_button {
  background: var(--green);
}

a.main_button.light_button:hover {
  background: var(--dark-green);
}

.divider-40 {
  height: 4rem;
}

.divider-60 {
  height: 6rem;
}

.divider-80 {
  height: 8rem;
}

.divider-90 {
  height: 9rem;
}

.divider-100 {
  height: 10rem;
}

.divider-120 {
  height: 12rem;
}

.main_menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  padding-left: 0;
  gap: 25px;
}

.main_menu ul li a {
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  color: var(--dark-green);
  transition: 0.3s;
  position: relative;
}

.header.active .mobile__menu {
  background: var(--dark-green);
}

.header.active .main_menu ul li a {
  color: white;
}

.header.active .main_menu ul li a:hover {
  color: var(--dark-green)
}

.main_menu ul li a:hover {
  color: var(--green)
}

.header.active {
  transition: transform 0.2s ease, background 0.2s ease;
  background: var(--green);
  z-index: 9999;
}

.header.active .hedear_content_button a {
  background: var(--dark-green)
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal .form_cta .button_field input {
  background: var(--green);
  border-color: var(--green);
}

.modal .form_cta .button_field input:hover {
  background: var(--dark-green);
  border-color: var(--dark-green);
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 30px;
  border: 1px solid #888;
  border-radius: 8px;
  width: 80%;
  max-width: 760px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s;
}

.modal-content .close {
  color: white;
  width: 40px;
  height: 40px;
  font-size: 30px;
  line-height: 42px;
  text-align: center;
  border-radius: 100%;
  background: var(--dark-green);
  position: absolute;
  right: -19px;
  top: -17px;
}

.modal-content .close:hover,
.modal-content .close:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}


.modal-content input,
.modal-content textarea {
  border-color: #ccc
}

.modal-content textarea {
  width: 100%;
  height: 120px;
  padding: 10px;
}

.modal-content .form_short {
  padding-left: 0;
  margin-top: 30px;
}

.mobile__nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100vh;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.6);
  z-index: 9999;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile__nav.active {
  right: 0;
  border-radius: 30px;
}

.mobile__nav__inner {
  padding: 40px 20px;
  padding-top: 80px;
}

.close__mobile {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu {
  list-style: none;
  padding: 0;
}

.mobile-menu li {
  margin-bottom: 15px;
}

.mobile-menu a {
  text-decoration: none;
  font-size: 18px;
  color: #333;
}


@media (min-width: 1101px) {
  .mobile__menu {
    display: none;
  }
}

@media only screen and (max-width: 1100px) {
  .header_menu .col-md-9 {
    display: none!important
  }
  .mobile__menu {
    position: absolute;
    display: block;
    height: 54px;
    width: 54px;
    background: var(--green);
    left: auto;
    right: 15px;
    margin: auto;
    border-radius: 100%;
    cursor: pointer;
    z-index: 99;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.2s
  }
  .mobile__menu span {
    height: 2px;
    width: 20px;
    position: absolute;
    margin-left: 17px;
    margin-bottom: 1px;
    top: 20px;
    border-radius: 0;
    transition: .5s;
    background: white;
  }
  .mobile__menu span:nth-child(2) {
    top: 31px;
  }
  .header_icons {
    position: relative;
    padding-right: 52px;
    margin-top: -8px;
  }
  .menu__primary {
    display: none;
  }
  .header_menu > .d-flex {
    justify-content: space-between;
  }
}

.sticky_widget {
  position: fixed;
  right: 15px;
  bottom: 30px;
  z-index: 9999;
}

.sticky_element {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  padding: 18px;
  position: relative;
  margin-bottom: 12px;
}

.sticky_element a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 15px;
  box-shadow: 0 3px 3px #00000040;
  border-radius: 100%;
}

.sticky_element.messenger a {
  padding: 11px;
}

.viber.sticky_element a {
  padding: 13px;
}

.whatsapp.sticky_element {
  background: #25D366;
}

.viber.sticky_element {
  background: #8b5ab1;
}

.phone.sticky_element {
  background: var(--green);
}

.telegram.sticky_element {
  background: #239cd7;
}

.sticky_element:last-child {
  margin-bottom: 0;
}

.hero_img {
  height: 90vh;
}

.hero_slider {
  position: relative;
}

.hero_slider:before {
  content: '';
  background: linear-gradient(50deg, #002011, #ffffff00);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 2;
}

.hero_slider .hero_intro {
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1440px;
  z-index: 9;
  color: white;
  padding-right: 40rem;
}

.hero_img img {
  height: 100%;
  object-fit: cover;
}

.hero_slider h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 160%;
  margin-top: 20px
}

.hero_buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}

.hero_buttons .main_button {
  min-width: 250px;
  text-align: center;
  border: 1px solid
}

.hedear_content_button img {
  width: 20px;
  height: 20px;
}

.hedear_content_button a {
  background: var(--green);
  color: white;
  font-size: 18px;
  padding: 12px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  font-weight: 500;
  border: 1px solid white;
}

.hedear_content_button a:hover {
  background: var(--dark-green)
}

.header.active .hedear_content_button a:hover {
  background: var(--gren)
}

.hedear_content_button {
  margin-left: 40px;
}

.header_menu .col-md-9 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.logo_site img {
  height: 64px;
  width: auto;
  border-radius: 40px;
}

.header {
  position: fixed;
  top: 20px;
  z-index: 9999;
  width: 1440px;
  background: white;
  margin: auto;
  border-radius: 50px;
  padding: 8px 0;
  left: 50%;
  transform: translateX(-50%);
}

.header_menu.container {
  padding-left: 10px
}

.cta_footer {
  background: var(--dark-green);
  color: white;
  padding-top: 70px;
  padding-bottom: 70px;
  border-bottom: 1px solid #FFFFFF20;
  margin-top: 100px
}

.cta_footer h2 {
  text-transform: uppercase;
  font-size: 36px;
}

.cta_footer h2 span {
  color: var(--green)
}

.cta_footer a.main_button {
  border: 1px solid;
  transform: translateY(-10px);
  padding: 16px 50px;
}

.cta_footer a.main_button:hover {
  background: var(--green)
}

.cta_footer .d-flex {
  align-items: flex-end;
}

.cta_footer_button {
  display: flex;
  justify-content: center;
}

footer {
  background: var(--dark-green)
}

.footer_col2 {
  border-left: 1px solid #FFFFFF20;
  border-right: 1px solid #FFFFFF20;
  padding-top: 70px;
  padding-bottom: 70px;
  padding-left: 40px;
  padding-right: 40px;
}

.copyright {
  border-top: 1px solid #FFFFFF20;
  padding-top: 30px;
  padding-bottom: 60px
}

.copyright p {
  color: white;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
}

.copyright p a {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
}

.copyright p a:hover {
  color: white;
}

.footer_col2 .footer_logo {
  width: 240px;
  margin: auto;
}

.footer_col2 p {
  color: white;
  font-size: 16px;
  line-height: 28px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.foote_socials {
  justify-content: center;
  gap: 20px;
}

.foote_socials img {
  width: 44px;
  height: 44px;
  transition: 0.3s
}

.foote_socials img:hover {
  opacity: 0.6
}

.footer_col3 {
  padding-top: 70px;
  padding-left: 70px;
}

.footer_col1 {
  padding-top: 70px;
  padding-right: 40px;
}

.footer_col3 h5 {
  color: white;
  margin-bottom: 30px;
  font-size: 20px;
}

.footer_col3 ul {
  padding-left: 0;
  list-style: none;
}

.footer_col3 ul li {
  margin-bottom: 10px;
}

.footer_col3 ul li:last-child {
  margin-bottom: 0;
}

.footer_col3 ul li a {
  color: white;
}

.footer_col3 ul li a:hover {
  color: var(--green)
}

.contact_footer img {
  width: 58px;
  height: 58px;
}

.contact_footer p {
  color: white;
  font-weight: 700;
  margin-bottom: 0;
  transition: 0.2s;
  width: calc(100% - 80px);
}

.contact_footer p span {
  display: block;
  font-size: 16px;
  margin-bottom: 0px;
  font-weight: 400;
  margin-bottom: 3px;
}

.contact_footer {
  gap: 20px;
  position: relative;
  margin-bottom: 44px;
}

.contact_footer:last-child {
  margin-bottom: 0;
}

.contact_link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.contact_footer:hover p {
  color: var(--green)
}

.why_us {
  background: var(--dark-green);
  padding: 70px 0 100px;
}

.why_us .section_title {
  color: white;
  text-align: center;
}

.why_us .section_title p {
  color: white;
}

.why_us .section_title h2 span {
  padding-bottom: 3px
}

.section_title h2 span {
  border-bottom: 5px solid var(--green);
}

.section_title p {
  margin-top: 40px;
  line-height: 30px;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.single_adv {
  background: #FFF9F6;
  border-radius: 20px;
  padding-bottom: 30px
}

.single_adv img {
  width: 60px;
  height: 60px;
  margin-top: -2px
}

.single_adv h6 {
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 24px;
  padding: 0 40px;
}

.single_adv p {
  margin-bottom: 0;
  padding: 0 40px;
  text-align: center;
}

.why_us .grid3 {
  margin-top: 50px;
}

.fruits_bg {
  padding: 50px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 0 20px 20px 0
}

.fruits_bg:before {
  content: '';
  background: #00000080;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0 20px 20px 0
}

.fruits_bg img {
  height: 520px;
  object-fit: cover;
  position: relative;
  z-index: 9
}

.fruits_content {
  padding: 50px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 20px 0px 0px 20px;
  padding-right: 100px
}

.product_content {
  line-height: 30px;
  margin-top: 40px;
}

.nr_products span {
  font-size: 60px;
  color: var(--green);
  font-weight: 700;
  display: block;
  transform: translateY(-10px);
}

.nr_products {
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-top: 70px;
}

.vegetables .fruits_bg,
.vegetables .fruits_bg:before {
  border-radius: 20px 0px 0px 20px;
}

.vegetables .fruits_content {
  border-radius: 0 20px 20px 0
}

.fruits_content .hero_buttons {
  position: absolute;
  bottom: 50px;
  left: 50px;
}

.reviews_slider{
  margin-top: 50px;
  margin-left: 50px;
  margin-right: 50px;
}

.reviews_section {
  position: relative;
  margin-bottom: 160px;
}

.reviews_section:before {
  content: '';
  background: #fff9f6;
  width: 100%;
  height: 200px;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  max-width: 1440px;
  border-radius: 0 0 20px 20px;
}

.reviews_slider .swiper-slide {
  display: flex;
  padding: 20px 20px 30px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  border-radius: 10px;
  border: 1px solid #D2D2D2;
  background: #ffffff;
}

.reviews_slider .swiper-slide h3 {
  color: #000000;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
}

.reviews_slider .swiper-slide .profile_user {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.reviews_slider .swiper-slide .profile_first {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews_slider .swiper-slide .profile_user .profile_img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 50%;
}

.reviews_slider .swiper-slide .profile_user .facebook_img {
  width: 29px;
  height: 29px;
  flex-shrink: 0;
  object-fit: contain;
}

.reviews_slider .swiper-slide p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0;
}

.total_reviews {
  display: flex;
  width: 282px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: 50px;
  padding: 12px;
  color: black;
  margin-top: 24px;
  margin-bottom: 35px;
}

.total_reviews p {
  color: #141414;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 0;
}

.stars {
  display: flex;
  gap: 5px;
}

.stars img {
  width: 14px;
  height: 12px;
  object-fit: contain;
}

.stars_total img {
  width: 14px;
  height: 12px;
  object-fit: contain;
}


.arrows_slider {
  display: flex;
  gap: 20px;
}

.arrows_slider .swiper-button-prev,
.arrows_slider .swiper-button-next {
  margin-top: 0;
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrows_slider .swiper-button-next svg {
  transform: rotate(180deg);
}

.arrows_slider .swiper-button-next::after,
.arrows_slider .swiper-button-prev::after {
  display: none !important;
}

.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
  text-align: center;
}

.how_single {
  background: #fff9f6;
  border-radius: 10px;
  padding: 30px 15px;
}

.how_single p {
  margin-bottom: 0;
}

.how_single .number {
  color: white;
  background: var(--green);
  border-radius: 100%;
  font-size: 28px;
  line-height: 26px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px
}

.how_single h6 {
  font-weight: 700;
  margin-bottom: 10px;
}

.cta_form .bg_form {
  background: var(--green);
  border-radius: 20px;
  padding: 50px 30px;
  align-items: center;
}

.form_cta {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
}

.form_cta input {
  width: 100%;
  padding: 14px 20px;
  color: var(--dark-green);
  border-radius: 10px;
  background: #f6f6f6;
  box-shadow: none;
  border: 1px solid #d2d2d2;
  font-size: 16px;
}

.form_cta .col-12 {
  padding: 0 6px;
}

.wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 12px
}

.wpcf7-list-item label input {
  width: 15px;
}

.form_cta p {
  margin-bottom: 10px;
}

.acceptance_field p {
  font-size: 14px;
  margin-top: 12px;
}

.form_cta .button_field input {
  color: white;
  background: var(--dark-green);
  border-color: var(--dark-green);
  transition: 0.3s
}

.form_cta .button_field input:hover {
  background: var(--green);
  border-color: var(--green);
}

.button_field {
  position: relative;
}

.wpcf7-spinner {
  position: absolute;
  top: 16px;
  left: 20px
}

.contact_content {
  color: white;
}

.contact_content h4 {
  font-size: 34px;
  line-height: 45px;
}

.contact_content h6 {
  margin-top: 30px;
  margin-bottom: 40px;
}

.contact_content h6 a {
  color: white;
  font-weight: 700;
  font-size: 22px;
  line-height: 34px;
}

.contact_content h6 a:hover {
  color: var(--dark-green)
}

.social_cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social_cta img {
  width: 34px;
  height: 34px;
}

.about_img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
}

.about_content {
  padding-left: 70px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.about_content .subtitle {
  color: var(--green);
  margin-bottom: 10px;
}

.about_content h2 {
  margin-bottom: 30px;
}

.about_text p {
  margin-bottom: 20px;
}

.about_text p:last-child {
  margin-bottom: 0;
}

.about_text {
  border-bottom: 1px solid;
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.single_nr h6 {
  font-size: 40px;
  font-weight: 900
}

.single_nr p {
  margin-bottom: 0;
  font-size: 16px;
}

.about_contact img {
  width: 54px;
  height: 54px;
  transition: 0.3s
}

.about_contact img:hover {
  opacity: 0.7
}

.about_contact {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.modal-content .form_cta {
  padding: 0;
  margin-top: 40px;
}

.not_content {
  margin-top: 200px;
  background: #fff9f6;
  border-radius: 30px;
  text-align: center;
  padding: 90px 40px
}

.button_cta {
  display: flex;
  justify-content: center;
}

.text_not {
  color: var(--green)
}

.page_hero.text-center {
  background: var(--dark-green);
  padding-top: 150px;
  padding-bottom: 60px;
  color: white;
}

.page_hero.text-center h1 {
  font-size: 5rem
}

.page_content h2 {
  font-size: 3.3rem;
  margin-bottom: 10px;
  margin-top: 40px
}

.page_content ul {
  padding-left: 0;
  list-style: none;
}

.page_content ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px
}

.page_content ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  border-radius: 100px;
  width: 10px;
  height: 10px;
  background: var(--green)
}

.page-template-default .cta_footer {
  margin-top: 20px
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .about_content {
    padding-left: 30px
  }
  .reviews_slider {
    margin-left: 20px;
    margin-right: 20px;
  }
  .cta_footer h2 br {
    display: none;
  }
  .contact_footer img {
    width: 50px;
    height: 50px;
  }
  .contact_footer p {
    font-size: 16px;
  }
  .footer_col1 {
    padding-right: 20px
  }
}

@media only screen and (max-width: 1500px) {
  .header {
    width: calc(100% - 30px);
  }
}

@media only screen and (max-width: 1470px) {
  .hero_slider .hero_intro {
    left: 15px;
    transform: translate(0, -50%);
    width: calc(100% - 30px);
    padding-right: 15px;
  }
}

@media only screen and (max-width: 640px) {
  .not_content {
    margin-top: 120px;
    padding: 50px 20px
  }
  .h1, h1 {
    font-size: 3rem;
  }
  .hero_slider h3 {
    font-size: 18px;
  }
  .hero_slider .hero_intro {
    padding: 0;
    text-align: center;
  }
  .hero_buttons {
    display: block;
    margin-top: 30px
  }
  .hero_buttons .main_button {
    width: 100%;
    min-width: 100%;
    margin: 10px 0
  }
  .hero_img {
    height: 80vh;
  }
  .h2, h2 {
    font-size: 2.8rem
  }
  .section_title p {
    margin-top: 30px;
    line-height: 26px;
  }
  .grid3,
  .grid4 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .grid4 {
    margin-top: 40px;
  }
  .single_adv h6 {
    margin-top: 10px;
  }
  .single_adv h6 {
    font-size: 20px;
  }
  .single_adv img {
    width: 50px;
    height: 50px;
  }
  .why_us {
    padding-bottom: 70px;
  }
  .divider-100 {
    height: 8rem;
  }
  .fruits_products1 {
    flex-direction: column-reverse;
  }
  .fruits_bg img {
    height: 240px;
  }
  .fruits_bg {
    padding: 25px;
    border-radius: 20px 20px 0px 0;
  }
  .fruits_bg:before {
    border-radius: 20px 20px 0px 0;
  }
  .fruits_content {
    padding: 20px;
    text-align: center;
    padding-top: 30px;
  }
  .product_content {
    margin-top: 20px;
  }
  .fruits_content .hero_buttons {
    position: initial;
  }
  p {
    font-size: 1.6rem;
  }
  .nr_products span {
    font-size: 40px;
    transform: translateY(-5px);
  }
  .nr_products {
    font-size: 16px;
    justify-content: center;
    margin-top: 40px;
  }
  .vegetables .fruits_bg,
  .vegetables .fruits_bg:before {
    border-radius: 20px 20px 0px 0;
  }
  .cta_form .bg_form {
    padding: 20px;
    text-align: center;
  }
  .contact_content h6 {
    margin-top: 10px;
    margin-bottom: 15px;
  }
  .social_cta {
    justify-content: center;
    margin-bottom: 30px;
  }
  .contact_content h4 {
    font-size: 28px;
  }
  .form_cta {
    padding: 10px;
    padding-top: 20px
  }
  .acceptance_field p {
    text-align: left;
    margin-top: 5px;
  }
  .logo_site img {
    height: 50px;
  }
  .header {
    top: 10px;
  }
  .mobile__menu {
    height: 48px;
    width: 48px;
  }
  .mobile__menu span {
    margin-left: 14px;
    top: 17px;
  }
  .mobile__menu span:nth-child(2) {
    top: 28px;
  }
  .about_content {
    padding-left: 0;
    padding-bottom: 0;
  }
  .about_img {
    height: 200px;
  }
  .h4, h4 {
    font-size: 2.4rem
  }
  .about_content h2 {
    margin-bottom: 20px;
  }
  .about_text {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .about_contact {
    gap: 15px;
    margin-top: 40px;
  }
  a.main_button {
    font-size: 16px;
    padding: 16px 30px;
  }
  .about_contact img {
    width: 50px;
    height: 50px;
  }
  .reviews_slider {
    margin-left: 0;
    margin-right: 0;
    margin-top: 40px;
  }
  .swiper-button-next svg,
  .swiper-button-prev svg {
    width: 32px;
  }
  .arrows_slider {
    transform: translateY(5px);
  }
  .reviews_section {
    margin-bottom: 120px;
  }
  .cta_footer h2 {
    text-transform: uppercase;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
  }
  .cta_footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .footer_col1 {
    padding-top: 40px;
    padding-right: 0;
  }
  .contact_footer {
    margin-bottom: 20px
  }
  .contact_footer img {
    width: 52px;
    height: 52px;
  }
  .footer_col2 {
    padding-left: 0;
    padding-right: 0;
    border: 0;
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: left!important
  }
  .footer_col3 {
    padding-top: 0px;
    padding-left: 0;
    padding-bottom: 30px
  }
  .footer_col2 p {
    text-align: left!important;
    margin-top: 20px;
  }
  .foote_socials {
    justify-content: flex-start;
  }
  .footer_col3 h5 {
    margin-bottom: 15px;
  }
  .how_single .number {
    margin-bottom: 20px;
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
  .mobile__nav.active {
    width: 100%;
  }
  .mobile__nav__inner ul {
    padding-left: 0;
    list-style: none;
    text-align: center;
    margin-bottom: 30px
  }
  .mobile__nav__inner ul li {
    margin-bottom: 10px
  }
  .mobile__nav__inner ul li a {
    color: var(--dark-green);
    font-size: 20px;
    font-weight: 600;
  }
  .h3, h3 {
    font-size: 3rem
  }
  .modal-content .form_cta {
    margin-top: 20px
  }
  .modal-content {
    width: 94%;
    padding: 30px 20px
  }
  .modal-content .close {
    right: -6px;
    top: -10px;
  }
  .vegetables .fruits_content,
  .fruits_content {
    border-radius: 0 0 20px 20px
  }
  .hedear_content_button {
    margin-left: 0px;
    text-align: center;
    width: 100%;
  }
  .header.active .hedear_content_button a {
    width: 100%;
  }
  .modal-content {
    width: 90%;
  }
}

@media (min-width: 641px) and (max-width: 1023px) {
  .h1, h1 {
    font-size: 5rem;
  }
  .hero_slider .hero_intro {
    text-align: center;
  }
  .hero_buttons {
    justify-content: center;
  }
  .hero_img {
    height: 80vh;
  }
  .grid3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .single_adv h6 {
    margin-top: 0;
  }
  .single_adv h6 br {
    display: none
  }
  .fruits_products1 {
    flex-direction: column-reverse;
  }
  .fruits_products .col-12 {
    width: 100%;
  }
  .fruits_bg img {
    height: 400px;
  }
  .fruits_bg:before,
  .fruits_bg,
  .vegetables .fruits_bg,
  .vegetables .fruits_bg:before {
    border-radius: 20px 20px 0px 0;
  }
  .vegetables .fruits_content,
  .fruits_content {
    border-radius: 0 0 20px 20px
  }
  .fruits_content {
    padding: 30px;
  }
  .fruits_content .hero_buttons {
    position: initial;
    justify-content: flex-start;
  }
  .h2, h2 {
    font-size: 4.4rem
  }
  .grid4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .cta_form .bg_form {
    padding: 20px
  }
  .contact_content h4 {
    font-size: 26px;
  }
  .contact_content h6 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .form_cta {
    padding: 15px;
    padding-top: 20px
  }
  .about_content {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0px;
  }
  .about_us .col-12 {
    width: 100%;
  }
  .about_img {
    height: 400px;
    margin-bottom: 30px;
  }
  .about_nr.grid3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .reviews_slider {
    margin-left: 0;
    margin-right: 0;
  }
  .cta_footer h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }
  .cta_footer h2 br {
    display: none;
  }
  .cta_footer .col-12 {
    width: 100%;
    text-align: center;
  }
  .footer_col1 {
    width: 100%;
    padding-right: 0;
    display: flex;
    align-items: center;
    padding-top: 50px;
    border-bottom: 1px solid #FFFFFF20;
    padding-bottom: 50px;
  }
  .contact_footer {
    margin-bottom: 0;
    justify-content: center;
    text-align: center;
  }
  .contact_footer p {
    font-size: 16px;
  }
  .footer_col2 {
    border-left: 0;
    width: 50%;
    text-align: left!important;
    padding-left: 0;
    padding-top: 50px;
  }
  .footer_col2 p {
    text-align: left!important;
  }
  .foote_socials {
    justify-content: flex-start;
  }
  .footer_col3 {
    padding-top: 50px;
    padding-left: 30px;
    padding-bottom: 50px;
  }
  .container {
    max-width: 100%;
  }
  .mobile__nav__inner ul {
    padding-left: 0;
    margin-bottom: 40px;
    list-style: none;
  }
  .mobile__nav__inner ul li {
    margin-bottom: 10px;
  }
  .mobile__nav__inner ul li a {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-green)
  }
  .hedear_content_button {
    margin-left: 0;
  }
}
