:root {
  --white: #FFFFFF;
  --black: #000000;
  --coffee: #330900;
  --yellow: #E4C901;
  --grey: #615E5D;
  --lightgrey: #eaeae2;
  --lightgrey01: #f3f3ed;
  --small-font: 0.875rem;
  --regular-font: 1rem;
  --medium-font: 1.125rem;
  --semi-font: 1.25rem;
  --semi-large-font: 1.375rem;
  --large-font: 1.5rem;
  --extra-large-font: 1.875rem;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --small-spacing: 3rem;
  --medium-spacing: 4rem;
  --semi-spacing: 5rem;
  --large-spacing: 6rem;
  --graphik: "Graphik";
}

@media (max-width: 767px) {
  :root {
    --large-spacing: 2.5rem;
  }
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/graphik/Graphik-Light.eot");
  src: url("../fonts/graphik/Graphik-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/graphik/Graphik-Light.woff2") format("woff2"), url("../fonts/graphik/Graphik-Light.woff") format("woff"), url("../fonts/graphik/Graphik-Light.ttf") format("truetype"), url("../fonts/graphik/Graphik-Light.svg#Graphik-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/graphik/Graphik-Regular.eot");
  src: url("../fonts/graphik/Graphik-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/graphik/Graphik-Regular.woff2") format("woff2"), url("../fonts/graphik/Graphik-Regular.woff") format("woff"), url("../fonts/graphik/Graphik-Regular.ttf") format("truetype"), url("../fonts/graphik/Graphik-Regular.svg#Graphik-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/graphik/Graphik-Medium.eot");
  src: url("../fonts/graphik/Graphik-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/graphik/Graphik-Medium.woff2") format("woff2"), url("../fonts/graphik/Graphik-Medium.woff") format("woff"), url("../fonts/graphik/Graphik-Medium.ttf") format("truetype"), url("../fonts/graphik/Graphik-Medium.svg#Graphik-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/graphik/Graphik-Semibold.eot");
  src: url("../fonts/graphik/Graphik-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/graphik/Graphik-Semibold.woff2") format("woff2"), url("../fonts/graphik/Graphik-Semibold.woff") format("woff"), url("../fonts/graphik/Graphik-Semibold.ttf") format("truetype"), url("../fonts/graphik/Graphik-Semibold.svg#Graphik-Semibold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/graphik/Graphik-Bold.eot");
  src: url("../fonts/graphik/Graphik-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/graphik/Graphik-Bold.woff2") format("woff2"), url("../fonts/graphik/Graphik-Bold.woff") format("woff"), url("../fonts/graphik/Graphik-Bold.ttf") format("truetype"), url("../fonts/graphik/Graphik-Bold.svg#Graphik-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
body {
  margin: 0;
  padding: 0;
  font-size: var(--regular-font);
  font-weight: var(--font-weight-normal);
  font-family: var(--graphik);
  line-height: normal;
  color: var(--black);
}

a {
  text-decoration: none;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
a:hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: normal;
}

ul, ol {
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: var(--medium-font);
  color: var(--grey);
}
@media (max-width: 767px) {
  p {
    font-size: var(--regular-font);
  }
}

:focus {
  outline: none;
}

@media (min-width: 1280px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1200px;
  }
}
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1340px;
  }
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (max-width: 991px) {
  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.form-control {
  height: 3.125rem;
  width: 100%;
  border: none;
  background-color: var(--lightgrey01);
  padding: 0.375rem 1rem;
  font-size: var(--regular-font);
  color: var(--black);
  border-radius: 0.375rem;
}
.form-control:focus, .form-control:hover, .form-control:active {
  background-color: var(--lightgrey01);
  outline: none;
  box-shadow: none;
}

textarea.form-control {
  height: auto;
}

.theme_btn {
  border: none;
  position: relative;
  vertical-align: middle;
  outline: none;
  background-color: var(--yellow);
  color: var(--white);
  font-size: var(--small-font);
  padding: 0.9063rem 2.1875rem;
  transition: all 0.5s linear;
  border-radius: 25px;
  overflow: hidden;
  font-weight: var(--font-weight-medium);
  z-index: 1;
}
.theme_btn:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60px;
  background-color: rgba(0, 0, 0, 0.2);
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  clip-path: polygon(50% 0, 100% 0%, 100% 100%, 0% 100%);
  transition: all 0.5s linear;
  z-index: -1;
}
.theme_btn:hover, .theme_btn:focus, .theme_btn:active {
  background-color: var(--yellow) !important;
  color: var(--white) !important;
}
.theme_btn:hover:before, .theme_btn:focus:before, .theme_btn:active:before {
  width: 190%;
}

