
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap');
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");

.shop-footer{
    padding: 15px 0;
    min-height: 93px;
}
.shop-footer a{
        display: block;
        font-size: 12px;
    margin: 6px 0;
}
body {
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #5c5c77;
}

h1, h2, h3, h4, h5{
    font-family: "Fraunces", serif;
}
@media (max-width: 575px) {
  h1, .h1 {
    font-size: 45px;
  }
}

h2, .h2 {
  font-size: 40px;
}

@media (max-width: 575px) {
  h2, .h2 {
    font-size: 30px;
  }
}

h3, .h3 {
  font-size: 25px;
}

@media (max-width: 575px) {
  h3, .h3 {
    font-size: 20px;
  }
}

h4, .h4 {
  font-size: 20px;
}

@media (max-width: 575px) {
  h4, .h4 {
    font-size: 18px;
  }
}

h5, .h5 {
  font-size: 18px;
}

@media (max-width: 575px) {
  h5, .h5 {
    font-size: 16px;
  }
}

h6, .h6 {
  font-size: 16px;
}

@media (max-width: 575px) {
  h6, .h6 {
    font-size: 14px;
  }
}

/* Button style */
.btn {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding: 15px 40px;
  border-radius: 0;
  font-weight: 500;
  border: 0;
  position: relative;
  z-index: 1;
  transition: .2s ease;
  overflow: hidden;
}
#cookiePopup {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        background: #181a20;
        padding: 15px;
        display: flex;
        flex-wrap: wrap;
        z-index: 999999;
        gap: 20px;
        align-items: center;
        justify-content: center;
        display: none;
    }

    #cookiePopup h4 {
        font-size: 25px;
        color: #fff;
        margin-bottom: 15px;
    }

    #cookiePopup p {
        font-size: 15px;
        color: #fff;
        margin-bottom: 15px;
        letter-spacing: 1px;
        line-height: 1.5;
        max-width: 850px;
    }

    #cookiePopup p a {
        color: #fff;
        text-decoration: underline;
    }

    .cookieBtns {
        display: inline-flex;
        gap: 10px;
    }

    .cookieBtns button {
        font-size: 15px;
        margin: 10px 0;
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
            background: #e33466;
        cursor: pointer;
        transition: all 0.5s ease;
        border: 2px solid #fff;
    }

    .cookieBtns button:last-child {
        background-color: #fff;
        color: #4070f4;
    }
.btn::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 100%;
  left: 0;
  bottom: 10%;
  z-index: -1;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

.btn:active {
  box-shadow: none;
}

.btn:hover::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.btn-sm {
  font-size: 14px;
  padding: 10px 35px;
}

.btn-xs {
  font-size: 12px;
  padding: 5px 15px;
}

.btn-primary {
  background: #edf8f3;
  color: #fff;
}

.btn-primary::before {
  background: #fff;
}

.btn-primary:active {
  background: #edf8f3 !important;
  color: #edf8f3;
}

.btn-primary:active::before {
  height: 80%;
}

.btn-primary:hover {
  background: #ffab08;
  color: #edf8f3;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #ffab08;
  border-color: #ffab08;
}

.btn-secondary {
  background: #fff;
  color: #edf8f3;
  border: 1px solid #fff;
}

/* .btn-secondary::before {
  background: #edf8f3;
} */

.btn-secondary:active {
  background: #edf8f3;
  color: #fff;
  border: 1px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #fff;
  border: 1px solid #fff;
}

.btn-primary-outline {
  border: 1px solid #edf8f3;
  color: #edf8f3;
  background: transparent;
}

.btn-primary-outline::before {
  background: #fff;
}

.btn-primary-outline:hover {
  background: #edf8f3;
  color: #edf8f3;
}

.btn-primary-outline:active {
  background: #edf8f3;
  color: #fff;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: #edf8f3;
  color: #fff;
}

::selection {
  background: #edf8f3;
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a {
  color: #edf8f3;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: .2s ease;
}

a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
    color: #083923 !important;
}

a.text-primary:hover {
  color: #083923 !important;
}

a.text-light:hover {
  color: #083923 !important;
}

h4 {
  transition: .2s ease;
}

