/**************************************
                General
**************************************/
:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;
  }

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}
html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: painted;
  }
html::-webkit-scrollbar {
    width: 6px;
    background-color: rgb(18, 83, 37);
}

html::-webkit-scrollbar-thumb {
    background-color: rgb(247, 185, 24);
    border-radius: 50rem;
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}

ol,
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    color: #000;
    font-family: 'Domine Regular';
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: 181.25%;
    counter-reset: section;
}

a,
a:hover,
a:focus {
    color: #19592C;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

main {
    overflow: clip;
}

img {
    max-width: 100%;
    height: auto;
    transition: all .5s;
}

.w-100 {
    width: 100% !important;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.container-fluid {
    padding: 0 70px;
}


/* Popup */
.popup {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.64);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 999999;
    opacity: 0;
    transform: translateY(10px);
    z-index: -1;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
}

.popup.show {
    opacity: 1;
    transform: translateY(0px);
    z-index: 999999;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
    -moz-transition: opacity 0.5s ease, transform 0.5s ease;
    -ms-transition: opacity 0.5s ease, transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
}

.popup .popup__content {
    width: 50%;
    padding: 0px;
    background: white;
    color: black;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    z-index: 99999;
}

.popup .popup__content .close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 20px;
    display: block;
    width: 40px;
    height: 40px;
    opacity: 1;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border-radius: 50% 10px 50% 50%;
    flex-direction: column;
    gap: 5px;
    background-color: #19592C;
    transition: all .5s;
    z-index: 9;
    cursor: pointer;
}

.popup .popup__content .close:hover {
    background-color: #f7b918;
}

.popup .popup__content .close:hover span {
    background-color: #FFF;
}

.popup .popup__content .close span {
    cursor: pointer;
    position: fixed;
    width: 20px;
    height: 3px;
    background: #ffffff;
}

.popup .popup__content .close span:nth-child(1) {
    transform: rotate(45deg);
}

.popup .popup__content .close span:nth-child(2) {
    transform: rotate(135deg);
}

.left {
    background: linear-gradient(to top, #000, transparent), url(../img/banner-farmar.webp);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}

.right {
    padding: 20px;
    text-align: left;
    background: #FFF;
}
.fixed-contact{
    position: fixed;
    right: 50px;
    bottom: 15%;
    z-index: 9999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    a{
        &:hover{
            scale: 1.1;
        }
    }
}
.call-btn{
    border: none;
    gap: 15px;
    color: #000;
    font-family: 'Domine Bold';
    font-size: 25px;
    font-style: normal;
    line-height: normal;
    font-style: normal;
    display: flex;
    align-items: flex-end;
    small{
        font-family: 'Domine Regular';
        font-size: 18px;
    }
    &:hover{
        color: #19592C;
    }
    &:focus{
        color: #000;
    }
}
.call-icon{
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #19592C;
    border-radius: 50%;
}
/**************************************
                Helper Class
**************************************/
.sec-gap {
    padding: 70px 0;
}
.pb-80 {
    padding-bottom: 60px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-60 {
    margin-bottom: 60px;
}
p {
   color: #000;
    font-family: 'Domine Regular';
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: 181.25%;
}
.section-sub{
    color: #19592C;
    font-family: 'Calistoga Regular';
    font-size: 40px;
    font-style: normal;
    font-weight: normal;
    line-height: 117.5%;
    text-transform: capitalize;
}
.section-title {
    color: #000;
    font-family: 'Calistoga Regular';
    font-size: 63px;
    font-style: normal;
    font-weight: normal;
    line-height: 107.937%;
    text-transform: capitalize;
}
.text-white{
    color: #FFF;
}
.form-title{
    color: #19592C;
    font-family: 'Calistoga Regular';
    font-size: 34px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 15px;
}
.btn-group{
    display: flex;
    align-items: center;
    gap: 20px;
}
.primary-btn {
    color: #FFF;
    font-family: 'Domine Bold';
    font-size: 20px;
    border: none;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    padding: 24px 40px;
    border-radius: 60px;
    background: #19592C;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}
.primary-btn:before,
.primary-btn:after {
    position: absolute;
    content: "";
    background: #F7B918;   
    z-index: -1;
    transition: all .35s;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    height: 53%;
    scale: 0 1;
    transform-origin: left;
}
.primary-btn:before {
    bottom: 0;
    top: auto;
    scale: 0 1;
    transform-origin: right;
}

.primary-btn:after {
    transition-delay: .3s;
}

.primary-btn:hover:before,
.primary-btn:hover:after {
    scale: 1 1;
}

.primary-btn:hover {
    color: #070707;
}

.primary-btn:focus {
    color: #fff;
}
.secondary-btn{
    background: #F7B918;
    color: #000;
    &::before, &::after{
        background: #19592C;
    }
    &:hover{
        color: #FFF;
    }
}
.form-control {
    font-family: 'Domine Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: normal;
    display: flex;
    align-items: center;
    color: #000000;
    padding: 16px 16px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    width: 100%;
    outline: none;
    border-radius: 4px;
    border: 1px solid #888;
    background: #FFF;
}

.form-control:focus {
    border-color: #19592C;
}
form .primary-btn {
    border: 0;
    cursor: pointer;
    padding: 16px 35px;
    background: #FFC107;
    color: #000;
    &:hover{
        background: #19592C;
        color: #FFF;
    }
}
input,
input:focus {
    outline: none;
    box-shadow: none !important;
}
.form-control::placeholder {
    color: #707070;
}
.italic {
    font-style: italic;
}
/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}
@keyframes spin {
    0%{
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.50deg);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

/* Animations */
[data-animation] {
    opacity: 0;
    animation-timing-function: var(--animation-timing-function);
    animation-fill-mode: both;
    animation-duration: var(--animation-duration);
    will-change: transform, opacity;
}

/* Disable animation of the children */
.animations-disabled,
.animations-disabled [data-animation] {
    animation: none !important;
    opacity: 1 !important;
}
/* Pulse animation */
.pulse-border{
    animation-name: pulse-border;
}
/* Slide Animations */
.slideInUp {
    animation-name: slideInUp;
}

.slideInDown {
    animation-name: slideInDown;
}

.slideInLeft {
    animation-name: slideInLeft;
}

.slideInRight {
    animation-name: slideInRight;
}

/* Fade Animations */
.fadeIn {
    animation-name: fadeIn;
}

/* Zoom Animations */
.zoomIn {
    animation-name: zoomIn;
}

.zoomReverseIn {
    animation-name: zoomReverseIn;
}

/* Flip Animations */
.flipInY {
    animation-name: flipInY;
}

.flipOutY {
    animation-name: flipInY;
    animation-direction: reverse;
}
@media (prefers-reduced-motion: no-preference) {
    @view-transition {
        navigation: auto;
    }
}
::view-transition-group(*) {
    animation-duration: 2s;
}
/*******************************
	Menu
*******************************/
.flex-box {
    display: flex;
    align-items: center;
    gap: 30px;
}

.fixed-wp{
    width: 78px;
    height: 78px;
}

header.sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown 0.45s ease-out;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    background: #FFF;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


.main-menu {
    display: flex;
    align-items: center;
    gap: 70px;
}

header {
    position: fixed;
    width: 100%;
    transition: ease-in-out .4s;
    z-index: 999;
    padding-block: 15px;
}
nav {
    position: relative;
    margin: 0 auto
}
.header-btn{
    padding: 18px 40px;
}
#menu,
#menu .main-menu ul,
#menu .main-menu ul li,
#menu .main-menu ul li a,
#menu #head-mobile {
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
#menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#menu>.main-menu>ul>li {
    float: left;
    padding-inline: 10px;
}

#menu>.main-menu>ul>li>a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    padding: 10px 5px;
    display: inline-block;
    color: #000;
    font-family: 'Domine Bold';
    font-size: 23px;
    font-style: normal;
    font-weight: normal;
    line-height: 76.471%;
    border-radius: 4px;

}
#menu .main-menu ul li a::after {
    content: '';
    transition: 0.5s;
    width: 0;
    position: absolute;
    bottom: -7px;
    left: 8px;
    height: 2px;
    background: #3B3B3B;
}
#menu>.main-menu>ul>li>a:hover::after,
#menu .main-menu ul li.current-menu-item a::after {
    width: 80%;
}
.hamburger{
    display: none;
}

#menu>.main-menu>ul>li:hover>a,
#menu .main-menu ul li.current-menu-item a {
    /* color: #F12B0D; */
}
#menu .main-menu ul li.current-menu-item ul li a {
    color: #000;
}
#menu>.main-menu>ul>li:hover,
#menu .main-menu ul li.current-menu-item:hover,
#menu .main-menu ul li.current-menu-item,
#menu .main-menu ul li.has-sub.current-menu-item:hover {
    -webkit-transition: background .3s ease;
    -ms-transition: background .3s ease;
    transition: background .3s ease;
}


