/* components */
.centerTitle {
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.textPrimary {
  color: var(--primary);
}
.primaryLightBg {
  background-color: var(--primaryLightBg);
}
.primaryDarktBg {
  background-color: var(--primaryDarktBg);
}
.xlTitle {
  font-size: 60px;
  line-height: 1.1;
  text-transform: uppercase;
}
.lgTitle {
  font-size: 36px;
  line-height: 1.3;
  text-transform: uppercase;
}
.mdTitle {
  font-size: 30px;
  line-height: 1.2;
  text-transform: uppercase;
}
.smTitle {
  font-size: 26px;
  line-height: 1.2;
  text-transform: uppercase;
}
.xsTitle {
  font-size: 20px;
  line-height: 1.4;
  text-transform: uppercase;
}
.xsTitle2 {
  font-size: 16px;
  line-height: 1.4;
  text-transform: uppercase;
}
.subTitle {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.titleSpace {
  padding: 30px 0 15px;
}
.lineSubTitle {
  --lineWd: 120px;
  --lineSpace: 15px;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--lineWd);
  display: inline-block;
}
.lineSubTitle > span {
  position: relative;
}
.lineSubTitle > span::before, .lineSubTitle > span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-top: 1px solid var(--black);
  width: 0;
  transition: width 1200ms ease-in-out 100ms;
}
.lineSubTitle > span::before {
  right: calc(100% + var(--lineSpace));
}
.aos-animate.lineSubTitle > span::after {
  left: calc(100% + var(--lineSpace));
}
.aos-animate.lineSubTitle > span::before, .aos-animate.lineSubTitle > span::after {
  width: var(--lineWd);
}
.sectionSpace {
  padding: 120px 0;
}

/* Banner */
.bannerSection {
  position: relative;
  background-image: url("../images/banner.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 320px 0px 280px;
  background-position: center center;
}
.bannerSection::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0.3) 100%);
}
.bannerVideoBg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.bannerSection > .container {
  position: relative;
  z-index: 2;
}
.bannerContentMaxWd {
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
  position: relative;
}
.bannerBtns {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 15px;
}
.btnTopSpace {
  padding-top: 30px;
}
.mkdfLink {
  --lineWd: 75px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.menuOpner {
  left: 0;
}
.mkdfLink::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-top: 1px solid var(--primaryLightBg);
  width: 0;
  transition: width 1200ms ease-in-out 100ms;
}
.aos-animate .mkdfLink::before {
  width: var(--lineWd);
}
.aos-animate .mkdfLink.menuOpner::before {
  left: 100%;
}
.aos-animate .mkdfLink.reservationMdl::before {
  right: 100%;
}
.reservationMdl {
  right: 0;
  left: auto;
}
.mkdf-menu-popup-opener {
  --boxwh: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  width: var(--boxwh);
  height: var(--boxwh);
  padding: 10px;
  background-color: var(--primaryLightBg);
  text-align: center;
  z-index: 30;
  transition: -webkit-clip-path .8s 
  cubic-bezier(.45, .05, .15, .93);
  transition: clip-path .8s 
  cubic-bezier(.45, .05, .15, .93);
  transition: clip-path .8s 
  cubic-bezier(.45, .05, .15, .93), -webkit-clip-path .8s 
  cubic-bezier(.45, .05, .15, .93);
}
.menuOpner .mkdf-menu-popup-opener {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
.reservationMdl .mkdf-menu-popup-opener {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
}
.aos-animate .mkdf-menu-popup-opener {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.mkdf-menu-popup-opener .mkdf-menu-popup-opener-svg .mkdf-svg-smoke-1 {
  -webkit-animation: moving-smoke 2s infinite;
  animation: moving-smoke 2s infinite
}
.mkdf-menu-popup-opener .mkdf-menu-popup-opener-svg .mkdf-svg-smoke-2 {
  -webkit-animation: moving-smoke 2s .1s infinite;
  animation: moving-smoke 2s .1s infinite
}
@-webkit-keyframes moving-smoke {
  0%,100% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px)
  }
  50% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px)
  }
}
@keyframes moving-smoke {
  0%,100% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px)
  }
  50% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px)
  }
}
/* Banner */

