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

/* Variables */

:root {
    /* COLORS */
    /* --background-color: #F5F5F5; */
    --background-color-2: #E9D6B5;
    --lightGreen-color: #C2D28E;
    --shade-of-white: #d9d9d9;
    --white-color: #fff;
    --black-color: #323232;
    /* BORDER RADIUS */
    --border-radius-1: 30px;
    --border-radius-2: 50px;
    --border-rounded: 100%;
}

/* GENERAL STYLING */

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

body {
    font-family: "Raleway", sans-serif;
    background-color: var(--white-color);
    color: var(--black-color);
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

ul {
    padding: 0;
}

p {
    margin: 0;
}

.divider {
    height: 1px;
    width: 100%;
    background-color: var(--white-color);
    margin-bottom: 50px;
}

.btn {
    display: block;
    border-radius: var(--border-radius-2);
    background-color: var(--lightGreen-color);
    font-size: 16px;
    font-weight: 700;
    color: var(--white-color);
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn:hover {
    background-color: var(--background-color-2);
    border-color: var(--background-color-2);
    color: var(--white-color);
}
.w150px{
    width: 150px;
}
.text-right{
    text-align: right;
}

/*
** HEADER
*/
header {
    width: 100%;
    position: absolute;
    padding: 12px 3%;
    z-index: 9;
}
.header-container {
    display: flex;
    align-items: center;
    gap: 25px;
}
.header-container .logo img {
    width: 150px;
    height: 150px;
}
.header-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.search-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.search-box {
    position: relative;
    z-index: 3;
    width: 50%;
}
.search-box label,
.search-visible label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 14px;
    cursor: pointer;
}
.search-box input,
.search-visible input {
    width: 100%;
    padding: 10px 42px;
    border-radius: var(--border-radius-2);
    border: none;
    outline: none;
}
.search-box input::placeholder {
    font-size: 12px;
    color: #a3a3a3;
}
.search-box-result{
    width: 100%;
    display: none;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 50px;
    background-color: #fff;
    padding: 15px;
    border-radius: 25px;
    z-index: 9;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}
.search-box-result a{
    display: flex;
    align-items: center;
    justify-content: start;
    color: #212121;
    margin: 3px 0;
    border-radius: 10px;
}
.search-box-result a:hover{
    background-color: #f5f5f5;
}
.search-box-result h6{
    margin-bottom: 0;
    font-size: 14px;
}
.search-box-result .search-product-img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.search-box-result .search-product-img img{
    max-width: 100%;
    max-height: 40px;
}

.sale {
    width: 20%;
    background-color: red;
    border-radius: var(--border-radius-2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    cursor: pointer;
    transition: 0.5s;
    color: white!important;
}
.sale:hover {
    background-color: #b30b0b!important;
    color: white!important;
}
.sale p {
    margin: 0;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
}
.actions-box {
    display: flex;
    gap: 60px;
}
.actions-box .lang,
.hamburger-menu .mobile-lang {
    display: flex;
    gap: 10px;
}
.actions-box .lang a,
.hamburger-menu .mobile-lang a {
    height: 40px;
    width: 40px;
    background-color: var(--white-color);
    border-radius: var(--border-radius-2);
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    font-weight: 700;
}
.actions-box .lang a.active,
.mobile-lang a.active {
    color: var(--white-color);
    background-color: var(--lightGreen-color);
}
.actions-box .lang a:hover {
    color: var(--white-color);
    background-color: var(--lightGreen-color);
}
.search-actions .actions,
.mobile-actions {
    position: relative;
    display: flex;
    gap: 15px;
}
.search-actions .actions .action-box,
.mobile-actions .action-box {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: var(--white-color);
    border-radius: var(--border-radius-2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.5s;
}
.search-actions .actions .action-box:hover,
.search-actions .sale:hover {
    background-color: var(--lightGreen-color);
    color: var(--white-color);
}
.search-actions .actions .action-box:hover span {
    background-color: var(--white-color);
    color: var(--lightGreen-color);
}
.search-actions .actions .action-box span,
.mobile-actions .action-box span {
    position: absolute;
    top: -7px;
    right: -7px;
    width: 23px;
    height: 23px;
    background-color: var(--lightGreen-color);
    font-size: 12px;
    color: var(--black-color);
    border-radius: var(--border-rounded);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    font-weight: 600;
    line-height: 1;
}
.navigation ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px;
    padding: 15px 10px;
    background-color: var(--lightGreen-color);
    border-radius: var(--border-radius-2);
    margin: 0;
    overflow: visible !important;
    max-width: 100% !important;
}
.navigation ul li {
    flex-shrink: 0;
    white-space: nowrap;
}

.navigation ul a {
    font-size: 12px;
    padding: 6px 8px;
}
.navigation ul a {
    position: relative;
    color: #666;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
    padding-bottom: 4px;
}
.navigation ul a:hover{
    border-bottom: 1px solid #fff;
}
.navigation-active-category{
    border-bottom: 1px solid #fff!important;
}
/* hero hamburger meu */
.navTrigger {
    z-index: 1000;
    display: none;
    background: none;
    border: 0;
    outline: none;
    border: none;
    cursor: pointer;
    -webkit-appearence: none;
    -webkit-tap-highlight-color: transparent;
}
.navTrigger:focus {
    outline: none;
}
.navTrigger svg {
    width: 64px;
    height: 48px;
    top: -6px;
    left: -14px;
    stroke: var(--black-color);
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    display: none;
}
.navTrigger svg path {
    transition: stroke-dasharray var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s), stroke-dashoffset var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s);
    stroke-dasharray: var(--array-1, 26px) var(--array-2, 100px);
    stroke-dashoffset: var(--offset, 126px);
    transform: translateZ(0);
}
.navTrigger svg path:nth-child(2) {
    --duration: .7s;
    --easing: ease-in;
    --offset: 100px;
    --array-2: 74px;
}
.navTrigger svg path:nth-child(3) {
    --offset: 133px;
    --array-2: 107px;
}
.navTrigger.active svg {
    stroke: var(--white-color);
}
.navTrigger.active svg path {
    --offset: 57px;
}
.navTrigger.active svg path:nth-child(1),
.navTrigger.active svg path:nth-child(3) {
    --delay: .15s;
    --easing: cubic-bezier(.2, .4, .2, 1.1);
}
.navTrigger.active svg path:nth-child(2) {
    --duration: .4s;
    --offset: 2px;
    --array-1: 1px;
}
.navTrigger.active svg path:nth-child(3) {
    --offset: 58px;
}
.hamburger-menu {
    position: absolute;
    background-color: var(--background-color-2);
    top: 0;
    right: 0;
    width: 0;
    height: 100vh;
    transition: 700ms;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    opacity: 0;
}
.hamburger-menu.active {
    position: fixed;
    width: 100%;
    right: 0;
    top: 0;
    padding-top: 20px;
    overflow: visible;
    z-index: 50;
    opacity: 1;
}
.mobile-search {
    position: relative;
    z-index: 100;
    padding: 10px 0 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.hamburger-menu .mobile-search .search-visible {
    position: relative;
    width: 100%;
}
.mobile-nav {
    list-style: none;
    width: 100%;
    margin: 0;
}
.mobile-links {
    position: relative;
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.mobile-links .mobile-contacts {
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mobile-links .mobile-contacts a {
    font-size: 16px;
    color: var(--black-color);
}
.mobile-nav li {
    width: 100%;
    overflow: hidden;
    margin: 5px 0;
    position: relative;
}
.mobile-nav li a {
    width: 100%;
    display: block;
    text-decoration: none;
    color: var(--black-color);
    transition: 125ms;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 0;
    position: relative;
}
.mobile-nav li a:hover {
    color: var(--lightGreen-color);
}

/*
** Hero Section
*/

.hero {
    padding: 200px 0 40px;
    position: relative;
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url("/assets/images/main/bg/hero-bg.webp");
    backdrop-filter: blur(2px);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}
.hero::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(10px);
}
.hero .container {
    position: relative;
    z-index: 1;
}
.hero-text {
    padding-bottom: 50px;
}
.hero-text h1 {
    font-size: 52px;
    font-weight: 700;
}
.hero-text .col-md-5 {
    align-self: end;
    font-size: 16px;
    font-weight: 400;
}
.hero-card {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-card > img {
    width: 100%;
    height: 100%;
}
.hero-circle span {
    top: 10px;
    right: 20px;
    position: absolute;
    background-color: var(--lightGreen-color);
    width: 95px;
    height: 95px;
    border-radius: 50%;
    z-index: 15;
    border: 2px solid var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    cursor: pointer;
}
.hero-circle span:hover {
    background-color: var(--background-color-2);
}
.hero-box .video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background-color: rgba(0, 0, 0, 0.20);
    border-radius: var(--border-rounded);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white-color);
    cursor: pointer;
    transition: 0.5s;
}
.hero-box .video:hover {
    transform: translate(-50%, -50%) scale(1.1);
}
.hero-box h3 {
    width: 100%;
    position: absolute;
    bottom: 50px;
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white-color);
}
.hero-cards .col-md-5 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.hero-category-box {
    position: relative;
    height: 199px;
    border-radius: var(--border-radius-2);
    border: 2px solid var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-category-box::after,
.hero-category-box::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%);
    z-index: 5;
    border-radius: var(--border-radius-2);
    transition: all 0.5s;
}
.hero-category-box::before {
    opacity: 0;
    background: linear-gradient(0deg, rgba(194, 210, 142, 0.50) 0%, rgba(194, 210, 142, 0.50) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
}
.hero-category-box:hover::after {
    opacity: 0;
}
.hero-category-box:hover::before {
    opacity: 1;
}
.hero-category-box h5 {
    position: relative;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--white-color);
    z-index: 6;
}
.hero-btn {
    padding: 30px 55px;
    border: 2px solid var(--white-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero-btn span {
    height: 70px;
    width: 70px;
    min-width: 70px;
    border-radius: var(--border-rounded);
    border: 2px solid var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}
.hero-btn:hover {
    border: 2px solid var(--white-color);
}
.hero .text-small{
    padding-bottom: 15px;
}

/*
** Products section
*/

.products {
    padding: 120px 0;
    background-color: #fff;
}
.products h1,
.about-us h1,
.top-products h1,
.sustainability h1,
.blog h1,
.contacts h1 {
    font-size: 32px;
    font-weight: 400;
    padding-bottom: 25px;
}
.products-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.category {
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: var(--border-radius-2);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.category img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category::before,
.category::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    transition: opacity 0.5s;
    z-index: 2;
    opacity: 1;
}
.category::after {
    width: 0;
    background: linear-gradient(0deg, rgba(194, 210, 142, 0.50) 0%, rgba(194, 210, 142, 0.50) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
    transition: 0.5s;
    z-index: 1;
}
.category:hover::before {
    opacity: 0;
}
.category:hover::after {
    width: 100%;
}
.category h3 {
    position: relative;
    z-index: 50;
    font-size: 24px;
    font-weight: 700;
    color: var(--white-color);
    text-transform: uppercase;
    text-align: center;
    padding: 0 10px;
}
.product-btn {
    height: 100%;
    font-size: 24px;
}


/*
** ABOUT US SECTION & SUSTAINABILITY SECTION & ABOUT PAGE
*/

.about-us {
    background-color: var(--background-color-2);
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url("/assets/images/main/bg/about-us-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.sustainability {
    background-color: var(--background-color-2);
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url("/assets/images/main/bg/sustainability-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.about-us::before,
.sustainability::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(10px);
}
.about-us .container,
.sustainability .container {
    position: relative;
    z-index: 1;
}
.about-us-page .container:nth-child(2){
    padding: 100px 0;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}
.about-us,
.sustainability {
    padding: 50px 0;
}
.about-us-page,
.sustainability-page {
    padding: 0 0 100px;
    background: transparent;
    z-index: 0;
}
.sustainability-page .susten-containers {
    margin-top: 100px;
}
.sustainability-page::before {
    content: none;
}
.about-us .about-containers,
.sustainability .susten-containers,
.sustainability-page .susten-containers {
    position: relative;
    display: flex;
    align-items: flex-end;
}
.about-us .about-containers .col-md-7 img,
.sustainability .susten-containers .col-md-7 img{
    width: 100%;
}
.about-us .about-containers .col-md-5 {
    height: 100%;
}
.about-us .about-containers .col-md-5 .about-text-1,
.sustainability .susten-containers .about-text-1 {
    width: 60%;
    position: absolute;
    top: 0;
    right: 0;
}
.about-us .about-containers .about-text-1 > img,
.sustainability .susten-containers .about-text-1 > img {
    width: 100%;
}
.bg-appear {
    display: none;
    border-radius: var(--border-radius-2);
}
.green-appear {
    display: none;
}
.bg-mobile {
    width: 100%;
}
.about-us .about-containers .about-text-1 .text-1,
.sustainability .susten-containers .about-text-1 .text-1,
.sustainability .text-page-1 {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 35px 25px 0;
    height: 186px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.about-us .about-containers .circle-arrow{
    position: absolute;
    bottom: -200px;
    right: 35px;
}
.sustainability .susten-containers .circle-arrow {
    position: absolute;
    bottom: -67px;
    right: 25px;
}
.circle-arrow {
    display: block;
    width: 95px;
    height: 95px;
    background-color: var(--lightGreen-color);
    border-radius: var(--border-rounded);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    transition: 0.5s;
}
.circle-arrow:hover {
    background-color: var(--background-color-2);
}
.about-containers .about-text-2,
.susten-containers .about-text-2 {
    position: relative;
}
.about-containers .about-text-2 > img,
.susten-containers .about-text-2 > img {
    width: 100%;
}
.about-containers .about-text-2 .text-2,
.susten-containers .about-text-2 .text-2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 30px;
}
.about-containers .about-text-2 .text-2 > p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--white-color);
    padding-top: 50px;
}
.about-containers .about-text-1 .text-1 > p:nth-child(2) {
    margin: 0;
}
.about-containers .about-text-2 .text-2 > span {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--white-color);
}
.susten-containers .about-text-2 .text-2 {
    padding-top: 50px;
}
.susten-containers .about-text-2 .text-2 li {
    font-size: 20px;
    font-weight: 400;
    color: var(--white-color);
    line-height: 24px;
    padding-bottom: 10px;
}
.title {
    padding: 240px 0 80px;
    /*background: linear-gradient(0deg, rgba(255, 255, 255, 0.60) 0%, rgba(255, 255, 255, 0.60) 100%), url('/assets/images/main/bg/about-title-bg.png'), lightgray 2.963em -142.128px / 100% 239.888% no-repeat; */
    background: url(/assets/images/main/bg/about-title-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.title .container > img {
    width: 100%;
    display: none;
}
.title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(6px);
}
.title h1 {
    position: relative;
    z-index: 1;
    font-size: 36px;
    font-weight: 700 !important;
    padding: 0 !important;
}
.title span {
    position: relative;
    z-index: 1;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.50);
}
.title span.open {
    color: var(--black-color);
}
.title .container {
    transition: 0.9s;
    opacity: 1;
}
.title .container.active {
    z-index: -1;
    opacity: 0;
}
.about-us-page .about-content {
    padding-top: 50px;
}
.about-us-page .about-content .col-md-4 {
    position: relative;
}
.about-us-page .about-content .col-md-4:nth-child(2) img {
    position: relative;
    right: 100px;
}
.about-us-page .about-content .col-md-4 .content-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.about-us-page .about-content .col-md-4 .content-text h3 {
    font-size: 24px;
    font-weight: 600;
}
.about-us-page .content-text.con-text-1 {
    width: 240px;
    margin-left: 25px;
}
.about-us-page .content-text.con-text-2 {
    color: var(--white-color);
    padding: 0 40px 0 25px;
}
.about-us-page  .content-text.con-text-3 {
    width: 240px;
    margin-left: 125px;
}
.sustainability .text-page-1 {
    border: 2px solid var(--lightGreen-color);
    padding: 40px 25px;
    border-radius: var(--border-radius-2);
}
.sustainability .about-text-2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.sustainability .about-text-2 .about-text-box,
.sustainability .susten-container-2 .about-text-box {
    padding: 35px;
    background-color: var(--lightGreen-color);
    border-radius: var(--border-radius-2);
    height: 100%;
}
.sustainability .about-text-2 .about-text-box h5,
.sustainability .susten-container-2 .about-text-box h5 {
    margin: 0;
    padding-bottom: 15px;
    font-size: 18px;
    text-decoration: underline;
    color: var(--white-color);

}
.sustainability .about-text-2 .about-text-box p,
.sustainability .susten-container-2 .col-md-6 p {
    margin: 0;
    line-height: 24px;
    font-size: 18px;
    color: var(--white-color);
}
.sustainability .susten-container-2 {
    padding-top: 40px;
}


/*
** TOP PRODUCTS SECTION
*/

.top-products {
    padding: 120px 0;
    background-color: var(--white-color);
}
.top-products .top-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 400px);
    grid-template-areas:
        'box1 box2 box3'
        'box1 box4 box5'
        'box6 box7 box8';
    gap: 20px;
}
.all-products .top-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.product-box {
    border: 2px solid var(--lightGreen-color);
    border-radius: var(--border-radius-2);
}
.product-box .box-content {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 25px 15px;
}
.all-products .top-products-grid .product-box .box-content {
    padding: 15px;
}
.product-box.box-1 {
    grid-area: box1;
    background: url('/assets/images/products/product-1.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 15px 25px;
}
.all-products .top-products-grid .product-box {
    background: url('/assets/images/products/product-2.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 290px;
    padding: 0;
}
.product-box.box-2 {
    grid-area: box2;
    background: url('/assets/images/products/product-2.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.product-box.box-3 {
    grid-area: box3;
    background: url('/assets/images/products/product-3.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.product-box.box-4 {
    grid-area: box4;
    background: url('/assets/images/products/product-4.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.product-box.box-5 {
    grid-area: box5;
    background: url('/assets/images/products/product-5.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.product-box.box-6 {
    grid-area: box6;
    background: url('/assets/images/products/product-6.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.product-box.box-7 {
    grid-area: box7;
    background: url('/assets/images/products/product-7.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.product-box.box-8 {
    grid-area: box8;
    background: url('/assets/images/products/product-8.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.product-box.box-1 button,
.contacts-page form button {
    padding: 15px;
    background-color: var(--lightGreen-color);
    border: 2px solid transparent;
    border-radius: var(--border-radius-2);
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--white-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s;
}
.product-box > img{
    width: 100%;
}
.product-box .bascket > button {
    display: none;
}
.product-box .price-box .price > p {
    display: none;
    color: var(--black-color);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 300;
}
.product-box.box-1 button:hover,
.contacts-page form button:hover {
    background-color: var(--background-color-2);
}
.product-box .heart {
    display: block;
    width: 50px;
    height: 50px;
    background-color: var(--lightGreen-color);
    border-radius: var(--border-rounded);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    transition: 0.5s;
}
.product-box .heart:hover,
.product-box .price-box .bascket:hover {
    background-color: var(--background-color-2);
}
.product-box .heart img {
    width: 30px;
    height: 30px;
}
.product-box .price-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.product-box .price-box .price {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid var(--lightGreen-color);
    padding: 15px;
    border-radius: var(--border-radius-2);
    background-color: var(--white-color);
}
.product-box .price-box .price h3,
.product-box .price-box .price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
    line-height: 24px;
    margin: 0;
}
.product-box .price-box .bascket {
    display: block;
    width: 50px;
    min-width: 50px;
    height: 50px;
    background-color: var(--lightGreen-color);
    border-radius: var(--border-rounded);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.product-box .price-box img {
    width: 30px;
    height: 30px;
}
.all-products .products-box {
    padding: 50px 0 120px;
}

.filter-list .filter-item > span,
.filter-list .filter-item > i {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
}
.filter-item-title {
    margin-bottom: 10px;
}
.filter-list .filter-item {
    cursor: pointer;
    margin-bottom: 10px;
}
.filter-list .filter-item ul {
    margin: 0;
    padding-top: 0;
}
.filter-list .filter-item ul.active {
    list-style-type: none;
}
.filter-input-active{
    color: #C2D28E;
}
.sub-list{
    margin-top: 10px;
}
.sub-list li {
    display: flex;
    padding-bottom: 10px;
    transition: 0.5s;
}
.sub-list li:hover  {
    color: var(--lightGreen-color);
}
.sub-list li p,
.sort .sort-btn {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}
.sub-list li{
    font-weight: 500!important;
}
.sort p {
    display: flex;
    gap: 20px;
    font-size: 16px;
    margin: 0;
}
.sort-box {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}
.sort {
    position: relative;
    border: 1px solid var(--lightGreen-color);
    padding: 15px;
    border-radius: var(--border-radius-2);
    cursor: pointer;
}
.sort-box .sort-list {
    position: absolute;
    left: 0;
    top: 58px;
    background-color: var(--white-color);
    width: 100%;
    max-height: 0;
    opacity: 0;
    border-radius: var(--border-radius-2);
    overflow: hidden;
    transition: 0.5s;
    z-index: 50;
}
.sort-box .sort-list.active {
    max-height: 400px;
    padding: 15px;
    border: 1px solid var(--lightGreen-color);
    opacity: 1;
}
.sort-mobile .filter-menu {
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--white-color);
    width: 0;
    max-height: 0;
    opacity: 0;
    padding-bottom: 500px;
    overflow: hidden;
    transition: 0.5s;
}
.sort-mobile .filter-menu .filter-title {
    padding: 40px 15px;
    background-color: var(--background-color-2);

}
.sort-mobile .filter-menu.active {
    max-height: 100vh;
    width: 100%;
    opacity: 1;
    z-index: 100;
}
.filter-menu .filter-item span {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}
.price-range h3 {
    font-size: 16px;
    font-weight: 400;
    margin-top: 30px;
}

/*
** Product card
*/
.product-card{
    width: 100%;
    height: 435px;
    border: 2px solid #C2D28E;
    border-radius: 65px;
    padding: 35px 20px 35px 20px;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.empty-stock{
    position: absolute;
    top: 64px;
    right: -2px;
    padding: 3px 25px;
    background-color: rgba(173, 54, 75, 0.3);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    z-index: 2;
    font-size: 12px;
    font-weight: 700;
}
.product-card a{
    color: #212121;
}
.product-card .product-card-image {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
}
.product-card .product-card-image img{
    max-width: 100%;
    max-height: 235px;
    object-fit: cover;
}
.product-card-title h6{
    margin-bottom: 0;
}
.product-card-details{
    margin-top: 25px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-card-price{
    padding: 10px 20px;
    border: 1px solid #C2D28E;
    border-radius: 25px;
}
.product-card-actions{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.product-card-circle{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #C2D28E;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
}
.product-card-circle:hover{
    background-color: #e9d6b5;
}
.product-card-circle img{
    width: 30px;
}
.product-code{
    margin-top: 5px;
    position: relative;
}
.product-code span{
    position: absolute;
    top: -20px;
    font-size: 12px;
}
.promo-img{
    position: absolute;
    right: 17px;
    top: 19px;
    z-index: 2;
    width: 50px;
}
.promo-old-price{
    color: #808080;
    text-decoration: line-through;
}



/*
** Wishlist
*/
.wishlist-active{
    background-color: #ea5d62!important;
}
.empty-list{
    width: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.empty-list i{
    font-size: 72px;
    color: #a1a1a1;
    margin-bottom: 15px;
}
.empty-list h4{
    color: #a1a1a1;
}
.products-sort{
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 35px;
}
#productsSort{
    width: 200px;
    border: 1px solid #C2D28E;
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 25px;
    box-shadow: 0 0 0 transparent!important;
}
#productsSort option:hover {
    background: red!important;
}
.active-filter-item{
    color: #C2D28E!important;
}


/*
** Pagination
*/
.pagination{
    margin-top: 30px;
    display: flex;
    justify-content: center;
}
.pagination p{
    display: none;
}

.filters{
    margin-top: 80px;
}
.page-link {
    color: #212121;
    box-shadow: 0 0 0 transparent!important;
}
.page-link:hover{
    color: #212121;
}
.active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: #C2D28E;
    border-color: #C2D28E;
}

/* Price range */

.wrapper {
    width: 100%;
    border-radius: 10px;
    padding: 20px 0 40px;
}
.price-input {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 0 35px;
}
.price-input .field {
    display: flex;
    width: 30%;
    height: 45px;
    align-items: center;
    gap: 5px;
    padding: 15px;
    border-radius: 5px;
    background-color: #e8e8e8;
    color: rgba(0, 0, 0, 0.30);
}
.field input {
    width: 100%;
    outline: none;
    font-size: 16px;
    text-align: center;
    background-color: #e8e8e8;
    color: rgba(0, 0, 0, 0.30);
    border: none;
    -moz-appearance: textfield;
}

.field input::placeholder {
    color: rgba(0, 0, 0, 0.30);
}
.price-input .separator {
    width: 130px;
    display: flex;
    font-size: 19px;
    align-items: center;
    justify-content: center;
}
.slider {
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}
.slider .progress {
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: var(--lightGreen-color);
}
.range-input {
    position: relative;
}
.range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
input[type="range"]::-webkit-slider-thumb {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: var(--lightGreen-color);
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
input[type="range"]::-moz-range-thumb {
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: var(--lightGreen-color);
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
/*--- /.price-range-slider ---*/

.filter-menu .filter-list .filter-item {
    margin-bottom: 20px;
}
.filter-btns {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}
.filter-btns button {
    padding: 15px 0;
    border: 2px solid transparent;
    border-radius: var(--border-radius-2);
    font-size: 16px;
    color: var(--white-color);
}
.filter-btns button:nth-child(1) {
    background-color: var(--lightGreen-color);
}
.filter-btns button:nth-child(2) {
    border: 2px solid var(--lightGreen-color);
    color: var(--lightGreen-color);
    background-color: var(--white-color);
}

/* Filter Button */
.filterIcon {
    width: 30px;
    height: 25px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transform: rotate(0deg);
    transition: .7s ease-in-out;
}
.filterIcon.active {
    z-index: 105;
    position: absolute;
    top: 40px;
    /* right: 60px; */
}
/* Line Style */
.filterIcon span {
    display: block;
    position: relative;
    height: 2px;
    width: 100%;
    background: var(--black-color);
    border-radius: 2px;
    opacity: 1;
    z-index: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    transform-origin: left center;
}
/* Circle Style */
.filterIcon span::after {
	display: block;
    position: absolute;
    height: 6px;
    width: 6px;
    background: #FFFFFF;
    border-radius: 50%;
    border: 1px solid #000000;
    opacity: 1;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    content:"";
    transition: .25s ease-in-out;
}
.filterIcon span:nth-child(1):after {
    left: 70%;
}
.filterIcon span:nth-child(2):after {
    left: 10%;
}
.filterIcon span:nth-child(3):after {
    left: 70%;
}
.filterIcon.open span::after {
	opacity: 0;
}
.filterIcon.open  span:nth-child(1) {
	top: 0;
	transform: rotate(45deg);
}
.filterIcon.open  span:nth-child(2) {
	top: 46%;
	opacity: 0;
}
.filterIcon.open span:nth-child(3) {
	bottom: 0;
	transform: rotate(-45deg);
}
/* Hover State - Move circles slightly on hover*/
	.filterIcon:hover span:nth-child(1)::after {
		left: 25%;
	}
	.filterIcon:hover span:nth-child(2)::after {
		left: 50%;
	}
	.filterIcon:hover span:nth-child(3)::after {
		left: 40%;
	}

/* Filter icon end */

.numbers {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 15px;
}
.numbers span.active {
    color: var(--lightGreen-color);
}
.numbers i {
    cursor: pointer;
}

/*
** BLOG SECTION & BLOG PAGE & BLOG DETAIL
*/

.blog,
.blog-page .blog-boxes {
    padding: 120px 0;
}
.blog-page,
.blog-detail-page {
    padding: 0;
}
.blog-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.blog-img {
    display: flex;
    justify-content: end;
    padding: 25px 25px 0 0;
    border-radius: var(--border-radius-2);
    height: 500px;
}
.blog-img .arrow {
    width: 60px;
    height: 60px;
    background-color: var(--lightGreen-color);
    border-radius: var(--border-rounded);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.blog-box:hover .arrow {
    background-color: var(--background-color-2);
}
 .blog-text {
    padding: 25px 0 10px;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: var(--black-color);
}
.blog-box h3 {
    transition: 0.5s;
}
.blog-box:hover h3 {
    color: var(--lightGreen-color);
}
.blog-text span {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.50);
}
.blog-box {
    padding-top: 50px;
}
.blog-detail-page .blog-boxes {
    padding-bottom: 120px;
}
.blog-detail-page .blog-content {
    display: flex;
    align-items: center;
    gap: 25px;
}
.blog-detail-page .blog-content img {
    border-radius: var(--border-radius-2);
    width: 50%;
    height: 450px;
    object-fit: cover;
}
.blog-detail-page .blog-content h5 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}
.blog-detail-page .blog-reals > h3 {
    margin-top: 120px;
    margin-bottom: 0;
    font-size: 32px;
    font-weight: 700;
}
.blog-detail-text {
    width: 50%;
}
.blog-detail-text h3 {
    width: 100%;
    display: none;
}

/*
** CONTACTS SECTION & CONTACT PAGE
*/

.contacts {
    padding: 50px 0 0;
}
.contacts-page {
    padding: 0;
}
.contacts-page .container:nth-child(2),
.blog-detail-page .container:nth-child(2){
    padding: 100px 0;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}
.contact-boxes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.contact-box {
    display: flex;
    align-items: center;
    gap: 5px;
}
.contact-boxes .icons {
    display: flex;
    align-items: center;
    gap: 30px;
}
.contact-box .contact-icon,
.contact-boxes .icons .contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--lightGreen-color);
    border-radius: var(--border-rounded);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.contact-box .contact-icon span {
    color: var(--white-color);
    font-size: 21px;
    line-height: 1;
}
.contact-box p {
    color: var(--black-color);
    font-weight: 600;
    margin: 0;
    transition: 0.5s;
}
.contact-box:hover p:not(.not) {
    color: var(--lightGreen-color);
}
.contact-boxes .icons .contact-icon:hover {
    background-color: var(--background-color-2);
}
#map {
    width: 100%;
    padding: 0 12px;
    height: 375px;
    background-color: var(--white-color);
    color: var(--black-color);
}
.contacts-page .contact-boxes {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 25px;
}
.contacts-page .contact-boxes a p {
    font-size: 20px;
}
.contacts-page .col-md-6 > h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 25px;
}
.contacts-page form .contact-input {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.contacts-page .contact-input input {
    width: 100%;
    padding: 15px;
    border-radius: var(--border-radius-2);
    border: 0;
    outline: 0;
    background-color: #E8E8E8;
}
.contacts-page .contact-input input::placeholder {
    font-size: 16px;
    color: rgba(40, 40, 58, 0.6);
}
.contacts-page form button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*
** FOOTER
*/

.footer-links {
    padding: 50px 0 50px;
    background-color: #212121;
}
.footer-links .links {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}
.footer-links .links ul h3 {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.50);
}
.footer-links .links ul li {
    padding: 10px 0;
}
.footer-links .links ul li a {
    color: var(--white-color);
    font-size: 16px;
    transition: 0.5s;
}
.footer-links .links ul li:hover a,
.copyright .container a:hover {
    color: var(--lightGreen-color);
}
.footer-links .links ul li .cards {
    display: flex;
    gap: 15px;
}
.copyright {
    background-color: var(--black-color);
    padding: 25px 0;
}
.copyright .container {
    display: flex;
    justify-content: space-between;
}
.copyright .container p {
    margin: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.50);
}
.copyright .container a {
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    transition: 0.5s;
}


/*
** Auth page
*/
.auth-page {
    padding-top: 300px;
    padding-bottom: 100px;
    width: 100%;
    min-height: 100vh;
}
.auth-page .row {
    display: flex;
    justify-content: center;
}
.auth-form {
    background-color: #fff;
    padding: 30px 55px;
    border: 1px solid #ebebeb;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .2);
}
.auth-form .logo {
    margin-bottom: 25px;
}
.auth-form .logo img {
    width: 140px;
}
.auth-form h4 {
    font-family: "Onest Medium";
    margin-bottom: 25px;
    font-size: 24px;
}
.auth-form .auth-field {
    position: relative;
}
.auth-form .auth-field input {
    margin: 30px 0;
    height: 50px;
    border-radius: 35px;
    border: 1px solid #434343;
    padding-left: 65px;
}
.auth-form .auth-field span {
    position: absolute;
    top: 14px;
    left: 20px;
}
.auth-form .auth-field span img {
    width: 25px;
}
.auth-form .auth-action button {
    height: 50px;
    border-radius: 25px;
    font-family: "Onest Medium";
    font-size: 20px;
    background-color: var(--lightGreen-color);
    border-color: var(--lightGreen-color);
}
.auth-form .auth-forgot a {
    text-decoration: none;
    border-bottom: 1px solid #434343;
    font-family: "Onest Medium";
}
.auth-page ul li {
    text-align: left;
}
.register-field h6 {
    text-align: center;
    font-weight: 100;
}
.register-field h6 a {
    font-family: "Onest Medium";
}
.auth-check-forgot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.auth-check-forgot .form-check {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.auth-field-checkbox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.auth-field-checkbox label {
    margin-top: 2px;
}
.auth-field-checkbox a {
    border-bottom: 1px solid #434343;
}
.auth-form .auth-field input[type="checkbox"] {
    margin: 0;
    height: 15px;
    width: 15px;
    border-radius: 5px;
    border: 1px solid var(--lightGreen-color);
    padding-left: 0;
    margin-right: 10px;
}
.auth-form .auth-field input[type="checkbox"]:checked {
    background-color: var(--lightGreen-color) !important;
    border-color: var(--lightGreen-color) !important;
}
.auth-form .auth-field label {
    text-align: left;
    line-height: 1;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}

.privat-policy .info_contaienr {
    padding: 100px 0;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}
.privat-policy ul {
    padding-left: 30px;
}
.privat-policy li {
    list-style: disc;
}

/*
** 404
*/
.error {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0,0, 0)), url('/assets/images/main/bg/about-us-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
}
.error-container {
    max-width: calc(1200px - 15px);
    padding: 0 15px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.error-container p {
    font-size: 32px;
    padding-bottom: 50px;
}
.error-btn {
    padding: 15px 150px;
    cursor: pointer;
    font-size: 20px;
}
.error-btn span {
    transition: all 0.5s ease-in-out;
}
.error-btn i {
    font-size: 20px;
    padding-right: 15px;
}
.error-btn:hover span {
    transform: translateX(-30px);
}

/* Pop up */
.custom-model-main {
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    outline: 0;
    opacity: 0;
    transition: opacity 0.15s linear, z-index 0.15;
    z-index: -1;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .model-open {
    z-index: 99999;
    opacity: 1;
    overflow: hidden;
  }
  .custom-model-inner {
    transform: translate(0, -25%);
    transition: transform 0.3s ease-out;
    max-width: calc(1200px - 15px);
    padding: 0 15px;
    margin: 30px auto;
  }
  .model-open .custom-model-inner {
    transform: translate(0, 0);
    position: relative;
    z-index: 999;
  }
.model-open .bg-overlay {
    background: rgba(0, 0, 0, 0.6);
    z-index: 99;
  }
.bg-overlay {
    background: rgba(0, 0, 0, 0);
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: background 0.15s linear;
}
.close-btn {
    width: 50px;
    height: 50px;
    position: absolute;
    right: -15px;
    top: -15px;
    cursor: pointer;
    z-index: 99;
    font-size: 24px;
    transition: 0.5s;
    background-color: var(--lightGreen-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-rounded);
}
.close-btn:hover {
    background-color: var(--background-color-2);
}
.pop-up-video {
    position: relative;
    width: 100%;
}
.pop-up-video video {
    width: 100%;
    height: 100%;
}
.popBtn {
    width: 100%;
    padding: 20px 0;
    border-radius: 50px;
}



/*
** Spinner
*/
.loader{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 2;
}
.cart-item .loader{
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    top: -30px;
    left: -30px;
}
.loading {
    display: inline-block;
    width: 80px;
    height: 80px;
}
.loading:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #C2D28E;
    border-color: #C2D28E transparent #C2D28E transparent;
    animation: loadingAnimation 1.2s linear infinite;
}
@keyframes loadingAnimation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/*
** Breadcrumb
*/
.breadcrumb{
    position: relative;
    z-index: 2;
}
.breadcrumb li{
    font-weight: 500;
    list-style-type: none;
}
.breadcrumb-item.active {
    color: #8d8d8d;
}
.breadcrumb a{
    font-weight: 500;
    color: #212121;
    transition: 0.2s;
}
.breadcrumb a:hover{
    color: #C2D28E;
}


/*
** Other
*/
.filter-block-title{
    font-size: 23px!important;
    font-weight: 700!important;
    margin-top: 23px!important;
    margin-bottom: 10px!important;
    display: block!important;
    text-transform: capitalize!important;
}
.delivery-input-address{
    margin-top: 15px;
    display: none;
    align-items: center;
    justify-content: start;
    gap: 25px;
    border: 1px solid #C2D28E;
    border-radius: 25px;
    padding: 10px 25px;
}
.delivery-input-address i{
    font-size: 24px;
}
.delivery-input-city{
    width: 50%;
    padding: 10px;
    background-color: #e8e8e8;
    border-radius: 5px;
    border: none;
    outline: none;
}
.mobile-filter{
    display: none;
}
.mobile-filter i{
    color: #C2D28E;
    font-size: 35px;
}


/*
** Mobile Filter
*/
#mobileFilter .modal-dialog{
    margin: 0;
}
#mobileFilter .modal-content{
    border-radius: 0;
    width: 65%;
    height: 100vh;
    overflow: hidden;
}
#mobileFilter .filter-mobile{
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-bottom: 75px;
}
#mobileFilter .filter-mobile::-webkit-scrollbar {
    width: 0;
}
#mobileFilter .filter-mobile::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px transparent;
}
#mobileFilter .filter-mobile::-webkit-scrollbar-thumb {
    background-color: transparent;
    outline: 1px solid transparent;
}
#mobileFilter .mobile-filter-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#mobileFilter .mobile-filter-title i{
    line-height: 1;
    font-size: 32px;
}
.about-card{
    margin: 20px 0;
    width: 100%;
    height: 257px;
    padding: 35px;
    border: 2px solid #C2D28E;
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}


/*
** Mobile navigation
*/
.mobile-menu-button{
    display: none;
}
.mobile-menu-button i{
    font-size: 42px;
    line-height: 1;
}
#mobileNavigationModal .modal-dialog{
    margin: 0;
}
#mobileNavigationModal .modal-content{
    border-radius: 0;
    width: 85%;
    height: 100vh;
    overflow: hidden;
    margin-left: auto;
    background-color: #e9d6b5;
}
#mobileNavigationModal .mobile-navigation-block{
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-bottom: 75px;
}
#mobileNavigationModal .search-visible{
    position: relative;
}
.mobile-actions{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-actions .mobile-actions-links{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
}
.mobile-navigation-close i{
    font-size: 52px;
    line-height: 1;
    color: #636363;
}
.mobile-lang{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
}
.mobile-lang a{
    width: 35px;
    height: 35px;
    background-color: #fff;
    border-radius: 50%;
    color: #323232;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-lang .active{
    background-color: #C2D28E!important;
}
.home-about-text1{
    padding-top: 125px!important;
}
.home-sustainability-text1{
    padding-top: 0!important;
}
.mobile-promotions{
    width: 100%;
    height: 45px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: red!important;
    font-weight: 600;
    gap: 10px;
    border-radius: 55px;
    color: white!important;
}
.mobile-promotions:hover{
    background-color: #b30b0b!important;
    color: white!important;
}

/*
** Promocode
*/
.promocode-block{
    padding: 45px;
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.1);
    border-radius: 15px;
    background-color: #fff;
    margin-bottom: 35px;
}
.promocode-block h3{
    font-size: 20px;
    font-weight: 600;
    border-bottom: 2px solid var(--lightGreen-color);
    padding-bottom: 10px;
    margin-bottom: 35px;
}
.promocode-block input{
    border-top-left-radius: 55px;
    border-bottom-left-radius: 55px;
    box-shadow: 0 0 0 transparent!important;
}
.promocode-block input:active{
    border-color: #C2D28E;
}
.promocode-block input:focus{
    border-color: #C2D28E;
}
.promocode-block button{
    width: 120px;
}
#promocodeInput{
    text-transform: uppercase;
}

/*
** Cart
*/
.display-cart{
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: #C2D28E;
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 99;
    bottom: 30px;
    right: 30px;
}
.display-cart i{
    font-size: 30px;
    color: #fff;
}
.cart-count-block{
    position: relative;
}
.cart-count-num{
    position: absolute;
    top: -20px;
    right: -20px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #e9d6b5;
    border: 2px solid #e9d6b5;
    color: #212121;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
}





























