@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Wix+Madefor+Text:ital,wght@0,400..800;1,400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marmelad&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap');

@font-face {
    font-family: Ckhans-fonts;
    src: url(../font/ckhans-fonts-gravitica-light-demo.otf);
}

body {
    font-family: "Syne", sans-serif;
    background: #fff5ef;
    /* font-family: Ckhans-fonts; */
    /* font-family: "Wix Madefor Text", sans-serif; */
    /* font-family: "Pinyon Script", cursive; */
}

:root {
    --primary-color: #995319;
    --secondary-color: #202020;
    --third-color: #f3d09d;
    --dark-color: #000;
    --light-color: #fff;

}

a {
    text-decoration: none;
}

p {
    margin: 0;
    font-size: 18px;
    margin-bottom: 10px;
    font-family: "Wix Madefor Text", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 500;
    line-height: 1.2;
}

::selection {
    color: var(--light-color);
    background-color: var(--secondary-color);
}

.top-bar {
    background-color: var(--primary-color);
    padding: 10px 50px;
}

.top-bar .top-left {
    display: flex;
}

.top-bar .top-left h6 {
    color: #fff;
}

.top-bar .top-left ul {
    display: flex;
    list-style: none;
    margin: 0;
}

.top-bar .top-left ul li {
    padding-right: 10px;
}

.top-bar .top-right .links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

.top-bar .top-right .links li {
    padding-left: 20px;
}

.top-bar .top-right .links li a {
    color: var(--light-color);
    font-family: "Wix Madefor Text", sans-serif;
}

.header {
    padding: 0px 50px;
    box-shadow: 0px 7px 11px -3px #e5e5e5;
}

ul.navbar-nav .nav-item {
    margin: 0px 10px;
}

ul.navbar-nav .nav-item .nav-link {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 16px;
    font-family: "Marmelad", sans-serif;
    letter-spacing: 0.3px;
}

.dropdown-menu {
    padding: 0px;
    border: none;
    background: #fff5ef;
    border-radius: 0;
    box-shadow: 0px 3px 13px 0px #c5c5c5;
}

.dropdown-menu li a {
    background-color: #fff5ef;
}

.dropdown-menu li:hover a {
    background-color: var(--primary-color);
    color: #fff;
    transition: all .3s;
}

.dropdown-menu li a {
    padding: 6px 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Marmelad", sans-serif;
}

.header .dropdown-menu {
    position: absolute;
    background-color: #fff;
    visibility: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    opacity: 0;
    display: flex;
    flex-direction: column;
    z-index: 9;
    overflow: hidden;
}

.header .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

.side-menu {
    display: flex;
}

.side-menu a {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 30px;
    display: inline-block;
    border-radius: 50px;
    box-shadow: 0px 3px 5px 1px #c1c1c1;
    text-transform: capitalize;
    font-family: "Marmelad", sans-serif;
}

.hero-banner {
    padding: 100px 50px;
    background-image: url(../images/banner1.jpg);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
    height: 80vh;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 0;
}

.hero-banner::before {
    background: rgba(0, 0, 0, 0);
    background: linear-gradient(72deg, rgb(0, 0, 0) -4%, rgba(255, 255, 255, 0) 55%);
    position: absolute;
    content: "";
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-banner .banner-content h4 {
    font-family: Ckhans-fonts;
    color: var(--light-color);
}

.hero-banner .banner-content h5 {
    font-family: Ckhans-fonts;
    color: var(--light-color);
    font-weight: 300;
}

.hero-banner .banner-content h1 {
    font-family: "Marmelad", sans-serif;
    font-weight: 700;
    font-size: 65px;
    color: var(--third-color);
    text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4),
        0px 8px 13px rgba(0, 0, 0, 0.1),
        0px 18px 23px rgba(0, 0, 0, 0.1);
}

.after-banner {
    padding: 0px 50px;
}

.after-banner .icon-box {
    text-align: center;
}

.after-banner .icon-box img {
    width: 75px;
    margin-bottom: 10px;
}

.after-banner .inner {
    background-color: var(--third-color);
    padding: 40px 20px;
    border-radius: 50px;
    margin-top: -100px;
    /* z-index: 9999; */
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    box-shadow: 0px 3px 27px -6px #000000;
}