/* About */
.aboutLeftRect {
  position: relative;
}
.aboutLeftRect::before {
  content: "";
  position: absolute;
  min-width: 32%;
  left: -100px;
  top: -120px;
  min-height: 750px;
  background-color: var(--primaryLightBg);
}
.aboutImg {
  width: 580px;
  height: 715px;
}
.aboutImg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutContent {
  padding-left: 30px;
}
.pxl-image-wg {
  overflow: hidden;
}
.pxl-image-wg img {
  clip-path: inset(0 100% 0 0);
  -webkit-transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
  -khtml-transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
  -moz-transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
  -ms-transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
  -o-transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
  transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
}
.pxl-image-wg.aos-animate img {
  clip-path: inset(0 0 0 0);
}
/* About */

/* Card */
.cStyle1 {
  height: 100%;
  padding: 50px 30px;
  position: relative;
  text-align: center;
  border-radius: 20px;
  border: 1px solid var(--primaryLightBg);
  background-color: var(--white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  transition: 0.6s ease-in-out;
}
.blankLink {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.cStyle1Inner {
  transform: translateY(0px);
  transition: 0.6s ease-in-out;
}
.cStyle1:hover .cStyle1Inner{
  transform: translateY(-8px);
  transition: 0.6s ease-in-out;
}
.cStyle1:hover {
  background-color: var(--primaryLightBg);
}
.cStyle1Img {
  --hw: 100px;
  width: var(--hw);
  height: var(--hw);
  margin: 0 auto 45px;
  background-color: var(--primaryLightBg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 10px;
  transition: 0.6s ease-in-out;
}
.cStyle1:hover .cStyle1Img {
  background-color: var(--white);
}
.cStyle1 h4 {
  padding-bottom: 10px;
}

/* Service cards use photographs instead of the original small icons. */
.cardSection .cStyle1Img {
  width: min(100%, 230px);
  height: 150px;
  padding: 0;
  margin-bottom: 35px;
  overflow: hidden;
}
.cardSection .cStyle1Img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
/* Card */

/* Chef */
.chefSection {
  position: relative;
}
.chefSection::before {
  content: "";
  position: absolute;
  inset: 0;
  max-height: 780px;
  background-color: var(--primaryLightBg);
}
.chefCardImg {
  padding-top: 80px;
}
.chefProductsGrid {
  width: min(1040px, calc(100vw - 30px));
  margin-left: 50%;
  transform: translateX(-50%);
}
.chefImg img {
  width: 100%;
  height: 395px;
  object-fit: cover;
  clip-path: inset(0 0 100% 0);
  -webkit-transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
  -khtml-transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
  -moz-transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
  -ms-transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
  -o-transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
  transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
}
.chefDishLink {
  display: block;
  color: inherit;
}
.chefDishLink .chefImg {
  position: relative;
  overflow: hidden;
}
.chefDishCategory {
  position: absolute;
  left: 16px;
  bottom: 16px;
  max-width: calc(100% - 32px);
  padding: 7px 14px;
  color: var(--white);
  background-color: var(--primary);
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
}
.aos-animate .chefImg img {
  clip-path: inset(0 0 0 0);
}
.elementImg {
  position: absolute;
  width: 300px;
  height: 300px;
  overflow: hidden;
  border-radius: 50%;
}
.element1 {
  left: -45px;
  top: -160px;
}
.element2 {
  right: -45px;
  top: -20px;
}
.elementImg > img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
/* Chef */

/* Menu */
.menuInner {
  padding: 75px 0;
}
.selectionFilterOptions {
  padding: 60px 13px;
  text-align: center;
  background-color: var(--primaryDarktBg);
}
.menuTitle {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: var(--primary);
  margin: 0;
  line-height: normal;
  color: var(--white);
  padding: 10px;
  font-family: inherit;
}
.selectionFilterLinks ul{
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 50px 0 20px;
}
.filterTrigger {
  color: var(--white);
  font-size: 18px;
  line-height: 1.2;
  transition: var(--transition);
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}
.filterTrigger:hover {
  color: var(--white);
}
.filterTrigger.active {
  border-color: var(--white);
}
.menuOffer {
  display: flex;
  flex-direction: column;
  gap: 45px;
  padding: 0 30px;
}
.selectionCard {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  position: relative;
  line-height: 1.2;
}
.selectionCard > p:last-child {
	margin-bottom: 0;
}
.selectionCard .d-flex {
  align-items: center;
}
.dishName {
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--titleFont);
}
.dishPrice {
  font-weight: 700;
  font-family: var(--titleFont);
}
.dishLine {
  border-top: 1px solid var(--black);
  opacity: 0.5;
}
.menuImg {
  width: 100%;
  max-width: 306px;
  border-radius: 50%;
}
.menuImg img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}
/* Menu */

/* Google Review */
.gglReview {
  padding: 80px 0;
  position: relative;
  background-image: url(../images/testimonial-bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}
.gglReview::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--primaryLightBgGrdient);
}
.element3 {
  right: -40px;
  bottom: -115px;
}
.gglDt {
  margin-top: 20px;
}
.gglInner {
  position: relative;
}
.gglInput {
  max-width: 960px;
  position: relative;
}
.gglInput .form-control {
  padding: 20px 260px 20px 65px;
  border-radius: 0;
  font-size: 18px;
  border-color: var(--primaryLightBg);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.gglIcon {
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
}
.gglInput .btnStyle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 26px;
}
.gglSocialLinks {
  display: flex;
  align-items: center;
  gap: 15px;
}
.gglSocialLinks > a {
  --wh: 55px;
  display: block;
  width: var(--wh);
  height: var(--wh);
}
.gglSocialLinks > a > img{
  width: 100%;
  height: 100%;
}
/* Google Review */

