/* ================================
        Gloabl variables
================================ */
:root {
    /* Design colors */
    --primary-design-color: #77a51d;
    --secondary-design-color: #ee1b1d;
    --tertiary-design-color: #fede1c;
    /* Text colors */
    --primary-text-color: #2e2020;
    --secondary-text-color: #FFFFFF;
    --tertiary-text-color: #918F8F;
    /* Background colors */
    --primary-bg-color: #FFFFFF;
    --secondry-bg-color: #F3F3F3;
    /* Special font sizes */
    --page-heading: 48px;
    --section-heading: 36px;
    --block-heading-xl: 32px;
    --block-heading-lg: 30px;
    --block-heading-md: 25px;
    --block-heading-sm: 22px;
    /* General font sizes */
    --font-size-xs: 15px;
    --font-size-sm: 16px;
    --font-size-md: 17px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    /* Font families */
    --primary-font-family: 'Cormorant Garamond', serif;
}

/* ================================
        Basics
================================ */

/* Reset */
body {
    font-size: var(--font-size-sm);
    font-family: var(--primary-font-family);
    color: var(--primary-text-color);
    background-color: var(--primary-bg-color);
    line-height: 1.5;
    letter-spacing: normal;
}

ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

li {
    display: flex;
    align-items: center;
    list-style-type: none;
}

a {
    text-decoration: none;
}

a:hover, a:active {
    color: var(--primary-text-color);
}

input, button, textarea, select {
    box-shadow: none;
    outline: none;
}

p {
    margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0;
}

.form-control:focus {
    box-shadow: none;
    outline: none;
}

img {
    user-select: none;
}

/* Transitioons */
.btn-general, #btn-scroll-top, .overlay, #main-header, .secondary-header, .contact-list li a, .social-list li a, .main-menu-list li a, .main-menu-list li a:after, .main-menu-list li a:before, .garden-box .box-text span, .products-tabs .tab-item, .product-box, .product-box .box-pattern, .box-img img, .box-text a, .footer-element a, .footer-block a, #main-serach button, .search-menu-full, .mobile-menu, .lang-list a, .lang-list button, .lang-list button i, .lang-list .lang-dropdown {
    transition: all 250ms ease;
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -ms-transition: all 250ms ease;
    -o-transition: all 250ms ease;
}

/* Animations */
@keyframes phone-ring {
    0% {
        transform: rotate(0deg) scale(1) skew(1deg);
        -webkit-transform: rotate(0deg) scale(1) skew(1deg);
        -moz-transform: rotate(0deg) scale(1) skew(1deg);
        -ms-transform: rotate(0deg) scale(1) skew(1deg);
        -o-transform: rotate(0deg) scale(1) skew(1deg);
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
        -moz-transform: rotate(-25deg) scale(1) skew(1deg);
        -ms-transform: rotate(-25deg) scale(1) skew(1deg);
        -o-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
        -moz-transform: rotate(25deg) scale(1) skew(1deg);
        -ms-transform: rotate(25deg) scale(1) skew(1deg);
        -o-transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
        -moz-transform: rotate(-25deg) scale(1) skew(1deg);
        -ms-transform: rotate(-25deg) scale(1) skew(1deg);
        -o-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
        -moz-transform: rotate(25deg) scale(1) skew(1deg);
        -ms-transform: rotate(25deg) scale(1) skew(1deg);
        -o-transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        transform: rotate(0deg) scale(1) skew(1deg);
        -webkit-transform: rotate(0deg) scale(1) skew(1deg);
        -moz-transform: rotate(0deg) scale(1) skew(1deg);
        -ms-transform: rotate(0deg) scale(1) skew(1deg);
        -o-transform: rotate(0deg) scale(1) skew(1deg);
    }

    100% {
        transform: rotate(0deg) scale(1) skew(1deg);
        -webkit-transform: rotate(0deg) scale(1) skew(1deg);
        -moz-transform: rotate(0deg) scale(1) skew(1deg);
        -ms-transform: rotate(0deg) scale(1) skew(1deg);
        -o-transform: rotate(0deg) scale(1) skew(1deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.75);
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.75);
    }

    80% {
        -webkit-box-shadow: 0 0 0 15px rgba(255, 134, 134, 0);
        box-shadow: 0 0 0 15px rgba(255, 134, 134, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 134, 134, 0);
        box-shadow: 0 0 0 0 rgba(255, 134, 134, 0);
    }
}