a h4:hover {
  color: #edf8f3;
}

.slick-slide {
  outline: 0;
}

.section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.section-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-title {
  margin-bottom: 30px;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.border-primary {
  border-color: #ededf1 !important;
}

/* overlay */
.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #1a1a37;
  opacity: .8;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: #edf8f3 !important;
}

.bg-secondary {
  background: #1a1a37 !important;
}

.bg-gray {
  background: #f8f8f8;
}

.text-primary {
  color: #edf8f3 !important;
}

.text-color {
  color: #5c5c77;
}

.text-light {
  color: #8585a4 !important;
}

.text-lighten {
  color: #d6d6e0 !important;
}

.text-muted {
  color: #b5b5b7 !important;
}

.text-dark {
  color: #1e1e4b !important;
}

.font-secondary {
  font-family: "futura-bold";
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.pl-150 {
  padding-left: 150px;
}

.zindex-1 {
  z-index: 1;
}

.overflow-hidden {
  overflow: hidden;
}

.vertical-align-middle {
  vertical-align: middle;
}

.icon-md {
  font-size: 36px;
}

/* page title */
.page-title-section {
  padding: 200px 0 80px;
}

.custom-breadcrumb li.nasted {
  position: relative;
  padding-left: 25px;
}

.custom-breadcrumb li.nasted::before {
  position: absolute;
  font-family: "themify";
  content: "\e649";
  font-size: 20px;
  top: 50%;
  left: -5px;
  color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* /page title */
.list-styled {
  padding-left: 25px;
}

.list-styled li {
  position: relative;
  margin-bottom: 15px;
}

.list-styled li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #edf8f3;
  left: -25px;
  top: 5px;
}

textarea.form-control {
  height: 200px;
  padding: 20px;
}

#map_canvas {
  height: 500px;
}

.top-header {
  font-size: 12px;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
  -webkit-transform-origin: top;
          transform-origin: top;
  font-weight: 600;
}

.top-header.hide {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
}

@media (max-width: 991px) {
  .header {
    position: static !important;
    background: #1a1a37;
  }
}

.navigation {
  background-image: linear-gradient(to right, transparent 50%, #edf8f3 50%);
  transition: .2s ease;
}

@media (max-width: 575px) {
  .navigation {
    background-image: linear-gradient(to right, transparent 70%, #edf8f3 30%);
  }
}

.navbar-nav {
  padding-left: 0px;
  background: transparent;
}

@media (max-width: 991px) {
  .navbar-nav {
    padding-left: 0;
  }
}

.nav-bg {
  background-color: #1a1a37;
  margin-top: -46px;
}

.nav-item {
  margin: 0 15px;
  position: relative;
}
ul.footer-navbar li a {
    font-size: 15px;
}
.nav-item::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 100%;
  content: "";
  background: #fff;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.navbar-light .navbar-nav .nav-link {
  color: #fff;
}

link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #fff;
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 40px 0px;
}

@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 20px;
  }
  .footer-navbar{
      display: none;
  }
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 5px #0000000d;
}

.navbar .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  border-bottom: 5px solid #edf8f3;
  padding: 15px;
  top: 96px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: .3s ease;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  background: #fff;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform-origin: unset;
            transform-origin: unset;
  }
}

.navbar .dropdown-menu.view {
  visibility: visible !important;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.view {
    display: block;
  }
}

.navbar .dropdown-menu.show {
  visibility: hidden;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
  }
}

.navbar .dropdown-item {
  position: relative;
  color: #1e1e4b;
  transition: .2s ease;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 991px) {
  .navbar .dropdown-item {
    text-align: center;
  }
}

.navbar .dropdown-item:not(:last-child) {
  margin-bottom: 10px;
}

.navbar .dropdown-item:hover {
  color: #edf8f3;
  background: transparent;
}

.hero-section {
  padding: 250px 0 230px;
}

.hero-slider .prevArrow,
.hero-slider .nextArrow {
  position: absolute;
  bottom: -123px;
  z-index: 9;
  padding: 15px;
  color: rgba(255, 255, 255, 0.5);
  border: 0;
  font-size: 30px;
  transition: all linear .2s;
  background: transparent;
}