/* Testimonial */
.testimonialImg {
  height: 100%;
  position: relative;
}
.testimonialImg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.reviewSliderCol {
  padding: 80px;
  max-width: 880px;
}
.reviewCard {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 100px;
  align-items: start;
}
.reviewCard > h2 {
  font-size: 30px;
  margin: 60px 0 15px;
  text-transform: uppercase;
  line-height: 1.4;
}
.reviewContent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.reviewImgCol {
  text-align: center;
  --imgSize: 80px;
}
.reviewImgCol > img {
  width: var(--imgSize);
  height: var(--imgSize);
  object-fit: cover;
  border-radius: 50%;
}
.reviewerName {
  font-size: 20px;
  line-height: 1.5;
  text-align: left;
}
.reviewerDesignation {
  display: block;
  font-size: 16px;
  opacity: 0.7;
}
.swiper-pagination.reviewPagination {
  text-align: start;
}
.reviewSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background-color: var(--primaryLightBg);
  opacity: 1;
}
.reviewSwiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 50px;
  background-color: var(--primary);
}
.quoteIcon svg path {
  color: var(--primary);
}
/* Testimonial */

/* Blog */
.blogInner {
  padding-top: 50px;
}
.blogCard {
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.blogCard .cardImg {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.blogCard .cardImg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.9) 100%);
  z-index: 1;
}
.blogCard .cardImg img {
  width: 100%;
  height: 475px;
  object-fit: cover;
  transform: scale(1.01);
  -webkit-transition: 0.55s 
  cubic-bezier(0.37, 0.65, 0.38, 0.94);
  -khtml-transition: 0.55s cubic-bezier(0.37, 0.65, 0.38, 0.94);
  -moz-transition: 0.55s cubic-bezier(0.37, 0.65, 0.38, 0.94);
  -ms-transition: 0.55s cubic-bezier(0.37, 0.65, 0.38, 0.94);
  -o-transition: 0.55s cubic-bezier(0.37, 0.65, 0.38, 0.94);
  transition: 0.55s 
  cubic-bezier(0.37, 0.65, 0.38, 0.94);
  transform-origin: 90% 70%;
}
.blogCard .cardImg:hover img {
  -webkit-transform: scale3d(1.03, 1.03, 1);
  transform: scale3d(1.03, 1.03, 1);
  transition-duration: 0.73s;
}
.blogCardContent {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
  justify-content: space-between;
}
.blogCardContent {
  margin-top: auto;
}
.blogCard:hover .blogCardContent > h3 {
  color: var(--primary);
}
.blogCardContent > h3 {
  color: var(--white);
  letter-spacing: 1px;
  transition: var(--transition);
  padding: 15px 20px;
}
.blogCardContent > span {
  padding: 15px 10px;
  text-transform: uppercase;
  font-size: 26px;
  line-height: 1.2;
  display: inline-block;
  color: var(--white);
  background-color: var(--black);
  text-align: center;
  max-width: 78px;
}
.blogCardContent > span > span {
  display: block;
  font-size: 16px;
  line-height: 1.2;
}
.blogUser {
  padding-bottom: 8px;
  border-bottom: 1px solid #C9C9C9;
  margin-bottom: 10px;
}
.blogUser span {
  font-size: 14px;
  text-transform: uppercase;
  padding-left: 12px;
  position: relative;
}
.blogDtCol {
  padding-top: 15px;
}
.blogDtCol > p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.blogUser span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  display: block;
  background-color: var(--black);
  border-radius: 50%;
  transform: translate(0, -50%);
}
.linkStyle {
  display: flex;
  gap: 10px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  opacity: 0.8;
  transition: var(--transition);
}
.linkStyle:hover {
  color: var(--primary);
}
/* Blog */

