*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}
html {
    box-sizing: border-box;
    scroll-behavior: initial;
    height: auto;
}
body {
    -webkit-font-smoothing: antialiased;    
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
a,
p {
    margin: 0;
    padding: 0;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
}
p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Lenis Recommended CSS Starts */
html.lenis {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}
.lenis.lenis-scrolling iframe {
    pointer-events: none;
} 
/* Lenis Recommended CSS Ends */

/* preloader styles */
#preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 52px;
    z-index: 9999;
    border: none;
    outline: none;
    cursor: pointer;
    border: none;
    border-radius: 40px;
    padding: 6px 14px;
    font-size: 16px;
    color: #fff;
    background: rgba(0,0,0,.5);
    transition: all 500ms ease-in-out;
    animation: topbtnAnimate 1s infinite alternate;
}
#myBtn:hover {
    transform: translateY(-5px);
}

/* header css starts */
.top-banner {
    padding: 10px 0;
    background-color: #910f3f;
}
.top-banner p {
    color: #fffdf9;
}
.site-header {
    background: #f2efdd;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.site-branding {
    max-width: 100px;
    width: 100%;
    margin: 0;
}
.site-branding a img {
    border-radius: 50%;
}
.header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
.main-navigation .menu-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.header-icons-box ul {
    display: flex;
    gap: 30px;
    align-items: center;
}
.site-header li {
    font-size: 18px;
    line-height: normal;
}
.site-header li a {
    color: #000000;
    position: relative;
    transition: all .2s ease-in;
}
.site-header li a:hover {
    color: rgba(61, 8, 27, 1);
}
.main-navigation .menu-list li a:hover::after {
    width: 100%;
}
.menu-item-has-children:hover .sub-menu {
    display: block;
}
.sub-menu {
    position: absolute;
    display: none;
    background-color: #f2efdd;
    animation-name: fadeUp;
    animation-duration: .5s;
}
.sub-menu {
    width: 220px;
    padding-top: 50px;
}
.sub-menu li {
    font-size: 16px;
    padding: 0 16px;
    padding-bottom: 20px;
}
.margin-top {
    margin-top: 119px;
}
.hamburger {
    top: 50%;
    width: 32px;
    height: 3px;
    background: #000;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
    transition: 0.5s;
    z-index: 1000000;
}
.hamburger-one:before, .hamburger-one:after {
    content: '';
    position: absolute;
    left: 0;
    width: 32px;
    height: 3px;
    background: #000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
}
.hamburger:before {
    top: -11px;
}
.hamburger:after {
    top: 11px;
}
.hamburger.rotate {
    background: rgba(0,0,0,0);
    box-shadow: none;
}
.hamburger.rotate.hamburger-one:before {
    top: 0;
    transform:rotate(45deg);
}
.hamburger.rotate.hamburger-one::after {
    top: 0;
    transform:rotate(135deg);
}
.mobile-toggle {
    display: none;
}
/* header css ends */

/* footer css starts */
.site-footer {
    background: #f2efdd;
}
.top-footer {
    padding: 50px 0 40px;
}
.footer-logo a img {
    border-radius: 50%;
}
.footer-logo {
    max-width: 210px;
    width: 100%;
}
.footer-box {
    display: flex;
    justify-content: space-between;
}
.footer-box h2 {
    font-size: 18px;
    font-weight: 500;
    color: #000;
}
.footer-box h2::after {
    content: "";
    display: block;
    height: 1px;
    width: 30px;
    margin-top: 20px;
    background-color: #000;
}
.footer-box ul {
    margin-top: 20px;
}
.footer-box ul li a {
    font-size: 15px;
    font-weight: 400;
    line-height: 34px;
    color: #000;
    text-decoration: none;
    transition: all .25s ease-in-out;
}
.footer-box ul li a:hover {
    color: rgba(61, 8, 27, 1);
}
.footer-box .social a {
    font-size: 18px;
    margin-left: 10px;
}
.copyright {
    border-top: 1px solid #d7d7d7;
    padding: 24px 0;
}
.list-payment {
    display: flex;
    justify-content: end;
    align-items: center;
}
.list-payment li {
    padding: .5rem;
}

.copy a {
    color: #000;
}
.copy a:hover {
    text-decoration: underline;
}
/* footer css ends */