.hero-slider .prevArrow:focus,
.hero-slider .nextArrow:focus {
  outline: 0;
}

.hero-slider .prevArrow:hover,
.hero-slider .nextArrow:hover {
  color: #edf8f3;
}

.hero-slider .prevArrow {
  right: 60px;
}

.hero-slider .nextArrow {
  right: 0;
}

.hero-slider .slick-dots {
  position: absolute;
  left: 0;
  bottom: -100px;
  padding-left: 0;
}

.hero-slider .slick-dots li {
  display: inline-block;
  margin: 0 6px;
}

.hero-slider .slick-dots li.slick-active button {
  background: #edf8f3;
}

.hero-slider .slick-dots li button {
  color: transparent;
  padding: 0;
  overflow: hidden;
  height: 10px;
  width: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  outline: 0;
}

/* banner feature */
.feature-icon {
  font-size: 50px;
  color: #edf8f3;
  display: inline-block;
}

.feature-blocks {
  margin-top: -100px;
  padding-left: 70px;
  padding-top: 80px;
  padding-right: 30%;
}

@media (max-width: 1400px) {
  .feature-blocks {
    padding-right: 10%;
  }
}

@media (max-width: 1200px) {
  .feature-blocks {
    padding-right: 50px;
    padding-left: 50px;
    padding-top: 30px;
  }
  .feature-blocks h3 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .feature-blocks {
    margin-top: 0;
    padding: 50px;
  }
  .feature-blocks h3 {
    font-size: 25px;
  }
}

/* /banner feature */
/* course */
.card-btn {
  font-size: 12px;
  padding: 5px 10px;
}

.flex-basis-33 {
  flex-basis: 33.3333%;
}

.hover-shadow {
  transition: .3s ease;
}

.hover-shadow:hover {
  box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}

/* /course */
/* success story */
.success-video {
  min-height: 300px;
}

.success-video .play-btn {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 767px) {
  .success-video .play-btn {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #foodSlider {
   
    height: auto !important;
  }
  .hero_main .content-area {
    margin-bottom: 30px;
  }
  .abt-image1, .abt-image3 {
    display: none;
    }
    .about-section .title-box h2 {
        font-size: 20px !important;
    }
    .about-section .floating-images {
    
        height: 50px !important;
        
    }
    .menu-card-style .menu-col .inner, .menu-card-style.alternate .menu-col .inner {
        padding: 0 !important;
    }
    .shop-card .dz-content {
        min-height: 120px !important;
    }
    button.navbar-toggler.collapsed.navicon.justify-content-end span , button.navbar-toggler.navicon.justify-content-end.open span{
        background: rgb(230, 177, 95) !important;
    }
    ul.nav.navbar-nav.dark-nav a {
        color: black !important;
    }
}



.offcanvas-body .product-description ul.sidebar-cart-list a, .offcanvas-body .product-description ul.sidebar-cart-list span, .offcanvas-body .product-description ul.sidebar-cart-list h6, .offcanvas-body .product-description ul.sidebar-cart-list h5 , .offcanvas-body a.btn.btn-secondary {
    color: black !important;
}
.offcanvas-body .shipping-content h6 {
    color: black !IMPORTANT;
}

.offcanvas-body .product-description ul.sidebar-cart-list a.btn.btn-outline-secondary {
    color: black !important;
}

.offcanvas-body a.btn.btn-outline-secondary {
    color: black;
    border: 1px solid black;
}

button.scroltop i.fas.fa-arrow-up {
    color: black !important;
}
button#shopping-cart, button#shopping-cart span, button#wishlist, button#wishlist span {
    color: black !important;
}


.cart-total h5 {
    color: black;
}
.play-btn {
  display: inline-block;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #edf8f3;
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.play-btn i {
  line-height: 80px;
}

.play-btn::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -2;
  transition: .3s ease;
  transition-delay: .2s;
}

.play-btn::after {
  position: absolute;
  content: "";
  height: 80%;
  width: 80%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #edf8f3;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -1;
  transition: .3s ease;
}

.play-btn:hover::before {
  height: 80%;
  width: 80%;
  transition-delay: 0s;
}