.after-banner .inner .icon-box {
    padding: 10px;
    position: relative;
    width: 25%;
}

.after-banner .inner .icon-box:not(:last-child)::after {
    content: "";
    background: var(--secondary-color);
    width: 1px;
    position: absolute;
    height: 100%;
    right: 0px;
    top: 3px;
    z-index: 0;
}

.after-banner .inner .icon-box h6 {
    font-family: "Marmelad", sans-serif;
    font-weight: 700;
}

/* product */

.product-sec {
    padding: 50px;
}

.product-sec .heading {
    text-align: center;
}

.heading span {
    font-family: "Pinyon Script", cursive;
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
}

.heading h2 {
    font-family: "Marmelad", sans-serif;
    font-weight: 700;
    font-size: 36px;
}

.product-sec .inner-product {
    padding: 10px;
    text-align: center;
}

.product-sec .inner-product img {
    border-radius: 50%;
    border: 3px solid #dbdbdb;
    box-shadow: 2px 4px 6px 1px #ababab;
    width: 100%;
    margin-bottom: 20px;
}


.product-sec .inner-product h3 a {
    color: #000;
    font-size: 22px;
    font-weight: 700;
    font-family: "Marmelad", sans-serif;
    text-transform: capitalize;
}

/* mission */

.mission-sec {
    padding: 50px 50px;
}


.mission-sec .inner-colum img {
    width: 200px;
    padding: 20px;
    margin-bottom: 20px;
}

.mission-sec .inner-colum h4 {
    font-family: "Marmelad", sans-serif;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 20px;
}

.mission-sec .inner-colum p {
    font-family: "Wix Madefor Text", sans-serif;
    font-weight: 500;
    font-size: 18px;
}


/* about */

.about {
    padding: 50px;
    background-image: url(../images/about-bg.jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.about::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #ffffffd3;
    z-index: -1;
}

.about .heading h4 {
    margin-top: 20px;
    font-family: "Wix Madefor Text", sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.about .about-content h5 {
    margin: 20px 0px;
    color: var(--primary-color);
    font-family: "Wix Madefor Text", sans-serif;
}

.about .about-content p {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: "Wix Madefor Text", sans-serif;
}

.about .about-content a {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 30px;
    display: inline-block;
    border-radius: 50px;
    box-shadow: 0px 3px 5px 1px #c1c1c1;
    text-transform: capitalize;
    font-family: "Marmelad", sans-serif;
    margin-top: 20px;
}


/* presence */

.presence {
    padding: 50px;
    background-image: url(../images/presence.jpg);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.inner-presence {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 0px 60px;
}

.inner-presence p {
    margin-top: 10px;
    font-family: "Wix Madefor Text", sans-serif;
    font-size: 18px;
}


/* video-sec */

.video-sec {
    padding: 50px;
}

.video-sec .heading {
    text-align: center;
}

.video-sec .inner-video .v-img {
    width: 100%;
    max-width: 100%;
}

.video-sec .inner-video {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}


.video-sec .inner-video::before {
    content: "";
    background-color: #00000075;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-sec .inner-video .popup-youtube {
    position: absolute;
    z-index: 9;
}

/* client */

.client {
    padding: 50px;
}

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

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


/* gallery */

.gallery-sec {
    padding: 50px;
}

.gallery-sec .heading {
    text-align: center;
    margin-bottom: 20px;
}

.gallery-product {
    margin: 45px 0px;
}

.pg-img {
    box-shadow: rgba(1, 22, 58, 0.25) 0px 4px 8px -2px, rgba(1, 29, 77, 0.08) 0px 0px 0px 1px;
}

.pg-img:hover {
    box-shadow: rgba(20, 29, 108, 0.35) 0px 5px 15px;
}



/* footer */

.footer {
    background-color: var(--third-color);
    padding: 20px 50px;
    text-align: center;
}

.footer .footer-logo img {
    width: 300px;
}

.footer-links ul {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    margin-top: 20px;
}

.footer-links ul li {
    padding-right: calc(50px / 2);
    padding-left: calc(50px / 2);
    position: relative;
}

.footer-links ul li a {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 14px;
    color: var(--primary-color);
    font-family: "Marmelad", sans-serif;
    font-weight: 700;
}

.footer hr {
    width: 60%;
    margin: 20px auto;
    border-top: 1px solid var(--primary-color);
    opacity: 1;
}

.footer .copyright p {
    font-family: "Marmelad", sans-serif;
    color: #9c5420;
    margin: 0;
    font-size: 15px;
}

/* .footer-links ul li:not(:last-child)::after {
    content: "";
    background: #FFFFFF;
    width: 1px;
    position: absolute;
    height: 80%;
    right: 0px;
    top: 3px;
    z-index: 0;
} */



#scrollTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    padding: 7px 12px;
    transition: all 0.7s;
    border-radius: 50px;
}

#scrollTop:hover {
    background-color: var(--third-color);
}

#chat-icon {
    bottom: 25px;
    left: 15px;
    padding: 10px 20px;
    background: #25D366;
    color: #fff;
    font-size: 25px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    padding: 0;
    border-radius: 50%;
    box-shadow: 0px 0px 10px #00000026;
    position: fixed;
    z-index: 2147483647;
}