/* hero section starts */
.slider_img {
    height: 816px;
}
.slider_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-pagination .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    background: transparent;
    border: 2px solid #fff;
    opacity: .7;
}
.hero-pagination .swiper-pagination-bullet-active {
    background: #FFF;
    opacity: 1;
}
.slider_box {
    position: relative;
}
.hero_content {
    position: absolute;
    left: 16%;
    top: 50%;
    font-family: 'Quicksand', sans-serif;
    background-color: #fffdf9;
    padding: 40px;
    border: 2px solid #000;
    border-left: 4px solid #000;
    border-radius: 4px;
    max-width: 450px;
    width: 100%;
    animation-name: fadeTranslate;
    animation-duration: 2s;
}

h1.banner_heading_1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    padding-bottom: 4px;
}

.hero_content p {
    font-size: 20px;
    font-weight: 600;
}

.swiper-button-next:after, .swiper-button-prev:after {
    color: #eb5ba2;
    font-weight: 700;
    text-shadow: 1px 1px 16px rgba(0,0,0,.4);
}

.secondary_btn {
    text-align: center;
    margin: 40px auto 10px;
}

.secondary_btn a {
    font-size: 1rem;
    padding: 8px 24px;
    background: #eb5ba2;
    color: #FFF;
    border: none;
    text-decoration: none;
    border-radius: 50px;
    transition: all .4s ease-in-out;
}
.secondary_btn a:hover {
    background-color: #910f3f;
}
/* hero section ends */
  
/* our flavors section starts */

.our_product_section {
    padding: 80px 0;
}

.secondary_heading {
    font-family: Quicksand, sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
    padding-bottom: 40px;
    text-align: center;
    margin-bottom: 20px;
}

.tab {
    overflow: hidden;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 75px;
}

  .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease-in;
    font-size: 17px;
    font-weight: 500;
  }
  
  .tab button:hover {
    color: #910f3f;
  }

  .tablinks {
    position: relative;
    transition: all .4s ease;
  }

  .tablinks::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 0;
    height: 2px;
    margin: 0 auto;
    background-color: #910f3f;
    transition: width .4s linear;
  }

  .tablinks:hover::after {
    width: 100%;
  }
  
  .tab button.active {
    color: #910f3f;
  }
  .tab .tablinks.active::after {
    width: 100%;
  }

  .tabcontent {
    display: none;
    animation-name: fadeIn;
    animation-duration: 2s;
  }

  .product_box, .product_box img {
    transition: .7s;
  }

  .product_img {
    max-width: 330px;
    width: 100%;
    overflow: hidden;
  }

  .product_box:hover img {
    transform: scale(1.07);
  }

  .product_box:hover .product_title {
    color: #910f3f;
    transition: all .4s ease-in-out;
  }

  .product_info .product_title {
    padding: 10px 0 4px;
    text-transform: capitalize;
    font-family: Quicksand;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    line-height: 28px;
  }

  .product_info .price_product .price {
    font-family: Quicksand;
    font-size: 15px;
    font-weight: 700;
    color: #910f3f;
  }

  .product_box {
    margin-bottom: 40px;
  }

  .product_img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}
/* our flavors section ends */

/* she's boss section starts */

.boss_section {
    padding: 60px 0;
    background: #eb5ba2;
    background-position: center;
}

.boss_content {
    font-family: 'Lilita One', 'Poppins', sans-serif;
}

.boss_content h3 {
    font-size: 76px;
    color: #ffff;
    margin-bottom: 16px;
}

.boss_content p {
    font-size: 22px;
    line-height: 2;
    color: #FFF;
    padding-bottom: 16px;
    padding-left: 4px;
    max-width: 532px;
    width: 100%;
}

.boss_content a {
    color: #FFFF;
    text-decoration: none;
    transition: all .4s ease-in-out;
    padding: 10px 32px;
    background-color: rgba(0,0,0,.7);
    border-radius: 40px;
    display: inline-block;
    font-size: 20px;
}

.boss_content a:hover {
    background-color: rgba(0,0,0,1);
}

.boss_img {
    position: relative;
    max-width: 460px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 10px;
    padding: 0px;
    border: 4px solid #fffdf9;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    transition: all .4s ease-in-out;
}

.boss_img img {
    transition: all .4s ease-in-out;
}

.boss_img:hover img {
    transform: scale(1.2);
}

.boss_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sprinkle {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
}
/* she's boss section ends */

.newsletter_section {
    padding: 80px 0;
    background: rgba(0,0,0,.01);
}

.newsletter_img {
    max-width: 450px;
    width: 100%;
    border: 4px solid #d1d1d15c;
    border-radius: 4px;
}

.form_flex {
    display: flex;
    justify-content: center;
}

