@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&family=Roboto:wght@100;300;400;500;700;900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
    background: white;
}

h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection,
b::selection,
div::selection {
    background: #02810f;
    color: white;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.theme-btn {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    padding: 15px 40px;
    color: #fff;
    margin: 20px 20px 20px 0;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    text-transform: capitalize;
    border: 2px solid;
    text-transform: uppercase;
}

.theme-btn:hover {
    background-color: #fff;
    color: #28b16d;
    border-color: #28b16d;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 73px;
    line-height: 1;
    color: #212529;
    font-weight: 300;
    margin: 0 0 17px;
}

h2 {
    font-family: 'Roboto';
    font-size: 63px;
    line-height: 1;
    color: #434343;
    font-weight: 300;
    margin: 0 0 30px;
}

h3 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 30px;
    line-height: 34px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 24px;
    line-height: 29px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 20px;
    line-height: 25px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.menuSec {
    padding: 10px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #8d8d8d;
    padding: 10px 23px;
    font-size: 17px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #02810f;
}

.menuSec li:hover>ul li:not(:last-child) {
    border-bottom: 1px solid white;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #02810f;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
    border-radius: 10px;
    overflow: hidden;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-item.active img {
    width: 100%;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators {}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}


/*banner css end*/


/*cssbyzee*/

.text-black {
    color: #000;
}

.text-green {
    color: #02810f;
}

.ptb-100 {
    padding: 100px 0;
}

.sec-head span {
    font-weight: bold;
}

.bg-green {
    background: #02810f;
}

.btn-theme {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding: 0 30px;
    border-radius: 5px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 15px;
    border: 1px solid #02810f;
    transition: 0.1s ease-in;
}

.btn-theme:hover {
    border-color: #02810f;
    background: white;
    color: black;
}

.btn-theme-1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    height: 45px;
    padding: 0 30px;
    border-radius: 5px;
    border: 3px solid #02810f;
    color: black;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: 0.1s ease-out;
}

.btn-theme-1:hover {
    border-color: #02810f;
    background-color: #02810f;
    color: white;
    box-shadow: 0px 5px 25px black;
}


/*cssbyzee*/


/*top-sec*/

.topSec {
    padding: 20px 0;
}

.head-logo-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.head-delivery span {
    font-size: 12px;
    position: relative;
    color: #8d8d8d;
}

.head-delivery i {
    font-size: 20px;
    margin: 9px;
    color: #13881f;
}

.head-delivery {
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: black;
}

a.head-logo {
    width: 140px;
}

.head-search input {
    width: 100%;
    height: 40px;
    border: 1px solid #d4d4d4;
    border-radius: 6px;
    background: #f7f7f7;
    text-indent: 10px;
    color: black;
}

.head-search button {
    position: absolute;
    right: 0;
    height: 100%;
    border: none;
    background: transparent;
    width: 50px;
    font-size: 20px;
    color: #949494;
}

.cart-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 30px;
    width: 160px;
}

.cart-box a {
    color: #6b6b6b;
    font-size: 25px;
}

.cart-box a:nth-child(2) span {
    position: absolute;
    top: -7px;
    left: -7px;
    background: #02810f;
    color: white;
    border-radius: 50%;
    font-size: 13px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
}

.top-cart-list div h5 {
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: grey;
}

.top-cart-list div h6 {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: black;
}

.top-cart-list-box {
    top: 40px;
    position: absolute;
    background-color: white;
    border-radius: 7px;
    box-shadow: 0px 0px 12px lightgrey;
    width: 180px;
    padding: 10px;
    z-index: 4;
    display: none;
    transition: 0.1s ease-in-out;
}

.top-cart-list-box li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-cart-list-box li>img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.top-cart-list-box li h5 {
    margin-bottom: 0;
    font-size: 13px;
    color: black;
    line-height: 1;
    width: 40%;
}

.top-cart-list-box li:not(:last-child) {
    margin-bottom: 11px;
    border-bottom: 1px solid lightgrey;
    padding: 5px 0;
}

.top-cart-list:hover .top-cart-list-box,
.account-box:hover .top-cart-list-box {
    display: block;
}

.user-acc img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
}

.user-acc h5 {
    font-size: 13px;
    color: black;
    margin-bottom: 0;
    width: 100px;
    margin: 0 10px;
}

.account-box {
    display: flex;
    align-items: center;
}

ul.top-cat-list {
    text-align: left;
    position: absolute;
    z-index: 9;
    background: #02810f;
    border-radius: 0 0 10px 10px;
    width: 100%;
    transition: 0.3s all;
}

ul.top-cat {
    text-align: left;
    background: #02810f;
    color: white;
    border-radius: 10px 10px 0 0;
    position: relative;
    user-select: none;
}

ul.top-cat>li {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px 10px;
    cursor: pointer;
}

.top-cat-list li {
    border-top: 1px solid white;
    display: block !important;
}

.top-cat-list li a {
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px !important;
    color: white !important;
    display: block !important;
}

.activee {
    display: none;
}

.top-cat-list li a:hover {
    transform: translateX(10px);
}

.top-cat>li i {
    background: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px white;
}

.top-contact i {
    font-size: 35px;
    color: #02810f;
    margin-right: 10px;
}

.top-contact h6 {
    font-size: 35px;
    color: #02810f;
    margin-right: 10px;
}

.top-contact h6 {
    font-size: 13px;
    color: #8d8d8d;
    margin-right: 10px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 0;
}

.top-contact h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: black;
    margin-bottom: 0;
}


/*top-sec*/


/*main-banner*/

.slider__counter {
    position: absolute;
    top: 60%;
    left: 10%;
    color: black;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

.slider__counter::before {
    position: absolute;
    content: "";
    width: 140px;
    height: 1px;
    background-color: grey;
    top: 50%;
    left: -160px;
}

.slider__counter span {
    font-size: 25px;
    color: #02810f;
    font-weight: bold;
}

.main-slider .slick-dots {
    position: absolute;
    bottom: 38%;
    left: 10%;
    display: block;
    width: 100%;
    text-align: start;
}

.main-slider .slick-prev:hover:before,
.main-slider .slick-prev:focus:before,
.main-slider .slick-next:hover:before,
.main-slider .slick-next:focus:before {
    color: white;
    outline: none;
    background: #02810f;
}

.main-slider .slick-next:before {
    content: '\f176';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    font-size: 40px;
    background: transparent;
    border-bottom: none !important;
    width: 50px;
    color: grey;
    border: 1px solid #02810f;
    height: 70px;
    border-radius: 25px 25px 0 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.main-slider .slick-prev:before {
    content: '\f175';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    font-size: 40px;
    border-top: none !important;
    opacity: 1;
    background: transparent;
    border: 1px solid #02810f;
    color: grey;
    width: 50px;
    height: 70px;
    border-radius: 0 0 25px 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.main-slider .slick-prev.slick-disabled:before,
.main-slider .slick-next.slick-disabled:before {
    opacity: 1;
}

.main-slider .slick-next {
    right: auto;
    left: 10%;
    top: 42%;
}

.main-slider .slick-prev {
    left: 10%;
    z-index: 1;
}

.ban-small-slider {
    position: absolute;
    width: 20%;
    height: 7%;
    bottom: 10%;
    right: 0;
}

img.small-ban-img {
    width: 200px;
    height: 110px;
    object-fit: contain;
}

.main-slider-box {
    height: 800px;
    padding: 100px 0 0 0;
    background-image: url(../images/main-back.jpg);
    background-position: 0% 90%;
    background-size: cover;
}

.main-banner-text h1 b {
    font-weight: 600;
}

.organic-img {
    width: 300px;
    margin: 0 auto 20px;
    position: relative;
}

.organic-img::after {
    position: absolute;
    content: "";
    background-image: url("../images/organic-leaf.png");
    width: 44px;
    height: 60px;
    background-size: cover;
    background-repeat: no-repeat;
    right: 10px;
    top: 0;
}

.main-banner-text h5 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: black;
    font-size: 22px;
}

.social-icons-banner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2%;
    z-index: 999;
}

.social-icons-banner a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 1px solid #c1c0c0;
    margin: 10px 0;
    font-size: 20px;
    border-radius: 50%;
    color: #c1c0c0;
    transition: 0.3s ease-in-out;
}

.social-icons-banner a:hover {
    background: #02810f;
    color: white;
    border-color: #02810f;
    transform: scale(1.3);
}

ul.social-icons-banner::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100px;
    top: -50%;
    background: #a1a1a1;
    left: 50%;
}

.main-banner-text {
    position: relative;
    z-index: 3;
}

img.lemon {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 54% !important;
}

img.ban-leaf-1 {
    position: absolute;
    left: 0;
    top: 10%;
}

img.ban-leaf-2 {
    position: absolute;
    bottom: 10%;
    right: 0;
}

img.ban-leaf-3 {
    position: absolute;
    top: 6%;
    left: 18%;
}

.smalltxt-ban {
    position: absolute;
    bottom: 10%;
    left: 10%;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #4d4d4c;
    text-transform: capitalize;
}

.smalltxt-ban::before {
    position: absolute;
    content: "";
    width: 100px;
    top: 50%;
    left: -120px;
    height: 1px;
    background-color: #b2b2b2;
}

.main-slider .slick-slide img {
    width: auto;
}

.main-slider .slick-slide {
    margin: 0;
}

.main-slider::after {
    position: absolute;
    content: "";
    background-image: url(../images/white-hill.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 450px;
    height: 40px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}


/*main-banner*/


/*move-down*/

.move-down {
    position: absolute;
    left: 50%;
    margin-top: 15px;
    transform: translate(-50%, -75%);
    z-index: 4;
}

.move-down>span {
    width: 70px;
    height: 70px;
    background: #02810f;
    display: flex;
    align-items: center;
    border: 1px solid white;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 0px 12px lightgrey;
    margin: auto;
}

#curved2 {
    position: absolute;
    top: 52px;
    width: 100px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: black;
    left: 50%;
    transform: translateX(-50%);
}