/* General buttons */
.btn-general {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 45px;
    background-color: transparent;
    border: 1px solid var(--primary-design-color);
    color: var(--primary-design-color);
    font-size: var(--font-size-sm);
    font-weight: 500;
    padding: 10px 15px;
    overflow: hidden;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    z-index: 1;
}

.btn-general:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/icon/leaf.svg');
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: bottom right;
    z-index: -1;
}

.btn-general:hover {
    background-color: var(--secondary-design-color);
    border-color: var(--secondary-design-color);
    color: var(--secondary-text-color);
}

/* Content padding */
.content-box-lg {
    padding-top: 60px;
    padding-bottom: 60px;
}

.content-box-md {
    padding-top: 50px;
    padding-bottom: 50px;
}

.content-box-sm {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Swiper general  */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background: var(--primary-bg-color);
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-lazy-preloader {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--primary-bg-color);
    background-image: url('../img/main/prelader.svg');
    background-position: center;
    background-size: 150px;
    background-repeat: no-repeat;
    margin: 0;
    z-index: 10;
    overflow: none;
    border: none;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    animation: none;
    -webkit-animation: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-thumb {
    background: var(--tertiary-design-color);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

::-webkit-scrollbar-track {
    background: var(--secondry-bg-color);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

::-webkit-scrollbar-corner {
    background: transparent;
}

/* Selection */
::-moz-selection {
    background: var(--tertiary-design-color);
    color: var(--secondary-text-color);
}

::selection {
    background: var(--tertiary-design-color);
    color: var(--secondary-text-color);
}

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg-color);
}

.preloader img {
    width: 200px;
}

/* Scroll top button */
#btn-scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--tertiary-design-color);
    color: var(--secondary-text-color);
    font-size: var(--block-heading-md);
    border: none;
    cursor: pointer;
    display: none;
    z-index: 9;
    box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.1);
}

.section-heading {
    text-align: center;
    margin-bottom: 30px;
}

.section-heading h2 {
    font-size: var(--section-heading);
    font-weight: 700;
    margin-bottom: 5px;
}

.section-heading-pattern {
    position: absolute;
    width: 360px;
    top: 0;
}

.section-heading-pattern.left {
    left: -50px;
}

.section-heading-pattern.right {
    right: -50px;
}

.page-heading {
    margin-bottom: 100px;
    padding: 0 100px;
}

.page-heading h1 {
    font-size: var(--page-heading);
    font-weight: 700;
}

.page-heading-pattern {
    width: 310px;
    position: absolute;
    top: 60px;
    left: -50px;
    z-index: -1;
}

.section-pattern {
    position: absolute;
    width: 350px;
    z-index: -1;
}

.section-pattern.right {
    top: 120px;
    right: 50px;
}

.section-pattern.left {
    bottom: 0px;
    left: 50px;
}

.section-footer {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================
        Header
================================ */
#main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 4px solid transparent;
    z-index: 9;
}

#main-header.fixed,
#main-header.fixed.page-header {
    position: fixed;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
    background-color: var(--primary-design-color);
    border-color: var(--tertiary-design-color);
}

#main-header.fixed .primary-header,
#main-header.fixed.page-header .primary-header {
    display: none;
}

#main-header.fixed .logo-primary,
#main-header.fixed.page-header .logo-primary {
    display: none;
}

#main-header.fixed .logo-secondary,
#main-header.fixed.page-header .logo-secondary {
    display: block;
}

#main-header.fixed .main-menu-list li a,
#main-header.fixed.page-header .main-menu-list li a {
    color: var(--secondary-text-color);
}

#main-header.fixed .main-menu-list li a:hover,
#main-header.fixed.page-header .main-menu-list li a:hover {
    color: var(--tertiary-design-color);
}

#main-header.fixed .main-menu-list li a:before,
#main-header.fixed.page-header .main-menu-list li a:before {
    display: none;
}