#menu>.main-menu>ul>li.has-sub>a::before {
    top: 8px;
    right: -12px;
    transition: all .4s;
    content: "";
    position: absolute;
    z-index: 11;
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #FFF;
    border-left: 2px solid #FFF;
    transform: rotate(225deg);
}

#menu>.main-menu>ul>li.has-sub:hover>a::before,
#menu>.main-menu>ul>li.has-sub.current-menu-item>a::before {
    border-top-color: #23AC49;
    border-left-color: #23AC49;
}

#menu .main-menu ul ul {
    position: absolute;
    left: -9999px;
    box-shadow: 0px 12px 10px 0px #0000004f;
    width: auto;
    background: #5E923F;
}

#menu .main-menu ul ul li {
    height: 0;
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    background: #FFF;
    transition: all .25s ease
}


#menu li:hover>ul {
    left: auto
}

#menu li:hover>ul>li {
    height: 40px;
    display: flex;
    align-items: center;
}

#menu ul ul ul {
    margin-left: 100%;
    top: 0
}

#menu ul ul li a {
    border-bottom: 1px solid rgba(150, 150, 150, 0.15);
    padding: 10px 20px;
    width: auto;
    font-size: 20px;
    line-height: 19px;
    text-decoration: none;
    font-family: 'Maison Neue Bold';
    color: #000000;
    font-weight: normal;
    white-space: nowrap;
}

#menu .main-menu ul ul li:last-child>a,
#menu .main-menu ul ul li.last-item>a {
    border-bottom: 0
}

#menu .main-menu ul ul li:hover a,
#menu .main-menu ul ul li:hover {
    color: #fff;
    background-color: #23AC49;
}

#menu .main-menu ul ul li .has-sub> a:after {
    position: absolute;
    top: 13px;
    right: 11px;
    width: 8px;
    height: 8px;
    display: block;
    content: '';
    border-bottom: 1px solid;
    border-right: 1px solid;
    transform: rotate(-45deg);
    transition: all .4s;
}


#menu .main-menu ul ul li.has-sub:hover,
#menu .main-menu ul li.has-sub ul li.has-sub ul li:hover {
    background: #363636;
}

#menu ul ul ul li.active a {
    border-left: 1px solid #333
}

#menu>.main-menu>ul>li.has-sub>ul>li.active>a,
#menu .main-menu>ul ul>li.has-sub>ul>li.active>a {
    border-top: 1px solid #333;
}

/* #menu .main-menu ul li.current-menu-item ul li a {
    color: #000;
} */

#menu .main-menu ul li.current-menu-item ul li a:hover {
    color: #ffffff;
}
@media screen and (max-width:992px) {
    nav {
        width: 100%
    }
    #menu {
        width: 100%
    }
    #menu ul {
        width: 100%;
        display: none;
    }
    #menu .main-menu {
        width: 100%;
        position: fixed;
        height: 100dvh !important;
        background: #19592C;
        transform: translateX(-100%);
        transition: all .4s;
        top: 0;
        left: 0;
        z-index: 2;
        ul{
            margin-top: 90px;
        }
    }
    .main-menu {
        align-items: center;
    }
    #menu .main-menu.open {
        transform: translateX(0%);
        flex-direction: column;

    }
    #menu .main-menu ul li {
        width: 100%;
        border-block: 1px solid #ffffff49;
    }
    #menu .main-menu ul ul li:hover a,
    #menu .main-menu ul ul li:hover {
        color: #fff;
        background-color: #003710a1;
        border-bottom: 1px solid #ffffff3d;
    }
    #menu .main-menu ul li:hover {
        background: transparent;
    }

    #menu .main-menu ul ul li,
    #menu li:hover>ul>li {
        height: auto
    }
    #menu .main-menu ul li a{
        width: 100%;
        border-bottom: 0;
        color: #ffffff;
    }
    #menu .main-menu ul ul li a{
        color: #FFF;
        font-size: 15px;
    }
    #menu .main-menu ul ul li{
        background: unset;
    }
    #menu>.main-menu>ul>li {
        float: none
    }
    #menu ul ul li a {
        padding-left: 25px
    }

    #menu ul ul li:hover {
        background: #45D8A3;
    }

    #menu ul ul ul li a {
        padding-left: 35px
    }

    #menu ul ul li a {
        color: #ddd;
        background: none
    }

    #menu ul ul li:hover>a,
    #menu ul ul li.active>a {
        color: #fff;
    }

    #menu .main-menu ul ul {
        box-shadow: none;
        background: #ffffff15;
    }

    #menu .main-menu ul ul, #menu .main-menu ul ul ul {
        position: relative;
        left: 27px;
        width: 90%;
        margin: 0;
        text-align: left;
        top: 0;
        transform: unset;
        height: auto;
    }

    #menu .main-menu ul ul.open {
        transform: unset;
    }

    #menu>ul>li.has-sub>a:after,
    #menu>ul>li.has-sub>a:before,
    #menu ul ul>li.has-sub>a:after,
    #menu ul ul>li.has-sub>a:before {
        display: none
    }

    #menu #head-mobile {
        display: block;
        padding: 23px;
        color: #ddd;
        font-size: 12px;
        font-weight: 700
    }

    .hamburger {
        width: 55px;
        height: 48px;
        position: absolute;
        right: 12px;
        top: 24px;
        cursor: pointer;
        z-index: 12399994;
        display: block;
    }

    .hamburger:after {
        position: absolute;
        top: 24px;
        right: 10px;
        display: block;
        height: 14px;
        width: 35px;
        border-top: 2px solid #19592C;
        border-bottom: 2px solid #19592C;
        content: '';
    }

    .hamburger:before {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        position: absolute;
        top: 12px;
        right: 10px;
        display: block;
        height: 2px;
        width: 35px;
        background: #19592C;
        content: '';
    }

    .hamburger.menu-opened:after {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        top: 23px;
        border: 0;
        height: 2px;
        width: 35px;
        background: #F7B918;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .hamburger.menu-opened:before {
        top: 23px;
        background: #F7B918;
        width: 35px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    #menu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 20px;
        top: 0;
        display: block;
        border-left: 0;
        height: 50px;
        width: 60px;
        cursor: pointer;
        background: #ffffff2e;

    }

    .flex-box{
        margin-right: 65px;
    }
    /* #menu .submenu-button.submenu-opened {
      background:#1b268600;
  } */

    #menu ul ul .submenu-button {
        height: 34px;
        width: 40px
    }

    #menu .submenu-button:after {
        position: absolute;
        top: 17px;
        right: 24px;
        width: 10px;
        height: 10px;
        display: block;
        content: '';
        border-bottom: 1px solid #FFF;
        border-right: 1px solid #FFF;
        transform: rotate(45deg);
        transition: all .4s;
    }
    #menu>.main-menu>ul>li.has-sub>a::before{
            display: none;
        }
    #menu>.main-menu>ul>li {
        padding-inline: 0px;
    }
    #menu ul ul .submenu-button:after {
        top: 11px;
        right: 19px;
    }

    #menu ul ul .submenu-button.submenu-opened:after {
        top: 16px;
    }

    #menu .submenu-button.submenu-opened:after {
        transform: rotate(-135deg);
        top: 20px;
    }


    #menu ul ul .submenu-button:before {
        top: 12px;
        right: 16px
    }

    #menu .submenu-button.submenu-opened:before {
        display: none
    }

    #menu ul ul ul li.active a {
        border-left: none
    }

    #menu>ul>li.has-sub>ul>li.active>a,
    #menu>ul ul>li.has-sub>ul>li.active>a {
        border-top: none
    }
    #menu>.main-menu>ul>li:hover>a, #menu .main-menu ul li.current-menu-item a {
        color: #FFF;
        scale: unset;
    }
}
.menu-white {
    position: relative;
    background: #FFF;
    box-shadow: 0px 7px 11px 0px rgba(0, 0, 0, 0.06);
}
.menu-white #menu>.main-menu>ul>li>a {
    color: #1E1E1E;
}