.move-down>span img {
    animation: 1s updown linear infinite;
}

@keyframes updown {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}


/*move-down*/


/*sel-product*/

img.sel-left-leaf {
    position: absolute;
    left: auto;
    top: 10%;
    z-index: -1;
}

img.sel-right-leaf {
    position: absolute;
    right: 0;
    top: 10%;
    z-index: -1;
}

.theme-tab.nav-item img {
    width: 200px;
    height: 140px;
    margin: 0 60px;
}

.theme-tab {
    justify-content: center;
    align-items: flex-end;
}

.theme-tab .nav-link {
    background: none;
    border: 1px solid lightgray;
    border-radius: 25px;
    color: #666666;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 17px;
    margin: 0 20px 40px 20px;
    padding: 10px 20px;
}

.theme-tab .nav-link.active,
.theme-tab .show>.nav-link {
    color: #fff;
    background-color: #02810f;
    border-color: #02810f;
}

.pro-img {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.pro-img img {
    width: 200px;
    height: 300px;
    object-fit: contain;
}

.pro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.pro-content h4 {
    font-size: 22px;
    line-height: 1;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: black;
}

.pro-content h6 {
    font-size: 22px;
    line-height: 1;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #75b200;
}

.pro-box {
    border-radius: 25px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    border: 2px solid transparent;
    margin: 15px 0;
}

.pro-box::before {
    position: absolute;
    content: "";
    background-image: url(../images/pro-grey-back.png);
    width: 100%;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    height: 60%;
    top: 0;
    left: 0;
    z-index: -1;
}

.pro-box::after {
    position: absolute;
    content: "";
    width: 0;
    height: 4px;
    border-radius: 10px;
    background: #75b200;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: 0.3s ease-in;
}

.pro-box:hover::after {
    width: 20%;
}

.pro-box:hover ul {
    top: 30px;
}

.pro-box ul {
    position: absolute;
    left: 50%;
    top: -50px;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #02810f;
    border-radius: 25px;
    transition: 0.3s ease-in-out;
}

.pro-box ul li a {
    font-size: 25px;
    color: white;
    margin: 10px 20px;
    display: block;
}

.pro-box ul li:not(:last-child) {
    border-right: 1px solid white;
}

.pro-box:hover {
    box-shadow: 0px 0px 20px lightgrey;
    border: 2px solid white;
}

.sel-slider .slick-active {
    opacity: 1;
}

.sel-slider .slick-dots li {
    width: 40px;
    height: 20px;
    margin: 0 0px;
}

.sel-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: black;
    content: "";
    width: 100%;
    height: 5px;
    background: #75b200;
    border-radius: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.sel-slider .slick-dots li button:before {
    content: "";
}

.sel-slider .slick-dots {
    position: absolute;
    display: flex !important;
    left: 50%;
    align-items: center;
    transform: translateX(-50%);
    bottom: -25px;
    display: block;
    width: auto;
    height: 5px;
    background: #e6e7e3;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}


/*sel-product*/


/* farmfood-sec */

img.farmleaf-right {
    position: absolute;
    right: -10%;
    width: 300px;
    height: 300px;
    top: -10%;
}

.farmfood-sec {
    background: linear-gradient(180deg, rgba(247, 246, 242, 1) 0%, rgba(255, 255, 255, 0) 64%);
}

img.farmleaf-left {
    position: absolute;
    left: 0;
    z-index: 0;
    top: 10%;
}

img.farmleaf-bot-right {
    position: absolute;
    top: 30%;
    right: 0;
}

img.farmleaf-bot-left {
    position: absolute;
    bottom: 0;
    left: 0;
}

.farmfood-sec h2.sec-head::before {
    position: absolute;
    content: "";
    background-image: url(../images/farmfood-main-leaf.png);
    width: 200px;
    height: 100px;
    background-size: cover;
    background-repeat: no-repeat;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.abt-qoute {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #888785;
    display: inline-block;
    margin-bottom: 0;
}

.abt-qoute::after {
    position: absolute;
    content: "";
    width: 150px;
    height: 1px;
    right: -170px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #888785ed;
}

.abt-qoute::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 1px;
    left: -170px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #888785ed;
}

.farm-q-img {
    width: 100%;
    height: 150px;
    margin-bottom: 10px;
    overflow: hidden;
}

.farm-q-img img {
    width: 50%;
    height: 100%;
    object-fit: contain;
    transition: 0.3s all;
}

.farm-q-content h5 {
    font-size: 22px;
    line-height: 1;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    color: black;
    margin-bottom: 10px;
}

.farm-q-content p {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: black;
    margin-bottom: 0;
}

.farm-box-mt {
    margin-top: 40%;
}

.farm-box-arrow {
    position: relative;
}

.farm-box-arrow::after {
    position: absolute;
    content: "";
    background-image: url(../images/right-arrow.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 130px;
    height: 80px;
}

.farm-box1-arrow::after {
    top: -20%;
    right: -20%;
}

.farm-box2-arrow::after {
    width: 130px;
    height: 80px;
    top: 10%;
    right: -25%;
    transform: rotateZ(28deg);
}

.farm-box3-arrow::after {
    width: 130px;
    height: 80px;
    top: 30%;
    right: -30%;
    transform: rotateZ(58deg);
}

img.farm-big-lemon {
    margin-top: -20%;
}


/* farmfood-sec */


/* fresh-sec */

img.fresh-main-leaf {
    position: absolute;
    right: 10%;
    top: 0;
}

.fresh-card {
    height: 350px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: 0.3s ease-in-out;
}

.fresh-card:hover {
    border-color: #75b200;
}

.fresh-card>img {
    margin-bottom: 20px;
}

.fresh-card-content h5 {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 10px;
    text-transform: capitalize;
    color: #595959;
}

.fresh-card-content h6 {
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-style: italic;
    color: #75b200;
}


/* fresh-sec */


/* featured-pro */

img.featured-leaf-right {
    position: absolute;
    top: 20%;
    right: -12%;
    width: 300px;
    height: 300px;
}

.sec-head-pill {
    display: inline-block;
    background: #02810f;
    padding: 20px 40px;
    border-radius: 40px;
    position: relative;
}

.sec-head-pill::before {
    top: 50%;
    transform: translateY(-50%);
    left: -100%;
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #62c6cb;
}

.sec-head-pill::after {
    top: 50%;
    transform: translateY(-50%);
    right: -100%;
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #62c6cb;
}

.sec-head-pill h2 {
    margin-bottom: 0;
    font-size: 43px;
    line-height: 1;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: lighter;
}


/* featured-pro */


/* farmer-sale */

img.bottom-cloud {
    position: absolute;
    bottom: -90px;
    left: 0;
    height: 150px;
    width: 100%;
}

img.farm-sale-leaf-l {
    position: absolute;
    top: 0;
    left: 0;
}

img.farm-sale-leaf-r {
    position: absolute;
    top: 10%;
    right: 0;
}

section.farmer-sale {
    height: 900px;
    width: 100%;
    background: url(../images/farmer-sale-back.png) center center/cover no-repeat;
}

.sale-txt {
    position: absolute;
    top: 58%;
    left: 47%;
    transform: translate(-50%, -50%) rotate(41deg);
    font-size: 53px;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-weight: lighter;
    color: white;
    text-shadow: 0px 0px 12px #464646;
}


/* farmer-sale */


/* deal-sec */

img.deal-sec-right-leaf {
    position: absolute;
    right: 0;
    z-index: 1;
    top: 13%;
}

img.deal-sec-bottom-leaf {
    position: absolute;
    bottom: -20%;
    left: 0;
}

.deal-sec .nav {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    width: 65%;
}

.deal-sec .nav-pills .nav-link.active,
.deal-sec .nav-pills .show>.nav-link {
    color: #fff;
    background: -webkit-linear-gradient(0deg, rgba(122, 206, 207, 1) 0%, rgba(167, 209, 162, 1) 64%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.deal-sec .nav-pills .nav-link {
    color: #828282;
}

.deal-sec .nav-pills .nav-item {
    position: relative;
}

.deal-sec .nav-pills .nav-item::after {
    position: absolute;
    content: "/";
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #828282;
}

.rating::after {
    position: absolute;
    content: "";
    background: #6c757d;
    height: 100%;
    width: 2px;
    left: 56%;
}

.rating div {
    font-size: 13px;
    line-height: 1.4;
}

.rating div i {
    color: red;
}

ul.deal-cart {
    border-radius: 25px;
    border: 1px solid lightgrey;
    margin-bottom: 0;
}

ul.deal-cart li {
    padding: 10px 0;
    font-size: 25px;
    color: #02810f;
    position: relative;
}

ul.deal-cart li:first-child {
    border-right: 1px solid #adb5bd;
}

ul.deal-cart li a {
    margin: 0 20px;
    color: #02810f;
}

ul.deal-cart li h6 {
    font-size: 20px;
    color: #02810f;
    line-height: 1;
}

.deal-card {
    padding: 50px 0;
    border-bottom: 1px solid #e5e5e5;
}

.deal-img span {
    position: absolute;
    background: #ff9a38;
    padding: 0px 10px;
    border-radius: 25px;
    font-size: 11px;
    color: white;
    top: 10%;
    right: 15%;
    font-family: 'Montserrat', sans-serif;
}

.rating {
    margin: 20px 0;
}

ul.deal-cart li del {
    color: darkgray;
}

.deal-img {
    width: 200px;
    height: 100%;
    overflow: hidden;
}

.deal-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* big-deal-card */

.big-deal-card .deal-img.position-relative {
    width: 100%;
    height: 300px;
    margin-bottom: 10px;
    overflow: auto;
}

.big-deal-card {
    box-shadow: 0px 0px 12px lightgrey;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    z-index: 1;
    background: white;
    transform: rotateY(35deg);
}

.bid-deal-perspective::before {
    position: absolute;
    content: "";
    background-color: #02810f;
    width: 110%;
    transform: rotateY(-755deg);
    height: 120%;
    top: -10%;
    border-radius: 10px;
    z-index: -1;
}

.bid-deal-perspective {
    perspective: 2000px;
}

.big-deal-card .rating {
    width: 50%;
    margin: 20px auto;
}

.big-deal-card ul.deal-cart {
    width: 50%;
    margin: auto;
}


/* big-deal-card */


/* deal-sec */


/* testimonial */

.testi-box {
    position: relative;
    padding: 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0px 0px 8px #d3d3d329;
    margin: 20px 0;
    z-index: 1;
}

.testi-box::before {
    position: absolute;
    content: "";
    background-image: url("../images/quote-back.png");
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    z-index: -1;
    background-repeat: no-repeat;
}

.testi-box i.fas.fa-quote-left {
    font-size: 40px;
    color: #02810f;
    margin-bottom: 20px;
}

.testi-box p {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: #8a8a8a;
}

.client-rat i.fas.fa-star {
    font-size: 20px;
    color: #f39f1e;
    margin: 10px 0;
}

.client-img-box {
    display: flex;
    align-items: center;
    border-radius: 99px;
    background: #f5f7fb;
    margin: 0 -20px -70px;
    padding: 10px;
    position: relative;
    z-index: 1;
    box-shadow: inset 9px 8px 8px -3px #00000008;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.cli-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    margin-right: 20px;
}

.client-img-box div h5 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    margin-bottom: 0;
}

.testi-slider .slick-list {
    padding: 30px 0;
}

.testi-slider .slick-slide {
    opacity: 1;
}

.testi-slider {
    width: 63%;
    position: absolute;
    right: 0;
}

.testimonial {
    height: 600px;
    overflow: hidden;
    background: #f5f7fb;
    z-index: 0;
}

.testimonial::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 95%;
    transform: rotate(47deg);
    background: #33993e;
    top: -25%;
    left: -10%;
    border-radius: 300px;
    z-index: -1;
}

.testi-slider .slick-current~.slick-slide .client-img-box {
    background: white;
}

.testimonial::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 95%;
    transform: rotate(47deg);
    background: white;
    bottom: -25%;
    right: -10%;
    border-radius: 300px;
    z-index: -1;
}

.testi-slider .slick-prev {
    left: -40%;
}

.testi-slider .slick-next {
    right: 130%;
}

.testi-slider .slick-prev,
.testi-slider .slick-next {
    top: 70%;
}

.testi-slider .slick-prev:before,
.testi-slider .slick-next:before {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 100;
    font-size: 40px;
    opacity: 1;
}

.testi-slider .slick-prev:before {
    content: "\f177";
    background: #ffffff3b;
    color: white;
    height: 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    border-radius: 50%;
}

.testi-slider .slick-next:before {
    content: "\f178";
    background: white;
    color: #91d6d5;
    height: 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    border-radius: 50%;
}


/* testimonial */


/*footer-sec*/

.footer-sec {
    position: relative;
    padding-top: 100px;
    z-index: 0;
    overflow: hidden;
}

.news-letter::before {
    content: '';
    position: absolute;
    left: 10%;
    top: 0;
    height: 100%;
    width: 20%;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("../images/news-letter-bg.png");
    z-index: -1;
}

.news-letter::after {
    content: '';
    position: absolute;
    right: 5%;
    top: 0;
    height: 100%;
    width: 21%;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("../images/news-letter-bg1.png");
}

.news-letter {
    position: relative;
    z-index: 0;
    padding-bottom: 0px;
}

.news-letter .news-l {
    background: #fff;
    padding: 15px 10px;
    border-radius: 10px;
    border: 1px solid #d4d4d4;
    margin: 20px 0;
}

.news-letter .news-l form {
    display: flex;
    align-items: center;
}

.news-letter .news-l i {
    width: 10%;
    color: #757575;
    font-size: 25px;
}

.news-letter .news-l input {
    width: 70%;
    border: 0;
}

.news-letter .news-l button {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border-radius: 5px;
    background: #33993e;
    color: #fff;
    text-transform: uppercase;
    border: 0;
}

.footer-s {
    padding-top: 60px;
}

.footer-s h5 {
    color: #000;
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.footer-s .nav-lis li i {
    color: #02810f;
    width: 30px;
    font-size: 18px;
}

.footer-s .nav-lis li:hover a {
    padding-left: 5px;
    color: #33993e;
}

.footer-s .nav-lis li a {
    color: #8c8c8c;
    font-size: 14px;
    line-height: 40px;
    transition: 0.3s ease-in-out;
}

.footer-s .link-list li a:hover {
    padding-left: 5px;
    color: #02810f;
}

.footer-s .fot-te-c::before {
    content: '';
    position: absolute;
    left: -35%;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #aaaaaa;
}

.footer-s .fot-te-c {
    width: 70%;
    position: relative;
    margin: 0% auto;
}

.footer-s .link-list li a {
    color: #535353;
    font-size: 14px;
    line-height: 40px;
    transition: 0.3s ease-in-out;
}

.copy-write {
    background-color: #262626;
    padding: 5px 0;
}

.copy-write p {
    margin: 0;
    color: #fff;
}

.news-letter h2 {
    font-size: 50px;
}

.copy-write img {
    height: 40px;
}

img.news-main-leaf {
    position: absolute;
    left: 50%;
    top: -25%;
    width: 200px;
}

img.footer-left-leaf {
    position: absolute;
    top: 0;
    left: 20%;
    z-index: -1;
    width: 150px;
}

.news-letter .social-icons-banner {
    position: unset;
    display: inline-flex;
    margin-top: 30px;
}

.news-letter .social-icons-banner li {
    margin: 0 10px;
}

.news-letter .social-icons-banner::before {
    display: none;
}

img.footer-right-leaf {
    position: absolute;
    right: -10%;
    top: 0;
}


/*footer-sec*/


/* inner-banner */

section.inner-banner {
    height: 70vh;
    background: url("../images/main-back.jpg");
    background-position: 0% 70%;
    background-repeat: no-repeat;
}

.inner-banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.inner-banner-text h1 {
    font-weight: bold;
}

img.inner-ban-right {
    position: absolute;
    right: 0;
    top: 20%;
}

img.inner-ban-left {
    position: absolute;
    left: 0;
    top: 10%;
}

img.inner-sec-leaf1 {
    position: absolute;
    right: -4%;
    width: 200px;
}

img.inner-sec-leaf2 {
    position: absolute;
    bottom: -20%;
    left: 0;
    z-index: -1;
}

.inner-banner::after {
    position: absolute;
    content: "";
    background-image: url(../images/white-hill.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 450px;
    height: 40px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}


/* inner-banner */


/* Login */

form.login-form {
    text-align: center;
    padding: 30px 31px;
    border-radius: 15px;
    box-shadow: 0px 0px 12px lightgrey;
}

form.login-form input::placeholder {
    opacity: 0.3;
}

form.login-form input:not(input[type=checkbox]) {
    width: 100%;
    height: 55px;
    margin: 0 0 25px;
    padding: 0 10px;
    border: 1px solid #c8c8c8;
    background: transparent;
    border-radius: 5px;
}

form.login-form h2 {
    margin: 0 0 30px;
    font-size: 35px;
    text-align: center;
    color: #000000;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    text-transform: capitalize;
}

input.btn-1 {
    background: #b90f29 !important;
    border: none !important;
    text-transform: uppercase;
    color: #fff !important;
}

.form-btm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    width: 100%;
    font-size: 13px;
    color: #918f8f;
    margin-top: 20px;
}

.reg-frombtm span {
    display: flex;
    align-items: center;
    justify-content: start;
    color: #918f8f;
    font-size: 14px;
}

.reg-frombtm {
    margin: 0 0 20px;
}

.form-btm a {
    color: #918f8f;
}

.reg-frombtm span a {
    color: #5ec6cf;
    text-decoration: underline;
}

form.login-form input::placeholder {
    color: #000;
}


/*login-page*/


/*==Contact Us==*/

.BannerContent1 {
    position: absolute;
    top: 260px;
    text-align: left;
    left: 215px;
    right: 0;
}

.BannerContent1 h2 {
    font-size: 60px;
    color: 000;
    font-weight: 500;
}

.bnr-map {
    position: relative;
    margin: 0 auto;
    float: none;
    display: table;
}

.msg-box {
    background-color: #fff;
    position: relative;
    margin-top: -285px;
    margin-left: 150px;
    border-radius: 5px;
    border-color: #0c0c02;
    z-index: 0;
    width: 78%;
}

.txt-box {
    padding: 0px;
    box-shadow: 0px 0px 22px 0px #0000001f;
    border-radius: 0;
}

.contact-map iframe {
    border-radius: 15px;
}

.cntc-box-sec {
    background-color: #02810f;
    color: #fff;
    padding: 40px 0px 120px 25px;
    list-style: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.cntc-box-sec ul {
    padding-top: 30px;
}

.cntc-box-sec li {
    list-style: none;
}

.cntc-box-sec h3 {
    color: #fff;
    font-size: 35px;
    font-weight: 500;
    padding-left: 0;
    padding-top: 20px;
}

.txt-box-sec {
    padding: 40px 20px 20px 50px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-radius: 0 !important;
}

.txt-box-sec h3 {
    color: #3e3e3e;
    font-size: 35px;
    font-weight: 500;
    padding: 20px 0 30px 0px;
    font-family: 'Roboto', sans-serif;
}

.txt-box-sec .form-control {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
    box-shadow: none;
    padding: 0;
    font-family: 'Poppins';
    color: #8C8C8C;
    font-size: 15px;
    padding-bottom: 20px;
}

.submit-btn {
    position: relative;
}

.sub-btn {
    position: absolute;
    top: 9px;
    right: -40px;
    color: white;
    border-radius: 40px;
    box-shadow: 0px 0px 12px lightgrey;
    background-color: #02810f;
    padding: 10px 13px;
}

.cntc-box-sec .msg-icon {
    font-size: 30px;
    padding-left: 10px;
    padding-top: 9px;
}

.contact-map iframe {
    width: 100%;
    height: 500px;
}

.all-section {
    padding: 80px 0;
}


/* contact-end */


/*find-dealer*/

.find-dealer-box {
    margin: 0 40px 30px;
}

.find-dealer-img {
    width: 100%;
    height: 400px;
    position: relative;
}

.delaer-email {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #02810f3b;
    font-size: 28px;
    font-family: 'Roboto';
    transition: 0.3s all;
}

.delaer-email i,
.delaer-email h4 {
    color: white;
}

.find-dealer-img:hover .delaer-email {
    opacity: 1;
}

.find-dealer-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: -5%;
    border-radius: 20px;
    transform: scale(1.1);
    width: 20%;
    height: 100%;
    border: 2px solid #02810f;
    animation: rotate 4s infinite;
}

.find-dealer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dealer-area {
    position: absolute;
    z-index: 2;
    font-size: 30px;
    color: white;
    top: 39%;
    transform: rotate(270deg);
    width: 405px;
    height: 90px;
    margin-left: -160px;
    background: #02810f;
    display: flex;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

.dealer-content h3 {
    font-size: 24px;
    text-transform: uppercase;
    color: black;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

@keyframes rotate {
    0% {
        transform: rotateY(0deg) scale(1.1);
    }
    50% {
        transform: rotateY(180deg) scale(1);
    }
    100% {
        transform: rotateY(360deg) scale(1.1);
    }
}


/*find-dealer*/


/* product-detail */

.p-big-img {
    width: 100%;
    height: 450px;
    margin-bottom: 20px;
    border: 01px solid #d2d2d2;
    border-radius: 15px;
    overflow: hidden;
}

.p-big-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-small-img {
    width: 100%;
    height: 100px;
    border: 1px solid #d2d2d2;
    border-radius: 15px;
    overflow: hidden;
}

.p-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-big-nav .slick-slide {
    opacity: 1;
}

.p-big-for .slick-next:before {
    content: '\f105';
}

.p-big-for .slick-prev:before {
    content: '\f104';
}

.p-big-for .slick-prev:before,
.p-big-for .slick-next:before {
    font-family: "Font Awesome 5 Free";
    font-size: 50px;
    line-height: 1;
    font-weight: 600;
    opacity: 1;
    color: white;
    border-radius: 100%;
}

.p-big-for .slick-next {
    right: -5%;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.p-big-for .slick-prev {
    left: -5%;
    opacity: 0;
    z-index: 2;
    transition: 0.3s ease-in-out;
}

.p-big-for {
    overflow: hidden;
}

.p-big-for:hover .slick-next {
    right: 7%;
    opacity: 1;
}

.p-big-for:hover {
    cursor: pointer;
}

.p-big-for:hover .slick-prev {
    left: 5%;
    opacity: 1;
}

.skin-2 .num-in {
    box-shadow: 0px 1px 4px rgb(0 0 0 / 15%);
    height: 40px;
    width: 150px;
    float: left;
    border: 1px solid #02810f;
    border-radius: 25px;
    cursor: pointer;
}

.skin-2 .num-in span {
    width: 40%;
    display: block;
    height: 40px;
    float: left;
    position: relative;
}

.skin-2 .num-in span.plus:after {
    transform: rotate(90deg);
}

.num-in input.in-num {
    background-color: #ffffff;
    width: 38%;
    font-family: 'Helvetica';
}

.skin-2 .num-in input {
    float: left;
    width: 20%;
    height: 40px;
    border: none;
    text-align: center;
    background: transparent;
    font-family: 'Roboto';
}

.skin-2 .num-in span:before,
.skin-2 .num-in span:after {
    content: '';
    position: absolute;
    background-color: #667780;
    height: 2px;
    width: 10px;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -5px;
}

.product-det-content h4 {
    font-size: 53px;
    line-height: 1;
    font-family: 'Roboto', sans-serif;
    color: black;
    text-transform: capitalize;
}

.price-tag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #c3ecef;
    margin-bottom: 20px;
}

.price-tag div:first-child {
    font-size: 45px;
    line-height: 1;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    color: green;
}

.price-tag div:first-child del {
    margin-right: 10px;
    font-size: 2.5rem;
    color: grey;
}

.price-tag div:last-child {
    font-size: 18px;
    color: grey;
}

.price-tag div:last-child ul {
    margin-right: 15px;
}

.price-tag i.fas.fa-star {
    color: #ffc107;
}

.add-cart-btn {
    display: inline-flex;
    height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    border-radius: 25px;
    border: 1px solid green;
    color: grey;
}

.add-cart-btn:hover {
    border: 1px solid green;
    background-color: green;
    color: white;
}

.like-btn {
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid grey;
    border-radius: 50%;
    font-size: 25px;
}

.product-det-content ul.d-flex.justify-content-between.align-items-center {
    width: 70%;
}

.product-det-content ul.social-icons-banner {
    margin-top: 40px;
    position: unset;
    display: flex;
}

.product-det-content ul.social-icons-banner::before {
    display: none;
}

.product-det-content ul.social-icons-banner li {
    margin-right: 10px;
}

.product-detail img.inner-sec-leaf2 {
    top: 50%;
}


/* product-detail */


/* MEDIA QUERY */

@media only screen and (min-width: 1200px) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .btn-theme {
        padding: 0 25px;
    }
    .head-delivery i {
        font-size: 14px;
        margin: 5px;
    }
    .cntus-content .col-12.col-xs-12.col-sm-7.col-lg-7.col-md-12.txt-box-sec {
        width: 58%;
    }
    .cntus-content .col-xs-12.col-12.col-sm-5.col-md-12.col-lg-5.cntc-box-sec {
        width: 41%;
    }
    .news-letter .col-lg-6.offset-lg-3.text-center {
        /* width: 60%; */
        /* margin: auto; */
    }
    .testi-slider .slick-prev:before {
        /* height: 40px; */
        /* width: 40px; */
    }
    .testi-slider .slick-next:before {
        /* height: 40px; */
        /* width: 40px; */
    }
    .testi-slider .slick-prev:before,
    .testi-slider .slick-next:before {
        /* font-size: 25px; */
    }
    .testi-slider .slick-prev,
    .testi-slider .slick-next {
        top: 57%;
    }
    .testi-slider .slick-next {
        right: 80%;
    }
    .testi-slider .slick-prev {
        left: 8%;
    }
    img.deal-sec-bottom-leaf {
        width: 28%;
    }
    .deal-content p {
        font-size: 12px;
        line-height: 1;
    }
    .deal-content h4 {
        /* font-size: 18px; */
    }
    .deal-sec .col-lg-8.col-md-9.col-12 {
        width: 60%;
    }
    .deal-sec .col-lg-4.col-md-3.col-12 {
        width: 40%;
    }
    .fresh-sec-right p {
        /* font-size: 12px; */
        /* line-height: 1.6; */
    }
    .fresh-card-content h5 {
        font-size: 18px;
    }
    .farm-q-content h5 {
        font-size: 16px;
    }
    .farm-box3-arrow::after {
        top: 21%;
        right: -37%;
    }
    .farm-box2-arrow::after {
        top: 10%;
        right: -33%;
    }
    .farm-box1-arrow::after {
        top: 0%;
        right: -29%;
    }
    .farm-box-arrow::after {
        width: 80px;
        height: 50px;
    }
    section.inner-banner {
        height: 50vh;
    }
    .menuSec ul li a {
        padding: 10px 10px;
        font-size: 16px;
    }
    .menuSec .col-md-6.d-none.d-md-block {
        /* width: 67%; */
    }
    .product-detail .col-lg-3.col-md-4.col-sm-6.col-12 {
        /* width: 50%; */
    }
    .footer-s .fot-te-c::before {
        left: -15%;
    }
    .footer-s .col-lg-3.col-md-6 {
        width: 50%;
    }
    .featured-pro .col-lg-3.col-md-4.col-sm-6.col-12 {
        width: 50%;
    }
    section#next-sec {
        margin-top: 50px;
    }
    .main-banner-text {
        width: 90%;
        margin: auto;
    }
    .menuSec .row {
        align-items: center;
    }
    .menuSec .col-md-2 {
        /* width: 33%; */
        /* margin-bottom: 20px; */
    }
    .topSec .row {
        align-items: center;
    }
    .topSec .col-md-4.col-sm-12.col-12:nth-child(1) {
        /* width: 60%; */
    }
    .topSec .col-md-4.col-sm-12.col-12:nth-child(2) {
        /* width: 50%; */
    }
    .topSec .col-md-4.col-sm-12.col-12:nth-child(3) {
        /* width: 50%; */
    }
    .head-search input {
        font-size: 9px;
    }
    .head-right.d-flex.justify-content-end.align-items-center {
        justify-content: space-between !important;
    }
    html {
        overflow-x: hidden;
    }
    .head-delivery {
        font-size: 8px;
        line-height: 1;
        margin-left: 10px;
    }
    a.head-logo {
        width: 120px;
    }
    .top-contact i {
        /* font-size: 20px; */
    }
    .top-contact h5 {
        font-size: 14px;
    }
    .top-contact h6 {
        font-size: 12px;
    }
    a.top-contact.d-flex {
        align-items: center;
    }
    .cart-box a {
        /* font-size: 14px; */
    }
    .sel-slider .slick-dots {
        /* width: 100%; */
    }
    .cart-box {
        margin: 0 8px;
    }
    .user-acc h5 {
        font-size: 10px;
        width: 100px;
        margin: 0 5px;
    }
    .user-acc img {
        width: 40px;
        height: 35px;
    }
    ul.top-cat>li {
        font-size: 11px;
        padding: 10px;
    }
    .top-cat-list li a {
        /* font-size: 11px !important; */
    }
    .cart-box a:nth-child(2) span {
        font-size: 10px;
        width: 15px;
        height: 15px;
    }
    form.head-search {
        margin: 20px 0;
    }
    .menuSec .col-md-2:last-child {
        /* text-align: right; */
        /* margin-top: 20px; */
        /* width: 65%; */
    }
    img.ban-leaf-3 {
        width: 15% !important;
    }
    img.ban-leaf-1 {
        width: 20% !important;
    }
    h1 {
        font-size: 40px;
    }
    img.ban-leaf-2 {
        width: 30% !important;
    }
    img.lemon {
        width: 100% !important;
    }
    .ban-small-slider {
        /* display: none; */
    }
    .main-slider .slick-next {
        top: 60%;
    }
    .main-slider .slick-prev {
        top: 68%;
    }
    .slider__counter {
        position: absolute;
        top: 80%;
    }
    .organic-img {
        width: 240px !important;
    }
    .organic-img::after {
        right: -10px;
    }
    .social-icons-banner {
        top: 50%;
    }
    .smalltxt-ban {
        bottom: 4%;
        font-size: 10px;
    }
    h2 {
        font-size: 41px;
    }
    img.sel-left-leaf {
        /* width: 23%; */
    }
    img.sel-right-leaf {
        width: 12%;
    }
    .sel-product li.nav-item img {
        /* display: none; */
        width: 140px;
        height: 110px;
        margin-bottom: 60px;
    }
    .theme-tab .nav-link {
        /* font-size: 14px; */
        /* margin: 0 5px 10px 5px; */
    }
    .theme-tab {
        justify-content: center;
        align-items: center;
        /* flex-direction: column; */
    }
    img.farmleaf-right {
        display: none;
    }
    img.farmleaf-left {
        top: 0%;
        width: 20%;
    }
    .abt-qoute::before {
        width: 50px;
        left: -55px;
    }
    .abt-qoute::after {
        width: 50px;
        right: -55px;
    }
    img.farmleaf-bot-right {
        top: 20%;
    }
    .farm-box-mt {
        /* margin-top: 0%; */
    }
    .farm-quality-box {
        /* margin: 20px 0; */
    }
    img.farmleaf-bot-left {
        width: 40%;
    }
    img.farm-big-lemon {
        /* margin-top: 0%; */
    }
    .fresh-card {
        /* height: auto; */
    }
    .fresh-card>img {
        /* width: 150px; */
        /* height: 150px; */
        /* margin: 0 auto 20px; */
    }
    .fresh-sec-right h2 {
        font-size: 36px;
    }
    .sec-head-pill::before,
    .sec-head-pill::after {}
    .sec-head-pill {
        padding: 10px 10px;
    }
    .ptb-100 {
        /* padding: 70px 0; */
    }
    img.featured-leaf-right {
        display: none;
    }
    img.farm-sale-leaf-l {
        /* width: 12%; */
    }
    img.farm-sale-leaf-r {
        /* width: 20%; */
    }
    img.bottom-cloud {
        /* bottom: -50px; */
        /* height: 80px; */
    }
    section.farmer-sale {
        height: 550px;
        background: url(../images/farmer-sale-back.png);
        background-size: cover;
        background-position: 75%;
    }
    .sale-txt {
        /* left: 42%; */
        font-size: 47px;
    }
    .deal-card {
        display: block !important;
        text-align: center;
    }
    img.deal-sec-right-leaf {
        width: 20%;
    }
    .deal-sec .nav {
        /* padding: 5px 0; */
        /* width: 100%; */
    }
    .deal-img {
        width: 60%;
        margin: 0 auto;
    }
    .deal-card .rating {
        width: 100%;
        margin: 20px auto;
    }
    ul.deal-cart {
        width: 100%;
        margin: auto;
    }
    .bid-deal-perspective::before {
        /* width: 100%; */
        /* height: 100%; */
        /* top: 0%; */
    }
    .big-deal-card .deal-img.position-relative {
        /* height: 170px; */
    }
    .testimonial::before {
        /* position: absolute; */
        /* content: ""; */
        width: 53%;
        /* height: 100%; */
        transform: rotate(0deg);
        /* background: #33993e; */
        /* top: 0%; */
        /* left: 0%; */
        /* border-radius: 300px; */
        /* z-index: -1; */
    }
    .testimonial::after {
        width: 40%;
        right: -10%;
    }
    .testi-slider {
        width: 100%;
        position: unset;
    }
    .testimonial {
        height: auto;
    }
    img.news-main-leaf {
        top: -18%;
        width: 100px;
    }
    .news-letter::before,
    .news-letter::after {
        width: 15%;
    }
    .footer-sec {
        /* position: relative; */
        /* padding-top: 50px; */
    }
    .news-letter h2 {
        font-size: 40px;
    }
    .news-letter .news-l {
        padding: 5px 5px;
    }
    .news-letter .news-l button {
        width: 30%;
        font-size: 13px;
        height: 40px;
    }
    .footer-s {
        padding-top: 0px;
    }
    .farmer-sale h2 {
        /* font-size: 24px; */
    }
    .footer-s.mt-5 {
        margin-top: 0px !important;
    }
    img.footer-right-leaf {
        right: 0%;
        width: 20%;
    }
    img.footer-left-leaf {
        top: -4%;
        left: 10%;
        width: 70px;
    }
    .footer-s .fot-te-c {
        width: 100%;
    }
    .copy-write .col-lg-6 {
        width: 50%;
    }
    .copy-write p {
        /* font-size: 11px; */
    }
    .copy-write .col-lg-6.d-flex.align-items-center.justify-content-end {
        /* justify-content: center !important; */
    }
    .slicknav_menu li i.far.fa-chevron-down {
        display: none;
    }
    .sec-head-pill h2 {
        margin-bottom: 0;
        font-size: 25px;
    }
    .big-deal-card ul.deal-cart {
        width: 100%;
    }
    .inner-banner-text {
        width: 100%;
        text-align: center;
    }
    .inner-banner-text h1 {
        font-size: 42px;
    }
    img.inner-ban-right {
        top: auto;
        width: 20%;
        bottom: 10%;
    }
    .big-deal-card .rating {
        width: 100%;
    }
    img.inner-ban-left {
        width: 30%;
    }
    img.inner-sec-leaf1 {
        right: 0%;
        width: 70px;
    }
    img.fresh-main-leaf {
        width: 15%;
    }
    .p-big-img {
        height: 250px;
    }
    .product-det-content h4 {
        font-size: 29px;
    }
    .price-tag div:first-child {
        font-size: 30px;
    }
    .price-tag div:first-child del {
        margin-right: 5px;
        font-size: 1.1rem;
    }
    .price-tag div:last-child {
        font-size: 17px;
    }
    .product-det-content ul.d-flex.justify-content-between.align-items-center {
        width: 100%;
    }
    .add-cart-btn {
        font-size: 14px;
        padding: 0 17px;
    }
    .product-detail .row.mt-5.mb-5 {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
    .product-detail img.inner-sec-leaf2 {
        display: none;
    }
    .find-dealer-img {
        height: 250px;
    }
    .dealer-area {
        font-size: 17px;
        top: 40%;
        width: 250px;
        height: 50px;
        margin-left: -109px;
    }
    .dealer-content h3 {
        font-size: 19px;
        margin-bottom: 0;
    }
    .find-dealer-box {
        margin: 0 40px 30px;
    }
    .msg-box {
        background-color: #fff;
        position: relative;
        margin-top: 0;
        margin-left: 0px;
        width: 100%;
    }
    .contact-map {
        height: 250px;
        overflow: hidden;
    }
    .txt-box-sec {
        /* padding: 20px 10px 20px 20px; */
    }
    .txt-box-sec h3 {
        font-size: 25px;
        padding: 10px 0 10px 0px;
    }
    .sub-btn {
        /* top: 49px; */
        /* right: 40px; */
    }
    .cntc-box-sec {
        /* padding: 20px 0px 40px 10px; */
    }
    .cntc-box-sec h3 {
        font-size: 29px;
    }
    img.inner-sec-leaf2 {
        display: none;
    }
    form.login-form h2 {
        font-size: 25px;
    }
    form.login-form input:not(input[type=checkbox]) {
        height: 45px;
    }
    .form-btm {
        font-size: 11px;
    }
    form.login-form {
        margin-top: 20px;
        padding: 30px 20px;
    }
    .reg-frombtm span {
        display: block;
        line-height: 1.2;
        font-size: 11px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cntus-content .col-12.col-xs-12.col-sm-7.col-lg-7.col-md-12.txt-box-sec {
        width: 58%;
    }
    .cntus-content .col-xs-12.col-12.col-sm-5.col-md-12.col-lg-5.cntc-box-sec {
        width: 41%;
    }
    .news-letter .col-lg-6.offset-lg-3.text-center {
        width: 60%;
        margin: auto;
    }
    .testi-slider .slick-prev:before {
        height: 40px;
        width: 40px;
    }
    .testi-slider .slick-next:before {
        height: 40px;
        width: 40px;
    }
    .testi-slider .slick-prev:before,
    .testi-slider .slick-next:before {
        font-size: 25px;
    }
    .testi-slider .slick-prev,
    .testi-slider .slick-next {
        top: 57%;
    }
    .testi-slider .slick-next {
        right: 80%;
    }
    .testi-slider .slick-prev {
        left: 8%;
    }
    img.deal-sec-bottom-leaf {
        width: 28%;
    }
    .deal-content p {
        font-size: 12px;
        line-height: 1;
    }
    .deal-content h4 {
        font-size: 18px;
    }
    .deal-sec .col-lg-8.col-md-9.col-12 {
        width: 60%;
    }
    .deal-sec .col-lg-4.col-md-3.col-12 {
        width: 40%;
    }
    .fresh-sec-right p {
        font-size: 12px;
        line-height: 1.6;
    }
    .fresh-card-content h5 {
        font-size: 14px;
    }
    .farm-q-content h5 {
        font-size: 16px;
    }
    .farm-box3-arrow::after {
        top: 21%;
        right: -37%;
    }
    .farm-box2-arrow::after {
        top: 10%;
        right: -33%;
    }
    .farm-box1-arrow::after {
        top: 0%;
        right: -29%;
    }
    .farm-box-arrow::after {
        width: 80px;
        height: 50px;
    }
    section.inner-banner {
        height: 50vh;
    }
    .menuSec ul li a {
        padding: 10px 10px;
        font-size: 14px;
    }
    .menuSec .col-md-6.d-none.d-md-block {
        width: 67%;
    }
    .product-detail .col-lg-3.col-md-4.col-sm-6.col-12 {
        width: 50%;
    }
    .footer-s .fot-te-c::before {
        left: -15%;
    }
    .footer-s .col-lg-3.col-md-6 {
        width: 50%;
    }
    .featured-pro .col-lg-3.col-md-4.col-sm-6.col-12 {
        width: 50%;
    }
    section#next-sec {
        margin-top: 50px;
    }
    .main-banner-text {
        width: 90%;
        margin: auto;
    }
    .menuSec .row {
        align-items: center;
    }
    .menuSec .col-md-2 {
        width: 33%;
        margin-bottom: 20px;
    }
    .topSec .row {
        align-items: center;
    }
    .topSec .col-md-4.col-sm-12.col-12:nth-child(1) {
        width: 60%;
    }
    .topSec .col-md-4.col-sm-12.col-12:nth-child(2) {
        width: 50%;
    }
    .topSec .col-md-4.col-sm-12.col-12:nth-child(3) {
        width: 50%;
    }
    .head-search input {
        font-size: 9px;
    }
    .head-right.d-flex.justify-content-end.align-items-center {
        justify-content: space-between !important;
    }
    html {
        overflow-x: hidden;
    }
    .head-delivery {
        font-size: 9px;
    }
    a.head-logo {
        width: 90px;
    }
    .top-contact i {
        /* font-size: 20px; */
    }
    .top-contact h5 {
        /* font-size: 14px; */
    }
    a.top-contact.d-flex {
        align-items: center;
    }
    .cart-box a {
        /* font-size: 14px; */
    }
    .sel-slider .slick-dots {
        /* width: 100%; */
    }
    .cart-box {
        margin: 0 20px;
    }
    .user-acc h5 {
        font-size: 10px;
        width: 100px;
        margin: 0 5px;
    }
    .user-acc img {
        width: 40px;
        height: 35px;
    }
    ul.top-cat>li {
        /* font-size: 10px; */
        padding: 10px;
    }
    .top-cat-list li a {
        /* font-size: 11px !important; */
    }
    .cart-box a:nth-child(2) span {
        font-size: 10px;
        width: 15px;
        height: 15px;
    }
    form.head-search {
        margin: 20px 0;
    }
    .menuSec .col-md-2:last-child {
        text-align: right;
        /* margin-top: 20px; */
        width: 65%;
    }
    img.ban-leaf-3 {
        width: 15% !important;
    }
    img.ban-leaf-1 {
        width: 20% !important;
    }
    h1 {
        font-size: 40px;
    }
    img.ban-leaf-2 {
        width: 30% !important;
    }
    img.lemon {
        width: 100% !important;
    }
    .ban-small-slider {
        display: none;
    }
    .main-slider .slick-next {
        top: 60%;
    }
    .main-slider .slick-prev {
        top: 68%;
    }
    .slider__counter {
        position: absolute;
        top: 80%;
    }
    .organic-img {
        width: 240px !important;
    }
    .organic-img::after {
        right: -10px;
    }
    .social-icons-banner {
        top: 50%;
    }
    .smalltxt-ban {
        bottom: 4%;
        font-size: 10px;
    }
    h2 {
        font-size: 35px;
    }
    img.sel-left-leaf {
        width: 20%;
    }
    img.sel-right-leaf {
        width: 11%;
    }
    .sel-product li.nav-item img {
        display: none;
    }
    .theme-tab .nav-link {
        font-size: 14px;
        margin: 0 5px 10px 5px;
    }
    .theme-tab {
        justify-content: center;
        align-items: center;
        /* flex-direction: column; */
    }
    img.farmleaf-right {
        display: none;
    }
    img.farmleaf-left {
        top: 0%;
        width: 20%;
    }
    .abt-qoute::before {
        width: 50px;
        left: -55px;
    }
    .abt-qoute::after {
        width: 50px;
        right: -55px;
    }
    img.farmleaf-bot-right {
        top: 20%;
    }
    .farm-box-mt {
        /* margin-top: 0%; */
    }
    .farm-quality-box {
        /* margin: 20px 0; */
    }
    img.farmleaf-bot-left {
        width: 40%;
    }
    img.farm-big-lemon {
        /* margin-top: 0%; */
    }
    .fresh-card {
        height: auto;
    }
    .fresh-card>img {
        /* width: 150px; */
        /* height: 150px; */
        /* margin: 0 auto 20px; */
    }
    .fresh-sec-right h2 {
        font-size: 25px;
    }
    .sec-head-pill::before,
    .sec-head-pill::after {}
    .sec-head-pill {
        padding: 10px 10px;
    }
    .ptb-100 {
        padding: 70px 0;
    }
    img.featured-leaf-right {
        display: none;
    }
    img.farm-sale-leaf-l {
        width: 12%;
    }
    img.farm-sale-leaf-r {
        width: 20%;
    }
    img.bottom-cloud {
        bottom: -50px;
        height: 80px;
    }
    section.farmer-sale {
        height: 550px;
        background: url(../images/farmer-sale-back.png);
        background-size: cover;
        background-position: 75%;
    }
    .sale-txt {
        left: 42%;
        font-size: 36px;
    }
    .deal-card {
        display: block !important;
        text-align: center;
    }
    img.deal-sec-right-leaf {
        width: 20%;
    }
    .deal-sec .nav {
        padding: 5px 0;
        width: 100%;
    }
    .deal-img {
        width: 60%;
        margin: 0 auto;
    }
    .deal-card .rating {
        width: 100%;
        margin: 20px auto;
    }
    ul.deal-cart {
        width: 100%;
        margin: auto;
    }
    .bid-deal-perspective::before {
        width: 100%;
        height: 100%;
        top: 0%;
    }
    .big-deal-card .deal-img.position-relative {
        height: 170px;
    }
    .testimonial::before {
        /* position: absolute; */
        /* content: ""; */
        width: 50%;
        height: 100%;
        /* transform: rotate(0deg); */
        /* background: #33993e; */
        /* top: 0%; */
        /* left: 0%; */
        /* border-radius: 0px; */
        /* z-index: -1; */
    }
    .testimonial::after {
        display: none
    }
    .testi-slider {
        width: 100%;
        position: unset;
    }
    .testimonial {
        height: auto;
    }
    img.news-main-leaf {
        top: -18%;
        width: 100px;
    }
    .news-letter::before,
    .news-letter::after {
        width: 15%;
    }
    .footer-sec {
        position: relative;
        padding-top: 50px;
    }
    .news-letter h2 {
        font-size: 30px;
    }
    .news-letter .news-l {
        padding: 5px 5px;
    }
    .news-letter .news-l button {
        width: 30%;
        font-size: 13px;
        height: 40px;
    }
    .footer-s {
        padding-top: 0px;
    }
    .farmer-sale h2 {
        font-size: 24px;
    }
    .footer-s.mt-5 {
        margin-top: 0px !important;
    }
    img.footer-right-leaf {
        right: 0%;
        width: 20%;
    }
    img.footer-left-leaf {
        top: -4%;
        left: 10%;
        width: 70px;
    }
    .footer-s .fot-te-c {
        width: 100%;
    }
    .copy-write .col-lg-6 {
        width: 50%;
    }
    .copy-write p {
        /* font-size: 11px; */
    }
    .copy-write .col-lg-6.d-flex.align-items-center.justify-content-end {
        /* justify-content: center !important; */
    }
    .slicknav_menu li i.far.fa-chevron-down {
        display: none;
    }
    .sec-head-pill h2 {
        margin-bottom: 0;
        font-size: 25px;
    }
    .big-deal-card ul.deal-cart {
        width: 100%;
    }
    .inner-banner-text {
        width: 100%;
        text-align: center;
    }
    .inner-banner-text h1 {
        font-size: 42px;
    }
    img.inner-ban-right {
        top: auto;
        width: 20%;
        bottom: 10%;
    }
    .big-deal-card .rating {
        width: 100%;
    }
    img.inner-ban-left {
        width: 30%;
    }
    img.inner-sec-leaf1 {
        right: 0%;
        width: 70px;
    }
    img.fresh-main-leaf {
        width: 15%;
    }
    .p-big-img {
        height: 250px;
    }
    .product-det-content h4 {
        font-size: 29px;
    }
    .price-tag div:first-child {
        font-size: 30px;
    }
    .price-tag div:first-child del {
        margin-right: 5px;
        font-size: 1.1rem;
    }
    .price-tag div:last-child {
        font-size: 17px;
    }
    .product-det-content ul.d-flex.justify-content-between.align-items-center {
        width: 100%;
    }
    .add-cart-btn {
        font-size: 14px;
        padding: 0 17px;
    }
    .product-detail .row.mt-5.mb-5 {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
    .product-detail img.inner-sec-leaf2 {
        display: none;
    }
    .find-dealer-img {
        height: 250px;
    }
    .dealer-area {
        font-size: 17px;
        top: 40%;
        width: 250px;
        height: 50px;
        margin-left: -109px;
    }
    .dealer-content h3 {
        font-size: 19px;
        margin-bottom: 0;
    }
    .find-dealer-box {
        margin: 0 40px 30px;
    }
    .msg-box {
        background-color: #fff;
        position: relative;
        margin-top: 0;
        margin-left: 0px;
        width: 100%;
    }
    .contact-map {
        height: 250px;
        overflow: hidden;
    }
    .txt-box-sec {
        /* padding: 20px 10px 20px 20px; */
    }
    .txt-box-sec h3 {
        font-size: 25px;
        padding: 10px 0 10px 0px;
    }
    .sub-btn {
        /* top: 49px; */
        /* right: 40px; */
    }
    .cntc-box-sec {
        /* padding: 20px 0px 40px 10px; */
    }
    .cntc-box-sec h3 {
        font-size: 29px;
    }
    img.inner-sec-leaf2 {
        display: none;
    }
    form.login-form h2 {
        font-size: 25px;
    }
    form.login-form input:not(input[type=checkbox]) {
        height: 45px;
    }
    .form-btm {
        font-size: 11px;
    }
    form.login-form {
        margin-top: 20px;
        padding: 30px 20px;
    }
    .reg-frombtm span {
        display: block;
        line-height: 1.2;
        font-size: 11px;
    }
}

@media only screen and (min-width: 520px) and (max-width: 767px) {
    .product-detail .col-lg-3.col-md-4.col-sm-6.col-12 {
        width: 50%;
    }
    .footer-s .fot-te-c::before {
        left: -15%;
    }
    .footer-s .col-lg-3.col-md-6 {
        width: 50%;
    }
    .featured-pro .col-lg-3.col-md-4.col-sm-6.col-12 {
        width: 50%;
    }
    section#next-sec {
        margin-top: 50px;
    }
    .main-banner-text {
        width: 90%;
        margin: auto;
    }
    .menuSec .row {
        align-items: center;
    }
    .menuSec .col-md-2 {
        width: 33%;
    }
    .topSec .row {
        align-items: center;
    }
    .topSec .col-md-4.col-sm-12.col-12:nth-child(1) {
        width: 60%;
    }
    .topSec .col-md-4.col-sm-12.col-12:nth-child(2) {
        width: 40%;
    }
    .head-search input {
        font-size: 9px;
    }
    .head-right.d-flex.justify-content-end.align-items-center {
        justify-content: space-between !important;
    }
    html {
        overflow-x: hidden;
    }
    .head-delivery {
        font-size: 7px;
    }
    a.head-logo {
        width: 90px;
    }
    .top-contact i {
        font-size: 20px;
    }
    .top-contact h5 {
        font-size: 14px;
    }
    a.top-contact.d-flex {
        align-items: center;
    }
    .cart-box a {
        /* font-size: 14px; */
    }
    .sel-slider .slick-dots {
        width: 100%;
    }
    .cart-box {
        margin: 0 20px;
    }
    .user-acc h5 {
        font-size: 10px;
        width: 100px;
        margin: 0 5px;
    }
    .user-acc img {
        width: 40px;
        height: 35px;
    }
    ul.top-cat>li {
        /* font-size: 10px; */
        padding: 10px;
    }
    .top-cat-list li a {
        /* font-size: 11px !important; */
    }
    .cart-box a:nth-child(2) span {
        font-size: 10px;
        width: 15px;
        height: 15px;
    }
    form.head-search {
        margin: 20px 0;
    }
    .menuSec .col-md-2:last-child {
        /* text-align: center; */
        /* margin-top: 20px; */
    }
    img.ban-leaf-3 {
        width: 15% !important;
    }
    img.ban-leaf-1 {
        width: 20% !important;
    }
    h1 {
        font-size: 40px;
    }
    img.ban-leaf-2 {
        width: 30% !important;
    }
    img.lemon {
        width: 100% !important;
    }
    .ban-small-slider {
        display: none;
    }
    .main-slider .slick-next {
        top: 60%;
    }
    .main-slider .slick-prev {
        top: 68%;
    }
    .slider__counter {
        position: absolute;
        top: 80%;
    }
    .organic-img {
        width: 240px !important;
    }
    .organic-img::after {
        right: -10px;
    }
    .social-icons-banner {
        top: 50%;
    }
    .smalltxt-ban {
        bottom: 4%;
        font-size: 10px;
    }
    h2 {
        font-size: 35px;
    }
    img.sel-left-leaf {
        width: 20%;
    }
    img.sel-right-leaf {
        width: 11%;
    }
    .sel-product li.nav-item img {
        display: none;
    }
    .theme-tab .nav-link {
        font-size: 14px;
        margin: 0 5px 10px 5px;
    }
    .theme-tab {
        justify-content: center;
        align-items: center;
        /* flex-direction: column; */
    }
    img.farmleaf-right {
        display: none;
    }
    img.farmleaf-left {
        top: 0%;
        width: 20%;
    }
    .abt-qoute::before {
        width: 50px;
        left: -55px;
    }
    .abt-qoute::after {
        width: 50px;
        right: -55px;
    }
    .farm-box-arrow::after {
        display: none;
    }
    img.farmleaf-bot-right {
        top: 20%;
    }
    .farm-box-mt {
        margin-top: 0%;
    }
    .farm-quality-box {
        margin: 20px 0;
    }
    img.farmleaf-bot-left {
        width: 40%;
    }
    img.farm-big-lemon {
        margin-top: 0%;
    }
    .fresh-card {
        height: auto;
    }
    .fresh-card>img {
        width: 150px;
        height: 150px;
        margin: 0 auto 20px;
    }
    .fresh-sec-right h2 {
        font-size: 25px;
    }
    .sec-head-pill::before,
    .sec-head-pill::after {
        display: none;
    }
    .sec-head-pill {
        padding: 10px 10px;
    }
    .ptb-100 {
        padding: 50px 0;
    }
    img.featured-leaf-right {
        display: none;
    }
    img.farm-sale-leaf-l {
        width: 20%;
    }
    img.farm-sale-leaf-r {
        width: 20%;
    }
    img.bottom-cloud {
        bottom: -50px;
        height: 80px;
    }
    section.farmer-sale {
        height: 550px;
        background: url(../images/farmer-sale-back.png);
        background-size: cover;
        background-position: 75%;
    }
    .sale-txt {
        left: 33%;
        font-size: 32px;
    }
    .deal-card {
        display: block !important;
        text-align: center;
    }
    img.deal-sec-right-leaf {
        width: 20%;
    }
    .deal-sec .nav {
        padding: 5px 0;
        width: 100%;
    }
    .deal-img {
        width: 60%;
        margin: 0 auto;
    }
    .deal-card .rating {
        width: 50%;
        margin: 20px auto;
    }
    ul.deal-cart {
        width: 40%;
        margin: auto;
    }
    .bid-deal-perspective::before {
        width: 100%;
        height: 100%;
        top: 0%;
    }
    .big-deal-card .deal-img.position-relative {
        height: 170px;
    }
    .testimonial::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 60%;
        transform: rotate(0deg);
        background: #33993e;
        top: 0%;
        left: 0%;
        border-radius: 0px;
        z-index: -1;
    }
    .testi-slider {
        width: 100%;
        position: unset;
    }
    .testimonial {
        height: auto;
    }
    img.news-main-leaf {
        top: -18%;
        width: 100px;
    }
    .news-letter::before,
    .news-letter::after {
        display: none;
    }
    .footer-sec {
        position: relative;
        padding-top: 50px;
    }
    .news-letter h2 {
        font-size: 30px;
    }
    .news-letter .news-l {
        padding: 5px 5px;
    }
    .news-letter .news-l button {
        width: 30%;
        font-size: 13px;
        height: 40px;
    }
    .footer-s {
        padding-top: 0px;
    }
    .farmer-sale h2 {
        font-size: 24px;
    }
    .footer-s.mt-5 {
        margin-top: 0px !important;
    }
    img.footer-right-leaf {
        right: 0%;
        width: 20%;
    }
    img.footer-left-leaf {
        top: -4%;
        left: 10%;
        width: 70px;
    }
    .footer-s .fot-te-c {
        width: 100%;
    }
    .copy-write .col-lg-6 {
        width: 50%;
    }
    .copy-write p {
        font-size: 11px;
    }
    .copy-write .col-lg-6.d-flex.align-items-center.justify-content-end {
        justify-content: center !important;
    }
    .slicknav_menu li i.far.fa-chevron-down {
        display: none;
    }
    .sec-head-pill h2 {
        margin-bottom: 0;
        font-size: 25px;
    }
    .big-deal-card ul.deal-cart {
        width: 50%;
    }
    .inner-banner-text {
        width: 100%;
        text-align: center;
    }
    .inner-banner-text h1 {
        font-size: 32px;
    }
    img.inner-ban-right {
        top: auto;
        width: 20%;
        bottom: 10%;
    }
    .big-deal-card .rating {
        width: 50%;
    }
    img.inner-ban-left {
        width: 30%;
    }
    img.inner-sec-leaf1 {
        right: 0%;
        width: 70px;
    }
    img.fresh-main-leaf {
        width: 35%;
    }
    .p-big-img {
        height: 250px;
    }
    .product-det-content h4 {
        font-size: 29px;
    }
    .price-tag div:first-child {
        font-size: 30px;
    }
    .price-tag div:first-child del {
        margin-right: 5px;
        font-size: 1.1rem;
    }
    .price-tag div:last-child {
        font-size: 17px;
    }
    .product-det-content ul.d-flex.justify-content-between.align-items-center {
        width: 70%;
    }
    .add-cart-btn {
        margin: 20px 0;
    }
    .product-detail .row.mt-5.mb-5 {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
    .product-detail img.inner-sec-leaf2 {
        display: none;
    }
    .find-dealer-img {
        height: 250px;
    }
    .dealer-area {
        font-size: 17px;
        top: 40%;
        width: 250px;
        height: 50px;
        margin-left: -109px;
    }
    .dealer-content h3 {
        font-size: 19px;
        margin-bottom: 0;
    }
    .find-dealer-box {
        margin: 0 40px 30px;
    }
    .msg-box {
        background-color: #fff;
        position: relative;
        margin-top: 0;
        margin-left: 0px;
        width: 100%;
    }
    .contact-map {
        height: 250px;
        overflow: hidden;
    }
    .txt-box-sec {
        padding: 20px 10px 20px 20px;
    }
    .txt-box-sec h3 {
        font-size: 25px;
        padding: 10px 0 10px 0px;
    }
    .sub-btn {
        top: 49px;
        right: 40px;
    }
    .cntc-box-sec {
        padding: 20px 0px 40px 10px;
    }
    .cntc-box-sec h3 {
        font-size: 29px;
    }
    img.inner-sec-leaf2 {
        display: none;
    }
    form.login-form h2 {
        font-size: 25px;
    }
    form.login-form input:not(input[type=checkbox]) {
        height: 45px;
    }
    .form-btm {
        font-size: 11px;
    }
    form.login-form {
        margin-top: 20px;
        padding: 30px 20px;
    }
    .reg-frombtm span {
        display: block;
        line-height: 1.2;
        font-size: 11px;
    }
}

@media only screen and (min-width: 300px) and (max-width: 519px) {
    html {
        overflow-x: hidden;
    }
    .head-delivery {
        font-size: 7px;
    }
    a.head-logo {
        width: 90px;
    }
    .top-contact i {
        font-size: 20px;
    }
    .top-contact h5 {
        font-size: 14px;
    }
    a.top-contact.d-flex {
        align-items: center;
    }
    .cart-box a {
        font-size: 14px;
    }
    .sel-slider .slick-dots {
        width: 100%;
    }
    .cart-box {
        margin: 0 20px;
    }
    .user-acc h5 {
        font-size: 10px;
        width: 100px;
        margin: 0 5px;
    }
    .user-acc img {
        width: 40px;
        height: 35px;
    }
    ul.top-cat>li {
        font-size: 10px;
        padding: 10px;
    }
    .top-cat-list li a {
        font-size: 11px !important;
    }
    .cart-box a:nth-child(2) span {
        font-size: 10px;
        width: 15px;
        height: 15px;
    }
    form.head-search {
        margin: 20px 0;
    }
    .menuSec .col-md-2:last-child {
        text-align: center;
        margin-top: 20px;
    }
    img.ban-leaf-3 {
        width: 15% !important;
    }
    img.ban-leaf-1 {
        width: 20% !important;
    }
    h1 {
        font-size: 40px;
    }
    img.ban-leaf-2 {
        width: 30% !important;
    }
    img.lemon {
        width: 100% !important;
    }
    .ban-small-slider {
        display: none;
    }
    .main-slider .slick-next {
        top: 60%;
    }
    .main-slider .slick-prev {
        top: 68%;
    }
    .slider__counter {
        position: absolute;
        top: 80%;
    }
    .organic-img {
        width: 240px !important;
    }
    .organic-img::after {
        right: -10px;
    }
    .social-icons-banner {
        top: 60%;
    }
    .smalltxt-ban {
        bottom: 4%;
        font-size: 10px;
    }
    h2 {
        font-size: 35px;
    }
    img.sel-left-leaf {
        width: 40%;
    }
    img.sel-right-leaf {
        width: 20%;
    }
    .sel-product li.nav-item img {
        display: none;
    }
    .theme-tab .nav-link {
        font-size: 14px;
        margin: 0 10px 10px 10px;
    }
    .theme-tab {
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    img.farmleaf-right {
        display: none;
    }
    img.farmleaf-left {
        top: 0%;
        width: 20%;
    }
    .abt-qoute::before {
        width: 50px;
        left: -55px;
    }
    .abt-qoute::after {
        width: 50px;
        right: -55px;
    }
    .farm-box-arrow::after {
        display: none;
    }
    img.farmleaf-bot-right {
        top: 20%;
    }
    .farm-box-mt {
        margin-top: 0%;
    }
    .farm-quality-box {
        margin: 20px 0;
    }
    img.farmleaf-bot-left {
        width: 40%;
    }
    img.farm-big-lemon {
        margin-top: 0%;
    }
    .fresh-card {
        height: auto;
    }
    .fresh-card>img {
        width: 150px;
        height: 150px;
        margin: 0 auto 20px;
    }
    .fresh-sec-right h2 {
        font-size: 25px;
    }
    .sec-head-pill::before,
    .sec-head-pill::after {
        display: none;
    }
    .sec-head-pill {
        padding: 10px 10px;
    }
    .ptb-100 {
        padding: 70px 0;
    }
    img.featured-leaf-right {
        display: none;
    }
    img.farm-sale-leaf-l {
        width: 20%;
    }
    img.farm-sale-leaf-r {
        width: 20%;
    }
    img.bottom-cloud {
        bottom: -50px;
        height: 80px;
    }
    section.farmer-sale {
        height: 550px;
        background: url(../images/farmer-sale-back.png);
        background-size: cover;
        background-position: 34%;
    }
    .sale-txt {
        left: 67%;
        font-size: 27px;
    }
    .deal-card {
        display: block !important;
        text-align: center;
    }
    img.deal-sec-right-leaf {
        width: 20%;
    }
    .deal-sec .nav {
        padding: 5px 0;
        width: 100%;
    }
    .deal-img {
        width: 60%;
        margin: 0 auto;
    }
    .deal-card .rating {
        width: 70%;
        margin: 20px auto;
    }
    ul.deal-cart {
        width: 65%;
        margin: auto;
    }
    .bid-deal-perspective::before {
        width: 100%;
        height: 100%;
        top: 0%;
    }
    .big-deal-card .deal-img.position-relative {
        height: 170px;
    }
    .testimonial::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 60%;
        transform: rotate(0deg);
        background: #33993e;
        top: 0%;
        left: 0%;
        border-radius: 0px;
        z-index: -1;
    }
    .testi-slider {
        width: 100%;
        position: unset;
    }
    .testimonial {
        height: auto;
    }
    img.news-main-leaf {
        top: -12%;
        width: 100px;
    }
    .news-letter::before,
    .news-letter::after {
        display: none;
    }
    .footer-sec {
        position: relative;
        padding-top: 50px;
    }
    .news-letter h2 {
        font-size: 30px;
    }
    .news-letter .news-l {
        padding: 5px 5px;
    }
    .news-letter .news-l button {
        width: 30%;
        font-size: 11px;
        height: 30px;
    }
    .footer-s {
        padding-top: 0px;
    }
    .farmer-sale h2 {
        font-size: 24px;
    }
    .footer-s.mt-5 {
        margin-top: 0px !important;
    }
    img.footer-right-leaf {
        right: 0%;
        width: 20%;
    }
    img.footer-left-leaf {
        top: -4%;
        left: 10%;
        width: 70px;
    }
    .footer-s .fot-te-c {
        width: 100%;
    }
    .copy-write .col-lg-6 {
        width: 50%;
    }
    .copy-write p {
        font-size: 11px;
    }
    .copy-write .col-lg-6.d-flex.align-items-center.justify-content-end {
        justify-content: center !important;
    }
    .slicknav_menu li i.far.fa-chevron-down {
        display: none;
    }
    .sec-head-pill h2 {
        margin-bottom: 0;
        font-size: 25px;
    }
    .big-deal-card ul.deal-cart {
        width: 80%;
    }
    .inner-banner-text {
        width: 100%;
        text-align: center;
    }
    .inner-banner-text h1 {
        font-size: 32px;
    }
    img.inner-ban-right {
        top: auto;
        width: 40%;
        bottom: 10%;
    }
    .big-deal-card .rating {
        width: 75%;
    }
    img.inner-ban-left {
        width: 50%;
    }
    img.inner-sec-leaf1 {
        right: 0%;
        width: 70px;
    }
    img.fresh-main-leaf {
        width: 50%;
    }
    .p-big-img {
        height: 250px;
    }
    .product-det-content h4 {
        font-size: 29px;
    }
    .price-tag div:first-child {
        font-size: 20px;
    }
    .price-tag div:first-child del {
        margin-right: 5px;
        font-size: 1.1rem;
    }
    .price-tag div:last-child {
        font-size: 12px;
    }
    .product-det-content ul.d-flex.justify-content-between.align-items-center {
        width: 100%;
        display: block !important;
    }
    .add-cart-btn {
        margin: 20px 0;
    }
    .product-detail .row.mt-5.mb-5 {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
    .product-detail img.inner-sec-leaf2 {
        display: none;
    }
    .find-dealer-img {
        height: 250px;
    }
    .dealer-area {
        font-size: 17px;
        top: 40%;
        width: 250px;
        height: 50px;
        margin-left: -109px;
    }
    .dealer-content h3 {
        font-size: 19px;
        margin-bottom: 0;
    }
    .find-dealer-box {
        margin: 0 10px 30px;
    }
    .msg-box {
        background-color: #fff;
        position: relative;
        margin-top: 0;
        margin-left: 0px;
        width: 100%;
    }
    .contact-map {
        height: 250px;
        overflow: hidden;
    }
    .txt-box-sec {
        padding: 20px 10px 20px 20px;
    }
    .txt-box-sec h3 {
        font-size: 25px;
        padding: 10px 0 10px 0px;
    }
    .sub-btn {
        top: 49px;
        right: 40px;
    }
    .cntc-box-sec {
        padding: 20px 0px 40px 10px;
    }
    .cntc-box-sec h3 {
        font-size: 29px;
    }
    img.inner-sec-leaf2 {
        display: none;
    }
    form.login-form h2 {
        font-size: 25px;
    }
    form.login-form input:not(input[type=checkbox]) {
        height: 45px;
    }
    .form-btm {
        font-size: 11px;
    }
    form.login-form {
        margin-top: 20px;
        padding: 30px 20px;
    }
    .reg-frombtm span {
        display: block;
        line-height: 1.2;
        font-size: 11px;
    }
}
p.error-message {
    color: red;
    font-weight: 600;
}
span.text-red {
    color: #f00;
}