/* Gallery */
.gallerySection {
  padding-left: 15px;
  padding-right: 15px;
}
.galleryGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr);
  gap: 25px;
  align-items: stretch;
  height: clamp(520px, 42vw, 760px);
}
.galleryImg {
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.galleryImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.galleryImg:hover img {
  transform: scale(1.08);
}
.center-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 25px;
  min-height: 0;
}
.center-grid .bottom-wide {
  grid-column: span 2;
  height: auto;
}
.gallerySection .btnTopSpace {
  margin-top: 40px;
}

/* opening */

/* form style */
.rightIconFld {
	position: relative;
}
.rightIconFld > .inputFieldIcon {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translate(0, -50%);
	pointer-events: none;
  z-index: 2;
}
.fieldIcon {
	height: auto;
	width: 22px;
  display: block;
  opacity: 0.5;
}
.formStyle {
  font-size: 16px;
}
.formStyle .rightIconFld .form-control {
	padding-right: 50px;
}
.formStyle .form-select, .formStyle .form-control {
  border-radius: 30px;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 20px;
  border-width: 2px;
  border-radius: 6px;
}
.formStyle .form-select option {
  background-color: rgba(255, 250, 242, 0.76);
}
.formStyle .rightIconFld .form-control.reservationField {
	padding-right: 15px;
}
.openingSection {
  position: relative;
}
.openingSection::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(../images/cafe.svg);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.1;
}
.othContent + .othContent {
  margin-top: 60px;
}
.othContent > p {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  text-transform: uppercase;
  font-style: italic;
}
.formSection {
  width: 540px;
  padding: 60px 50px;
  text-align: center;
}
.openingSection .formStyle {
  padding-top: 20px;
}
.formStyle .form-select, .formStyle .form-control {
  background-color: transparent;
  color: var(--white);
}
.openingSection .formStyle svg.fieldIcon {
  color: var(--white);
}
.openingSection .reservationField::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 1;
}

/*-------------------------------
  MEDIA QAURY START
--------------------------*/