.form_flex input, .form_flex button {
    border: none;
    outline: none;
}

.form_flex input {
    padding: 16px;
}
.newsletter_form {
    padding: 40px;
    border: 1px solid silver;
    padding: 80px 20px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    font-family: "Quicksand", sans-serif;
}

.newsletter_form .subscribe {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
    padding-bottom: 15px;
    display: inline-block;
}

.newsletter_form p {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    color: #000;
    padding-top: 5px;
    margin-bottom: 1rem;
}

.form_flex input {
    padding: 10px 20px;
    width: 360px;
    background-color: #f5f4f4;
    color: #910f3f;
    font-size: 16px;
    font-weight: 500;
}

form.form_flex button {
    padding: 12px 16px;
    background: #910f3f;
    color: #fff;
    transition: all .4s ease-in-out;
}
form.form_flex button:hover {
    background: rgba(145, 15, 63, 0.9);
}

form.form_flex button:hover i {
    transform: translateX(2px);
    transition: .4s ease-in-out;
}

/* cross section starts */

.cross_section {
    overflow-x: hidden;
}

.cross_box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
}

.cross_box:nth-child(even) {
    flex-direction: row-reverse;
}

.cross_box:first-child {
    background-color: #1f000b;
}

.cross_box:nth-child(2) {
    background-color: #a57e00;
}

.cross_box:nth-child(3) {
    background-color: #023609;
}

.cross_content, .cross_img {
    max-width: 50%;
    width: 100%;
    margin: 0 auto;
}
.cross_img img {
    width: 100%;
    height: 690px;
    object-fit: cover;
}

.cross_content {
    color: #FFF;
    max-width: 50%;
    font-family: 'Lilita One', 'Poppins', sans-serif;
}
.cross_content h2 {
    font-size: 46px;
    line-height: 48.16px;
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.cross_content p {
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    max-width: 570px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 40px;
    padding-left: 10px;
}

/* cross section ends */

/* popular section starts */

.popular_section {
    padding: 65px 0;
    background-color: #FFF;
}

.para {
    font-size: 16px;
    line-height: normal;
    padding-bottom: 1rem;
}

.popular_product {
    padding: 10px;
    border: 1px solid silver;
    margin-bottom: 40px;
    background-color: #fff;
}

.popular_product:hover .product_title {
    text-decoration: underline;
}

.popular_product:hover .product_img {
    max-width: 330px;
    width: 100%;
}

.popular_product:hover .product_img {
    overflow: hidden;
}

.popular_product .product_img img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}

.popular_product .product_img img {
    transition: .4s;
}

.popular_product:hover .product_img img {
    transform: scale(1.1);
}

.popular_product .price_product {
    padding-bottom: 10px;
}

/* popular section ends */

/* insta section starts */

.insta_section {
    padding: 100px 0;
    background: #fffdf9;
}

.insta_box {
    max-width: 432px;
    width: 100%;
    height: 350px;
    margin: 0 auto;
    text-align: center;
    cursor: pointer;
    transition: .4s;
}

.insta_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insta_box:hover {
    transform: scale(1.02);
}

.myInstaSlider {
    position: relative;
    margin-bottom: 80px;
}

.myInstaSlider::before {
    content: "";
    top: 50%;
    height: 100px;
    margin-top: -50px;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 0;
    background-color: #dddddd;
}

.gallary {
    text-align: center;
}
.gallary a {
    color: #910f3f;
    text-decoration: underline;
    transition: .4s ease-in-out;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    color: #FFFF;
    text-decoration: none;
    transition: all .4s ease-in-out;
    padding: 10px 32px;
    background-color: rgba(0,0,0,.7);
    border-radius: 40px;
    display: inline-block;

}

.gallary a:hover {
    background-color: rgba(0,0,0,.9);
    text-decoration: none;
}

.insta_heading {
    text-align: center;
    margin-bottom: 50px;
    font-size: 40px;
    font-family: 'Lilita One', sans-serif;
}

/* insta section ends */

/* news section starts */