/* contact page */

.inner-banner {
    padding: 100px 50px;
    background-image: url(../images/inner-banner.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.inner-banner::before {
    background: rgba(0, 0, 0, 0);
    background: linear-gradient(72deg, rgb(0, 0, 0) -4%, rgba(255, 255, 255, 0) 55%);
    position: absolute;
    content: "";
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.inner-banner .ban-content h2 {
    font-family: "Marmelad", sans-serif;
    font-weight: 700;
    font-size: 65px;
    color: var(--third-color);
    text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4),
        0px 8px 13px rgba(0, 0, 0, 0.1),
        0px 18px 23px rgba(0, 0, 0, 0.1);
}

.inner-banner .breadcrumb {
    margin: 0;
}

.inner-banner .breadcrumb ul {
    display: flex;
    margin-top: 20px;
    width: auto;
    background: #ffffff;
    padding: 6px;
    border-radius: 24px;
    border-bottom: 2px solid #9c5420;
    box-shadow: 0px 3px 9px 2px #000000;
    margin-bottom: 0;
}

.inner-banner .breadcrumb ul li {
    padding-right: calc(25px / 2);
    padding-left: calc(25px / 2);
    position: relative;
}
.single-product .breadcrumb ul li:first-child {
    padding-left: 0;
}

.inner-banner .breadcrumb ul li:not(:last-child)::after {
    content: "";
    background: var(--primary-color);
    width: 1px;
    position: absolute;
    height: 80%;
    right: 0px;
    top: 3px;
    z-index: 0;
}

.inner-banner .breadcrumb ul li a {
    color: var(--dark-color);
    font-family: "Wix Madefor Text", sans-serif;
}

.cont-info {
    padding: 50px;
}

.cont-info .cont-card {
    height: 100%;
    text-align: center;
    padding: 20px 10px;
    background-color: #e4e4e4;
    border-radius: 20px;
    box-shadow: 2px 4px 6px 1px #ababab;
}

.cont-info .cont-card h4 {
    font-family: "Marmelad", sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-top: 15px;
}

.cont-info .cont-card p {
    font-family: "Wix Madefor Text", sans-serif;
    margin: 10px 0 0;
    font-size: 16px;
    color: var(--dark-color);
}

.cont-info .cont-card p a {
    font-family: "Wix Madefor Text", sans-serif;
    margin: 10px 0 0;
    font-size: 16px;
    color: var(--dark-color);
    text-decoration: none;
}

.contact-sec {
    padding: 50px;
}

.contact-sec .cont-img {
    text-align: right;
}

.contact-sec .cont-img img {
    width: 550px;
}

.contact-sec .form-sec label {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    font-family: "Wix Madefor Text", sans-serif;
}

.form-sec input,
.form-sec textarea,
.form-sec select {
    border-color: #99531957;
    border-radius: 20px;
    background-color: #fff3eb;
    /* padding: 10px; */
}

.form-sec button {
    color: var(--light-color);
    background: #9c5420;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
}



/* about page */

.section-1 {
    padding: 50px;
    background: #fff5e7;
}

.section-1 .inner h4 {
    font-family: "Wix Madefor Text", sans-serif;
    font-size: 26px;
    font-weight: 700;
}

.section-1 .inner p {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: "Wix Madefor Text", sans-serif;
}

.section-1 .inner-img img {
    border-radius: 0px 50px 0px 50px;
}

.section-3 {
    padding: 50px;
    background-image: url(../images/section-3-bg.jpg);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.section-3 .inner-presence {
    text-align: center;
}

.md-sec {
    background: #fff2e9;
    padding: 20px;
    margin-top: 71px;
    box-shadow: 0px 0px 14px 4px #dfdfdf;
    border-radius: 0px 50px 0px 50px;
}

.md-sec h2 {
    font-family: "Marmelad", sans-serif;
    font-weight: 700;
    font-size: 22px;
}

.why {
    padding: 50px;
}

.why .inner-why {
    padding: 20px;
    background-color: #fff2e8;
    border-radius: 0px 50px;
    box-shadow: 2px 2px 29px -4px #d3d3d3;
    height: 100%;
}

.why .inner-why .content {
    position: relative;
    padding-left: 100px;
}

.why .inner-why img {
    width: 80px;
    position: absolute;
}

.why .inner-why .content h6 {
    font-family: "Marmelad", sans-serif;
    font-weight: 700;
    font-size: 24px;
}

.why .inner-why .content p {
    font-size: 16px;
    margin-top: 10px;
}


/* recipes */

.recipes {
    padding: 50px;
}

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

.recipes .inner-recipes {
    box-shadow: 0px 10px 29px -4px #d3d3d3;
    border-radius: 0px 30px;
    overflow: hidden;
    margin-top: 10px;
}

.recipes .inner-recipes a {
    color: #000;
}

.recipes .inner-recipes h5 {
    font-family: "Wix Madefor Text", sans-serif;
    font-weight: 500;
    font-size: 20px;
    padding: 10px 10px;
    text-align: center;
}

.inner-cont p {
    font-size: 16px;
    margin-top: 10px;
}

.inner-cont h3 {
    font-family: "Wix Madefor Text", sans-serif;
    font-weight: 600;
    font-size: 28px;
}


/* brands */

.brands {
    padding: 50px;
}

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

.brands .inner-brand {
    margin-top: 10px;
    background-color: #fff;
    border-radius: 0px 30px;
    box-shadow: 0px 10px 29px -4px #d3d3d3;
    text-align: center;
    overflow: hidden;
}

.brands .inner-brand a {
    color: #ffffff;
}

.brands .inner-brand h5 {
    font-family: "Wix Madefor Text", sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 10px;
    text-align: center;
    border-top: 1px solid #9c5420;
    background: #9c5420;
}




/* single product */

.single-product {
    padding: 50px;
    /* border-top: 1px solid #ababab; */
}

.single-product .product-img img {
    border: 1px  solid #9953198c;
    width: 100%;
    max-width: 100%;
}

.single-product .breadcrumb ul {
    display: flex;
}

.single-product .breadcrumb ul li {
    padding-right: calc(25px / 2);
    padding-left: calc(25px / 2);
    position: relative;
}

.single-product .breadcrumb ul li a {
    color: var(--dark-color);
    font-family: "Marmelad", sans-serif;
    font-size: 14px;
}

.single-product .breadcrumb ul li:not(:last-child)::after {
    content: "";
    background: var(--primary-color);
    width: 1px;
    position: absolute;
    height: 80%;
    right: 0px;
    top: 3px;
    z-index: 0;
}


.single-product .product-content .heading {
    margin-bottom: 20px;
}

.single-product .product-content h5 {
    color: #9c5420;
    font-weight: 600;
    font-family: "Marmelad", sans-serif;
    font-size: 20px;
    margin: 15px 0;
}

.single-product .product-content a.enq-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 30px;
    display: inline-block;
    border-radius: 50px;
    box-shadow: 0px 3px 5px 1px #c1c1c1;
    text-transform: capitalize;
    font-family: "Marmelad", sans-serif;
    margin-top: 20px;
}