@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --black: #5a5a5a;
    --black-100: #050505;
    --black-200: #1d1d1d;
    --black-300: #333;
    --background: #ffffff;
    --green: #7fba00;
    --red: #612037;
    --white: rgba(255, 255, 255, 1);
    --white-100: #e2e2e2;
    --footer: #f7f6f2;
    --main: 100px;
    --grey: rgba(255, 255, 255, .7);
    --grey-200: #dcdcdc;
    --grey-300: rgb(176, 176, 176);
    --grey-400: rgba(255, 255, 255, .2);
    --weight-400: 400;
    --weight-500: 500;
    --weight-600: 600;
    --weight-700: 700;
    --size-11: 11px;
    --size-12: 12px;
    --size-13: 13px;
    --size-14: 14px;
    --size-14: 15px;
    --size-16: 16px;
    --size-17: 17px;
    --size-18: 18px;
    --size-20: 20px;
    --size-22: 22px;
    --size-24: 24px;
    --size-26: 26px;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Quicksand", sans-serif;
    overflow-x: hidden !important;
    box-sizing: border-box;
    background: var(--white);
    width: 100%;
    height: 100%;
    font-size: var(--size-17);
    font-weight: var(--weight-500);
    color: var(--black);
    transition: all 0.4s ease-in-out;
}

::selection {
    background-color: var(--red);
    color: var(--white);
}

main {
    padding-top: var(--main);
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
ul {
    margin: 0;
    padding: 0;
    color: inherit;
    text-decoration: none;
    list-style-type: none;
}

p {
    line-height: 25px;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    object-fit: cover;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.container {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 1300px;
}

.fixed-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 1000;
}

:is(.whatsapp-button, .up-button) {
    color: var(--green);
    border: 1px solid var(--white);
    background: var(--white);
    display: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 20px #0000001a;
}

.whatsapp-button{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--green);
    border: 1px solid var(--green);
}

.content-lists {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.content-lists>li::before {
    content: "\f138";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 7px;
    font-size: var(--size-12);
    color: var(--green);
}

.content-lists.content-lists--footer>li {
    width: max-content;
    transition: all 0.4s ease-in-out;
    border-bottom: 1px dashed transparent;
}

.content-lists.content-lists--footer>li:hover {
    width: max-content;
    border-bottom: 1px dashed var(--green);
    color: var(--green);
}

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-thumb {
    background: var(--grey-300);
    border-radius: 2px;
}

::-webkit-scrollbar-track {
    background: var(--white-100);
}

.row {
    padding-left: 20px;
    padding-right: 20px;
}

.gap {
    margin: 70px 0 70px 0;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

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

.flex-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.margin-top {
    margin-top: 20px;
}

.button {
    border: 1px solid var(--green);
    background: var(--green);
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
    padding: 14px;
    cursor: pointer;
    font-size: var(--size-12);
    letter-spacing: 3px;
    font-weight: var(--weight-500);
    border-radius: 20px;
    z-index: 500;
    white-space: nowrap;
}

.button--white {
    border: 1px solid var(--green);
    color: var(--green);
    background: transparent;
}

.button.button--white:hover {
    border: 1px solid var(--green);
    color: var(--white);
    background: var(--green);
}

.button:hover {
    color: var(--green);
    background: transparent;
    border: 1px solid var(--green);
}

.social-button {
    border-radius: 0;
    width: 35px;
    height: 35px;
}

.link-highlight {
    color: var(--green);
    font-weight: var(--weight-700);
    transition: all 0.4s ease-in-out;
    border-bottom: 1px dashed var(--green);
}

.link-highlight:hover {
    color: var(--red);
}

/* header - nav css start */
.benorganic-header {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-around;
    top: 0;
    width: 100%;
    height: 100px;
    background: white;
    color: var(--black-100);
    z-index: 700;
    padding: 20px 30px;
    box-sizing: border-box;
    gap: 10px;
    transition: all 0.3s ease-in;
}

.benorganic-header.scroll {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.25);
}

.benorganic-header-wrapper {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-self: stretch;
    align-items: center;
}

.benorganic-navigation {
    position: absolute;
    left: 0;
    top: 99%;
    width: 100%;
    overflow: hidden;
    transition: max-height 0.2s ease-in-out;
    max-height: 0px;
    background: var(--white);
    color: var(--black);
    text-align: left;
    padding: 0 30px;
}

.benorganic-navigation.active {
    box-sizing: border-box;
    max-height: 93vh;
    padding: 40px 30px;
    overflow-y: auto;
    border-top: 0.5px solid var(--grey-200);
}

.main-menu--navigation>li>a {
    opacity: .6;
    font-size: var(--size-18);
    font-weight: var(--weight-500);
    color: var(--black);
}

.main-menu--navigation>li>a.active {
    opacity: 1;
}

.sub-menu--navigation>li {
    opacity: .6;
    margin: 12px 20px;
    font-size: var(--size-14);
    transition: all 0.4s ease-in-out;
    color: var(--black);
}

.sub-menu--navigation-item>li {
    margin: 10px 25px;
    transition: all 0.4s ease-in-out;
    font-weight: var(--weight-500);
}

.sub-menu--navigation-item>li:hover {
    color: var(--red);
}

.sub-menu--navigation-item>li::before {
    content: "\f054";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 6px;
    font-size: var(--size-11);
}

.sub-menu--navigation>li:is(:hover, .active) {
    color: var(--green);
    opacity: 1;
}

.sub-menu--navigation>li.active {
    color: var(--green);
    opacity: 1;
    font-weight: var(--weight-600);
}

.sub-menu--navigation-item>li.active {
    color: var(--red);
    opacity: 1;
    font-weight: var(--weight-600);
}

.sub-menu--navigation>li>a::before {
    content: "\f111";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 6px;
    font-size: 6px;
}

.main-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
}