#main-header.fixed .main-menu-list li a:after,
#main-header.fixed.page-header .main-menu-list li a:after {
    background-color: var(--tertiary-design-color);
}

#main-header.fixed.page-header .btn-search svg path {
    fill: var(--secondary-text-color);
}

#main-header.page-header {
    position: relative;
}

#main-header.page-header .contact-list li a {
    color: var(--primary-text-color);
}

#main-header.page-header .contact-list li a:hover {
    color: var(--secondary-design-color);
}

#main-header.page-header .social-list li a {
    color: var(--primary-text-color);
}

#main-header.page-header .social-list li a:hover {
    color: var(--secondary-design-color);
}

#main-header.page-header .main-menu-list li a {
    color: var(--primary-text-color);
}

#main-header.page-header .main-menu-list li a:hover {
    color: var(--secondary-design-color);
}

.primary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #C7C7C7;
}

.primary-header-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-list li:not(:last-child) {
    margin-right: 20px;
}

.contact-list li a {
    font-weight: 600;
    color: var(--secondary-text-color);
    font-size: var(--font-size-md);
}

.contact-list li a i {
    margin-right: 8px;
    color: var(--secondary-design-color);
}

.contact-list li a:hover {
    color: var(--secondary-design-color);
}

.contact-list li a:hover i {
    animation: phone-ring 1s 250ms infinite;
    -webkit-animation: phone-ring 1s 250ms infinite;
}

.social-list li:not(:last-child) {
    margin-right: 5px;
}

.social-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    font-size: var(--font-size-md);
    color: var(--secondary-design-color);
}

.social-list li a:hover {
    color: var(--secondary-text-color);
}


.secondary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.logo {
    display: block;
}

.logo.header img {
    width: 115px;
}

.secondary-header .logo-secondary {
    display: none;
}

.main-menu {
    display: flex;
    align-items: center;
}

.btn-search {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: none;
    margin-left: 30px;
}

.search-menu-full {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 99;
}

.search-menu-full.active {
    top: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.search-menu-full .btn-search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#main-serach {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#main-serach .form-control {
    height: 65px;
    color: var(--secondary-text-color);
    font-size: var(--font-size-xl);
    font-weight: 700;
    padding: 10px 20px;
    background: none;
    border: none;
    border: 2px solid var(--primary-bg-color);
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

#main-serach .form-control::placeholder {
    color: var(--secondary-text-color);
}

#main-serach button {
    border: 2px solid var(--primary-bg-color);
    background-color: var(--primary-bg-color);
    font-size: var(--font-size-xl);
    font-weight: 700;
    height: 65px;
    width: 20%;
    min-width: 200px;
}

#main-serach button:hover {
    background-color: var(--primary-design-color);
    color: var(--secondary-text-color);
}

.main-menu-list {
    display: flex;
    align-items: center;
}

.main-menu-list li:not(:last-child) {
    margin-right: 30px;
}

.main-menu-list li a {
    position: relative;
    color: var(--secondary-text-color);
    font-size: var(--font-size-xl);
    font-weight: 500;
    letter-spacing: 0.5px;
    z-index: 1;
    line-height: 1;
    padding: 6px 0 2px 0;
}

.main-menu-list li a:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 50%;
    width: 0%;
    height: 1px;
    border-radius: 2px;
    background-color: var(--secondary-design-color);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

.main-menu-list li a:before {
    position: absolute;
    content: '';
    width: 25px;
    height: 25px;
    left: 0;
    top: 0;
    background-image: url('../img/icon/leaf-1.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: -1;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
}

.main-menu-list li a:hover,
.main-menu-list li a.active {
    color: var(--secondary-design-color);
}

.main-menu-list li a:hover:after,
.main-menu-list li a.active:after {
    width: 100%;
}

.main-menu-list li a:hover::before,
.main-menu-list li a.active:before {
    opacity: 1;
    visibility: visible;
}


.search-menu-full {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 99;
}

.search-menu-full.active {
    top: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.search-menu-full .btn-search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#main-serach {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#main-serach .form-control {
    height: 65px;
    color: var(--secondary-text-color);
    font-size: var(--font-size-xl);
    font-weight: 700;
    padding: 10px 20px;
    background: none;
    border: none;
    border: 2px solid var(--primary-bg-color);
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

#main-serach .form-control::placeholder {
    color: var(--secondary-text-color);
}

#main-serach button {
    border: 2px solid var(--primary-bg-color);
    background-color: var(--primary-bg-color);
    font-size: var(--font-size-xl);
    font-weight: 700;
    height: 65px;
    width: 20%;
    min-width: 200px;
}

