﻿
/*------------------------------------------------product slider--------------------------------------------*/
.pickle-category-section {
    background: #fff;
    padding: 10px 0px;
    position: relative;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
}

.pickleCategorySlider {
    overflow: hidden;
}

.pickle-item {
    text-align: center;
    transition: .35s;
    cursor: pointer;
}

.pickle-icon {
    width: 80px;
    height: 60px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

    .pickle-icon img {
        max-width: 60px;
        max-height: 60px;
        transition: .35s;
    }

.pickle-item h5 {
    font-size: 12px;
    font-weight: 500;
    color: #444;
    margin-top: 6px;
    line-height: 28px;
    transition: .35s;
}

.pickle-item:hover .pickle-icon {
    transform: translateY(-8px);
}

    .pickle-item:hover .pickle-icon img {
        transform: scale(1.15);
    }

.pickle-item:hover h5 {
    color: #d62828;
}

.pickle-prev,
.pickle-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #b91c1c;
    color: #fff;
    transition: .3s;
}

    .pickle-prev:hover,
    .pickle-next:hover {
        background: #8b0000;
    }

    .pickle-prev:after,
    .pickle-next:after {
        font-size: 18px;
        font-weight: 700;
    }

@media(max-width:991px) {

    .pickle-category-section {
        padding: 20px 40px;
    }

    .pickle-item h5 {
        font-size: 15px;
        line-height: 24px;
    }

    .pickle-icon {
        width: 65px;
        height: 65px;
    }

        .pickle-icon img {
            max-width: 45px;
        }
}

@media(max-width:576px) {

    .pickle-category-section {
        padding: 20px;
    }

    .pickle-prev,
    .pickle-next {
        display: none;
    }
}

/*---------------------------------------------------end-----------------------------------------------------*/


/*-----------------------------------------------------ingredients-------------------------------------------*/
.ingredients-section {
    position: relative;
    padding: 70px 0;
    background: #4f7467;
    overflow: hidden;
    margin: 80px 0px 0px;
}

    .ingredients-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url(../img/about/ingradient-bg.png) center center no-repeat;
        background-size: cover;
        /* opacity: .08; */
    }

    .ingredients-section::after {
        content: "";
        position: absolute;
        inset: 0;
        background: #1e4d3ed4;
    }

    .ingredients-section .container {
        position: relative;
        z-index: 2;
    }

.section-heading {
    text-align: center;
    margin-bottom: 55px;
}

    .section-heading h2 {
        color: #fff;
        font-size: 40px;
        font-weight: 700;
        margin: 0;
    }

    .section-heading span {
        color: #ffc84d;
    }

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

.ingredient-image {
    position: relative;
    border: 3px solid #ffb22c;
    border-radius: 16px;
    overflow: hidden;
    transition: .4s;
    background: #fff;
}

    .ingredient-image img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        transition: .5s;
    }

.ingredient-card h5 {
    color: #fff;
    margin-top: 18px;
    font-size: 17px;
    font-weight: 600;
    line-height: 30px;
}

.ingredient-card:hover .ingredient-image {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,.25);
}

.ingredient-card:hover img {
    transform: scale(1.08);
}

@media(max-width:1199px) {

    .section-heading h2 {
        font-size: 40px;
    }

    .ingredient-image img {
        height: 190px;
    }
}