.news_section {
    padding: 80px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.news_wrap {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.news_box {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-bottom: 40px;
    max-width: 308px;
    cursor: pointer;
    transition: all .4s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.news_box:hover {
    background-color: #faebd7;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.news_img {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.news_img img {
    transition: all .4s ease-in-out;
}

.news_box:hover .news_img img {
    transform: scale(1.04);
}

.news_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_info {
    padding: 10px;
}

.news_info a {
    color: #444;
    text-decoration: underline;
}

.news_info .news_title {
    font-size: 17px;
    line-height: 1.5;
    padding-bottom: 12px;
    color: #000;
    font-weight: 600;
}

.news_info .news_description {
    font-size: 15px;
    line-height: 1.5;
    padding-bottom: 1rem;
    color: #222;
    min-height: 128px;
}

.news_info .news_link {
    font-size: 15px;
    background: #000;
    padding: 6px 16px;
    display: inline-block;
    margin-bottom: 4px;
    border-radius: 50px;
    color: #FFF;
    text-decoration: none;
    transition: all .4s ease-in-out;
}

.news_info .news_link:hover {
    background: #eb5ba2;
}

/* video section starts */

.video_section {
    /* padding: 100px 0; */
    position: relative;
    background-color: rgb(249, 205, 230);
    margin-bottom: 80px;
}
.video_section video {
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.video_box {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    border: 4px solid #FFF;
    padding: 7px;
    padding-bottom: 0;
    background: rgba(0,0,0,.7);
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}
.video_box > * {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.video_section .pattern-2 {
    transform: rotateX(180deg);
    height: 36px !important;
}

.homemade_section {
    position: relative;
    width: 100%;
    padding: 168px 0px 187px 0px;
    margin-top: 50px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.pattern-layer .pattern-1 {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 34px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.pattern-layer .pattern-2 {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 36px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.homemade_section  {
    text-align: center;
}
.homemade_section p {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 32px;
}
.homemade_section .btn_primary {
    padding: 12px 47px;
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #fff !important;
    text-align: center;
    z-index: 1;
    border: none;
    outline: none;
    background: #7a7034;
    box-shadow: 0 10px 20px rgba(122, 111, 52, 0.2);
    transition: all 500ms ease;
}
.homemade_section .btn_primary::before {
    position: absolute;
    content: '';
    background: #222;
    width: 100%;
    height: 0%;
    left: 0px;
    top: 0px;
    z-index: -1;
    transition: all 500ms ease;
}
.homemade_section .btn_primary::after {
    position: absolute;
    content: '';
    background: #222;
    width: 100%;
    height: 0%;
    left: 0px;
    bottom: 0px;
    z-index: -1;
    transition: all 500ms ease;
}
.homemade_section .btn_primary:hover::before {
    height: 50%;
}
.homemade_section .btn_primary:hover:after {
    height: 50%;
}

.try_section {
    padding: 80px 0;
    background: #1f000b;
    color: #FFF;
    position: relative;
}
.try_section .try_box {
    text-align: center;
}
.try_section .try_box h2 {
    font-family: 'Lilita One', 'Poppins', 'Quicksand', sans-serif;
    font-size: 60px;
    margin: 0;
    margin-bottom: 40px;
    line-height: normal;
    text-transform: uppercase;
}
.try_section .try_box h2 span {
    max-width: 40px;
    width: 100%;
    display: inline-block;
    overflow: hidden;
}
.ice_animate {
    max-width: 100px;
    width: 100%;
    margin: 0 auto 20px;
}
.try_btn {
    display: inline-block;
    background: rgba(255,255,255,.7);
    padding: 14px 48px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: 1px;
    line-height: normal;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
    transition: all 500ms ease-in-out;
}
.try_btn:hover {
    transform: rotateX(360deg);
    background: rgba(255,255,255,.2);
}
/* Inner Pages CSS Starts */

.page-title {
    position: relative;
    width: 100%;
    padding: 125px 0px 128px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.centred {
    text-align: center;
}

.overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(74, 74, 74, 0.4);
    z-index: 0;
}

.page-title .content-box h1 {
    position: relative;
    display: block;
    font-size: 46px;
    line-height: 55px;
    color: #FFF;
    margin-bottom: 15px;
    font-family: 'Abril Fatface', cursive;
}

.page-title .content-box .bread-crumb li {
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 26px;
    font-weight: 500;
    color: #FFF;
    padding-right: 11px;
    margin-right: 1px;
}

.page-title .content-box .bread-crumb li {
    margin-right: 5px;
}

.page-title .content-box .bread-crumb li:before {
    position: absolute;
    content: '';
    background: #FFF;
    width: 6px;
    height: 1px;
    top: 14px;
    right: 0px;
}

.content-box {
    position: relative;
    z-index: 11;
}

.page-title .content-box .bread-crumb li:last-child::before {
    content: none;
}

.page-title .content-box .bread-crumb li a {
    color: #FFF;
}

.ourstory_section {
    position: relative;
    padding: 150px 0px;
}

.content-block {
    margin-right: 50px;
}

.sec-title {
    margin-bottom: 32px;
}

.sec-title p {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #848484;
    text-transform: uppercase;
    margin-bottom: 18px;
    letter-spacing: 3px;
}

.sec-title h2 {
    position: relative;
    display: block;
    font-size: 46px;
    line-height: 60px;
    font-family: 'Abril Fatface', cursive;
    font-weight: 400;
    color: #222222;
    margin: 0px;
    transition: all 500ms ease;

}

.ourstory_section .text {
    position: relative;
    margin-bottom: 20px;
}

.ourstory_section .text p {
    position: relative;
    color: #8c8c8c;
    font-weight: 400;
    margin: 0px;
    font-size: 18px;
    line-height: 1.5;
    padding-bottom: 16px;
    transition: all 500ms ease;
    text-align: justify;
}

.btn-box a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #fff !important;
    text-align: center;
    padding: 17px 47px;
    text-align: center;
    z-index: 1;
    background: #e3a087;
}

.btn-box a::before {
    position: absolute;
    content: '';
    background: #222;
    width: 100%;
    height: 0%;
    left: 0px;
    top: 0px;
    z-index: -1;
    transition: all 500ms ease;
}

.btn-box a::after {
    position: absolute;
    content: '';
    background: #222;
    width: 100%;
    height: 0%;
    left: 0px;
    bottom: 0px;
    z-index: -1;
    transition: all 500ms ease;
}

.btn-box a:hover::before {
    height: 50%;
}
.btn-box a:hover::after {
    height: 50%;
}

.image-box {
    position: relative;
    display: block;
    padding-left: 120px;
}

.bg-layer {
    position: absolute;
    right: 0;
    top: 0;
    width: 700px;
    height: 700px;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    z-index: -1;
}

.image-1 {
    position: relative;
    display: block;
    overflow: hidden;
    box-shadow: 0 30px 40px rgba(0, 0, 0, 0.1);
}

.image-1::before {
    position: absolute;
    top: 0;
    left: -80%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.image-1 img {
    width: 100%;
}

.image-1:hover::before {
    left: 100%;
}

.image-box:hover .image-1:before {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}

.contact-section {
    padding: 144px 0px 150px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    background-attachment: fixed;
}

.contact-section::before {
    position: absolute;
    content: '';
    background: #fff;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
    opacity: 0.9;
}

.contact-info-inner {
    position: relative;
}

.contact-section .contact-info-inner .single-box {
    margin-bottom: 36px;
}

.contact-section .contact-info-inner .single-box h3 {
    position: relative;
    font-family: 'Abril Fatface', cursive;
    font-weight: 400;
    color: #222222;
    margin: 0px;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 16px;
    transition: all 500ms ease;
}

.contact-section .contact-info-inner .single-box ul li {
    list-style: none;
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 28px;
    color: #848484;
}

.contact-section .contact-info-inner .single-box ul li:first-child {
    margin-bottom: 13px;
}

.contact-section .contact-info-inner .single-box ul li a {
    color: #848484;
    transition: all .2s ease-in-out;
}

.contact-section .contact-info-inner .single-box ul li a:hover {
    color: #3d081b;
}

.contact-section .contact-info-inner .single-box:last-child {
    margin-bottom: 0;
}

.contact-section .contact-info-inner .single-box ul.social-links {
    display: flex;
}

.contact-section .contact-info-inner .single-box ul.social-links li {
    position: relative;
    display: inline-block;
    margin: 0;
    margin-right: 10px;
    list-style: none;
}

.contact-section .contact-info-inner .single-box ul.social-links li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: #848484;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border: 1px solid #e5e5e5;
    text-align: center;
    transition: all .4s ease-in-out;
}

.contact-section .contact-info-inner .single-box ul.social-links li a:hover {
    border-color: #910f3f;
    background: #910f3f;
    color: #fff;
    box-shadow: 0 10px 20px rgba(227, 160, 135, 0.3);
}

.form-inner {
    position: relative;
    padding: 0px;
    background: transparent;
    padding-top: 60px;
}

.contact-section .form-inner h3 {
    font-family: 'Abril Fatface', cursive;
    font-weight: 400;
    color: #222222;
    margin: 0px;
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 28px;
    transition: all 500ms ease;
}

.default-form .form-group {
    position: relative;
    margin-bottom: 30px;
}

.default-form .form-group input[type='text'], .default-form .form-group input[type='email'], .default-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    border: 1px solid #e5e5e5;
    background: #FFF;
    padding: 10px 20px;
    font-size: 15px;
    color: #848484;
    font-style: italic;
    outline: none;
    transition: all 500ms ease;
}

.default-form .form-group textarea {
    height: auto;
}

.default-form .form-group input:focus, .default-form .form-group textarea:focus {
    border-color: #910f3f !important;
}

.default-form .message-btn button {
    padding: 12px 47px;
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #fff !important;
    text-align: center;
    z-index: 1;
    border: none;
    outline: none;
    background: #e3a087;
    box-shadow: 0 10px 20px rgba(227, 160, 135, 0.3);
    transition: all 500ms ease;
}

.default-form .message-btn button::before {
    position: absolute;
    content: '';
    background: #222;
    width: 100%;
    height: 0%;
    left: 0px;
    top: 0px;
    z-index: -1;
    transition: all 500ms ease;
}
.default-form .message-btn button::after {
    position: absolute;
    content: '';
    background: #222;
    width: 100%;
    height: 0%;
    left: 0px;
    bottom: 0px;
    z-index: -1;
    transition: all 500ms ease;
}

.default-form .message-btn button:hover::before {
    height: 50%;
}

.default-form .message-btn button:hover:after {
    height: 50%;
}

.onlybest_section {
    padding: 100px 0;
    background: #fffdf9;
}

.onlybest_box {
    display: flex;
    align-items: center;
    border: 1px solid #1f000b;
    border-radius: 4px; 
    overflow: hidden;
}

.onlybest_box .onlybest_info, .onlybest_box .onlybestimg {
    max-width: 50%;
    width: 100%;
    margin: 0 auto;
}

.onlybest_box .onlybest_info {
    padding: 100px 80px;
}

.onlybest_box .onlybest_info .onlybest_content h4 {
    font-family: 'Abril Fatface', cursive;
    color: #1f000b;
    margin: 0px;
    position: relative;
    display: block;
    font-size: 48px;
    margin-bottom: 24px;
    transition: all 500ms ease;
}

.onlybest_box .onlybest_info .onlybest_content p {
    font-family: 'Quicksand', 'Poppins', sans-serif;
    color: #1f000b;
    font-size: 19px;
    font-weight: 500;
    margin: 0;
    padding: 0;
    transition: all 500ms ease;
}

.onlybestimg {
    overflow: hidden;
}

.onlybestimg img {
    transition: all 500ms ease;
}
.onlybestimg img:hover {
    transform: scale(1.4) rotate(4deg);
}

.single_product_section {
    padding: 80px 0;
    background: #FFF;
}

.single_product_box {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.product_image_box, .product-content-box {
    max-width: 50%;
    width: 100%;
}

.single_img {
    max-width: 600px;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.single_img a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content .sweet-tag {
    color: rgb(61, 8, 27);
    font-size: 14px;
    margin: 0;
    padding: 0;
    padding-bottom: 4px;
}

.product-content .product-title {
    color: rgb(61, 8, 27);
    font-family: 'Abril Fatface', Poppins, sans-serif;
    font-size: 44px;
    margin: 0;
    padding-bottom: 16px;
}

.product-content .product-description p {
    margin: 0;
    color: #444;
    font-size: 16px;
    line-height: 30px;
    font-style: normal;
    font-weight: normal;
    padding: 0;
    padding-bottom: 16px;
}

/* .description-box ul {
    margin: 0px 0px 40px 0px;
    padding: 0px;
    border-bottom: 2px solid #f1f1f1;
}

.description-box ul li {
    color: #515151;
    display: inline-block;
    position: relative;
    z-index: 0;
    background: #fff;
    color: #515151;
    z-index: 2;
}

.description-box ul li a {
    color: #4a4a4a;
    font-family: 'Quicksand', sans-serif;
    font-size: 17px;
    line-height: 17px;
    font-weight: normal;
    display: inline-block;
    padding: 20px 10px;
    text-decoration: none;
} */

.description h2 {
    font-weight: normal;
    font-size: 32px;
    padding-bottom: 16px;
    color: #4a4a4a;
    font-family: 'Lilita One', 'Poppins', sans-serif;
}

.description-box {
    padding: 40px;
    border: 1px solid #515151;
}

.description-box .description p {
    font-family: 'Quicksand', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #444;
    line-height: 1.5;
    padding-bottom: 10px;
}

.special_section {
    padding: 100px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    background-attachment: fixed;
}

.special_box {
    background: rgba(255,255,255,.7);
    padding: 100px 40px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
    text-align: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;  
}

.special_layer {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    background: radial-gradient(at center center, rgba(74, 74, 74, 0.2) 0%, rgba(74, 74, 74, 0.2) 53%, rgba(74, 74, 74, 0.05) 100%);
    width: 100%;
    height: 100%;
}

.special_box h5 {
    color: #1f000b;
    font-size: 52px;
    margin: 0;
    padding-bottom: 20px;
    font-family: 'Lilita One', 'Poppins', sans-serif;
}

.special_box p {
    color: #1f000b;
    font-size: 19px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
}

.google-map-section .map-inner iframe {
    width: 100%;
    height: 500px;
}

.testimonial_section {
    padding: 150px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    background-attachment: fixed;
}

.testimonial_section::before {
    position: absolute;
    content: '';
    width: 650px;
    height: 100%;
    top: 0px;
    right: 0px;
    background: #ffad37;
}

.testimonial_section .inner-box .sec-title {
    text-align: center;
    margin-bottom: 60px;
}

.quote {
    background-repeat: no-repeat;
    height: 115px;
    display: inline-block;
    width: 115px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 24px;
}

.quote span {
    color: #fff;
    font-size: 32px;
    line-height: normal;
}

.testimonial_block {
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    background: rgba(255,255,255,.5);
    padding: 60px 60px;
    border-radius: 10px;
    text-align: center;
}

.testimonial_block p {
    font-size: 18px;
    line-height: 1.5;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 24px;
    font-weight: 500;
    font-family:  'Quicksand', sans-serif;
}

.author-info h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #222;
    font-family: 'Abril Fatface', 'Quicksand', sans-serif;
}

.author-info .designation {
    font-size: 15px;
    font-family: 'Lilita One', 'Quicksand', sans-serif;
}

.myTestimonial .swiper-button-next, .myTestimonial .swiper-button-prev {
    background: rgba(255,255,255,.9);
    padding: 24px;
    border-radius: 2px;
}

.myTestimonial .swiper-button-next:after, .myTestimonial .swiper-button-prev:after {
    font-size: 24px;
    text-shadow: none;
}


.catering_section {
    padding: 130px 0px 150px;
    position: relative;
}

.cate_gif {
    max-width: 40px;
    width: 100%;
    margin: 0 auto;
}

.catering_events {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
}

.catering_events h2 {
    font-size: 42px;
    font-family: 'Abril Fatface', cursive;
    font-weight: 400;
    color: #222222;
    margin: 0px;
    margin-bottom: 20px;
    text-align: center;
    transition: all 500ms ease;
}


.catering_events p {
    color: #4c4b4b;
    font-weight: 400;
    margin: 0px;
    font-size: 17px;
    text-align: center;
    letter-spacing: 1px;
    transition: all 500ms ease;
}

.catering_features {
    margin-top: 80px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.catering_wrap {
    display: flex;
    background: #FFF;
}

.catering_wrap:nth-child(even) {
    flex-direction: row-reverse;
}

.catering_img, .catering_content {
    max-width: 50%;
    width: 100%;
    margin: 0 auto;
}

.catering_content h4, .catering_content p {
    text-align: right;
}

.catering_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

.catering_content h4 {
    font-size: 36px;
    font-family: 'Abril Fatface', cursive;
    font-weight: 400;
    color: #222222;
    margin: 0px;
    margin-bottom: 20px;
    transition: all 500ms ease;
}

.catering_content p {
    color: #8c8c8c;
    font-weight: 400;
    margin: 0px;
    transition: all 500ms ease;
}

.catering_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scheduling_event {
    margin-top: 80px;
}

.scheduling_event p {
    margin-bottom: 20px;
}

.catering_form .form-check {
    margin-bottom: 20px;
}

.catering_form .form-check .form-check-input {
    height: 16px;
    width: 16px;
    margin-right: 0.5rem;
    padding: 2px;
    border: 2px solid #cfcfcf;
}
.catering_form  .form-check-input:checked {
    background-color: #eb5ba2;
    border-color: #f9cde6;
}
.catering_form h6 {
    letter-spacing: 1px;
    color: #444;
    font-size: 18px;
    line-height: normal;
    padding-bottom: 16px;
}
.catering_form legend {
    color: #444;
    font-weight: 500;
    font-size: 18px;
    float: none;
    width: auto;
}
.catering_form .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem rgb(253 13 226 / 12%);
}
.catering_form {
    margin-top: 60px;
}
.catering_form .form-check .form-check-label {
    font-size: 15px;
    color: #777;
    font-family: 'Quicksand', 'Poppins', sans-serif;
    font-weight: 500;
}
.form_cover {
    margin-bottom: 40px;
}
.form_cover fieldset {
    border-width: 1px;
    border-style: groove ;
    border-color: #cfcfcf;
    border-image: initial;
    padding: 30px 30px;
    margin-bottom: 30px;
}

.catering_form label.form-label {
    color: #535353;
    font-weight: 400;
    transition: all 500ms ease;
}

::placeholder {
    color: #b3b0b0 !important   ;
    opacity: 1; 
}

.catering_form .form_cover input, .catering_form .form_cover textarea {
    border-radius: 0;
    padding: 10px 16px;
    margin-bottom: 20px;
}

.catering_form .form_cover input.form-control:focus, .catering_form .form_cover textarea.form-control:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid #3d081b;
} 
.scheduling_event .catering_form form button[type='submit'] {
    padding: 12px 47px;
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #fff !important;
    text-align: center;
    z-index: 1;
    border: none;
    outline: none;
    background: #7a7034;
    box-shadow: 0 10px 20px rgba(122, 111, 52, 0.2);
    transition: all 500ms ease;
}
.scheduling_event .catering_form form button[type='submit']::before {
    position: absolute;
    content: '';
    background: #222;
    width: 100%;
    height: 0%;
    left: 0px;
    top: 0px;
    z-index: -1;
    transition: all 500ms ease;
}
.scheduling_event .catering_form form button[type='submit']::after {
    position: absolute;
    content: '';
    background: #222;
    width: 100%;
    height: 0%;
    left: 0px;
    bottom: 0px;
    z-index: -1;
    transition: all 500ms ease;
}
.scheduling_event .catering_form form button[type='submit']:hover::before {
    height: 50%;
}
.scheduling_event .catering_form form button[type='submit']:hover:after {
    height: 50%;
}


.store_locate_section {
    padding: 100px 0;
}
.locate_box {
    max-width: 1200px;
    width: 100%;
    margin: 40px auto;
    border-radius: 24px;
    display: flex;
    overflow: hidden;
    /* border: 7px solid #f07c05; */
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.locate_box .locate_content {
    max-width: 35%;
    width: 100%;
    margin: 0;
}
.locate_box .locate_map {
    max-width: 65%;
    width: 100%;
    margin: 0;
    overflow: hidden;
}
.g-map, .locate_box .locate_map .g-map iframe {
    width: 100%;
    height: 100%;
}
.locate_content {
    flex-direction: column;
}
.map-img {
    height: 260px;
    overflow: hidden;
}
.map-img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    cursor: pointer;
    transition: all .4s ease-in-out;
}
.map-img img:hover {
    transform: scale(1.1);
}
.locate_wrap {
    padding: 20px 30px;
}
.locate_wrap .title {
    font-size: 28px;
    line-height: 1.5;
    padding-bottom: 10px;
    color: #6b3d2b;
    font-family: 'Lilita One', 'Poppins', sans-serif;
}
.locate_wrap .address {
    color: #878787;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}
.locate_wrap .directions {
    padding: 6px 16px;
    border: 2px solid #6b3d2b;
    display: inline-block;
    border-radius: 25px;
    margin-bottom: 24px;
    color: #6b3d2b;
    font-size: 14px;
    transition: all 400ms ease-in-out;
}
.locate_wrap .directions:hover {
    background: #6b3d2b;
    color: #FFF;
    border-color: transparent;
}
.locate_wrap .directions span {
    margin-right: 2px;
}
.locate_wrap .website {
    color: #6b3d2b;
    transition: all .4s ease-in-out;
}
.locate_wrap .website {
    color: #6b3d2b;
    padding-bottom: 20px;
    display: inline-block;
    transition: all .4s ease-in-out;
}
.feature_points {
    color: #6b3d2b;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.locate_wrap .describe {
    font-size: 15px;
    color: #878787;
    padding-bottom: 16px;
}
.timings {
    padding: 30px;
    border-top: 1px solid #ccc;
}
.timings ul li {
    color: #878787;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}
/* inner Pages CSS Ends */

@keyframes shine {
    0% {
        transform: translateX(-200%);
    }
    100% {
        transform: translateX(100px);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadeUp {
    0% {
        opacity: .5;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fadeTranslate {
    0% {
        opacity: 0;
        transform:  translateY(-60px);
    }
    100% {
        opacity: 1;
        transform:  translateX(0px);
    }
}

@keyframes topbtnAnimate {
    0% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}