#main-serach button:hover {
    background-color: var(--primary-design-color);
    color: var(--secondary-text-color);
}

/* ================================
        Home banner
================================ */

#home-banner {
    position: relative;
    height: 650px;
    margin-bottom: 130px;
}

#home-banner>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

#home-banner .overlay {
    background-color: rgba(0, 0, 0, 0.4);
}

#page-banner {
    position: relative;
    height: 550px;
}

#page-banner>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#page-banner .overlay {
    background-color: rgba(0, 0, 0, 0.1);
}

#page-banner .banner-pattern {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

#page-banner .banner-pattern img {
    width: 220px;
    display: block;
    margin-left: auto;
}

/* Category slider */
.categorySwiper {
    padding-bottom: 40px;
}

.categorySwiper .swiper-slide {
    background: transparent;
}

.categorySwiper .swiper-pagination {
    bottom: 0;
}

.categorySwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-text-color);
}

.categorySwiper .swiper-pagination-bullet-active {
    background: var(--tertiary-design-color);
}

.category-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(50%);
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    z-index: 1;
}

.category-box {
    position: relative;
    padding: 30px;
    height: 280px;
}

.categorySwiper .swiper-slide:nth-child(3n+1) .category-box {
    background-color: var(--primary-design-color);
}

.categorySwiper .swiper-slide:nth-child(3n+2) .category-box {
    background-color: var(--secondary-design-color);
}

.categorySwiper .swiper-slide:nth-child(3n+3) .category-box {
    background-color: var(--tertiary-design-color);
}

.categorySwiper .swiper-slide:nth-child(2n+1) .category-box {
    background-image: url('../img/pattern/vegetables-1.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.categorySwiper .swiper-slide:nth-child(2n) .category-box {
    background-image: url('../img/pattern/vegetables-2.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.category-box>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
}

.category-box .box-content {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
}

.category-box .box-content h2 {
    color: var(--secondary-text-color);
    font-size: var(--block-heading-lg);
    font-weight: 700;
    margin-bottom: 10px;
}

.category-box .box-content p {
    color: var(--secondary-text-color);
    font-size: var(--font-size-lg);
    line-height: normal;
}

/* ================================
        About
================================ */
.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    display: flex;
    justify-content: center;
    text-align: center;
}

.about-text .text-content {
    padding: 40px 100px;
    background-color: var(--secondry-bg-color);
    background-image: url('../img/pattern/logo.svg');
    background-position: -5% 65%;
    background-repeat: no-repeat;

}

.about-text .text-content .content-body p {
    font-weight: 600;
}

.about-text .text-content .content-body img {
    margin: 20px 0;
    max-width: 100%;
}

.about-text .text-content .content-footer {
    display: flex;
    justify-content: space-around;
}

.about-text .text-content .content-footer .footer-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: var(--font-size-lg);
}

.about-text .text-content .content-footer .footer-element img {
    margin-bottom: 15px;
}

/* ================================
        Gardens
================================ */

.gardens-wrapper .col-xl-4:nth-child(2) .garden-box {
    flex-direction: column-reverse;
    background-image: url('../img/pattern/vegetables-2-secondary.svg');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
}

.garden-box {
    display: flex;
    flex-direction: column;
    padding: 0 30px;
}

.garden-box .box-text {
    display: flex;
    flex-direction: column;
}

.garden-box .box-text span {
    color: var(--tertiary-text-color);
    font-size: 120px;
    line-height: 1;
    margin-bottom: 20px;
}

.garden-box .box-text h3 {
    font-size: var(--block-heading-lg);
    font-weight: 700;
    color: #5F5C5C;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.garden-box .box-text p {
    color: #7C7A7A;
    margin-bottom: 10px;
}