@media (max-width:1399px) {
  .bannerSection {
    padding: 280px 0px 240px;
  }
  .mkdf-menu-popup-opener {
    --boxwh: 80px;
  }
  .mkdfLink {
    --lineWd: 56px;
  }
  .elementImg > img {
    max-width: 100%;
  }
  .element3 > img {
    max-width: 150px;
  }
  .element3 {
    right: -15px;
    bottom: -70px;
  }
  .gglInput {
    max-width: 780px;
  }
  .gglSocialLinks > a {
    --wh: 40px;
  }
}
@media (max-width: 1199px) {
  body {
    font-size: 16px;
  }
  .lgTitle {
    font-size: 34px;
  }
  .aboutImg {
    width: 460px;
    height: 665px;
  }
  .aboutContent {
    padding-left: 0;
  }
  .cStyle1 {
    padding: 30px 20px;
  }
  .cStyle1Img {
    --hw: 80px;
    margin: 0 auto 25px;
    padding: 20px;
  }
  .cardSection .cStyle1Img {
    width: min(100%, 210px);
    height: 140px;
    padding: 0;
  }
  .sectionSpace {
    padding: 100px 0;
  }
  .menuOffer {
    gap: 30px;
    padding: 0 10px;
  }
  .filterTrigger {
    font-size: 16px;
  }
  .selectionFilterLinks ul {
    gap: 20px;
  }
  .reviewSliderCol {
    padding: 30px;
    max-width: 100%;
  }
  .reviewCard > h2 {
    font-size: 24px;
    margin: 40px 0 15px;
  }
  .blogCard .cardImg img {
    height: 400px;
  }
  .formSection {
    width: 400px;
    padding: 50px 20px;
  }
  .othContent > p {
    font-size: 20px;
  }
  .openingSection::before {
    opacity: 0.04;
  }
  .center-grid .bottom-wide {
    height: auto;
  }
  .copyrightCol {
    font-size: 14px;
  }
  .footerLinks > ul > li a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .bannerSection {
    padding: 240px 0px 200px;
  }
  .bannerContentMaxWd {
    max-width: 580px;
  }
  .titleSpace {
    padding: 15px 0;
  }
  .subTitle {
    font-size: 16px;
  }
  .xlTitle {
    font-size: 48px;
  }
  .lgTitle {
    font-size: 30px;
  }
  .sectionSpace {
    padding: 80px 0;
  }
  .btn {
    padding: 12px 24px;
    font-size: 16px;
    letter-spacing: 1px;
  }
  .socialIcons {
    flex-direction: row;
    justify-content: start;
    width: 100%;
  }
  .aboutImg {
    width: 100%;
    height: 580px;
  }
  .aboutContent {
    margin-top: 20px;
    text-align: center;
  }
  .aboutLeftRect::before {
    min-width: 45%;
    min-height: 620px;
  }
  .elementImg {
    width: 200px;
    height: 200px;
  }
  .elementImg > img {
    max-width: 100%;
  }
  .element2 {
    right: -70px;
    top: 0;
  }
  .element1 {
    left: -50px;
    top: -140px;
  }
  .chefCardImg {
    padding-top: 60px;
  }
  .menuInner {
    padding: 30px 0 50px;
  }
  .selectionFilterOptions {
    padding: 30px 15px;
  }
  .selectionFilterLinks ul {
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 20px 0 0;
    justify-content: center;
  }
  .filterTrigger {
    font-size: 16px;
    padding: 8px 0;
  }
  .menuOffer {
    margin: 30px 0;
  }
  .menuImg {
    max-width: 200px;
    margin: 0 auto;
  }
  .gglInput .form-control {
    padding: 15px 195px 15px 40px;
    font-size: 16px;
  }
  .gglInput .btnStyle {
    right: 0;
    padding: 12px 16px;
    font-size: 16px;
  }
  .gglIcon {
    left: 10px;
  }
  .gglIcon > img {
    max-width: 20px;
  }
  .formStyle .form-select, .formStyle .form-control {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 10px;
    font-size: 14px;
  }
  .galleryImg > img {
    max-height: 400px;
  }
  .galleryGrid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .galleryGrid, .center-grid {
    gap: 10px;
  }
  .center-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .blogCardContent {
    text-align: center;
  }
  .blogDtCol {
    text-align: center;
  }
  .linkStyle {
    font-size: 14px;
    justify-content: center;
  }
  .gallerySection .btnTopSpace {
    margin-top: 20px;
  }
  .formSection {
    width: 100%;
    margin-bottom: 20px;
  }
  .othContent + .othContent {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  .bannerSection {
    padding: 160px 0px 120px;
  }
  .bannerContentMaxWd {
    max-width: 100%;
  }
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  .btnTopSpace {
    padding-top: 15px;
  }
  .bannerBtns {
    column-gap: 15px;
  }
  .sectionSpace {
    padding: 60px 0;
  }
  .aboutLeftRect::before {
    min-height: 520px;
  }
  .aboutImg {
    height: 460px;
  }
  .subTitle {
    font-size: 14px;
  }
  .lgTitle {
    font-size: 20px;
  }
  .smTitle {
    font-size: 18px;
  }
  .chefImg img {
    height: 320px;
  }
  .chefSection::before {
    max-height: 660px;
  }
  .elementImg {
    width: 150px;
    height: 150px;
  }
  .elementImg > img {
    max-width: 100%;
  }
  .element1 {
    top: -100px;
    left: -30px;
  }
  .element2 {
    right: -35px;
    top: 10px;
  }
  .gglReview {
    padding: 40px 0;
    text-align: center;
  }
  .gglSocialLinks {
    justify-content: center;
    margin-top: 30px;
  }
  .testimonialSection {
    padding-top: 60px;
  }
  .reviewCard {
    padding-bottom: 80px;
    align-items: center;
    text-align: center;
  }
  .swiper-pagination.reviewPagination {
    text-align: center;
  }
  .quoteIcon > svg {
    max-width: 45px;
  }
  .reviewContent {
    gap: 15px;
    margin-top: 15px;
  }
  .reviewCard > h2 {
    font-size: 18px;
    margin: 20px 0 15px;
  }
  .reviewImgCol {
    --imgSize: 60px;
  }
  .menuOffer {
    gap: 25px;
    padding: 0;
  }
  .blogInner {
    padding-top: 30px;
  }
  .blogCard .cardImg img {
    height: 360px;
  }
  .galleryImg > img {
    max-height: 320px;
  }
  .othContent {
    text-align: center;
  }
  .othCol {
    margin-bottom: 30px;
  }
  .othContent + .othContent {
    margin-top: 0;
  }
  .othContent > p {
    font-size: 16px;
  }
  .formStyle .form-control, .formStyle .form-select {
    font-size: 14px;
  }
}
@media (max-width:585px) {
  .aboutLeftRect::before {
    min-height: 420px;
  }
  .aboutImg {
    height: 360px;
  }
  .reviewSliderCol {
    padding: 30px 0;
  }
  .lineSubTitle {
    --lineWd: 80px;
  }
  .gglInput .btnStyle {
    padding: 10px 12px;
    letter-spacing: normal;
    font-size: 14px;
  }
  .gglInput .form-control {
    padding: 12px 148px 12px 30px;
    font-size: 14px;
  }
  .gglIcon {
    left: 8px;
  }
  .gglIcon > img {
    max-width: 14px;
  }
  .elementImg > img {
    max-width: 100px;
  }
  .element3 {
    bottom: -60px;
  }
  .gglSocialLinks > a {
    --wh: 30px;
  }
  .chefSection::before {
    max-height: 560px;
  }
  .chefCardImg {
    padding-top: 30px;
  }
  .chefImg img {
    height: 240px;
  }
  .filterTrigger {
    font-size: 14px;
    padding: 6px 0;
  }
}
@media (max-width:360px) {
  .lineSubTitle {
    --lineWd: 65px;
  }
  .selectionFilterLinks ul {
    gap: 15px;
    margin: 15px 0 0;
  }
  .xlTitle {
    font-size: 40px;
  }
  .formStyle .rightIconFld .form-control {
    padding-right: 40px;
  }
  .formStyle .form-control {
    font-size: 14px;
  }
  .inputFieldIcon {
    height: auto;
    width: 20px;
  }
  .chefImg img {
    height: 180px;
  }
}