.title {
  text-align: center;
  margin-bottom: 3.125rem;
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.title h3 {
  font-size: 2.75rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .title h3 {
    font-size: 2rem;
  }
}
.title p {
  max-width: 600px;
  margin: 0 auto;
}

.page-header {
  position: relative;
  display: block;
  padding: calc(var(--semi-spacing) * 2) 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-header {
    padding: calc(var(--semi-spacing) * 1) 0;
  }
}
.page-header .page-header-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  z-index: -1;
}
.page-header .page-header-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 0;
}
.page-header .page-header__inner {
  position: relative;
  display: block;
  text-align: center;
  z-index: 15;
}
.page-header .page-header__inner h2 {
  font-size: 3.125rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0;
  color: var(--white);
}
@media (max-width: 767px) {
  .page-header .page-header__inner h2 {
    font-size: 2.5rem;
  }
}
.page-header .page-header__inner .thm-breadcrumb {
  position: relative;
  display: block;
  margin-bottom: 1rem;
}
.page-header .page-header__inner .thm-breadcrumb li {
  position: relative;
  display: inline-block;
  color: var(--white);
  font-size: var(--small-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.page-header .page-header__inner .thm-breadcrumb li + li {
  margin-inline-start: 0.125rem;
}
.page-header .page-header__inner .thm-breadcrumb li:hover a {
  color: var(--yellow);
  opacity: 1;
}
.page-header .page-header__inner .thm-breadcrumb li a {
  position: relative;
  display: inline-block;
  color: var(--white);
  font-size: var(--regular-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header {
  position: relative;
}
.main-header .main-header-top {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: 2.75rem;
  font-size: var(--small-font);
  background-color: var(--yellow);
}
@media (max-width: 1199px) {
  .main-header .main-header-top {
    display: none;
  }
}
.main-header .main-header-top .main-header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 2.5rem;
  row-gap: 2.5rem;
}
.main-header .main-header-top .main-header-top-inner .main-header-top-start {
  display: flex;
  align-items: center;
  column-gap: 1.875rem;
}
.main-header .main-header-top .main-header-top-inner .main-header-top-start span {
  display: inline-block;
  opacity: 0.75;
  color: var(--coffee);
}
.main-header .main-header-top .main-header-top-inner .main-header-top-start .main-header-social {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 1.5rem;
}
.main-header .main-header-top .main-header-top-inner .main-header-top-start .main-header-social a {
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  font-size: var(--medium-font);
  color: var(--coffee);
}
.main-header .main-header-top .main-header-top-inner .main-header-top-start .main-header-social a:hover {
  color: var(--white);
}
.main-header .main-header-top .main-header-top-inner .main-header-top-start .main-header-social a i {
  display: block;
  vertical-align: middle;
}
.main-header .main-header-top-end .main-header-contact-list {
  display: flex;
  align-items: center;
  column-gap: 1.875rem;
}
.main-header .main-header-top-end .main-header-contact-list li {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}
.main-header .main-header-top-end .main-header-contact-list li i {
  display: block;
  color: var(--coffee);
}
.main-header .main-header-top-end .main-header-contact-list li a {
  display: inline-block;
  color: var(--coffee);
}
.main-header .main-header-top-end .main-header-contact-list li a:hover {
  color: var(--white);
}
.main-header .navbar {
  padding: 0;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 991px) {
  .main-header .navbar {
    padding: 0.75rem 0;
  }
}
.main-header .navbar .navbar-brand {
  display: inline-block;
  padding: 0;
  margin: 0;
}
.main-header .navbar .navbar-brand img {
  width: 9rem;
  height: auto;
}
@media (max-width: 991px) {
  .main-header .navbar .navbar-brand img {
    width: 8rem;
  }
}
@media (max-width: 991px) {
  .main-header .navbar .navbar-nav {
    margin-top: 1.25rem;
  }
}
.main-header .navbar .navbar-nav .nav-item {
  margin-inline-start: 3.125rem;
}
@media (max-width: 991px) {
  .main-header .navbar .navbar-nav .nav-item {
    margin-inline-start: 0;
  }
}
.main-header .navbar .navbar-nav .nav-item .nav-link {
  padding: 1.75rem 0;
  font-weight: var(--font-weight-medium);
  opacity: 0.5;
  color: var(--coffee);
  border-bottom: 0.25rem solid var(--white);
}
@media (max-width: 991px) {
  .main-header .navbar .navbar-nav .nav-item .nav-link {
    padding: 1rem 0;
    border-bottom: none;
  }
}
.main-header .navbar .navbar-nav .nav-item .nav-link:hover, .main-header .navbar .navbar-nav .nav-item .nav-link.active {
  opacity: 1;
  border-bottom: 0.25rem solid var(--coffee);
}
@media (max-width: 991px) {
  .main-header .navbar .navbar-nav .nav-item .nav-link:hover, .main-header .navbar .navbar-nav .nav-item .nav-link.active {
    border-bottom: none;
  }
}
@media (max-width: 991px) {
  .main-header .navbar-expand-lg .navbar-toggler {
    margin-inline-start: auto;
  }
}
.main-header .navbar-toggler {
  border-radius: 0;
  border: none;
}
.main-header .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

footer {
  overflow: hidden;
  padding: 3.75rem 0 1.5rem;
  color: var(--black);
  background: var(--lightgrey);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
footer .footer-content {
  position: relative;
  padding-bottom: 2.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
footer .footer-content img.pattern {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.05;
  z-index: 0;
}
@media (max-width: 1199px) {
  footer .footer-content img.pattern {
    width: 100%;
    height: auto;
  }
}
footer .footer-content .footer-logo {
  position: relative;
  z-index: 1;
  text-align: center;
}
footer .footer-content .footer-logo a {
  display: block;
}
footer .footer-content .footer-logo a img {
  width: 200px;
  height: auto;
}
footer .footer-content .footer-menu {
  position: relative;
  z-index: 1;
  margin-top: 1.875rem;
}
footer .footer-content .footer-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 2.5rem;
}
@media (max-width: 576px) {
  footer .footer-content .footer-menu ul {
    column-gap: 1.5rem;
  }
}
footer .footer-content .footer-menu ul li {
  display: inline-block;
  position: relative;
}
footer .footer-content .footer-menu ul li:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.375rem;
  width: 1px;
  height: 1rem;
  opacity: 0.2;
  transform: translateY(-50%);
  background-color: var(--black);
}
@media (max-width: 576px) {
  footer .footer-content .footer-menu ul li:after {
    right: -0.75rem;
  }
}
footer .footer-content .footer-menu ul li:last-child::after {
  display: none;
}
footer .footer-content .footer-menu ul li a {
  color: var(--black);
}
@media (max-width: 576px) {
  footer .footer-content .footer-menu ul li a {
    font-size: var(--small-font);
  }
}
footer .footer-content .footer-menu ul li a:hover {
  color: var(--yellow);
}
footer .footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 2.5rem;
}
@media (max-width: 576px) {
  footer .footer-copyright {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  footer .footer-copyright .copyright {
    font-size: var(--small-font);
  }
}
footer .footer-copyright .social-media {
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
}
@media (max-width: 576px) {
  footer .footer-copyright .social-media {
    margin-bottom: 1.25rem;
  }
}
footer .footer-copyright .social-media a {
  width: 2.25rem;
  height: 2.25rem;
  line-height: 2.25rem;
  border-radius: 50%;
  text-align: center;
  color: var(--white);
  background: var(--coffee);
}
footer .footer-copyright .social-media a:hover {
  color: var(--coffee);
  background: var(--yellow);
}
footer .footer-copyright .social-media a i {
  font-size: var(--small-font);
}

.carousel .carousel-inner .carousel-item {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.carousel .carousel-inner .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.carousel .carousel-inner .carousel-item img.desktop-view {
  display: block;
}
@media (max-width: 576px) {
  .carousel .carousel-inner .carousel-item img.desktop-view {
    display: none;
  }
}
.carousel .carousel-inner .carousel-item img.mobile-view {
  display: none;
}
@media (max-width: 576px) {
  .carousel .carousel-inner .carousel-item img.mobile-view {
    display: block;
  }
}
.carousel .carousel-inner .carousel-item .carousel-caption {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 7.5rem;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  color: var(--white);
}
.carousel .carousel-inner .carousel-item .carousel-caption h3 {
  font-size: 3.125rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
}
.carousel .carousel-inner .carousel-item .carousel-caption p {
  font-size: var(--medium-font);
  color: var(--white);
}
.carousel .carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 4.5rem;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.carousel .carousel-indicators button {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 0.625rem;
  height: 0.625rem;
  padding: 0;
  margin: 0 0.25rem;
  text-indent: -999px;
  border-radius: 50%;
  cursor: pointer;
  background-color: var(--white);
  background-clip: padding-box;
  border: 0;
  border-top: 0 solid transparent;
  border-bottom: 0 solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
.carousel .carousel-indicators button.active {
  width: 1.875rem;
  opacity: 1;
  border-radius: 1.25rem;
}

.features {
  position: relative;
  display: block;
  margin-top: -2.5rem;
  z-index: 2;
}
.features .features-content {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 1.625rem;
  row-gap: 1.75rem;
  padding: 2.25rem;
  z-index: 1;
  border-radius: 1rem;
  background-color: var(--white);
  border: 1px solid #E8E3DF;
  box-shadow: 0 0.4rem 1.875rem rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .features .features-content {
    column-gap: 0;
    padding: 1.5rem;
  }
}
.features .features-content .feature-list {
  position: relative;
  display: flex;
  align-items: flex-start;
  column-gap: 1rem;
  width: calc(33.33% - 1.25rem);
  flex: 0 0 calc(33.33% - 1.25rem);
}
@media (max-width: 1199px) {
  .features .features-content .feature-list {
    width: calc(50% - 1.25rem);
    flex: 0 0 calc(50% - 1.25rem);
  }
}
@media (max-width: 767px) {
  .features .features-content .feature-list {
    width: 100%;
    flex: 0 0 100%;
  }
}
.features .features-content .feature-list:nth-child(1) {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.features .features-content .feature-list:nth-child(2) {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.features .features-content .feature-list:nth-child(3) {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.features .features-content .feature-list:nth-child(4) {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.features .features-content .feature-list:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.875rem;
  width: 1px;
  height: 3.75rem;
  transform: translateY(-50%);
  background-color: #EAEAE2;
}
@media (max-width: 767px) {
  .features .features-content .feature-list:after {
    display: none;
  }
}
@media (max-width: 1199px) {
  .features .features-content .feature-list:nth-child(2)::after {
    display: none;
  }
}
.features .features-content .feature-list:last-child::after {
  display: none;
}
.features .features-content .feature-list .icon {
  width: 3.75rem;
  height: 3.75rem;
  line-height: 3.75rem;
  text-align: center;
}
.features .features-content .feature-list .icon img {
  width: 100%;
  height: auto;
}
.features .features-content .feature-list .content {
  width: calc(100% - 4.75rem);
  flex: 0 0 calc(100% - 4.75rem);
}
.features .features-content .feature-list .content h5 {
  margin-bottom: 0.5rem;
  font-size: var(--medium-font);
  font-weight: var(--font-weight-semibold);
  color: var(--coffee);
}
.features .features-content .feature-list .content span {
  display: block;
  line-height: 1.3;
  color: var(--grey);
}

.about-chalisa-food {
  padding-top: var(--large-spacing);
  padding-bottom: var(--large-spacing);
}
.about-chalisa-food .about-chalisa-food-content {
  display: flex;
  align-items: flex-start;
  column-gap: 2.5rem;
  row-gap: 2.5rem;
}
@media (max-width: 991px) {
  .about-chalisa-food .about-chalisa-food-content {
    flex-direction: column;
  }
}
.about-chalisa-food .about-chalisa-food-content .about-image {
  position: relative;
  width: calc(50% - 1.25rem);
  flex: 0 0 calc(50% - 1.25rem);
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
@media (max-width: 991px) {
  .about-chalisa-food .about-chalisa-food-content .about-image {
    width: calc(100% - 1.25rem);
    flex: 0 0 calc(100% - 1.25rem);
  }
}
.about-chalisa-food .about-chalisa-food-content .about-image .pattern {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: auto;
  z-index: 0;
  transform: translateY(-50%);
}
.about-chalisa-food .about-chalisa-food-content .about-image .main-slider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}
.about-chalisa-food .about-chalisa-food-content .about-content {
  width: calc(50% - 1.25rem);
  flex: 0 0 calc(50% - 1.25rem);
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
@media (max-width: 991px) {
  .about-chalisa-food .about-chalisa-food-content .about-content {
    width: calc(100% - 1.25rem);
    flex: 0 0 calc(100% - 1.25rem);
  }
}
.about-chalisa-food .about-chalisa-food-content .about-content .title {
  text-align: start;
  margin-bottom: 1.875rem;
}
.about-chalisa-food .about-chalisa-food-content .about-content .title p {
  max-width: 100%;
  margin: auto;
}
.about-chalisa-food .about-chalisa-food-content .about-content blockquote {
  padding-inline-start: 1rem;
  margin-bottom: 0;
  font-size: var(--medium-font);
  line-height: 1.4;
  border-inline-start: 0.125rem solid var(--yellow);
}

.explore-products {
  padding-top: var(--large-spacing);
  padding-bottom: var(--large-spacing);
}
.explore-products .product-listing {
  display: flex;
  align-items: stretch;
  column-gap: 2.5rem;
  row-gap: 2.5rem;
}
@media (max-width: 991px) {
  .explore-products .product-listing {
    flex-direction: column;
  }
}
.explore-products .product-listing .product-list {
  width: calc(50% - 1.25rem);
  flex: 0 0 calc(50% - 1.25rem);
}
@media (max-width: 991px) {
  .explore-products .product-listing .product-list {
    width: calc(100% - 1.25rem);
    flex: 0 0 calc(100% - 1.25rem);
  }
}
.explore-products .product-listing .product-list:nth-child(1) {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.explore-products .product-listing .product-list:nth-child(2) {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.explore-products .product-listing .product-list .cardbox {
  width: 100%;
  border-radius: 1rem;
  background: var(--white);
  border: 1px solid #E8E3DF;
  box-shadow: 0 0.4rem 1.875rem rgba(0, 0, 0, 0.1);
}
.explore-products .product-listing .product-list .cardbox .cardbox-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
  background: #E2E4E6;
}
.explore-products .product-listing .product-list .cardbox .cardbox-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.explore-products .product-listing .product-list .cardbox .cardbox-details {
  padding: 2.5rem;
}
@media (max-width: 767px) {
  .explore-products .product-listing .product-list .cardbox .cardbox-details {
    padding: 1.5rem;
  }
}
.explore-products .product-listing .product-list .cardbox .cardbox-details h3 {
  margin-bottom: 1rem;
  font-size: var(--extra-large-font);
  font-weight: var(--font-weight-semibold);
}
@media (max-width: 767px) {
  .explore-products .product-listing .product-list .cardbox .cardbox-details h3 {
    font-size: var(--large-font);
  }
}
.explore-products .product-listing .product-list .cardbox .cardbox-details p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  font-weight: var(--font-weight-medium);
}
.explore-products .product-listing .product-list .cardbox .cardbox-details p a {
  font-size: var(--semi-font);
  color: var(--yellow);
}
.explore-products .product-listing .product-list .cardbox .cardbox-details .read-more {
  font-weight: var(--font-weight-medium);
  color: var(--yellow);
}
.explore-products .product-listing .product-list .cardbox .cardbox-details .read-more i {
  display: inline-block;
  vertical-align: bottom;
  margin-inline-start: 0.25rem;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.explore-products .product-listing .product-list .cardbox .cardbox-details .read-more:hover {
  color: var(--coffee);
}
.explore-products .product-listing .product-list .cardbox .cardbox-details .read-more:hover i {
  transform: translateX(0.5rem);
}
.explore-products .product-listing .product-list .cardbox:hover .cardbox-image img {
  transform: scale(1.1);
}

.chalisa-food-gallery {
  padding-top: var(--large-spacing);
  padding-bottom: var(--large-spacing);
}
.chalisa-food-gallery .gallery-lising {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 1.25rem;
  row-gap: 1.25rem;
}
.chalisa-food-gallery .gallery-lising .list {
  position: relative;
  width: calc(25% - 1rem);
  flex: 0 0 calc(25% - 1rem);
  height: auto;
  overflow: hidden;
  border-radius: 1rem;
  background: #E2E4E6;
}
@media (max-width: 1199px) {
  .chalisa-food-gallery .gallery-lising .list {
    width: calc(33.33% - 1rem);
    flex: 0 0 calc(33.33% - 1rem);
  }
}
@media (max-width: 991px) {
  .chalisa-food-gallery .gallery-lising .list {
    width: calc(50% - 1rem);
    flex: 0 0 calc(50% - 1rem);
  }
}
@media (max-width: 576px) {
  .chalisa-food-gallery .gallery-lising .list {
    width: calc(100% - 1rem);
    flex: 0 0 calc(100% - 1rem);
  }
}
.chalisa-food-gallery .gallery-lising .list:nth-child(1) {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(2) {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(3) {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(4) {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(5) {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(6) {
  -webkit-animation-delay: 1.1s;
  -moz-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(7) {
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(8) {
  -webkit-animation-delay: 1.3s;
  -moz-animation-delay: 1.3s;
  animation-delay: 1.3s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(9) {
  -webkit-animation-delay: 1.4s;
  -moz-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(10) {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(11) {
  -webkit-animation-delay: 1.6s;
  -moz-animation-delay: 1.6s;
  animation-delay: 1.6s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(12) {
  -webkit-animation-delay: 1.7s;
  -moz-animation-delay: 1.7s;
  animation-delay: 1.7s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(13) {
  -webkit-animation-delay: 1.8s;
  -moz-animation-delay: 1.8s;
  animation-delay: 1.8s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(14) {
  -webkit-animation-delay: 1.9s;
  -moz-animation-delay: 1.9s;
  animation-delay: 1.9s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(15) {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(16) {
  -webkit-animation-delay: 2.1s;
  -moz-animation-delay: 2.1s;
  animation-delay: 2.1s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(17) {
  -webkit-animation-delay: 2.2s;
  -moz-animation-delay: 2.2s;
  animation-delay: 2.2s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(18) {
  -webkit-animation-delay: 2.3s;
  -moz-animation-delay: 2.3s;
  animation-delay: 2.3s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(19) {
  -webkit-animation-delay: 2.4s;
  -moz-animation-delay: 2.4s;
  animation-delay: 2.4s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(20) {
  -webkit-animation-delay: 2.5s;
  -moz-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(21) {
  -webkit-animation-delay: 2.6s;
  -moz-animation-delay: 2.6s;
  animation-delay: 2.6s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(22) {
  -webkit-animation-delay: 2.7s;
  -moz-animation-delay: 2.7s;
  animation-delay: 2.7s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(23) {
  -webkit-animation-delay: 2.8s;
  -moz-animation-delay: 2.8s;
  animation-delay: 2.8s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(24) {
  -webkit-animation-delay: 2.9s;
  -moz-animation-delay: 2.9s;
  animation-delay: 2.9s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(25) {
  -webkit-animation-delay: 3s;
  -moz-animation-delay: 3s;
  animation-delay: 3s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(26) {
  -webkit-animation-delay: 3.1s;
  -moz-animation-delay: 3.1s;
  animation-delay: 3.1s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(27) {
  -webkit-animation-delay: 3.2s;
  -moz-animation-delay: 3.2s;
  animation-delay: 3.2s;
}
.chalisa-food-gallery .gallery-lising .list:nth-child(28) {
  -webkit-animation-delay: 3.3s;
  -moz-animation-delay: 3.3s;
  animation-delay: 3.3s;
}
.chalisa-food-gallery .gallery-lising .list a {
  display: block;
}
.chalisa-food-gallery .gallery-lising .list a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.chalisa-food-gallery .gallery-lising .list a span {
  position: relative;
  display: block;
  padding: 1rem;
  text-align: center;
  font-size: var(--medium-font);
  font-weight: var(--font-weight-medium);
  color: var(--coffee);
  background: var(--yellow);
}
.chalisa-food-gallery .theme_btn {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

#lightcase-info #lightcase-caption {
  clear: both;
  font-size: var(--regular-font);
  font-family: var(--font-weight-semibold);
  letter-spacing: 0.5px;
  color: var(--white);
}

#lightcase-overlay {
  display: none;
  width: 100%;
  min-height: 100%;
  position: fixed;
  z-index: 2000;
  top: -9999px;
  bottom: -9999px;
  left: 0;
  background: #000;
}

.statistics {
  display: flex;
  align-items: center;
  padding-top: var(--large-spacing);
  padding-bottom: var(--large-spacing);
  background: url(../images/resources/banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  height: 700px;
}
@media (max-width: 991px) {
  .statistics {
    height: auto;
    background-position: center left;
  }
}
.statistics .statistics-listing {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 1.5rem;
  row-gap: 1.25rem;
}
.statistics .statistics-listing .statistics-list {
  display: flex;
  align-items: center;
  column-gap: 1.25rem;
  width: calc(50% - 0.75rem);
  height: 130px;
  padding: 1.25rem;
  border-radius: 1rem;
  background: var(--white);
  border: 1px solid #E8E3DF;
  box-shadow: 0 0.4rem 1.875rem rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .statistics .statistics-listing .statistics-list {
    width: calc(100% - 0.75rem);
  }
}
.statistics .statistics-listing .statistics-list:nth-child(1) {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.statistics .statistics-listing .statistics-list:nth-child(2) {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.statistics .statistics-listing .statistics-list:nth-child(3) {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.statistics .statistics-listing .statistics-list:nth-child(4) {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.statistics .statistics-listing .statistics-list .icon {
  width: 3.75rem;
  height: 3.75rem;
  flex: 0 0 3.75rem;
}
.statistics .statistics-listing .statistics-list .icon img {
  width: 100%;
  height: auto;
}
.statistics .statistics-listing .statistics-list .content {
  width: calc(100% - 5rem);
  flex: 0 0 calc(100% - 5rem);
}
.statistics .statistics-listing .statistics-list .content h5 {
  font-size: 2.5rem;
  font-weight: var(--font-weight-semibold);
}
.statistics .statistics-listing .statistics-list .content span {
  display: block;
  font-size: var(--medium-font);
  color: var(--grey);
}

.google-map {
  padding-top: var(--large-spacing);
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.google-map iframe {
  border: none;
  height: 435px;
  width: 100%;
  mix-blend-mode: luminosity;
  background-color: var(--lightgrey01);
}

.contact-details__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 3.125rem 0;
  border-bottom: 1px solid var(--lightgrey);
}
@media (max-width: 1199px) {
  .contact-details__inner {
    flex-wrap: wrap;
    row-gap: 2rem;
  }
}
.contact-details__contact-list {
  position: relative;
  display: flex;
  align-items: flex-start;
  column-gap: 4rem;
  row-gap: 2rem;
}
@media (max-width: 991px) {
  .contact-details__contact-list {
    flex-wrap: wrap;
  }
}
.contact-details__contact-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
}
.contact-details__contact-list li:nth-child(1) {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.contact-details__contact-list li:nth-child(2) {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.contact-details__contact-list li:nth-child(3) {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.contact-details__contact-list li .icon {
  position: relative;
  display: inline-block;
}
.contact-details__contact-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: var(--extra-large-font);
  color: var(--yellow);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.contact-details__contact-list li:hover .icon span {
  transform: scale(0.9);
}
.contact-details__contact-list li .content {
  position: relative;
  display: block;
  margin-left: 1rem;
}
.contact-details__contact-list li .content p {
  font-size: var(--regular-font);
  margin-bottom: 0.5rem;
}
.contact-details__contact-list li .content h4 {
  font-size: var(--regular-font);
  font-weight: var(--font-weight-medium);
  margin-bottom: 0;
}
.contact-details__contact-list li .content h4 a {
  color: var(--black);
  transition: all 900ms ease;
}
.contact-details__contact-list li .content h4 a:hover {
  color: var(--coffee);
}
.contact-details__social-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.contact-details__social-box a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--black);
  background-color: var(--lightgrey01);
  font-size: var(--regular-font);
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}
.contact-details__social-box a + a {
  margin-left: 0.625rem;
}
.contact-details__social-box a:hover {
  color: var(--white);
  background-color: var(--coffee);
}
.contact-details__social-box a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.contact-details__social-box a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--coffee);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.contact-form {
  padding-top: var(--large-spacing);
  padding-bottom: var(--large-spacing);
  z-index: 1;
}
.contact-form .container {
  max-width: 800px;
}
.contact-form .contact-page__content {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.contact-form .contact-page__content .form-group {
  margin-bottom: 20px;
}
.contact-form .contact-page__content .contact-page__btn-box {
  position: relative;
  display: block;
  text-align: center;
}

.productdetail-section {
  padding-top: var(--semi-spacing);
}
.productdetail-section .productdetail-img {
  margin-bottom: 2.5rem;
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.productdetail-section .productdetail-img img {
  border-radius: 0.375rem;
}
.productdetail-section .productdetail-content {
  margin-right: 3.75rem;
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
@media (max-width: 1199px) {
  .productdetail-section .productdetail-content {
    margin-right: 0;
  }
}
.productdetail-section .productdetail-content h2 {
  font-size: 2.75rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .productdetail-section .productdetail-content h2 {
    font-size: 2rem;
  }
}
.productdetail-section .productdetail-content p:not(:last-child) {
  margin-bottom: 1.5rem;
}
.productdetail-section .productdetail-content p.text-unique {
  font-weight: var(--font-weight-medium);
  color: var(--yellow);
}
.productdetail-section .chooseus_content {
  display: flex;
  align-items: flex-start;
  column-gap: 1.875rem;
  row-gap: 1.875rem;
  padding: 3rem 0;
}
@media (max-width: 991px) {
  .productdetail-section .chooseus_content {
    flex-direction: column;
  }
}
.productdetail-section .chooseus_content .image {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  animation-delay: 0.7s;
  background: var(--lightgrey);
}
.productdetail-section .chooseus_content > img {
  max-width: 370px;
  border-radius: 0.375rem;
}
.productdetail-section .chooseus_content .content {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.productdetail-section .chooseus_content .content h3 {
  font-size: var(--extra-large-font);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1.4375rem;
}
.productdetail-section .chooseus_content .content p {
  margin-bottom: 2.25rem;
}
.productdetail-section .chooseus_content .content ul li {
  display: flex;
  align-items: center;
}
.productdetail-section .chooseus_content .content ul li:not(:last-child) {
  margin-bottom: 0.875rem;
}
.productdetail-section .chooseus_content .content ul li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-color: var(--yellow);
  border-radius: 50%;
  font-size: 0.5625rem;
  color: var(--white);
}
.productdetail-section .chooseus_content .content ul li .text {
  margin-left: 20px;
  font-weight: var(--font-weight-medium);
  font-size: var(--regular-font);
}
.productdetail-section .faq_accordion {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.productdetail-section .faq_accordion .accordion-item {
  border-radius: var(--bs-accordion-inner-border-radius);
  border: 1px solid var(--lightgrey);
  color: var(--black);
}
.productdetail-section .faq_accordion .accordion-item:not(:last-child) {
  margin-bottom: 1.25rem;
}
.productdetail-section .faq_accordion .accordion-item .accordion-header {
  font-size: inherit;
}
.productdetail-section .faq_accordion .accordion-item .accordion-header .accordion-button {
  background-color: var(--white);
  border-radius: var(--bs-accordion-inner-border-radius);
  padding: 1.25rem 1.875rem;
  font-size: var(--medium-font);
  font-weight: var(--font-weight-medium);
}
.productdetail-section .faq_accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  box-shadow: none;
  background-color: var(--white);
  color: var(--yellow);
}
.productdetail-section .faq_accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
  border: none;
}
.productdetail-section .faq_accordion .accordion-item .accordion-body {
  padding: 0 1.875rem 1.25rem;
  color: var(--grey);
  line-height: 1.75rem;
}

.aboutus_sec {
  padding-top: var(--large-spacing);
  padding-bottom: var(--large-spacing);
}
.aboutus_sec .title {
  margin-bottom: 1.25rem;
}
.aboutus_sec .title h3 {
  margin-bottom: 0;
}
.aboutus_sec .about_p_content {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.aboutus_sec .about_p_content p {
  font-size: var(--regular-font);
}
.aboutus_sec .about_p_content p:not(:last-child) {
  margin-bottom: 1.2rem;
}
.aboutus_sec .about_p_content ul {
  margin: 0;
  margin-bottom: 1.5rem;
  padding: 0;
  padding-inline-start: 1.25rem;
}
.aboutus_sec .about_p_content ul li {
  margin-bottom: 0.625rem;
}
.aboutus_sec .about_p_content ul li:last-child {
  margin-bottom: 0;
}
.aboutus_sec .about_p_content .btn {
  margin-top: 1.5rem;
}
.aboutus_sec .about_img_view {
  text-align: center;
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
@media (max-width: 991px) {
  .aboutus_sec .about_img_view {
    margin-top: 2.5rem;
  }
}

.about_statistics {
  background: none;
  height: auto;
}
.about_statistics .statistics-listing .statistics-list {
  width: calc(25% - 1.25rem);
}
@media (max-width: 1199px) {
  .about_statistics .statistics-listing .statistics-list {
    width: calc(50% - 1.25rem);
  }
}
@media (max-width: 767px) {
  .about_statistics .statistics-listing .statistics-list {
    width: calc(100% - 1.25rem);
  }
}

/*# sourceMappingURL=style.css.map */