.garden-box .box-img {
    height: 420px;
    overflow: hidden;
}

.garden-box .box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.garden-box:hover .box-img img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.garden-box:hover .box-text span {
    color: var(--secondary-design-color);
}

/* ================================
        Products
================================ */
#products {
    position: relative;
}

.products-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 50px;
}

.products-tabs .tab-item {
    border: none;
    background: none;
    font-size: var(--font-size-xl);
    font-weight: 600;
}

.products-tabs .tab-item:not(:last-child) {
    margin-right: 30px;
}

.products-tabs .tab-item:hover, .products-tabs .tab-item.active {
    color: var(--secondary-design-color);
}

.product-box {
    position: relative;
    display: block;
    padding: 15px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.product-box .box-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
}

.product-box .box-img {
    height: 130px;
    margin-bottom: 5%;
}

.product-box .box-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-box .box-text {
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--primary-bg-color);
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.product-box .box-text h4 {
    font-size: var(--block-heading-md);
    font-weight: 600;
    color: var(--primary-text-color);
}

.product-box .box-text span {
    font-size: var(--block-heading-md);
    color: var(--secondary-design-color);
    font-weight: 700;
    line-height: 1;
}

.product-box:hover {
    background-color: var(--primary-bg-color);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
    transform: scale(1.05) translateY(-15px);
    -webkit-transform: scale(1.05) translateY(-15px);
    -moz-transform: scale(1.05) translateY(-15px);
    -ms-transform: scale(1.05) translateY(-15px);
    -o-transform: scale(1.05) translateY(-15px);
}

.product-box:hover .box-pattern {
    opacity: 1;
    visibility: visible;
}

/* ==============================
            Blogs
============================== */
#blogs {
    position: relative;
    overflow-x: hidden;
}

.blogsSwiper {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 80px;
    overflow: hidden;
}

.blogsSwiper .swiper-slide {
    background: none;
}

.blogsSwiper .swiper-pagination {
    bottom: 0;
}

.blogsSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-text-color);
}

.blogsSwiper .swiper-pagination-bullet-active {
    background: var(--tertiary-design-color);
}

.blog-box {
    display: block;
    color: var(--primary-text-color);
}

.blog-box .box-img {
    position: relative;
    height: 250px;
    width: 100%;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
    margin-bottom: 15px;
    overflow: hidden;
}

.blog-box .box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-box .box-text h4 {
    font-size: var(--block-heading-sm);
    font-weight: 600;
    margin-bottom: 10px;
}


.blog-box .box-text span {
    font-size: var(--font-size-xl);
    font-weight: 500;
    margin-top: 15px;
}

.blogsSwiper .swiper-slide:nth-child(2n+1) {
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
}

.blog-box:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

/* ==============================
        blog Inner Page
============================== */
#blog-inner {
    position: relative;
}

.blog-inner-box {
    max-width: 950px;
    margin: 0 auto;
}

.blog-inner-box .box-img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
}

.blog-inner-box .box-img img {
    max-width: 100%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.blog-inner-box .box-text h2 {
    font-size: var(--block-heading-lg);
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-inner-box .box-text p {
    font-size: var(--font-size-lg);
}

.blog-inner-box .box-text span {
    display: inline-block;
    margin-top: 15px;
    font-size: var(--font-size-xl);
    font-weight: 600;
}

/* ================================
        Footer
================================ */
#main-footer {
    padding-top: 300px;
    background: url('../img/main/footer-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

#main-footer.page-footer {
    padding-top: 0;
    background-image: none;
    background-color: var(--secondry-bg-color);
    font-weight: normal;
}

#main-footer .footer-pattern img {
    width: 100%;
}

#main-footer.page-footer .footer-block h5 {
    color: var(--primary-text-color);
}

#main-footer.page-footer .footer-block ul li a {
    color: var(--primary-text-color);
}

#main-footer.page-footer .footer-block ul li a:hover {
    color: var(--tertiary-design-color);
}

#main-footer.page-footer .primary-footer {
    padding-top: 0;
}

#main-footer.page-footer .secondary-footer {
    border-color: #C7C7C7;
}