.menu-white #menu>.main-menu>ul>li.has-sub>a::before {
    border-top: 1px solid #1E1E1E;
    border-left: 1px solid #1E1E1E;
}
.menu-white #menu>.main-menu>ul>li.has-sub:hover>a::before,
.menu-white #menu>.main-menu>ul>li.has-sub.current-menu-item>a::before {
    border-top-color: #000;
    border-left-color: #0000;
}
.up-down{
  animation: moveUpDown 7s ease-in-out infinite;
}
.up-down2{
  animation: moveUpDown 5s ease-in-out infinite;
}
@keyframes moveUpDown {
  0%, 100% {
      transform: translateY(0); /* Start and end at the original position */
  }
  50% {
      transform: translateY(-10px); /* Move up by 20px */
  }
}
/******************************
            Banner  
*******************************/
.banner{
    position: relative;
    .container{
        position: absolute;
        inset: 0;
        display: flex;
        justify-content: center;
        z-index: 1;
        padding-right: 250px;
        padding-top: 180px;
    }
}
.banner-bg.img-cover{
    margin-bottom: -10px;
}
.banner-vector-yellow{
    position: absolute;
    bottom: 0;
    left: 0;
}
.banner-farmar{
    position: absolute;
    left: 125px;
    bottom: 85px;
    border-radius: 50%;
    border: 22px solid #FFF4D7;
    z-index: 3;
}
.banner-products{
    position: absolute;
    right: 100px;
    bottom: 0;
    width: 880px;
}
.bowl-vector{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
}
.paneer-vector{
    position: absolute;
    right: 0;
    top: 140px;
    z-index: 5;
}
.banner-content{
    width: 60%;
    h1{
        color: #000;
        font-family: 'Calistoga Regular';
        font-size: 75px;
        font-style: normal;
        font-weight: normal;
        line-height: 100%;
        margin-bottom: 20px;
    }
    p{
        color: #000;
        font-family: 'Domine Bold';
        font-size: 19px;
        line-height: 152.632%;
        margin-bottom: 20px;
    }
    .btn-group{
        justify-content: center;
    }
}
.img-cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -10px;
}
/******************************
        Advantage
*******************************/
.advantage-card{
    display: flex;
    align-items: start;
    gap: 20px;
    &:hover{
        .advantage-icon{
            transform: rotateY(180deg);
        }
    }
}
.advantage-card-content{
    width: 72%;
    h3{
        color: #000;
        font-family: 'Calistoga Regular';
        font-size: 25px;
        font-style: normal;
        font-weight: normal;
        line-height: 160%;
    }
    p{
        font-size: 17px;
        color: #333232;
        line-height: 147.059%;
    }
}
.slick-arrow{
    width: 28px;
    height: 28px;
    background: #5FC146;
    border-radius: 50%;
    transition: 0.5s;
    z-index: 2;
    &::before{
        position: absolute;
        content: '';
        width: 40%;
        height: 40%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: url(../img/slider-arrow.webp) no-repeat;
        background-position: center;
        background-size: 100%;
        transition: 0.5s;
    }
    &:hover,
    &:focus{
        background: #19592C;
    }
}
.slick-prev{
    left: -50px;
    &::before{
        transform: translate(-50%, -50%) rotateY(180deg);
    }
}
.slick-next{
    right: -50px;
}
.slick-slide{
    margin: 0 10px;
}
.slick-list{
    margin: 0 -10px;
}
.daily-box{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.daily-content{
    width: 430px;
    position: absolute;
    left: 0;
    top: 0;
    padding: 50px 40px;
    .section-title{
        font-size: 50px;
        margin-bottom: 14px;
        color: #FFF;
    }
    p{
        color: #FFF;
    }
}
.card-btn{
    font-size: 18px;
    padding: 18px 40px;
}
.mustard-box{
    .section-title, p{
        color: #000;
    }
    .primary-btn:hover{
        color: #000;
    }
    .primary-btn::before,
    .primary-btn:after{
        background: #FFF;
    }
}
.featured-product-slider{
    .slick-arrow{
        width: 54px;
        height: 54px;
    }
    .slick-prev{
        left: -25px;
    }
    .slick-next{
        right: -25px;
    }
}
/******************************
        Featured
*******************************/
.featured{
    position: relative;
    background: url(../img/product-bg.webp) no-repeat;
    background-size: cover;
    .section-title{
        color: #FFF;
    }
    .paneer-vector {
        top: 60px;
    }
    .bowl-vector{
        bottom: unset;
        top: 0;
        left: 45%;
    }
}
.featured-product-box{
    border-radius: 15px;
    background: #FFF;
    padding: 15px;
}
.product-img{
    border-radius: 20px;
    background: #F7F4F4;
    height: 286px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-content{
    text-align: center;
    padding: 25px 5px 20px 5px;
    h4{
        color: #000;
        font-family: 'Domine Bold';
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
		margin-bottom: 12px;
    }
    .btn-group{
        flex-direction: column;
        gap: 15px;
    }
    .primary-btn{
        width: 70%;
        padding: 14px 30px;
    }
}
.product-vector1{
    position: absolute;
}
.product-vector1{
    left: 0;
    top: 35%;
}
.product-vector3{
    top: 40px;
    right: 0;
}
/******************************
        About Company
*******************************/
.about-company-box{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.about-img{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-45%);
    width: 650px;
}
.about-company-card{
    display: flex;
    align-items: start;
    gap: 15px;
}
.about-company-card-content{
    width: 75%;
    h4{
        color: #19592C;
        font-family: 'Calistoga Regular';
        font-size: 23px;
        font-style: normal;
        font-weight: normal;
        line-height: 86.957%;
        text-transform: capitalize;
        margin-bottom: 9px;
    }
}
/******************************
       Counter
*******************************/
.counter{
    background: url(../img/counter-bg.webp) no-repeat;
    background-size: cover;
    padding-block: 220px;
    position: relative;
}
.counter-grass{
    position: absolute;
    bottom: 0;
    left: 0;
}
.counter-item{
    position: relative;
    padding-left: 100px;
    h3{
        color: #000;
        font-family: 'Calistoga Regular';
        font-size: 50px;
        font-style: normal;
        font-weight: normal;
        line-height: 80%;
        transition: 0.5s;
    }
    p{
        color: #000;
        font-family: 'Domine Bold';
        font-size: 22px;
        font-style: normal;
        font-weight: normal;
        line-height: 181.818%;
        transition: 0.5s;
    }
    &:hover{
        img{
            transform: rotateY(180deg);
        }
    }
}
.counter-icon{
    position: absolute;
    top: 0;
    left: 0;
    width: 81px;
    height: auto;
}
/******************************
    Testimonial
*******************************/
.testimonial{
    padding-bottom: 0;
}
.user{
    display: flex;
    align-items: center;
    gap: 15px;
    img{
        width: 95px;
        height: 95px;
        border-radius: 50%;
    }
}
.user-dtls{
    h4{
        color: #000;
        font-family: 'Calistoga Regular';
        font-size: 26px;
        font-style: normal;
        font-weight: normal;
        line-height: 111.538%;
        margin-bottom: 15px;
    }
}
.rating{
    display: flex;
    align-items: center;
    gap: 3px;
    i{
        width: 22px;
        height: 22px;
        background: url(../img/rating-star.webp) no-repeat;
        background-size: contain;
    }
}
.testi-box{
    padding-bottom: 80px;
    position: relative;
}
.coma{
    position: absolute;
    right: 0;
    bottom: 0;
}
.testi-slider{
    .slick-arrow{
        width: 56px;
        height: 56px;
        background: #007A3E;
        top: unset;
        bottom: -30px;
        left: 0;
    }
    .slick-next{
        left: 70px;
    }
}
.testimonial-img{
    img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}
/******************************
       Explore
*******************************/
.explore{
    position: relative;
    padding-top: 0;
    padding-bottom: 120px;
    z-index: 1;
    &::after{
        position: absolute;
        content: '';
        width: 100%;
        height: 92%;
        left: 0;
        bottom: 0;
        background: #125325;
        clip-path: polygon( 0% 10.937%,0% 10.937%,11.311% 6.971%,21.781% 3.899%,31.616% 1.716%,41.023% 0.418%,50.208% 0%,59.375% 0.457%,68.733% 1.784%,78.485% 3.976%,88.839% 7.028%,100% 10.937%,100% 100%,0% 100%,0% 10.937% );
        z-index: -1;
    }
    .section-title{
        color: #FFF;
    }
}
.explore-vector{
    position: absolute;
    right: 0;
    bottom: 0;
}
.explore-box{
    display: block;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: 0.5s;
    &:hover{
        .explore-plus{
            opacity: 1;
        }
    }
}
.explore-middle{
    height: 610px;
}
.explore-plus{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #1313136b;
    scale: 0.83;
    opacity: 0;
    transition: 0.5s;
}
/******************************
        Benefits
*******************************/
.benefits{
    background: url(../img/benefits-bg.webp) no-repeat;
    background-size: cover;
    .col-lg-3{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .row{
        .col-lg-3:first-child{
            .benefits-card{
                text-align: right;
            }
            .benefits-card:first-child,
            .benefits-card:last-child{
                transform: translateX(25px);
            }
        }
        .col-lg-3:last-child{
            .benefits-card:first-child,
            .benefits-card:last-child{
                transform: translateX(-25px);
            }
        }
    }
}
.benefits-icon{
    width: 74px;
    height: 74px;
    background: #19592C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.benefits-card{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-block: 40px;
    &:hover{
        .benefits-icon{
            img{
                transform: rotateY(180deg);
            }
        }
    }
}
.benefits-card-content{
    width: 71%;
    h4{
        color: #19592C;
        font-family: 'Calistoga Regular';
        font-size: 24px;
        font-style: normal;
        font-weight: normal;
        line-height: 110.714%;
        text-transform: capitalize;
        margin-bottom: 5px;
    }
    p{
        line-height: 147.059%;
        margin-bottom: 0;
    }
}
.benefits-middle-img{
    padding: 15px;
    img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}
.benefits-products-banner{
    position: relative;
}
.milk-bottle-vector{
    position: absolute;
    left: 0;
    top: 140px;
}
/******************************
        Get
*******************************/
.get{
    padding-block: 120px;
    position: relative;
    z-index: 1;
    .container{
        background: url(../img/get-bg.webp) no-repeat;
        background-size: cover;
        border-radius: 25px;
    }
    .milk-bottle-vector{
        left: 0;
        top: 170px;
        z-index: 1;
    }
}
.get-fresh-sky-vector{
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.get-img{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    img{
        border-radius: 50%;
        border: 18px solid #FFF;
    }
}
.get-content{
    padding: 215px 40px;
    padding-top: 70px;
    height: 100%;
    .section-title{
        color: #FFF;
        margin-bottom: 17px;
    }
    p{
        color: #FFF;
        font-family: 'Domine Bold';
        font-size: 27px;
        line-height: 125.926%;
        margin-bottom: 25px;
    }
}
/******************************
        From Blog
*******************************/
.home-blog{
    background: url(../img/home-blog-bg.webp) no-repeat;
    background-size: cover;
    .section-title{
        color: #FFF;
    }
}
.home-blog-img{
    border-radius: 20px;
    overflow: hidden;
    display: block;
}
.home-blog-title{
    color: #FFF;
    font-family: 'Calistoga Regular';
    font-size: 30px;
    font-style: normal;
    font-weight: normal;
    line-height: 140%;
    text-transform: capitalize;
    margin-bottom: 8px;
}
.home-blog-content{
    padding-top: 17px;
    p{
        color: #FFF;
        margin-bottom: 2px;
    }
    .btn-group{
        margin-top: 25px;
    }
    .primary-btn{
        background: transparent;
        border: 1px solid #FFF;
        &:hover{
            border-color: #F7B918;
        }
    }
}
.home-blog-box:hover{
    .home-blog-title{
        color: #F7B918;
    }
}
/******************************
        Mobile App
*******************************/
.mobile-app{
    background: url(../img/app-bg.webp) no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    .section-title{
        margin-bottom: 40px;
    }
    p{
        margin-bottom: 30px;
    }
}
.app-vector-yellow{
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
/******************************
        FAQ
*******************************/
.faq{
  position: relative;
}
.faq-vector{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: -1;
}
.accordion__item {
  margin: 15px auto;
  transition: .5s;
  border-radius: 12px;
  background: #F3F3F3;
}
.accordion__item.accordion-item-active{
    background: #ffffff9f;
    box-shadow: 0 4px 60px 0 rgba(0, 0, 0, 0.20);
}
.accordion__item:hover {
  transform: translateY(-5px)
}
.accordion__item .accordion__title {
  position: relative;
  display: block;
  padding: 6px 70px 6px 25px;
  margin-bottom: 0;
  color: #000;
  font-family: 'Domine Bold';
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  line-height: 235%;
  border-radius: 3px;
  -webkit-transition: background-color .2s;
  transition: background-color .2s;
  cursor: pointer;
}
.accordion__title.accordion-active::after{
  content: '-';
  transform: rotate(180deg);
}
.accordion__title::after {
  content: '+';
  position: absolute;
  width: 32px;
  height: 32px;
  right: 18px;
  top: 13px;
  font-size: 22px;
  background: #007A3E;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s;
}
.accordion__item .accordion__content {
  display: none;
  padding: 0 30px 15px 25px;
}
/******************************
        Footer
*******************************/
.good-quality{
    margin-bottom: -170px;
    position: relative;
    z-index: 2;
    .container{
        background: url(https://dppreview4client.com/wordpress/first-bell-agro/wp-content/uploads/2026/03/good-quality-bg.webp) no-repeat;
        background-size: cover;
        padding: 85px 40px;
        padding-top: 70px;
        border-radius: 20px;
        overflow: hidden;
    }
}
.good-quality-box{
    width: 530px;
    .section-title{
        margin-bottom: 18px;
    }
    p{
        color: #000;
        font-family: 'Domine Bold';
        font-size: 24px;
        font-style: normal;
        font-weight: normal;
        line-height: 145.833%;
        margin-bottom: 18px;
    }
    .primary-btn{
        font-size: 17px;
        padding: 15px 40px;
    }
}
footer{
    background: #FFF9E8;
    padding-top: 230px;
    position: relative;
    z-index: 1;
    .milk-bottle-vector{
        left: 0;
        top: 80px;
    }
    &::before{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 54%;
        height: 100%;
        background: url(../img/footer-bg.webp) no-repeat;
        background-size: cover;
        z-index: -1;
    }
    .logo{
        margin-bottom:5px;
    }
    p{
        color: #000;
        font-family: 'Domine Regular';
        font-size: 16px;
        font-style: normal;
        font-weight: normal;
        line-height: 156.25%;
        margin-bottom: 5px;
    }
    ul li a,
    p a{
        color: #000;
        font-family: 'Domine Regular';
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 172.222%;
        &:hover{
            color: #207100;
        }
    }
    .footer-title{
        color: #000;
        font-family: 'Calistoga Regular';
        font-size: 27px;
        font-style: normal;
        font-weight: normal;
        line-height: 148.148%;
        text-transform: capitalize;
        margin-bottom: 20px;
    }
    ul li{
        transition: 0.4s;
        &:hover{
            transform: translateX(5px);
        }
    }

}
.footer-image{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.footer-contact p{
    position: relative;
    padding-left: 65px;
    margin-bottom: 20px;
}
.footer-contact p span {
    border-width: 1px;
    border-radius: 50%;
    background-color: #207100;
    position: absolute;
    left: 0px;
    top: 8px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-33px);
}
.footer-contact h5{
    color: #000;
    font-family: 'Calistoga Regular';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 100%;
    text-transform: capitalize;
    margin-bottom: 6px;
    margin-left: 65px;
}
.social-links{
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 5px;
    transition: 0.4s;
    a{
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid #000;
        transition: 0.4s;
        &:hover{
            background: #207100;
            border-color: #207100;
            transform: translateY(-3px);
            img{
                filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(166deg) brightness(105%) contrast(101%);
            }
        }
    }
}
.copyright{
    margin-top: 170px;
    padding-block: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    p, 
    p a{
        color: #FFF;
        font-family: 'Domine Bold';
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 155.556%;
        text-transform: capitalize;
        margin-bottom: 0
    }
    p a{
        &:hover{
            color: #F7B918;
        }
    }
}
/******************************************
        Inner Pages
********************************************/
.menu-white-color{
    #menu>.main-menu>ul>li>a{
        color: #fff;
    }
    .call-btn{
        color: #fff;
    }
    &.sticky{
        background: #000000;
    }
    #menu .main-menu ul li a::after {
    background: #C5BEBE;
    }
}
/* Contact Page */
.inner-banner{
    .container {
        justify-content: start;
        padding-top: 162px;
        align-items: center;
    }
    .banner-content{
        width: 50%;
    }
    h1{
        font-family: 'Calistoga Regular';
        font-size: 75px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        margin-bottom: 0;
        color: #fff;
    }
}
.contact-page {
    position: relative;
    padding-top: 70px;
    padding-bottom: 66px;
    z-index: 1;
    .top-vector{
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    .bottom-vector {
        position: absolute;
        bottom: -60%;
        right: 0;
        z-index: -1;
    }
    .bottom-vector2 {
        position: absolute;
        bottom: -60%;
        left: 0;
        z-index: -1;
    }
}
.contact-details {
    border-radius: 30px;
    background: #19592C;
    box-shadow: 0 4px 21px 0 rgba(0, 0, 0, 0.25);
    padding: 30px 34px;
    h3{
        color: #FFF;
        font-family: 'Calistoga Regular';
        font-size: 38px;
        font-style: normal;
        font-weight: 400;
        line-height: 128.947%;
        margin-bottom: 20px;
    }
    p{
        color: #fff;
        margin-bottom: 30px;
    }
    .provide-card {
    width: 100%;
        display: flex;
        align-items: center;
        padding-block: 0;
        position: relative;
        margin-bottom: 30px;
        padding-left: 60px;
        h5 {
            color: #FFF;
            font-family: 'Calistoga Regular';
            font-size: 20px;
            font-style: normal;
            font-weight: normal;
            line-height: 166.667%;
        }
    p,a{
            color: #fff;
            margin: 0;
        }
        &:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        &::after{
            display: none;
        }
        a:hover{
            color: #F7B918;
        }
        &:hover{
            h5{
                color: #fff;
            }
        }
}
.provide-icon {
    width: 44px;
    height: 44px;
    background: #F7B918;
    outline: none;
    position: absolute;
    left: 0;
    top: 7px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    img{
        filter: brightness(0) saturate(100%)
    }
}
}
.contact-form {
    padding-left: 5%;
    .section-title{
        margin-bottom: 6px;
    }
    p{
        margin-bottom: 25px;
    }
    .form-control{
        border: 0;
        padding: 20px 22px;
        color: #171717;
        font-size: 16px;
        font-style: normal;
        font-weight: normal;
        line-height: 88.235%;
        border-radius: 8px;
        background: #F1F1F1;
        font-family: 'Domine Regular';
        &::placeholder{
            color: #171717;
        }
    }
    form .primary-btn {
        width: auto;
        cursor: pointer;
        padding-inline: 55px;
        padding-block: 20px;
        background: #19592C;
        color: #fff;
        &:hover{
            background: #F7B918;
    color: #000;
        }
}
}
.map{
    padding-top: 30px;
    iframe{
        width: 100%;
        height: 500px;
        border: 0;
    }
}
/* Product Page */
.product-listing{
    .featured-product-box {
        border-radius: 15px;
        background: #FFF;
        padding: 15px;
        box-shadow: 0 4px 60px 0 rgb(0 0 0 / 15%);
        height: 100%;
    }
}
/* Blog Page */
.blog-item{
    .blog-img{
        margin-bottom: 10px;
        img{
            border-radius: 20px;
            height: 298px;
            width: 100%;
            object-fit: cover;
        }
    }
}
.blog-date{
    color: #000;
    font-family: "Domine Regular";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 181.25%;
}
.blog-title{
    color: #000;
    font-family: "Calistoga Regular";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: capitalize;
    margin-bottom: 8px;
}
/* About Page */
.vis-miss{
    background: url(../img/vis-miss-bg.webp) no-repeat;
    background-size: cover;
    .section-title{
        font-size: 46px;
        margin-bottom: 20px;
    }
}
.vis-miss-img{
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px
}
.our-promise-box{
    padding-inline: 50px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.our-promise-box-content{
    position: relative;
    border-radius: 600px;
    background: linear-gradient(271deg, #F8FDF1 27.13%, #C7EB8D 97.84%);
    .heading-leaf{
        width: 127px;
        position: absolute;
        right: -45px;
        top: 50%;
        transform: translateY(-50%);
    }
}
.our-promise{
    .section-title{
        display: inline-block;
    }
}
.our-promise-img{
    img{
        width: 100%;
        height: 100%;
    }
}
.our-promise-content{
    padding-right: 80px;
    h3{
        color: #000;
        font-family: 'Calistoga Regular';
        font-size: 41px;
        font-style: normal;
        font-weight: normal;
        line-height: 97.561%;
        text-transform: capitalize;
        margin-bottom: 17px;
    }
}
.our-promise-box-content-secondary{
    background: linear-gradient(90deg, #F8FDF1 27.13%, #C7EB8D 97.84%);
    .our-promise-content {
        padding-left: 80px;
        padding-right: 0
    }
    .heading-leaf{
        right: unset;
        left: -55px;
    }
    .milk-bottle-vector{
        top: 70px;
    }
}
.founder{
    background: #19592C;
    position: relative;
    z-index: 1;
    .bowl-vector{
        left: unset;
        right: -70px;
        bottom: 100px;
    }
}
.founder-vector-green{
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
}
.founder-content{
    padding-left: 40px;
    h5{
        color: #FFF;
        font-family: 'Domine SemiBold';
        font-size: 23px;
        font-style: normal;
        font-weight: normal;
        line-height: 144.444%;
        margin-bottom: 20px;
    }
    .section-title, p{
        color: #FFF;
    }
}
.sustainability{
    background: #E5FFD3;
    position: relative;
    .paneer-vector{
        right: unset;
        left: 0;
        top: unset;
        bottom: 50px;
    }
}
.sustainability-img{
    border-radius: 20px;
    overflow: hidden;
}
.why-trust-box{
    text-align: center;
    border-radius: 20px;
    padding: 50px 20px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
    transition: 0.5s;
    .advantage-icon{
        margin-inline: auto;
        margin-bottom: 8px;
    }
    h3{
        color: #000;
        font-family: 'Calistoga Regular';
        font-size: 25px;
        font-style: normal;
        font-weight: normal;
        line-height: 160%;
        margin-bottom: 2px;
        transition: 0.5s;
    }
    p{
        font-size: 17px;
        color: #333232;
        line-height: 147.059%;
        transition: 0.5s;
    }
    &:hover{
        background: #5FC146;
        h3, p{
            color: #FFF;
        }
    }
}
.why-trust-slider{
    .slick-list{
        padding-block: 40px;
    }
    .slick-slide{
        margin: 0 20px;
    }
    .slick-list{
        margin: 0 -20px;
    }
    .slick-arrow{
        width: 54px;
        height: 54px;
    }
}
/* Blog Details Page */
.blog-details{
    .blog-content{
       margin-bottom: 40px;
       .blog-img{
        margin-bottom: 20px;
        img{
            width: 100%;
            border-radius: 20px;
        }
       }
       .blog-title {
        font-size: 50px;
        line-height: 130%;
        text-transform: unset;
        margin-bottom: 25px;
        }
        h2,h3,h4{
            color: #000;
            font-family: "Calistoga Regular";
            font-size: 30px;
            font-style: normal;
            font-weight: 400;
            line-height: 140%;
            text-transform: capitalize;
            margin-bottom: 20px;
        }
        h3{
            font-size: 24px;
            line-height: 140%;
        }
        h4{
            font-size: 20px;
            line-height: 140%;
        }
        ul,ol{
        list-style: disc;
        padding-left: 20px;
        margin-bottom: 20px;
        & ::marker{
            color: #F9BD05;
        }
    }
    ol{
        list-style: decimal;
    }
    }
}
.post-pagination{
  display:flex;
  justify-content:space-between;
  gap:30px;
  margin:60px 0;
  flex-wrap:wrap;
}

.page-card{
  position: relative;
    padding: 8px 9px;
    border-radius: 70px;
    background: #F4F4F4;
    text-decoration: none;
    color: #111;
    overflow: hidden;
    transition: .35s;
    padding-right: 30px;
}


.page-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.card-content{
  display:flex;
  align-items:center;
  gap:16px;
  position:relative;
  z-index:2;
  text-align: left;
}
.text{
    text-align: left;
}
.card-content img{
  width:64px;
  height:64px;
  border-radius:50%;
  object-fit:cover;
}

.card-content h4{
  font-size:16px;
  font-weight:600;
  margin-bottom: 4px;
  display:-webkit-box;
  -webkit-line-clamp:1;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.nav-btn {
    position: relative;
    padding: 8px 14px;
    border-radius: 999px;
    background: #D9D9D9;
    font-weight: 600;
    z-index: 2;
}

.next .card-content{
  justify-content:flex-end;
  text-align:right;
}
.sidebar-title {
    color: #000;
    font-family: 'Calistoga Regular';
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    border-bottom: 1px solid #B1B1B1;
    padding-bottom: 15px;
    margin-bottom: 16px;
}
.sidebar {
    margin-bottom: 50px;
}
.tags{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    a{
        border-radius: 60px;
        background: #FFF7E2;
        color: #000;
        display: inline-block;
        padding: 6px 20px;
        &:hover{
            background: #F7B918;
        }
    }
}
.post-item{
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #B1B1B1;
    padding-bottom: 10px;
    margin-bottom: 15px;
    &:last-child{
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    img{
        width: 92px;
        height: 92px;
        border-radius: 50%;
        object-fit: cover;
    }
    h4{
    color: #000;
    font-family: 'Calistoga Regular';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 131.25%;
    text-transform: capitalize;
    }
    span{
        color: #000;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 142.857%;
    }
    &:hover{
        h4{
            color: #207100;
        }
        img{
            transform: scale(1.1);
        }
    }
}
/******************************************
             Responsive 
********************************************/
@media (max-width: 1600px),
(max-width: 1560px) {
    .banner-content {
        h1 {
            font-size: 65px;
        }
    }
    .banner-vector-yellow {
        width: 470px;
    }
    .banner-farmar {
        width: 337px;
        border-width: 17px;
        left: 50px;
    }
    .bowl-vector {
        width: 140px;
    }
    .banner-products {
        width: 670px;
    }
    .paneer-vector {
        width: 155px;
    }
    .product-vector1 {
        width: 108px;
    }
    .featured {
        .bowl-vector {
            bottom: unset;
            top: 120px;
            left: 45%;
        }
    }
    .explore-vector {
        width: 315px;
    }
    .milk-bottle-vector {
        width: 130px;
    }
    .get {
        padding-block: 90px;
    }
    .get-fresh-sky-vector{
        width: 700px;
    }
}
@media (max-width: 1440px),
(max-width: 1366px) {
    .popup .popup__content {
        width: 60%;
    }
    .form-control{
        font-size: 15px;
        padding: 14px 12px;
    }
    .right {
        padding: 15px;
    }
    p{
        font-size: 15px;
    }
    .sec-gap {
        padding: 60px 0;
    }
    header{
        padding-block: 7px;
    }
    .primary-btn{
        font-size: 16px;
        padding: 16px 30px;
    }
    #menu>.main-menu>ul>li>a {
        font-size: 19px;
    }
    #menu .main-menu ul li a::after {
        bottom: -3px;
    }
    .logo{
        width: 182px;
    }
    .call-icon {
        width: 46px;
        height: 46px;
    }
    .call-btn {
        font-size: 20px;
        gap: 10px;
        small {
            font-size: 15px;
        }
    }
    .header-btn {
        padding: 15px 30px;
    }
    .banner{
        .container{
            padding-top: 140px;
        }
    }
    .banner-content {
        h1 {
            font-size: 55px;
            margin-bottom: 10px;
        }
        p {
            font-size: 16px;
            margin-bottom: 10px;
        }
    }
    .banner-vector-yellow {
        width: 400px;
    }
    .banner-farmar {
        width: 290px;
        border-width: 12px;
        left: 50px;
    }
    .banner-products {
        width: 580px;
        right: 80px;
    }
    .paneer-vector {
        width: 130px;
        top: 105px;
    }
    .bowl-vector {
        width: 130px;
    }
    .advantage-card-content {
        h3 {
            font-size: 20px;
        }
        p{
            font-size: 15px;
        }
    }
    .advantage-icon{
        width: 57px;
    }
    .daily-content {
        .section-title {
            font-size: 40px;
             margin-bottom: 7px;
        }
    }
    .card-btn {
        font-size: 14px;
        padding: 14px 34px;
    }
    .daily-content {
        width: 430px;
        padding: 40px 30px;
    }
    .section-title {
        font-size: 42px;
    }
    .heading-bar{
        width: 125px;
    }
    .mb-60 {
        margin-bottom: 40px;
    }
    .featured {
        .bowl-vector {
            top: 70px;
        }
        .paneer-vector{
            top: 80px;
        }
    }
    .product-vector1 {
        width: 80px;
    }
    .product-img {
        border-radius: 20px;
        height: 236px;
        padding: 20px;
        img{
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }
    .featured-product-box {
        padding: 10px;
    }
    .product-content {
        padding: 20px 5px 15px 5px;
        h4 {
            font-size: 15px;
        }
        p {
            font-size: 14px;
        }
        .btn-group {
            gap: 9px;
        }
        .primary-btn {
            padding: 11px 20px;
        }
    }
    .featured-product-slider {
        .slick-arrow {
            width: 46px;
            height: 46px;
        }
    }
    .section-sub {
        font-size: 32px;
    }
    .mb-20{
        margin-bottom: 10px;
    }
    .about-company-card-content {
        h4 {
            font-size: 19px;
        }
        p{
            font-size: 14px;
        }
    }
    .mb-40 {
        margin-bottom: 20px;
    }
    .about-company-icon{
        width: 60px;
    }
    .counter {
        padding-block: 160px;
    }
    .counter-item {
        padding-left: 80px;
        h3 {
            font-size: 40px;
        }
        p {
            font-size: 18px;
        }
    }
    .counter-icon {
        width: 71px;
    }
    .user {
        img {
            width: 85px;
            height: 85px;
        }
    }
    .user-dtls {
        h4 {
            font-size: 22px;
            margin-bottom: 6px;
        }
    }
    .rating {
        i {
            width: 18px;
            height: 18px;
        }
    }
    .testi-slider {
        .slick-arrow {
            width: 46px;
            height: 46px;
            bottom: -20px;
        }
    }
    .coma{
        width: 60px;
    }
    .testi-box {
        padding-bottom: 63px;
    }
    .testimonial{
        padding-bottom: 0;
    }
    .heading-leaf{
        width: 168px;
    }
    .explore-middle {
        height: 516px;
    }
    .explore-box.mb-20{
        margin-bottom: 20px;
    }
    .explore-vector {
        width: 250px;
    }
    .explore {
        padding-bottom: 80px;
    }
    .explore-plus{
        img{
            width: 34px;
        }
    }
    .benefits-card-content {
        width: 70%;
        h4 {
            font-size: 20px;
        }
        p{
            font-size: 14px;
        }
    }
    .benefits-icon{
        width: 68px;
        height: 68px;
        padding: 16px;
    }
    .benefits-card {
        gap: 13px;
        margin-block: 27px;
    }
    .benefits-products-banner{
        .paneer-vector {
            width: 170px;
        }
    }
    .get {
        padding-block: 70px;
    }
    .get-fresh-sky-vector {
        width: 570px;
    }
    .milk-bottle-vector {
        width: 96px;
    }
    .get-content {
        padding: 270px 40px;
        padding-top: 70px;
        .section-title{
            margin-bottom: 9px;
        }
        p {
            font-size: 22px;
            margin-bottom: 15px;
        }
    }
    .get-img {
        img {
            border-width: 14px;
            width: 370px;
        }
    }
    .home-blog-content {
        p {
            font-size: 14px;
        }
    }
    .home-blog-title{
        font-size: 24px;
    }
    .app-vector-yellow{
        width: 653px;
    }
    .mobile-app {
        .section-title {
            margin-bottom: 20px;
        }
        p {
            margin-bottom: 10px;
        }
    }
    .mobile-app-content{
        img{
            width: 240px;
        }
    }
    .accordion__item .accordion__title {
        font-size: 17px;
    }
    .accordion__title::after {
        top: 10px;
    }
    .good-quality-box {
        width: 425px;
        .section-title {
            margin-bottom: 8px;
        }
        p{
            font-size: 20px;
            margin-bottom: 8px;
        }
    }
    .good-quality {
        .container {
            padding: 115px 40px;
            padding-top: 70px;
        }
    }
    footer {
        .footer-title {
            font-size: 21px;
        }
        p {
            font-size: 14px;
        }
        ul li a, p a {
            font-size: 16px;
        }
    }
    .footer-contact h5 {
        font-size: 18px;
        margin-left: 55px;
    }
    .footer-contact p span {
        width: 42px;
        height: 42px;
        padding: 12px;
    }
    .footer-contact p {
        padding-left: 55px;
    }
    .copyright {
        margin-top: 130px;
        padding-block: 20px;
        p, p a {
            font-size: 16px;
        }
    }
    .fixed-wp {
        width: 68px;
        height: 68px;
    }
    .fixed-contact {
        right: 10px;
    }
    .contact-details {
        h3 {
            font-size: 28px;
            margin-bottom: 10px;
        }
    }
    .contact-form {
        padding-left: 0;
    }
    .blog-date {
        font-size: 14px;
    }
    .blog-title{
        font-size: 24px;
    }
    .blog-item {
        & .blog-img {
            img {
                height: 250px;
            }
        }
    }
    .vis-miss {
        .section-title {
            font-size: 38px;
            margin-bottom: 15px;
        }
    }
    .our-promise-content {
        h3 {
            font-size: 33px;
            margin-bottom: 10px;
        }
        .heading-leaf {
            width: 117px;
        }
    }
    .founder {
        .bowl-vector {
            right: -40px;
        }
    }
    .why-trust-box {
        h3 {
            font-size: 20px;
        }
        p{
            font-size: 15px;
            margin-bottom: 0;
        }
    }
    .why-trust-slider{
        .slick-slide{
            margin: 0 15px;
        }
        .slick-list {
            margin: 0 -15px;
        }
        .slick-arrow {
            width: 48px;
            height: 48px;
        }
    }
 
}
@media (max-width: 1024px) {}
@media (max-width: 992px) {
    .popup .popup__content {
        width: 70%;
    }
    .left{
        display: none;
    }
    .form-control {
        padding: 13px 12px;
    }
    .section-title {
        font-size: 32px;
    }
    .heading-bar {
        width: 95px;
    }
    header {
        padding-block: 2px;
    }
    #menu {
        padding-inline: 10px;
    }
    #menu .main-menu ul li.current-menu-item ul li a {
        color: #FFF;
    }
    #menu>.main-menu>ul>li>a{
        padding: 22px 25px;
    }
    #menu>.main-menu>ul>li>a:hover::after, #menu .main-menu ul li.current-menu-item a::after {
        width: 10%;
    }
    #menu .main-menu ul li a::after {
        bottom: 10px;
        left: 22px;
        background: #ffffff;
        height: 1px;
    }
    .sec-gap {
        padding: 40px 0;
    }
    .logo {
        width: 150px;
    }
    .call-btn{
        span{
            display: none;
        }
    }
    .flex-box {
        gap: 10px;
    }
    .banner-products {
        width: 215px;
        right: 10px;
    }
    .banner-farmar {
        width: 150px;
        border-width: 10px;
        left: 25px;
    }
    .banner {
        .container {
            padding-right: 0;
            padding-top: 0;
            align-items: center;
        }
    }
    .banner-content {
        padding-top: 30px;
        h1 {
            font-size: 38px;
        }
    }
    .bowl-vector {
        width: 100px;
    }
    .paneer-vector {
        width: 100px;
        top: 80px;
    }
    .banner-vector-yellow {
        width: 218px;
    }
    .primary-btn {
        font-size: 16px;
        padding: 15px 20px;
    }
    .advantage-slider{
        padding-inline: 30px;
    }
    .slick-prev{
        left: -15px;
    }
    .slick-next{
        right: -15px;
    }
    .featured {
        background-position: center;
        .paneer-vector {
            top: 50px;
        }
    }
    .about-company-icon {
        width: 55px;
    }
    .counter {
        padding-block: 90px;
        padding-top: 140px;
    }
    .counter-icon {
        width: 63px;
    }
    .testimonial{
        padding-bottom: 0;
        .row{
            .col:last-child{
                order: -1;
            }
        }
    }
    .explore-box.mb-20 {
        margin-bottom: 8px;
    }
    .explore-middle {
        height: 330px;
    }
    .explore-vector {
        width: 175px;
    }
    .benefits{
        .row{
            .col-lg-6{
                order: -1;
            }
            .col-lg-3{
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: space-between;
            }
            .col-lg-3:first-child {
                .benefits-card:first-child, .benefits-card:last-child {
                    transform: translateX(0);
                }
            }
            .col-lg-3:last-child {
                .benefits-card:first-child, .benefits-card:last-child {
                    transform: translateX(0);
                }
            }
        }
    }
    .benefits-card-content {
        width: 100%;
        text-align: center;
        h4 {
            font-size: 18px;
        }
    }
    .benefits-middle-img {
        padding-inline: 50px;
    }
    .benefits-card{
        flex-direction: column;
        width: 32%;
        gap: 7px;
        margin-block: 15px;
    }
    .benefits-icon {
        order: -1;
    }
    .milk-bottle-vector {
        width: 70px;
        top: 70px;
    }
    .benefits-products-banner {
        .paneer-vector {
            width: 130px;
            top: 40px;
        }
    }
    .get-img {
        padding-top: 30px;
    }
    .get-content {
        padding: 50px 30px;
        text-align: center;
        .btn-group{
            justify-content: center;
        }
    }
    .get {
        .milk-bottle-vector {
            z-index: -1;
        }
    }
    .get-fresh-sky-vector {
        width: 470px;
    }
    .app-vector-yellow {
        width: 553px;
    }
    .mobile-app-content {
        img {
            width: 190px;
        }
    }
    .faq{
        .row{
            .col:last-child{
                order: -1;
            }
        }
    }
    .good-quality {
        margin-bottom: -110px;
        .container {
            padding: 50px 20px;
            padding-top: 30px;
        }
    }
    .good-quality-box {
        width: 310px;
        p {
            font-size: 17px;
        }
    }
    .section-sub {
        font-size: 24px;
        margin-bottom: 5px;
    }
    footer{
        padding-top: 140px;
        padding-bottom: 0;
        .logo{
            margin-inline: auto;
            margin-bottom: 0;
        }
        .row{
            .col-lg-5:first-child{
                text-align: center;
            }
        }
    }
    .social-links {
        justify-content: center;
        margin-top: 12px;
        gap: 7px;
    }
    .copyright{
        margin-top: 0;
        flex-direction: column;
        text-align: center;
        padding-block: 0px;
        p, p a {
            color: #000;
        }
    }
    .footer-image {
        position: relative;
        margin-bottom: -10px;
        margin-top: -50px;
    }
    .product-listing {
        .featured-product-box {
            padding: 7px;
        }
    }
        .vis-miss {
        .section-title {
            font-size: 30px;
            margin-bottom: 10px;
        }
    }
    .vis-miss-img {
        margin-bottom: 20px;
    }
    .our-promise-box  {
        padding-inline: 20px;
        gap: 40px;
    }
    .our-promise-content {
        text-align: center;
        padding-right: 0;
        padding-inline: 40px;
    }
    .our-promise-box-content{
        border-radius: 600px 600px 20px 20px;
        background: linear-gradient(360deg, #F8FDF1 27.13%, #C7EB8D 97.84%);
    }
    .our-promise-box-content-secondary{
        .row{
            .col-lg-5{
                order: -1;
            }
        }
        .our-promise-content {
            padding-left: 0;
            padding-right: 0;
            padding-inline: 40px;
        }
        .heading-leaf{
            left: -40px;
        }
    }
    .founder-content{
        padding-left: 0;
    }
    .founder-content {
        h5 {
            font-size: 20px;
        }
    }
    .founder {
        .bowl-vector {
            right: -40px;
            bottom: 410px;
        }
    }
    .sustainability{
        .row{
            .col:last-child{
                order: -1;
            }
        }
        .paneer-vector {
            display: none;
        }
    }
}
@media (max-width: 575px) {
    .form-title {
        font-size: 20px;
    }
    .popup .popup__content {
        width: 90%;
    }
    .form-control{
        font-size: 13px;
    }
    form .primary-btn {
        padding: 10px 25px;
    }
    .popup .popup__content .close {
        position: absolute;
        width: 30px;
        height: 30px;
    }
    .popup .popup__content .close span{
        width: 15px;
    }
    .sec-gap {
        padding: 20px 0;
    }
    p{
        font-size: 14px;
        line-height: 150.25%;
    }
    .hamburger {
        top: 7px;
        right: 3px;
    }
    .logo {
        width: 100px;
    }
    .fixed-wp {
        width: 48px;
        height: 48px;
    }
    .fixed-contact {
        right: 1px;
        bottom: 2%;
    }
    .call-icon {
        width: 36px;
        height: 36px;
        padding: 10px;
    }
    .flex-box{
        margin-right: 50px;
    }
    #menu>.main-menu>ul>li>a {
        font-size: 14px;
        padding: 18px 20px;
    }
    .banner{
        height: 340px;
    }
    .banner-farmar {
        display: none;
    }
    .banner-products {
        width: 160px;
        right: 10px;
    }
    .banner-vector-yellow {
        width: 120px;
    }
    .bowl-vector {
        width: 50px;
    }
    .paneer-vector {
        width: 50px;
        top: 55px;
    }
    .banner-content{
        width: 100%;
        text-align: left;
        padding-top: 0;
        h1 {
            font-size: 30px;
        }
        p{
            font-size: 14px;
        }
        .btn-group{
            justify-content: start;
        }
    }
    .primary-btn {
        font-size: 12px;
        padding: 12px 15px;
    }
    .header-btn {
        padding: 11px 18px;
    }
    .section-title {
        font-size: 22px;
    }
    .section-sub {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .advantage-card-content {
        h3 {
            font-size: 16px;
        }
        p {
            font-size: 13px;
        }
    }
    .advantage-icon {
        width: 50px;
    }
    .slick-arrow {
        width: 24px;
        height: 24px;
    }
    .slick-prev {
        left: -5px;
    }
    .slick-next {
        right: -5px;
    }
    .daily-content {
        width: 250px;
        padding: 15px 15px;
        .section-title{
            font-size: 22px;
            margin-bottom: 5px;
        }
        p{
            font-size: 13px;
            line-height: 118%;
            margin-bottom: 7px;
        }
    }
    .daily-box {
        border-radius: 10px;
    }
    .card-btn {
        font-size: 12px;
        padding: 10px 15px;
    }
    .mb-60 {
        margin-bottom: 20px;
    }
    .heading-bar {
        width: 70px;
    }
    .product-img {
        border-radius: 10px;
        height: 200px;
        padding: 20px;
    }
    .featured-product-box {
        border-radius: 10px;
    }
    .featured {
        .paneer-vector {
            top: 35px;
        }
        .bowl-vector {
            top: 47px;
            left: 55%;
        }
    }
    .product-vector1 {
        width: 50px;
    }
    .featured-product-slider {
        .slick-arrow {
            width: 36px;
            height: 36px;
        }
        .slick-next {
            right: -8px;
        }
        .slick-prev {
            left: -8px;
        }
    }
    .product-content {
        padding: 15px 5px 10px 5px;
        h4 {
            font-size: 14px;
        }
        .primary-btn{
            width: 60%;
        }
    }
    .about-company-card-content {
        width: 83%;
        h4 {
            font-size: 15px;
        }
        p {
            font-size: 13px;
        }
    }
    .about-company-icon {
        width: 50px;
    }
    .about-company-card {
        gap: 9px;
    }
    .counter-item {
        padding-left: 0;
        text-align: center;
        h3 {
            font-size: 30px;
        }
        p {
            font-size: 14px;
            margin-bottom: 0;
        }
    }
    .counter-icon {
        width: 50px;
        position: relative;
    }
    .counter {
        padding-block: 40px;
        padding-top: 130px;
    }
    .user {
        img {
            width: 55px;
            height: 55px;
        }
    }
    .user-dtls {
        h4 {
            font-size: 16px;
            margin-bottom: 5px;
        }
    }
    .rating {
        i {
            width: 12px;
            height: 12px;
        }
    }
    .coma {
        width: 40px;
    }
    .testi-slider {
        .slick-arrow {
            width: 36px;
            height: 36px;
            bottom: -20px;
        }
        .slick-next {
            left: 45px;
        }
    }
    .testi-box {
        padding-bottom: 40px;
    }
    .heading-leaf {
        width: 100px;
    }
    .explore {
        &::after {
            bottom: unset;
            height: 15%;
            top: 35px;
        }
        &::before{
            position: absolute;
            content: '';
            width: 100%;
            height: 83%;
            background: #125325;
            bottom: 0;
            left: 0;
        }
    }
    .explore-middle {
        height: auto;
    }
    .explore-middle.mb-20{
        margin-bottom: 0;
    }
    .explore-plus {
        border-radius: 10px;
        img {
            width: 25px;
        }
    }
    .explore-box {
        border-radius: 10px;
    }
    .explore {
        padding-bottom: 50px;
    }
    .benefits-middle-img {
        padding: 0;
        padding-inline: 10px;
    }
    .benefits-card {
        width: 90%;
        background: #ffffff;
        padding: 15px;
        border-radius: 10px;
        margin-block: 5px;
    }
    .benefits-icon {
        width: 58px;
        height: 58px;
        padding: 13px;
    }
    .benefits-card-content {
        h4 {
            font-size: 15px;
        }
        p {
            font-size: 13px;
        }
    }
    .benefits {
        & .row {
            .col-lg-3 {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
            }
        }
    }
    .milk-bottle-vector {
        width: 50px;
        top: 15px;
    }
    .benefits-products-banner {
        height: 200px;
        .paneer-vector {
            width: 70px;
            top: 20px;
        }
    }
    .get {
        padding-inline: 15px;
        padding-block: 20px;
        .container {
            border-radius: 10px;
        }
    }
    .get-img {
        img {
            border-width: 8px;
            width: 210px;
        }
    }
    .get-content {
        padding: 15px 10px;
        .section-title {
            margin-bottom: 5px;
        }
        p {
            font-size: 14px;
            margin-bottom: 10px;
        }
    }
    .home-blog-img {
        border-radius: 10px;
    }
    .home-blog-content {
        padding: 10px;
        p {
            font-size: 13px;
        }
        .btn-group {
            margin-top: 10px;
        }
    }
    .home-blog-title {
        font-size: 18px;
    }
    .home-blog-box{
        background: #19592C;
        border-radius: 10px;
    }
    .mobile-app {
        .section-title {
            margin-bottom: 5px;
        }
    }
    .mobile-app-content {
        img {
            width: 130px;
        }
    }
        .accordion__item {
        margin: 10px auto;
        border-radius: 6px;
    }
    .accordion__item .accordion__title {
        font-size: 15px;
        line-height: 125%;
        padding: 6px 40px 6px 10px;
    }
    .accordion__item .accordion__content{
        padding: 0 10px 10px 10px;
        p{
            font-size: 13px;
        }
    }
    .accordion__title::after {
        width: 22px;
        height: 22px;
        font-size: 14px;
        top: 13px;
        right: 5px;
    }
    .good-quality {
        padding-inline: 15px;
        .container {
            border-radius: 10px;
            padding: 90px 10px;
            padding-top: 30px;
        }
    }
    .good-quality-box {
        width: 250px;
        .section-title {
            margin-bottom: 2px;
        }
        p {
            font-size: 14px;
        }
        .primary-btn {
            font-size: 12px;
            padding: 10px 15px;
        }
    }
    footer{
        padding-top: 120px;
        .milk-bottle-vector {
            top: 110px;
        }
        p {
            font-size: 13px;
        }
        .footer-title {
            font-size: 17px;
            margin-bottom: 5px;
        }
        ul li a, p a {
            font-size: 14px;
        }
        .col-md-5{
            text-align: center;
        }
        &::before {
            width: 117%;
        }
    }
    .footer-contact p span {
        width: 38px;
        height: 38px;
        padding: 11px;
        transform: translateY(-25px);
    }
    .footer-contact h5 {
        font-size: 14px;
        margin-left: 45px;
        margin-bottom: 3px;
    }
    .footer-contact p {
        padding-left: 45px;
    }
    .copyright {
        margin-bottom: 30px;
        p, p a {
            font-size: 13px;
            line-height: 130.556%;
        }
    }
    .inner-banner{
        height: 160px;
        .banner-content{
            padding-top: 70px;
        }
    }
    .contact-page {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .contact-details {
        border-radius: 10px;
            padding: 20px 24px;
        h3{
            font-size: 22px;
        }
    }
    .contact-form {
        .form-control {
            padding: 15px 12px;
            font-size: 14px;
        }
        form .primary-btn {
            padding: 12px 25px;
            font-size: 13px;
        }
    }
    .map {
        iframe {
            width: 100%;
            height: 250px;
            border: 0;
        }
    }
    .blog-title {
        font-size: 18px;
    }
    .product-listing {
        .primary-btn{
            width: auto;
        }
        .product-img {
            border-radius: 10px;
            height: 130px;
            padding: 10px;
        }
    }
    .inner-banner {
        .banner-content {
            width: 60%;
        }
    }
    .blog-details {
        & .blog-content {
            .blog-title {
                font-size: 24px;
                margin-bottom: 15px;
            }
            .blog-img {
                margin-bottom: 5px;
            }
            h2, h3, h4 {
                font-size: 22px;
                line-height: 110%;
                margin-bottom: 10px;
            }
            h3{
                font-size: 20px;
            }
            h4{
                font-size: 18px;
            }
        }
    }
    body{
        font-size: 14px;
    }
    .post-pagination {
        gap: 20px;
        margin: 20px 0;
        margin-top: 0;
    }
    .card-content h4 {
        font-size: 14px;
    }
    .sidebar-title {
        font-size: 22px;
        padding-bottom: 5px;
    }
    .tags {
        gap: 6px;
    }
    .post-item {
        img {
            width: 72px;
            height: 72px;
        }
        h4 {
            font-size: 14px;
        }
    }
    .vis-miss-img {
        border-radius: 10px;
    }
    .vis-miss {
        .section-title {
            font-size: 24px;
            margin-bottom: 5px;
        }
    }
    .our-promise-box {
        padding-inline: 0;
        gap: 20px;
    }
    .our-promise-content {
        padding-inline: 10px;
        h3 {
            font-size: 24px;
        }
    }
    .our-promise-box-content{
        .heading-leaf{
            width: 70px;
            right: -5px;
        }
    }
    .our-promise-box-content-secondary {
        .heading-leaf {
            left: -5px;
        }
        .our-promise-content {
            padding-inline: 10px;
        }
    }
    .founder-content {
        h5 {
            font-size: 15px;
            margin-bottom: 10px;
        }
    }
    .sustainability-img {
        border-radius: 10px;
    }
    .why-trust-box {
        padding: 30px 20px;
        border-radius: 10px;
        h3 {
            font-size: 16px;
        }
        p {
            font-size: 14px;
        }
    }
    .why-trust-slider {
        .slick-arrow {
            width: 32px;
            height: 32px;
        }
    }
    .menu-white-color{
        .hamburger:after {
            border-top: 2px solid #F7B918;
            border-bottom: 2px solid #F7B918;
        }
        .hamburger:before {
            background: #F7B918;
        }
        .hamburger.menu-opened{
            &:after {
                border-top: 0;
            }
        }
    }
	
}