.play-btn:hover::after {
  height: 0;
  width: 0;
  transition: 0s ease;
}

/* /success story */
/* events */
.card-date {
  position: absolute;
  background: #edf8f3;
  font-family: "futura-bold";
  text-align: center;
  padding: 10px;
  color: #fff;
  top: 0;
  left: 0;
  text-transform: uppercase;
}

.card-date span {
  font-size: 40px;
}

/* /events */
/* teacher */
.teacher-info {
  width: 70%;
  bottom: 0;
  right: 0;
}

/* /teacher */
/* footer */
.newsletter {
  background-image: linear-gradient(to right, transparent 50%, #edf8f3 50%);
  margin-bottom: -100px;
  position: relative;
  z-index: 1;
}

.newsletter-block {
  padding-left: 50px;
}

@media (max-width: 575px) {
  .newsletter-block {
    padding-left: 15px;
  }
}

.input-wrapper {
  position: relative;
}

.input-wrapper button {
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-control {
  height: 60px;
  background: #fff;
  border-radius: 0;
  padding-left: 25px;
}

.form-control:focus {
  border-color: #edf8f3;
  box-shadow: none;
}

.newsletter-block .form-control {
  height: 70px;
}

.bg-footer {
  background-color: #182b45;
}

.logo-footer {
  margin-top: -20px;
  display: inline-block;
}

.footer {
  border-color: #494a43 !important;
  padding-top: 200px;
}

/* /footer */
.filter-controls li {
  cursor: pointer;
  transition: .1s ease;
}

.filter-controls li.mixitup-control-active {
  font-weight: 600;
  color: #edf8f3;
}

.filter-controls li:hover {
  color: #edf8f3;
}

/*# sourceMappingURL=maps/style.css.map */


i.ti-shopping-cart.mb-xl-4.mb-lg-3 {
    font-weight: 700;
    font-size: 23px;
}

.section-gap {
    padding: 6.25rem 0 0;
    clear: both;
}

#prod-gal-sync1 .item {
    padding: 0.75rem;
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}
h1.prod-title {
    font-size: 30px;
}
p.product-price {
    font-weight: 600;
}
.thm-color {
    color: #edf8f3;
}
.prod-details-area .quantity-controls button {
    width: 35px;
    font-size: 1.6rem;
    height: 47px !important;
    background-color: transparent;
    border: 1px solid #ced4da;
    cursor: pointer;
}
.quantity-controls button:first-child {
    border-radius: 0.2rem 0 0 0.2rem;
    border-right: 0;
}
.quantity-controls button:last-child {
    border-radius: 0 0.2rem 0.2rem 0;
    border-left: 0;
}
.quantity-input {
    width: 45px !important;
    height: 47px !important;
    padding: 0.375rem 0.55rem !important;
    border-left: 0;
    border-right: 0;
    text-align: right;
    border-radius: 0;
    box-shadow: none !important;
    appearance: textfield;
    -webkit-appearance: textfield;
}
.dtl-tab-area .nav-tabs{
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
.dtl-tab-area .nav-link{
  font-weight: 600;
  font-size: 1.25rem;
  background-color: transparent !important;
  width: max-content;
  text-align: center;
}
.dtl-tab-area th, .dtl-tab-area td{
  padding: 15px 20px;
  border: 1px solid var(--base-tint-60);
}
.dtl-tab-area th {
  width: 240px;
}
.checkout-area .filedset{
  margin-bottom: 2rem;
}
.page__pagination {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 3rem;
}
.page__pagination .pg-pagination li {
  display: inline-block;
  margin-right: 7px;
}
.page__pagination .pg-pagination li a {
  height: 45px;
  width: 45px;
  text-align: center;
  line-height: 45px;
  display: inline-block;
  background-color: #fff;
  font-weight: 500;
  border-radius: 50%;
  font-size: 1.05rem;
  border: 1px solid var(--base-tint-60);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.page__pagination .pg-pagination li.next a{
  font-size: 0.8rem;
}
.page__pagination .pg-pagination li:last-child {
  margin-right: 0;
}
.page__pagination .pg-pagination li a:hover {
  background-color: var(--base-dark);
  color: #ffffff;
  border: 1px solid var(--base-dark);
}
.blog-dtl-area .post-meta {
  border-style: solid;
  border-width: 1px 0;
  border-color: var(--base-tint-60);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 1.5rem 0;
  padding: 0.75rem 0;
}
.blog-dtl-pagination .pg-pagination li a{
  width: 90px;
  border-radius: 0.25rem;
}
.bg-thm-light {
    background-color: #f3afd1;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: var(--base-color);
    background-color: #fff;
    border-color: var(--base-color);
}
.btn-primary:hover{
    background: #edf8f3;
    color: #edf8f3;
}
ul.list-unstyled a {
    color: #5c5c6f;
}
ul.list-unstyled a:hover{
    color: #ffffff;
}
.btn-primary:hover {
    background: #edf8f3;
    color: #edf8f3 !important;
}
.btn-primary {
    background: #edf8f3;
    color: #ffffff !important;
}

.product-details b {
    line-height: 2;
}
.product-details {
    background: #eeeeff;
    padding: 20px;
}
p.ls-text {
    font-weight: 600;
}
span.spicon img {
    width: 100%;
}
.wdt-content-icon {
    max-width: 9.125rem;
    height: 3.125rem;
    flex: 0 0 3.125rem;
    text-align: center;
    line-height: 3.125rem;
}
.check-tbl {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.check-tbl {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.125);
    vertical-align: middle;
}
.check-tbl thead th:first-child {
    padding-left: 0;
}
.check-tbl thead th {
    font-size: 16px;
    font-weight: 700;
    padding: 0 0 20px 15px;
    color: #24262B;
}
.table > :not(:first-child) {
    border-top: 1px solid #dee2e6;
}
.check-tbl tbody tr {
    border-bottom: 1px solid rgba(94, 98, 111, 0.2);
}
.check-tbl tbody tr td.product-item-name {
    font-size: 20px;
    min-width: 200px;
}
.check-tbl tbody tr td {
    padding: 15px;
    font-weight: 500;
    font-size: 20px;
    border: none;
}
.check-tbl tbody tr td.product-item-price {
    font-size: 20px;
}
.check-tbl tbody tr td:last-child {
    text-align: right;
}
.check-tbl tbody tr td:first-child, .check-tbl tbody tr td:last-child {
    padding: 20px 0;
}
.check-tbl .product-item-close {
    text-align: right;
}
.check-tbl .product-item-close a {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--dark-shade);
    display: inline-block;
    text-align: center;
    line-height: 44px;
}
.cart-detail {
    background: #eeeeee;
    border: 1px solid #333333;
    padding: 35px 30px 30px 30px;
}
.icon-bx-wraper.style-4 {
    border: 1px solid #333333;
    padding: 15px;
    display: flex;
    align-items: center;
}
.icon-bx-wraper {
    position: relative;
}
.icon-bx-wraper.style-4 .icon-bx {
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-detail .icon-bx-wraper.style-4 .icon-content {
        margin-left: 10px;
    }
    .m-b15 {
    margin-bottom: 15px;
}

    .cart-detail .icon-bx-wraper.style-4 .icon-content {
        margin-left: 10px;
    }
    .cart-detail table {
    width: 100% !important;
}
.m-b30 {
    margin-bottom: 30px;
}
ul.list-unstyled li {
    color: #a9a9a9;
}
ul.list-unstyled li a{
    color: #a9a9a9;
}

td.product-quantity select {
    padding: 4px;
    text-align: center;
}

/*new site*/

carousel-inner {
      border-radius: 50% / 10%;
      overflow: hidden;
      border: 3px solid gold;
      margin: 40px auto;
      max-width: 80%;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    }

    .carousel-item img {
      width: 100%;
      height: auto;
      display: block;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: #0b2f2f;
      border-radius: 50%;
      padding: 15px;
      color: #fff;
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 5%;
    }

    .carousel-control-prev-icon::after,
    .carousel-control-next-icon::after {
      content: '';
    }

    .carousel-control-prev-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 16 16' fill='gold' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 14 5 8l6-6'/%3E%3C/svg%3E");
    }

    .carousel-control-next-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 16 16' fill='gold' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 14l6-6-6-6'/%3E%3C/svg%3E");
    }

    @media (max-width: 768px) {
      .carousel-inner {
        border-radius: 40px;
      }

      .carousel-control-prev,
      .carousel-control-next {
        width: 10%;
      }
    }

    #foodSlider {
    border-radius: 500px;
    
    margin-top: 30px;
    border: 12px solid rgb(0 0 0 / 80%);
    box-shadow: 0 0 0 1px rgb(230,177,95);
    position: relative;
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
    height:400px;
}
body{
    background-color: rgb(24,49,46) !important;
}
section{
    background-color: rgb(24,49,46) !important;
}
/*butn*/
.btn-style-two{
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    text-transform: uppercase;
    color: rgb(230,177,95);
    letter-spacing: 3px;
    font-weight: 700;
    padding:8px 35px;
    font-size:12px;
    border: 1px solid rgb(230,177,95);
    border-radius: 0px;
    overflow: hidden;
    transition: all 0.3s ease 0s;
}