#main-footer.page-footer .secondary-footer .footer-element {
    color: var(--primary-text-color);
}

.logo.footer img {
    width: 270px;
}

.primary-footer {
    padding: 30px 0;
}

.footer-block.logo {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-block h5 {
    color: var(--secondary-text-color);
    font-weight: 700;
    font-size: var(--block-heading-sm);
    margin-bottom: 15px;
}

.footer-block ul {
    flex-direction: column;
    align-items: flex-start;
}

.footer-block ul li a {
    color: var(--secondary-text-color);
    font-size: var(--font-size-lg);
    margin-bottom: 10px;
}

.footer-block ul li a:hover {
    color: var(--tertiary-design-color);
}

.secondary-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--secondry-bg-color);
}

.secondary-footer .footer-element {
    color: var(--secondary-text-color);
    font-size: var(--font-size-lg);
    font-weight: 500;
}

.secondary-footer .footer-element a {
    color: var(--tertiary-design-color);
    font-weight: 600;
}

/* ================================
        About page
================================ */
#about-inner {
    position: relative;
}

.about-inner-text {
    text-align: center;
}

.about-inner-text .inner-text-body p {
    font-weight: 500;
}

.about-inner-text .inner-text-body img {
    margin: 20px 0;
    max-width: 100%;
}

.about-inner-text .inner-text-footer {
    display: flex;
    justify-content: space-around;
}

.about-inner-text .inner-text-footer .footer-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: var(--font-size-lg);
}

.about-inner-text .inner-text-footer .footer-element img {
    margin-bottom: 15px;
}

.about-inner-image {
    padding-left: 16px;
}

.about-inner-image img {
    width: 100%;
}

/* ================================
        Services
================================ */
.service-box .box-img {
    margin-bottom: 20px;
}

.service-box .box-img img {
    height: 80px;
}

.service-box .box-text h3 {
    font-size: var(--block-heading-md);
    font-weight: 600;
    margin-bottom: 15px;
}

.service-box .box-text p {
    font-size: var(--font-size-md);
}

/* ================================
        Gallery
================================ */
#gallery {
    position: relative;
}

#gallery .section-heading-pattern.left {
    left: 0;
}

.gallerySwiper {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 100px;
    overflow: hidden;
}

.gallerySwiper .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallerySwiper .swiper-slide:nth-child(2n+1) {
    transform: translateY(50px);
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
}

.gallerySwiper .swiper-pagination {
    bottom: 0;
}

.gallerySwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-text-color);
}

.gallerySwiper .swiper-pagination-bullet-active {
    background: var(--tertiary-design-color);
}

.gallerySwiper .swiper-slide .gallery-box:not(:last-child) {
    margin-bottom: 50px;
}

.gallery-box {
    position: relative;
    display: block;
    width: 100%;
    height: 350px;
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-box .overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

.play-btn {
    position: relative;
    background-color: var(--primary-bg-color);
    width: 90px;
    height: 90px;
    opacity: 1;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 1.5s infinite;
    -webkit-animation: pulse 1.5s infinite;
}

.play-btn span {
    position: absolute;
    width: 0;
    height: 0;
    margin-left: 9px;
    border-style: solid;
    border-width: 18px 0 18px 30px;
    border-color: transparent transparent transparent var(--tertiary-design-color);
}

/* ================================
        Gardens page
================================ */

#gardens-inner {
    position: relative;
}

.gardens-wrapper .row:nth-child(2n) {
    flex-direction: row-reverse;
}

.gardens-wrapper .row:nth-child(2n) .garden-inner-text {
    padding-left: 0;
    padding-right: 24px;
    text-align: right;
}

.gardens-wrapper .row:not(:last-child) {
    padding-bottom: 48px;
}

.garden-inner-img {
    height: 526px;
}

.garden-inner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.garden-inner-text {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.garden-inner-text {
    display: flex;
    flex-direction: column;
    color: var(--tertiary-text-color);
    padding-left: 24px;
}

.garden-inner-text span {
    font-size: 120px;
    line-height: 1;
    margin-bottom: 20px;
}

.garden-inner-text h3 {
    font-size: var(--block-heading-lg);
    font-weight: 700;
    color: #5F5C5C;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.garden-inner-text p {
    color: #7C7A7A;
    margin-bottom: 10px;
}

/* ================================
        Products page
================================ */
#products-inner {
    position: relative;
}