.main-menu--navigation {
    display: flex;
    flex-direction: column;
}

.main-menu>li {
    position: relative;
}

.main-menu>li>a.active {
    border-bottom: 1px dashed var(--green);
}

.main-menu>li>a {
    display: inline-block;
    font-size: var(--size-13);
    line-height: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 7px;
    transition: 0.4s ease-in-out;
    font-weight: var(--weight-600);
    margin: 15px 0 15px 0;
    position: relative;
    color: var(--black-300);
}

.main-menu>li>a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    border-bottom: 1px dashed var(--green);
    transition: all 0.4s ease-in-out;
}

.main-menu>li>a:hover::before {
    width: 100%;
}

.main-menu>li:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.25);
}

.main-menu>li>:is(a:hover, a.active) {
    opacity: 1;
    color: var(--green);
}

.sub-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    width: 250px;
    margin: 0;
    margin-top: 15px;
    left: 0;
    padding: 20px 0;
    background: white;
    border-radius: 2px;
    transition: visibility .3s ease-in, opacity .3s ease-in;
}

.sub-menu>li {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.sub-menu>li>a {
    display: flex;
    align-items: center;
    line-height: 25px;
    padding: 0 20px 15px 27px;
    color: var(--black-200);
    font-size: var(--size-12);
    transition: all 0.2s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: var(--weight-500);
    width: 100%;
}

.sub-menu>li>a::before {
    content: "\f111";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 4px;
    margin-right: 7px;
    color: var(--green);
}

.sub-menu.sub-menu--first>li>a::after {
    content: "\f054";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 8px;
    position: absolute;
    right: 10px;
}

.sub-menu>li>:is(a:hover, a.active) {
    color: var(--green);
    font-weight: var(--weight-500);
}

.sub-menu>li:hover>.sub-menu-item {
    opacity: 1;
    visibility: visible;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.25);
}

.sub-menu-item {
    position: absolute;
    padding: 10px 15px;
    width: max-content;
    left: 100%;
    top: 0;
    background: var(--white);
    color: var(--black-200);
    opacity: 0;
    visibility: hidden;
    border-radius: 2px;
}

.sub-menu-item>li.active {
    color: var(--green);
}

.sub-menu>li:hover>.sub-menu-item>li {
    margin: 5px 8px;
    line-height: 25px;
    font-size: var(--size-12);
    letter-spacing: 2px;
    font-weight: var(--weight-500);
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
}

.sub-menu>li:hover>.sub-menu-item>li:hover {
    color: var(--green);
}

.sub-menu>li:hover>.sub-menu-item>li::before {
    content: "\f111";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 5px;
    font-size: 5px;
    color: var(--green);
}

/* header css end */

/* footer css start */
.footer-wrapper {
    position: relative;
    background: var(--footer);
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    padding: 60px 30px 30px 30px;
    color: var(--black);
}

.footer-top {
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--grey-200);
    padding-top: 50px;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/white-pattern.webp);
    background-position: center;
    background-size: cover;
    width: 100%;
    background-repeat: no-repeat;
    transition: all 0.4s ease-in-out;
    transform-origin: center;
    transform: scaleY(-1);
}

