/* body {
            background-color: #1C1C24;
            color: white;
            margin: 0;
            font-family: 'Segoe UI', sans-serif;
            overflow-x: hidden;
        } */


        .primary_bgcolor_landing {
  background: #67553c;
}
.primary_color_landing{
  color: #67553c;}
.secondery_color_landing{
  color: #929292;
}
.btn-primary-border{
  border: 1px solid #67553c;
}


        body {
            font-family: "Nunito Sans", sans-serif;
        }

        .hero {
            height: 100vh;
            overflow: hidden;
        }

        .hero-bg {
            /* background: url('img/hero_bg.jpg') no-repeat center center/cover; */
            height: 100%;
            position: relative;
        }


        .default-padding {
            padding: 0 7%;
        }

        .hero-text {
            z-index: 1;
            text-align: right;
            padding-left: 7vw;
            padding-right: 2vw;
            padding-top: 2rem;
            padding-bottom: 2rem;
            height: 100%;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            text-transform: capitalize;
            font-weight: 400;
            line-height: 1;
        }

        .hero-text h5 {
            font-size: 1rem;
            font-family: "Nunito Sans", sans-serif;
            font-weight: 600;
            color: red;
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        .banner-btn {
            padding: 0.5rem 1.2rem;
            background-color: black;
            color: #ebebeb;
            font-size: 0.8rem;
            font-weight: 700;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            text-transform: uppercase;
            width: max-content;
            border-radius: 0;
        }

        .banner-btn:hover {
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(65, 65, 65, 0.2);
            color: #000000;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .banner-logo img {
            max-width: 120px;
        }

        @media (max-width: 768px) {
            .hero-text {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }

            .overley {
                background-color: #ffffff7d;
            }

            /* 
            .hero-text h1 {
                font-size: 2.8rem;
            } */

            .banner-logo img {
                max-width: 80px;
            }
        }

        /* Chatbox styles */
        .formbold-main-wrapper {
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
            padding: 16px;
            position: absolute;
            bottom: 0;
            right: 0;
            z-index: 999;
        }

        .formbold-form-wrapper {
            opacity: 0;
            transform: translateY(20px);
            pointer-events: none;
            transition: all 0.3s ease-in-out;
            position: relative;
            margin: 0 auto;
            max-width: 550px;
            width: 90vw;
            max-height: 90vh;
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow-y: auto;
        }

        .formbold-form-wrapper.active {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .formbold-form-header {
            background: black;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 7px 23px;
            border-radius: 8px 8px 0px 0px;
        }

        .formbold-form-header h3 {
            font-weight: 700;
            font-size: 20px;
            color: white;
            margin: 0;
        }

        .formbold-form-header button {
            color: white;
            background: transparent;
            border: none;
        }

        .formbold-chatbox-form {
            padding: 15px 27px;
            max-height: 70vh;
            overflow-y: auto;
        }

        .formbold-form-label {
            display: block;
            font-weight: 500;
            font-size: 16px;
            color: #424243;
            margin-bottom: 3px;
        }

        .formbold-form-input {
            width: 100%;
            padding: 12px 24px;
            border-radius: 6px;
            border: 1px solid #e0e0e0;
            background: white;
            font-weight: 500;
            font-size: 16px;
            color: #a1a1a1;
            outline: none;
            resize: none;
        }

        .formbold-btn {
            text-align: center;
            font-size: 13px;
            border-radius: 6px;
            padding: 7px 22px;
            border: none;
            font-weight: 600;
            background-color: black;
            color: white;
            cursor: pointer;
        }

        .formbold-action-buttons {
            display: flex;
            justify-content: flex-end;
            margin-top: 16px;
        }

        .formbold-action-btn {
            width: 50px;
            height: 50px;
            background: #000000;
            color: white;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 20px;
        }

        .formbold-action-btn .formbold-cross-icon {
            display: none;
        }

        .formbold-action-btn.active .formbold-cross-icon {
            display: block;
        }

        .formbold-action-btn.active .formbold-chat-icon {
            display: none;
        }

        button i:focus,
        button i:active {
            outline: none !important;
        }

        button:focus,
        button:active {
            outline: none !important;
            box-shadow: none !important;
        }

        .chat_container {
            margin-top: 3rem;
            width: 100%;
            justify-content: space-between;
            align-items: center;
        }

        .chat-menu {
            font-size: 1.2rem;
            display: flex;
            gap: 11px;
        }

        .chat-menu a {
            color: black;
            transition: color 0.3s ease, transform 0.3s ease;

        }

        .chat-menu a:hover {
            color: rgb(118, 118, 118);
            transform: rotate(15deg);

        }

        @media (max-width: 768px) {
            .formbold-form-wrapper {
                width: 95vw;
                max-height: 85vh;
                font-size: 14px;
            }

            .formbold-chatbox-form {
                padding: 15px;
            }

            .formbold-action-btn {
                width: 60px;
                height: 60px;
            }

            .formbold-form-label {
                font-size: 14px;
            }
        }

        /*-------------- product start--------------  */
   
        @media only screen and (max-width: 767px) {
            .banner__item__pic {
                float: none !important;
            }

            .banner__item {
                margin-bottom: 40px;
            }

            .banner__item__pic img {
                min-width: 100%;
            }

            .banner__item__text {
                max-width: 100% !important;
                position: relative !important;
                top: 0 !important;
                padding-top: 22px !important;
            }

            .banner__item.banner__item--middle {
                margin-top: 0 !important;
            }

            .banner__item.banner__item--last {
                margin-top: 0 !important;
            }

            .spad {
                padding-top: 1rem !important;
                padding-bottom: 1rem !important;
            }
        }



        .spad {
            padding-top: 100px;
            padding-bottom: 100px;
        }

        .banner__item {
            position: relative;
            overflow: hidden;
        }

        .banner__item__pic {
            float: right;
        }

        .banner__item__pic img {
            max-width: 100%;
        }

        .banner__item__text {
            max-width: 300px;
            position: absolute;
            left: 0;
            top: 140px;
        }

        .banner__item__text h2 {
            color: #111111;
            font-weight: 700;
            line-height: 46px;
            margin-bottom: 10px;
            font-size: 36px;
        }

        .banner__item__text a {
            display: inline-block;
            color: #111111;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            padding: 3px 0;
            position: relative;
            text-decoration: none;
        }

        .banner__item.banner__item--middle {
            margin-top: -75px;
        }

        .banner__item.banner__item--middle .banner__item__pic {
            float: none;
        }

        .banner__item.banner__item--middle .banner__item__text {
            position: relative;
            top: 0;
            left: 0;
            max-width: 100%;
            padding-top: 22px;
        }

        .banner__item.banner__item--last {
            margin-top: 100px;
        }

        .banner__item:hover .banner__item__text a:after {
            width: 40px;
            background: #e53637;
        }

        .banner__item__text a:after {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background: #111111;
            content: "";
            -webkit-transition: all, 0.3s;
            -o-transition: all, 0.3s;
            transition: all, 0.3s;
        }


        /* about us */
        .instagram__pic__item {
            width: 33.33%;
            float: left;
            height: 261px;
            background-position: center center;
        }

        .set-bg {
            background-repeat: no-repeat;
            background-size: cover;
            background-position: top center;
        }

        .instagram__text {
            padding-top: 130px;
        }

        .instagram__text h2 {
            color: #111111;
            font-weight: 700;
            margin-bottom: 30px;
            font-size: 36px;
        }

        .instagram__text p {
            margin-bottom: 65px;
            font-size: 15px;
            font-family: "Nunito Sans", sans-serif;
            color: #3d3d3d;
            font-weight: 400;
            line-height: 25px;
            margin: 0 0 15px 0;
        }

        .instagram__text h3 {
            color: #e53637;
            font-weight: 700;
            font-size: 30px;
        }


        /* popular products */
        .latest {
            padding-bottom: 55px;
        }

        @media only screen and (min-width: 1200px) {
            .container-backery {
                max-width: 1170px !important;
            }
        }
    

        .section-title {
            margin-bottom: 45px;
            text-align: center;
        }

        .section-title span {
            color: #e53637;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: block;
        }

        .section-title h2 {
            color: #111111;
            font-weight: 700;
            line-height: 46px;
            font-size: 36px;
        }

        .blog__item {
            margin-bottom: 45px;
        }

        .blog__item__pic {
            height: 270px;
        }

        .blog__item__text {
            padding: 30px 30px 25px;
            margin: 0 30px;
            margin-top: -35px;
            background: #ffffff;
            -webkit-transition: all, 0.3s;
            -o-transition: all, 0.3s;
            transition: all, 0.3s;
        }

        .blog__item__text span {
            color: #3d3d3d;
            font-size: 13px;
            display: block;
            margin-bottom: 10px;
        }

        .blog__item__text span img {
            margin-right: 6px;
            max-width: 100%;
        }

        .blog__item__text h5 {
            color: #0d0d0d;
            font-weight: 700;
            line-height: 28px;
            margin-bottom: 10px;
            font-size: 18px;
        }

        .blog__item__text a {
            display: inline-block;
            color: #111111;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            padding: 3px 0;
            position: relative;
            text-decoration: none;
        }

        .blog__item__text a:after {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background: #111111;
            content: "";
            -webkit-transition: all, 0.3s;
            -o-transition: all, 0.3s;
            transition: all, 0.3s;
        }

        .blog__item:hover a::after {
            width: 40px;
            background: #e53637;
        }