/* ================================
        Product inner page
================================ */
#product-inner {
    position: relative;
}

.product-inner-img {
    padding-right: 26px;
}

.product-inner-img img {
    width: 100%;
}

.product-inner-text h3 {
    font-size: var(--block-heading-lg);
    font-weight: 600;
    margin-bottom: 10px;
}

.product-inner-text span {
    display: block;
    font-size: var(--block-heading-lg);
    font-weight: 600;
    color: var(--secondary-design-color);
    margin-bottom: 10px;
}

.product-inner-text p {
    font-size: var(--font-size-lg);
}

.product-inner-wrapper .gallerySwiper {
    padding: 40px 0;
}

.product-inner-wrapper .gallerySwiper .swiper-slide {
    transform: none !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
}

.product-inner-wrapper .gallerySwiper .swiper-slide .gallery-box {
    height: 280px;
}

/* ================================
    Social responsibility
================================ */
#social-responsibility {
    position: relative;
}

.social-responsibility-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* ================================
        Servives page
================================ */
#services-inner {
    position: relative;
}

.services-inner-img {
    height: 400px;
}

.services-inner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-inner-text {
    padding-right: 24px;
}

.services-inner-text img {
    height: 80px;
    margin-bottom: 25px;
}

.services-inner-text h2 {
    font-size: var(--block-heading-md);
    font-weight: 600;
    margin-bottom: 20px;
}

.services-inner-text p {
    font-size: var(--font-size-md);
}

.services-wrapper .row:nth-child(2n) {
    flex-direction: row-reverse;
}

.services-wrapper .row:nth-child(2n) .services-inner-text {
    padding-left: 50px;
    padding-right: 0;
    text-align: right;
}

.services-wrapper .row:not(:last-child) {
    padding-bottom: 50px;
}

/* ================================
        Contact page
================================ */
#contact-inner {
    position: relative;
}

.contact-box {
    background-color: var(--secondry-bg-color);
    height: 300px;
}

.contact-box .box-img {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-bg-color);
    box-shadow: 3px 6px 12px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    margin: 0 auto;
}

.contact-box .box-img img {
    width: 100%;
    height: 100%;
    max-height: 60px;
    max-width: 60px;
}

.contact-box .box-text {
    display: flex;
    flex-direction: column;
    padding: 0 30px 30px;
}

.contact-box .box-text p {
    font-size: var(--font-size-xl);
}

.contact-box .box-text p span.key {
    font-weight: 600;
    margin-right: 5px;
}

.contact-box .box-text a {
    color: var(--primary-text-color);
    font-size: var(--font-size-xl);
}

.contact-box .box-text a:hover {
    color: var(--secondary-design-color);
}

.contact-box:hover .box-img img {
    animation: phone-ring 1s 250ms;
    -webkit-animation: phone-ring 1s 250ms;
}


/* ==============================
        Mobile menu
============================== */

.menu-toggle {
    align-items: center;
    justify-content: flex-start;
    display: flex;
}

.menu-toggle .menu-bars {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    cursor: pointer;
}

.menu-toggle .menu-bars div {
    background: var(--primary-bg-color);
    height: 3px;
    margin: 3px 0;
    width: 35px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

#main-header.page-header .menu-toggle .menu-bars div {
    background: var(--primary-text-color);
}

#main-header.fixed.page-header .menu-toggle .menu-bars div {
    background: var(--primary-bg-color);

}

.mobile-menu .menu-toggle .menu-bars div {
    background: var(--primary-text-color) !important;
}

.menu-toggle.active .menu-bars div {
    background: var(--secondary-design-color);
}