.footer-social-button {
    border-radius: 0px;
    width: 5px;
    height: 5px;
}

/* footer css end */

@media (max-width:575px) {

    .grid-4 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

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

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

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

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

    .grid-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .main-menu {
        display: none;
    }

    .benorganic-logo {
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }

    .footer-pattern {
        height: 12%;
    }

    .form-wrapper {
        width: 100% !important;
    }

    .subscribe-container {
        flex-direction: column !important;
    }

    .subscribe-container {
        width: 100% !important;
    }

    .flex-row--section {
        display: flex;
        flex-direction: column;
    }

    .section-wrapper::before,
    .section-wrapper::after {
        content: "";
        width: 0 !important;
    }

    .slider-1--img-2-wrapper {
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .slider-2--img-2 {
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .slider-1--img-1 {
        height: 40% !important;
    }

    .products-preview .preview.active {
        flex-direction: column !important;
    }

    .products-preview .preview h4 {
        font-size: 23px !important;
        text-align: center;
    }

    .header-title {
        font-size: 25px !important;
    }

    .header-title>span {
        font-size: 25px !important;
    }

    .products-preview .preview img {
        height: 20rem !important;
    }

    .products-details-wrapper {
        align-items: center !important;
    }

    .slider-3--img-3-wrapper{
        top: 33% !important;
        right: inherit !important;
        bottom: inherit !important;
    }
}

@media (min-width:576px) {

    .grid-4 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .grid-6 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

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

    .grid-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .main-menu {
        display: none;
    }

    .benorganic-logo {
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }

    .footer-pattern {
        height: 17%;
    }

    .form-wrapper {
        width: 90% !important;
    }

    .subscribe-container {
        flex-direction: column !important;
    }

    .subscribe-container {
        width: 80% !important;
    }

    .flex-row--section {
        display: flex;
        flex-direction: column;
    }

    .section-wrapper::before,
    .section-wrapper::after {
        content: "";
        width: 55% !important;
    }

    .slider-1--img-1 {
        height: 50% !important;
    }

    .slider-1--img-2-wrapper {
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .slider-2--img-2 {
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .products-preview .preview.active {
        flex-direction: column !important;
    }

    .products-preview .preview img {
        height: 23rem !important;
    }

    .products-preview .preview h4 {
        font-size: 26px !important;
        text-align: center;
    }

    .products-details-wrapper {
        text-align: center !important;
    }

    .products-details-wrapper {
        align-items: center !important;
    }

    .slider-3--img-3-wrapper{
        top: auto !important;
        right: inherit !important;
        bottom: inherit !important;
    }
}

@media (min-width:768px) {

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

    .grid-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

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

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

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

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

    .main-menu {
        display: none;
    }

    .header-title {
        font-size: 30px !important;
    }

    .benorganic-logo {
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }

    .footer-pattern {
        height: 17%;
    }

    .form-wrapper {
        width: 70% !important;
    }

    .subscribe-container {
        flex-direction: column !important;
    }

    .subscribe-container {
        width: 60% !important;
    }

    .flex-row--section {
        display: flex;
        flex-direction: row;
    }

    .slider-1--img-1 {
        height: 50% !important;
    }

    .slider-1--img-2-wrapper {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .slider-2--img-2 {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .products-preview .preview.active {
        flex-direction: column !important;
    }

    .products-preview .preview img {
        height: 29rem !important;
    }

    .products-details-wrapper {
        align-items: center !important;
    }

    .slider-3--img-3-wrapper{
        right: 5% !important;
        bottom: 18% !important;
    }
}

@media (min-width:992px) {

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

    .grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .grid-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

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

    .main-menu {
        display: none;
    }

    .benorganic-logo {
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }

    .footer-pattern {
        height: 22%;
    }

    .form-wrapper {
        width: 60% !important;
    }

    .subscribe-container {
        flex-direction: column !important;
    }

    .subscribe-container {
        width: 40% !important;
    }

    .flex-row--section {
        display: flex;
        flex-direction: row;
    }

    .slider-1--img-1 {
        height: 70% !important;
    }

    .products-preview .preview.active {
        flex-direction: row !important;
    }
}

@media (min-width:1200px) {

    .grid-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .main-menu {
        display: flex;
    }

    .social-button {
        display: none;
    }

    .benorganic-logo {
        display: flex;
        justify-content: center;
        width: max-content;
    }
}