.btn-style-two:before{
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: -200%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 1;
    background: rgb(230,177,95);
}

.btn-style-two:hover:before{
    top: 0%;
}
.btn-style-two .btn-wrap{
    position:relative;
    z-index:1;
    float:left;
    overflow: hidden;
    display: inline-block;
}

.btn-style-two .btn-wrap .text-one{
    position: relative;
    display: block;
    color: rgb(230,177,95);
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.btn-style-two:hover .btn-wrap  .text-one:first-child{
    -webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}

.btn-style-two .btn-wrap .text-two{
    position: absolute;
    top: 100%;
    display: block;
    color: #000;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-style-two:hover .btn-wrap .text-two{
    top: 50%;
    -webkit-transform: translateY(-50%); 
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn-style-two:hover .btn-wrap .text-two{
    color: #000;
}


.btn-style-two:hover:before{
    top: -40%;
}
a, p, span, body{
    font-family: 'Poppins', sans-serif !important;
}
/*** 

====================================================================
  Title Box Section
====================================================================

***/

.title-box{
  position: relative;
  padding-bottom: 30px;
}

.title-box.centered{
  margin: 0 auto;
  text-align: center;
}

.title-box .subtitle{
  position: relative;
  display: inline-flex; /* Make it inline so it wraps only around content */
  align-items: center;   /* Vertically center the SVGs and text */
  gap: 8px;              /* Space between SVG and text */
  text-transform: uppercase;
  font-weight: 700;
  color: rgb(230,177,95);
  font-size: 14px;
  letter-spacing: 0.20em;
  line-height: 1em;
  margin-bottom: 10px;
}


.title-box .subtitle::before,
.title-box .subtitle::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url(../images/star-element.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}


.title-box .title-badge {
	width: 205px;
	margin: 0 auto;
	text-align: center;
	padding: 0 0 10px 0;
}


.title-box h2{
  position: relative;
  margin-bottom: 0;
}

.title-box h3{
  position: relative;
  margin-bottom: 0;
}

.title-box .text{
  position: relative;
  line-height: 1.85em;
}

.title-box.centered .text{
  max-width: 420px;
  margin: 0 auto;
}
.theme_color {
    color: rgb(230, 177, 95);
}

/*** 

====================================================================
  home about Section
====================================================================

***/
.about-section {
  position: relative;
  background: rgb(24,49,46);
}


.about-section .title-box h2 {
  font-size: 50px;
}

.about-section .title-box h2 img{
  border-radius: 300px;
  margin: 0 10px;
}

.about-section .text-col .text {
  text-align: center;
  padding-bottom: 40px;
  color: white;
}

.about-section .lower-link-box {
  margin-bottom: 80px;
}

.about-section .floating-images {
  position: relative;
  width: 100%;
  height: 200px; /* adjust as needed */
  /*top: -350px;*/
}

.about-section .floating-images > div {
  position: absolute;
}

.about-section .abt-image1 {
  top: -400px;
  left: 0;
}

.about-section .abt-image1 img {
  border-radius: 200px 200px 0 0;
}

.about-section .abt-image2 {
  top: 0;
  left: 50%;
  transform: translateX(-50%) !important;
}

.about-section .abt-image2 img {
  border-radius: 0 100px 0 100px;
  width: 540px;
}

.about-section .abt-image3 {
  top: -300px;
  right: 0;
}

.about-section .abt-image3 img {
  border-radius: 100px 0 100px 0;
}

.about-section .floating-images img {
  /*width: 280px; /* or any size that works visually */
  height: auto;
  display: block;
}
.about-section h2{
    max-width: 70%;
    margin:0 auto;
}


/*** 

====================================================================
  Benefits
====================================================================

***/

.menu-card-style-section{
  position: relative;
  overflow: hidden;
  background-color:rgb(24,49,46);
}

.menu-card-style-section .title-box{
  z-index: 100;
}

.menu-card-main .top-pattern{
	background-image:url(../images/pattern-bg-dark.png);
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: cover;
	width: 100%;
	height: 350px;
	left: 0;
	top: 0;
	position: absolute;
}

.menu-card-main {
  position: relative;
  padding: 80px 70px;
  
  background: #112220;
  background: -webkit-linear-gradient(90deg, rgba(17, 34, 32, 1) 0%, rgba(27, 51, 48, 1) 40%, rgba(15, 30, 28, 1) 50%, rgba(27, 51, 48, 1) 60%, rgba(17, 34, 32, 1) 100%);
  background: -moz-linear-gradient(90deg, rgba(17, 34, 32, 1) 0%, rgba(27, 51, 48, 1) 40%, rgba(15, 30, 28, 1) 50%, rgba(27, 51, 48, 1) 60%, rgba(17, 34, 32, 1) 100%);
  background: linear-gradient(90deg, rgba(17, 34, 32, 1) 0%, rgba(27, 51, 48, 1) 40%, rgba(15, 30, 28, 1) 50%, rgba(27, 51, 48, 1) 60%, rgba(17, 34, 32, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#112220", endColorstr="#112220", GradientType=1);
}

/* .menu-card-main::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color:rgb(0,0,0);
  transform: translateX(-50%);
  z-index: 1;
} */

.menu-card-style .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center; /* vertically center image-col and menu-col */
}

.menu-card-main .menu-card-corner {
  position: absolute;
}

.menu-card-main .menu-card-corner.top-left {
  top: -2px;
  left: -2px;
}

.menu-card-main .menu-card-corner.top-right {
  top: -2px;
  right: -2px;
}

.menu-card-main .menu-card-corner.bottom-left {
  bottom: -2px;
  left: -2px;
}

.menu-card-main .menu-card-corner.bottom-right {
  bottom: -2px;
  right: -2px;
}

/* .menu-card-style,
.menu-card-style.alternate{
  padding-bottom: 100px;
} */

.menu-card-style.last,
.menu-card-style.alternate.last{
  padding-bottom: 0;
}

.menu-card-style .image-col{
  position: relative;
}

.menu-card-style.alternate .image-col{
  order: 12;
}

.menu-card-style .image-col .inner{
  position: relative;
  display: block;
  text-align: left;
}

.menu-card-style.alternate .image-col .inner{
  position: relative;
  display: block;
  text-align: right;
}

.menu-card-style .image-col .image img{
  position: relative;
  display: block;
  width: 100%;
}

.menu-card-style .image-col .image,
.menu-card-style.alternate .image-col .image{
  position: relative;
  display: inline-block;
  border-radius: 400px 400px 0 0;
  overflow: hidden;
}

.menu-card-style .image-col .image img,
.menu-card-style.alternate .image-col .image img{
  display: block;
  border-radius: 400px 400px 0 0;
  position: relative;
  z-index: 1;
}

.menu-card-style .image-col .image::before,
.menu-card-style.alternate .image-col .image::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgb(230,177,95);
   border-radius: 400px 400px 0 0;
  pointer-events: none;
  z-index: 2;
  box-sizing: border-box;
}

.menu-card-style .menu-col{
  position: relative;
}

.menu-card-style.alternate .menu-col{
  order: 0;
}

.menu-card-style .menu-col .inner{
  position: relative;
  display: block;
  padding-left:20px;
  min-height: 100%;
  padding: 0 0 0 100px;
}

.menu-card-style.alternate .menu-col .inner{
  padding: 0 100px 0 0;
}

.menu-card-style .menu-col .dish-block{
  position: relative;
  margin-bottom: 30px;
}

.menu-card-style .menu-col .dish-block .inner-box{
  position: relative;
}

.menu-card-style .menu-col .dish-block .title{
  position: relative;
  line-height: 24px;
  margin-bottom: 5px;
  display: flex;
}

.menu-card-style .menu-col .dish-block .title .menu-list-line {
  flex-grow: 1;
  margin-left: 10px;
  margin-right: 10px;
  border-bottom-style: dashed;
  border-bottom-width: 1px;
  border-bottom-color: var(--white-color-opacity-three);
  height: 17px;

}

.menu-card-style .menu-col .dish-block .title .ttl{
  position: relative;
  float: left;
  text-transform: capitalize;
}

.menu-card-style .menu-col .dish-block .title .ttl a{
  color: #fff;
}

.menu-card-style .menu-col .dish-block .title .ttl a:hover{
  color: rgb(230,177,95);
}

.menu-card-style .menu-col .dish-block .title .ttl .s-info{
  position: relative;
  display: inline-block;
  line-height: 16px;
  padding: 0 5px;
  font-size: 12px;
  color: rgb(0,0,0);
  background: rgb(230,177,95);
  margin-left: 8px;
  border-radius: 2px;
}

.menu-card-style .menu-col .dish-block .title .price{
  position: relative;
  float: right;
  font-size: 16px;
  color: rgb(230,177,95);
  
}

.menu-card-style .menu-col .dish-block .desc{
  position: relative;
  font-size: 15px;
  color: rgb(24,49,46);
  max-width: 350px;
}

.menu-card-style .menu-col .dish-block .desc a{
  color: rgb(21,44,41);
}
.product_sec ul h5 a {
    color: rgb(21,44,41);
}
footer {
    border-top: solid 1px rgb(255 255 255 / 10%);
}

/*Why choose us*/
section.why_chose_us {
    background: rgb(21, 44, 41) !important;
}
.menu-section {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
    }

    .menu-card {
      background-color: transparent;
      border: 1px solid #caa74f;
      border-radius: 500px 500px 0 0;
      width: 300px;
      text-align: center;
      padding: 65px 10px;
      position: relative;
    }

    .menu-card img {
      width: 200px;
      height: 200px;
      object-fit: cover;
      margin-bottom: 20px;
      border-radius: 50%;
      border: 5px solid #0b2f2f;
      background: #fff;
    }

    .menu-type {
      color: #caa74f;
      font-size: 12px;
      letter-spacing: 1px;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .menu-title {
      font-size: 18px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 10px;
    }

    .menu-desc {
      font-size: 14px;
      color: #cfcfcf;
      margin-bottom: 10px;
      padding: 0 10px;
    }

    .menu-price {
      color: #caa74f;
      font-size: 16px;
      font-weight: 600;
    }

    @media (max-width: 992px) {
      .menu-card {
        width: 90%;
      }
    }
    section.half-section{
        padding-top: 130px;
    }
    .cover-background h1, .cover-background ul li, .cover-background ul li a{
    color:#fff;
}
header ul li a:hover{
    color:rgb(230,177,95) !Important;
    font-weight:bold !important;
}
.is-fixed .main-bar i.feather.icon-feather-shopping-bag , .is-fixed .main-bar i.fa-regular.fa-heart, .is-fixed .main-bar span.cart-count, .is-fixed .main-bar .wl{
    color: rgb(230,177,95) !important;
}


footer {
    background-color: rgb(24,49,46);
}
.prod_sec h5.alt-font, .prod_sec p {
    color: white;
}
.indg p.detel-ing {
    color: black;
}
.chkout .heading span {
    color: white;
}
.terms-condition-box span {
    color: black;
}
.chk_butn{
    color:black !important;
}
.chk_butn:hover{
    color:white !important;
}
tr.product td {
    color: black ;
}
button.accordion-button {
    color: black !important;
}
.faqimg img {
    display: block;
    border-radius: 400px 400px 0 0;
    position: relative;
    z-index: 1;
}
.contact_div span {
    color: black;
}