.menu-toggle.active .one {
    transform: rotate(45deg) translate(6px, 6px);
    -webkit-transform: rotate(45deg) translate(6px, 6px);
    -moz-transform: rotate(45deg) translate(6px, 6px);
    -ms-transform: rotate(45deg) translate(6px, 6px);
    -o-transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .two {
    opacity: 0;
    visibility: hidden;
}

.menu-toggle.active .three {
    transform: rotate(-45deg) translate(7px, -7px);
    -webkit-transform: rotate(-45deg) translate(7px, -7px);
    -moz-transform: rotate(-45deg) translate(7px, -7px);
    -ms-transform: rotate(-45deg) translate(7px, -7px);
    -o-transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.mobile-menu::-webkit-scrollbar {
    display: none;
}

.mobile-menu {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.mobile-menu.active {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.menu-wrapper {
    width: 80%;
    background-color: var(--primary-bg-color);
    background-image: url('../img/pattern/vegetables-2-secondary.svg');
    background-size: 80% auto;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
    padding-bottom: 50px;
    margin-right: auto;
}

.menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--primary-design-color);
    padding: 12px;
}

.mobile-menu-logo a {
    display: block;
    width: 100px;
    height: 40px;
}

.mobile-menu-logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu-body {
    padding: 40px 12px;
}

.menu-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 80%;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--primary-design-color);
    background-color: var(--primary-bg-color);
    z-index: 999;
}

.main-menu-list.mobile {
    flex-direction: column;
    margin: 0 auto;
}

.main-menu-list.mobile li:not(:last-child) {
    margin: 0;
    margin-bottom: 15px;
}

.main-menu-list.mobile li a {
    color: var(--primary-text-color) !important;
}

.main-menu-list.mobile li a:after {
    background-color: var(--secondary-design-color) !important;
}

.main-menu-list.mobile li a::before {
    display: block !important;
}

.main-menu-list.mobile li a:hover, .main-menu-list.mobile li a.active {
    color: var(--secondary-design-color) !important;
}

.social-list.mobile li:not(:last-child) {
    margin-right: 8px;
}

.social-list.mobile li a {
    background-color: var(--tertiary-design-color) !important;
    color: var(--secondary-text-color) !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
}

.social-list.mobile li a:hover {
    background-color: var(--primary-design-color) !important;
}

.lang-list {
    position: relative;
    flex-direction: column;
    display: flex;
    margin-right: 20px;
}

.lang-list button {
    background-color: transparent;
    border: none;
    font-weight: 600;
    font-size: var(--font-size-md);
    color: var(--primary-bg-color);
    text-transform: uppercase;
    padding: 0;
}

.page-header .lang-list button {
    color: var(--primary-text-color);
}

.lang-list button i {
    margin-left: 5px;
    font-size: var(--font-size-xs);
    color: var(--secondary-text-color);
}

.page-header .lang-list button i {
    color: var(--primary-text-color);
}

.lang-list button.active i {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.lang-list a {
    font-size: var(--font-size-sm);
    color: var(--primary-text-color);
    font-weight: 600;
    text-transform: uppercase;
}

.page-header .lang-list a {
    color: var(--secondary-text-color);
}

.lang-list a:hover {
    color: var(--tertiary-design-color);
}

.lang-list .lang-dropdown {
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    background-color: var(--primary-bg-color);
    display: flex;
    flex-direction: column;
    padding: 4px 10px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
}

.page-header .lang-list .lang-dropdown {
    background-color: var(--primary-design-color);
}

.lang-list .lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 5px);

}

.lang-list .lang-dropdown li:not(:last-child) {
    border-bottom: 1px solid #959595;
}

.page-header .lang-list .lang-dropdown li:not(:last-child) {
    border-bottom: 1px solid var(--secondary-text-color);
}
/*Ckeditor Reset*/

.ckeditor-reset ul li {
    display: list-item;
    list-style-type: initial;
}

.ckeditor-reset ol li {
    display: list-item;
    list-style-type: decimal;
}

.ckeditor-reset ul {
    display: block;
    list-style-type: initial;
    margin-top: 1em;
    margin-bottom: 1 em;
    margin-left: 0;
    margin-right: 0;
    padding-left: 40px;
}

.ckeditor-reset ol {
    display: block;
    list-style-type: decimal;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    padding-left: 40px;
}

.ckeditor-reset a:not(.share-btn) {
    color: #0d6efd !important;
    text-decoration: underline !important;
}