@media(max-width:991px) {

    .ingredients-section {
        padding: 70px 0;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .ingredient-image img {
        height: 180px;
    }

    .ingredient-card h5 {
        font-size: 17px;
    }
}

@media(max-width:767px) {

    .ingredients-section {
        padding: 60px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

        .section-heading h2 {
            font-size: 28px;
        }

    .ingredient-image img {
        height: 160px;
    }

    .ingredient-card h5 {
        font-size: 15px;
        line-height: 24px;
    }
}

/*------------------------------------------------------end---------------------------------------------------*/

/*------------------------------------------------------product section---------------------------------------*/

.product-section {
    padding: 80px 0px 0px;
    background: #fff;
    position: relative;
}

    .product-section .section-heading {
        text-align: center;
        margin-bottom: 60px;
    }

        .product-section .section-heading span {
            display: inline-block;
            color: #1b1a1a;
            font-size: 18px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .product-section .section-heading h2 {
            font-size: 42px;
            font-weight: 700;
            color: #820000;
            margin-bottom: 15px;
        }

        .product-section .section-heading p {
            width: 60%;
            margin: auto;
            color: #333;
            line-height: 26px;
        }

.product-box {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: .4s;
    height: 100%;
    border: 1px solid #eee;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}

    .product-box:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 45px rgba(0,0,0,.15);
    }

.product-image {
    background: #fff3e0;
    padding: 0px;
    text-align: center;
}

    .product-image img {
        width: 100%;
        transition: .5s;
    }

.product-box:hover .product-image img {
    transform: scale(1.08);
}

.product-content {
    padding: 20px;
}

    .product-content h4 {
        font-size: 20px;
        color: #222;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .product-content p {
        color: #333;
        line-height: 25px;
        margin-bottom: 18px;
        font-size: 15px;
    }

.product-btn {
    display: inline-block;
    background: linear-gradient(135deg,#b71c1c,#ff6b35);
    color: #fff;
    padding: 10px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

    .product-btn:hover {
        color: #fff;
        background: linear-gradient(135deg,#931515,#d84315);
    }

@media(max-width:991px) {

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

    .section-heading h2 {
        font-size: 34px;
    }

    .section-heading p {
        width: 100%;
    }

    .product-content h4 {
        font-size: 24px;
    }
}

@media(max-width:767px) {

    .product-section {
        padding: 40px 0;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .product-content {
        padding: 22px;
    }

        .product-content h4 {
            font-size: 22px;
        }

    .product-btn {
        width: 100%;
        text-align: center;
    }
}
/*-------------------------------------------------------end-------------------------------------------------*/
.about-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #820000;
    margin-bottom: 20px;
}

    .about-title span {
        color: #c62828;
    }

.about-text {
    font-size: 17px;
    line-height: 30px;
    color: #666;
    max-width: 650px;
    margin-bottom: 30px;
}

@media (max-width:991px) {

    .about-title {
        font-size: 38px;
    }
}

@media (max-width:767px) {

    .about-title {
        font-size: 30px;
        line-height: 1.3;
    }

    .about-text {
        font-size: 16px;
        line-height: 28px;
    }
}

/*-------------------------------------------------------------contact section---------------------------------------*/
.contact-section {
    padding: 60px 0;
    background: #F7F7F7;
    margin: 80px 0px 0px;
}

.contact-subtitle {
    display: inline-block;
    color: #1d1d1d;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    color: #820000;
    margin-bottom: 20px;
}

.contact-desc {
    color: #333;
    line-height: 27px;
    font-size: 15px;
    margin-bottom: 10px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 35px 0;
}

    .contact-list li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 25px;
    }

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg,#c62828,#ef6c00);
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 18px;
    font-size: 18px;
    transition: .4s;
}

.contact-list li:hover .contact-icon {
    background: #c62828;
    transform: rotate(8deg);
}

.contact-list h6 {
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.contact-list a {
    color: #333;
    text-decoration: none;
}

.contact-list p {
    color: #555;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

    .social-links a {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #1d5b49;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        transition: .4s;
    }

        .social-links a:hover {
            background: #c62828;
            transform: translateY(-5px);
        }

.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
}

.form-group {
    margin-bottom: 12px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px 18px;
    font-size: 16px;
    transition: .3s;
    outline: none;
}

.form-group input {
    height: 45px;
}

.form-group textarea {
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #c62828;
    box-shadow: 0 0 0 4px rgba(198,40,40,.12);
}

.contact-btn {
    background: linear-gradient(135deg,#c62828,#ef6c00);
    color: #fff;
    border: none;
    padding: 15px 38px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: .4s;
}

    .contact-btn i {
        margin-left: 10px;
    }

    .contact-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(198,40,40,.35);
    }

@media(max-width:991px) {

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

    .contact-title {
        font-size: 38px;
    }

    .contact-form-box {
        padding: 35px;
    }
}

@media(max-width:767px) {

    .contact-title {
        font-size: 30px;
    }

    .contact-desc {
        font-size: 15px;
        line-height: 28px;
    }

    .contact-form-box {
        padding: 25px;
    }

    .contact-btn {
        width: 100%;
    }

    .social-links {
        justify-content: center;
    }
}

/*---------------------------------------------------------------end-------------------------------------------------*/


/*--------------------------------------------------------testimonials-----------------------------------------------*/
.testimonial-section {
    position: relative;
    padding: 80px 0;
    background: #fff;
}

.testimonial-section .section-title {
    margin-bottom: 60px;
}

.testimonial-section .section-title span {
    color: #252424;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 18px;
}

.testimonial-section .section-title h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 10px 0 15px;
    color: #820000;
}

.testimonial-section .section-title p {
    max-width: 700px;
    margin: auto;
    color: #333;
    font-size: 15px;
}

.testimonial-box {
    background: #F7F7F7;
    border-radius: 20px;
    padding: 25px 25px;
    transition: .4s;
    position: relative;
    height: 100%;
}

    .testimonial-box:hover {
        transform: translateY(-10px);
    }

.quote-icon {
    color: #aeaeae;
    margin-bottom: 10px;
    font-size: 43px;
}

.testimonial-box p {
    font-size: 15px;
    line-height: 26px;
    color: #333;
    margin-bottom: 16px;
    text-align: left;
}

.rating {
    margin-bottom: 25px;
}

    .rating i {
        color: #ffb400;
        margin: 0 2px;
    }

.client {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1b5e20;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.client h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.client span {
    color: #777;
    font-size: 14px;
}

.testimonial-prev,
.testimonial-next {

    color: #a5a5a5;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s;
    font-size: 30px;
}

    .testimonial-prev:hover,
    .testimonial-next:hover {
        background: #c62828;
    }

.testimonial-prev {
    left: 15px;
}

.testimonial-next {
    right: 15px;
}

@media(max-width:991px) {

    .testimonial-prev,
    .testimonial-next {
        display: none;
    }

    .section-title h2 {
        font-size: 34px;
    }
}

@media(max-width:767px) {

    .testimonial-section {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .testimonial-box {
        padding: 30px 20px;
    }
}

/*--------------------------------------------------------------end--------------------------------------------------*/

@media (max-width: 767px){
    .product-section .section-heading h2 {
    font-size: 28px;
}
    .ingredients-section {
    margin: 40px 0px 0px;
}
    .contact-section {
    padding: 40px 0;
    margin: 40px 0px 0px;
}
    .testimonial-section .section-title h2 {
    font-size: 28px;
}
}
