/* FONT IMPORT */

/* Google Font */

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

/* Local Font */

@font-face {
  font-family: "osaka-chips";
  src: url("../fonts/osaka-chips.ttf");
}

@font-face {
  font-family: "celandine";
  src: url("../fonts/ed_celandine-regular-webfont.woff");
}

:root {
  --white: #fff;
  --black: #000;
  --primary: #ac34ac;
  --secondary: #cb102a;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Jost", sans-serif;
}

section {
  position: relative;
}

h2,
h3 {
  font-family: "celandine";
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.preLoader.black {
  background-color: var(--black);
  z-index: 11113;
}

.preLoader.white {
  z-index: 11112;
  background-color: var(--secondary);
}

/* PRELOADER */

/* NAV HEADER CSS */

header {
  position: fixed;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 111;
  top: 0;
  width: 100%;
  padding-top: 0.875rem;
  transition: 0.3s ease-in-out;
  background: var(--black);
}

.navbar-brand {
  padding: 0 0 10px 0;
  margin: 0 0 -2rem 0;
  background: var(--black);
  width: 234px;
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: 28px;
}

.navbar-nav {
  align-items: center;
  gap: 2.7rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1.125rem;
  color: var(--white);
  text-transform: uppercase;
  padding: 0 0;
  display: inline-block;
  position: relative;
}

.navbar-nav .nav-item .nav-link:before {
  content: "";
  position: absolute;
  background: var(--white);
  width: 0;
  height: 2px;
  bottom: -5px;
  transition: 0.5s ease;
}

.navbar-nav .nav-item .nav-link:hover:before {
  width: 100%;
}

.form-inline {
  margin-left: 1.5rem;
  gap: 1.5rem;
}

.navbar .nav-item.drop-down {
  position: relative;
  z-index: 1;
}

.navbar .drop-down > a:after {
  content: "\f0d7";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  padding-left: 5px;
  color: var(--primary);
}

.navbar .drop-down ul {
  display: block;
  position: absolute;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
  transition: 0.3s;
}

.navbar .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .drop-down li {
  min-width: 200px;
  position: relative;
  list-style: none;
}

.navbar .drop-down ul a {
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: none;
  color: #151515;
  display: block;
}

.navbar .drop-down ul a:hover {
  background: var(--primary);
  color: #fff;
}

.themeBtn {
  color: var(--white);
  font-size: 1.125rem !important;
  font-weight: 500;
  background: var(--primary);
  display: inline-block;
  padding: 0.875rem 2.36em;
  border-radius: 50px;
  font-family: "Poppins";
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.themeBtn:hover {
  color: var(--white);
}

.themeBtn:before {
  content: "";
  position: absolute;
  background: var(--secondary);
  inset: 0;
  transform: scale(0);
  z-index: -1;
  transition: 0.5s ease;
}

.themeBtn:hover:before {
  transform: scale(1);
}

.form-inline a {
  color: var(--white);
  font-size: 1.375rem;
}

/* !NAV HEADER CSS */

/* Main Sec Css Start */

.mainSec {
  background: url(../images/mainBan.webp) bottom/cover;
  height: 1095px;
}

.banImages img {
  position: absolute;
}

.bantext {
  top: 12rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}

.banimg {
  bottom: -8rem;
  right: 13%;
  z-index: 1;
}

.banpath {
  bottom: -1.5rem;
}

/* Main Sec Css End */

/* About Sec Css Start */

.aboutSec {
  padding: 3.125rem 0;
}

.aboutContent > span {
  color: #323a47;
  font-size: 2.5rem;
}

.secHeading {
  color: #323a47;
  font-size: 6.25rem;
  line-height: 1;
}

.secHeading span {
  color: var(--secondary);
}

.aboutContent h4 {
  color: var(--secondary);
  font-size: 3.125rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  margin: 2rem 0 1.5rem 0;
}

.aboutContent p {
  color: #53595e;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 2;
  width: 89%;
  margin-bottom: 1.375rem;
}

.aboutContent a {
  font-size: 1.875rem;
  color: #323a47;
  font-family: "celandine";
  border: 2px solid #323a47;
  display: inline-block;
  padding: 0.8125rem 2.15em;
  border-radius: 50px;
}

.aboutContent a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.aboutImg {
  margin-left: 2rem;
}

/* About Sec Css End */

/* Menu Sec Css Start */

.main {
  position: relative;
}

.main:before {
  content: "";
  position: absolute;
  background: var(--black);
  height: 73%;
  top: 16rem;
  width: 100%;
}

.main:after {
  content: "";
  position: absolute;
  background: url(../images/menuBg.webp) no-repeat;
  width: 100%;
  top: 0;
  height: 261px;
}

.menuSec {
  padding: 20rem 0 6rem 0;
}

.menuSec .col-md-4:nth-child(2) .menuCard {
  margin-top: 8rem;
}

.menuCard {
  background: var(--secondary);
  text-align: center;
  padding: 1.875rem 0 3.125rem 0;
  transition: 0.5s ease;
  overflow: hidden;
  position: relative;
  margin-top: 2rem;
}

.menuCard:hover {
  background: #262626;
}

.menuCard figure img {
  transition: 0.8s ease;
}

.menuCard:hover figure img {
  transform: scale(1.1);
}

.menuCard h4 {
  color: var(--white);
  font-size: 2rem;
  margin: 1.75rem 0 1.25rem 0;
}

.menuCard p {
  color: var(--white);
  font-size: 1.125rem;
  line-height: 1.83;
  width: 68%;
  margin: auto;
}

.arrows img {
  position: absolute;
}

.arrowOne {
  top: 33%;
  left: 50%;
}

.arrowTwo {
  bottom: 2.5rem;
  left: 25%;
}

/* Menu Sec Css End */

/* Order Sec Css Start */

.orderSec {
  background: url(../images/orderBg.webp) center/cover;
  height: 1068px;
  display: flex;
  align-items: end;
  margin-bottom: 12rem;
}

.orderContent h4 a {
  font-size: 3.125rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  margin: 1rem 0 2rem 0;
  display: block;
}

.orderContent h5 {
  font-size: 2.0625rem;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
  writing-mode: tb-rl;
  transform: scale(-1);
  position: absolute;
  bottom: 11rem;
  right: 0;
}

.orderNow {
  writing-mode: tb-rl;
  transform: scale(-1);
  position: absolute;
  left: -2rem;
  bottom: 28%;
}

.orderNow a {
  color: var(--white);
  text-transform: uppercase;
  font-size: 1.875rem;
  font-family: "celandine";
  background: var(--black);
  align-items: center;
  display: inline-flex;
  padding: 3rem 6px 6px 6px;
  border-radius: 50px;
}

.orderNow a:hover {
  background: var(--white);
  color: var(--secondary);
}

.orderNow a span {
  margin: 2rem -1.5rem 0 -1.5rem;
}

.orderImg {
  margin-bottom: -5rem;
}

.arrowThree {
  position: absolute;
  left: 4rem;
  bottom: 37%;
}

/* Order Sec Css End */

/* Salad Sec Css Start */

.saladSec {
  background: #f2f2f2;
  padding: 5rem 0 3.125rem 0;
  margin-top: 20rem;
}

.saladSec:before {
  content: "";
  position: absolute;
  background: url(../images/saladPath.webp) no-repeat;
  width: 100%;
  height: 151px;
  top: -9rem;
}

.saladWrapd {
  display: flex;
  align-items: center;
  gap: 2.125rem;
  margin-top: 2.5rem;
  position: relative;
  overflow: hidden;
}

.saladWrapd figure img {
  width: 360px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 100%;
  transition: 0.5s ease;
}

/* .saladWrapd:hover figure img {
    transform: scale(0.9);
} */

.saladWrapd h4 {
  font-size: 2.8125rem;
  color: #323a47;
  margin: 0;
  white-space: nowrap;
}

/* Salad Sec Css End */

/* Food Sec Css Start */

.foodBg {
  background: url(../images/foodBg.webp) center/cover;
  height: 1100px;
  padding-top: 6.25rem;
  background-attachment: fixed;
}

.countersWraps {
  display: flex;
  gap: 5rem;
  position: absolute;
  bottom: 5.625rem;
  right: 14rem;
}

.countersWraps .secHeading span {
  color: var(--white);
}

.countersWraps p {
  color: var(--white);
  font-size: 0.875rem;
  font-style: italic;
  line-height: 2.1;
  margin: 0;
}

/* Food Sec Css End */

/* Blog Sec Css Start */

.blogSec {
  padding: 9.375rem 0 8.125rem 0;
}

.blogWrap figure img {
  border-radius: 3.125rem;
}

.blogContent p {
  color: #323a47;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.3;
}

.blogContent a {
  font-size: 1.25rem;
  color: #323a47;
  text-transform: uppercase;
  font-family: "celandine";
  text-decoration: underline !important;
}

.blogContent {
  margin-top: 0.625rem;
}

.blogSlider {
  margin: 3.125rem -20rem 0 0;
}

.blogSlider .swiper-slide:nth-child(even) {
  margin-top: 3rem;
}

/* Blog Sec Css End */

/* Insta Sec Css Start */

.instaSec {
  padding: 1.875rem 0;
}

.instaWrap {
  position: relative;
}

.instaIcon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 4rem;
  color: var(--white);
  background: rgb(0 0 0 / 20%);
  transform: scale(0);
  transition: 0.8s ease;
}

.instaWrap:hover .instaIcon {
  transform: scale(1);
}

.instaSlider .swiper-wrapper {
  transition-timing-function: linear;
}

/* Insta Sec Css End */

/* Footer Css Start */

footer {
  background: #070707;
  padding-top: 5.3125rem;
}

.socialIcons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.socialIcons li a {
  width: 50px;
  aspect-ratio: 1;
  background: var(--secondary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}

.socialIcons li a img {
  width: 50%;
  filter: brightness(0) invert(1);
}

.socialIcons li a:hover {
  background: var(--primary);
}

footer h4 {
  color: var(--white);
  font-size: 1.375rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

footer ul li a,
footer ul li span {
  color: var(--white);
}

footer ul li a:hover {
  color: var(--secondary);
}

.locatedList li:nth-child(2) a {
  font-weight: 600;
  text-decoration: underline !important;
}

.locatedList li + li {
  margin-top: 1rem;
}

.contactList li:nth-child(2) a {
  color: var(--secondary);
  font-size: 1.875rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contactList li:nth-child(3) a {
  font-size: 1.125rem;
}

.contactList li + li {
  margin-top: 6px;
}

.links li a {
  text-transform: uppercase;
  font-size: 0.875rem;
}

.links li + li {
  margin-top: 4px;
}

.hoursBox {
  background: var(--secondary);
  padding: 1rem 1.875rem;
}

.hoursBox ul li span {
  display: grid;
  line-height: 1.6;
}

.hoursBox ul li span small {
  font-size: 1rem;
}

.copyRight {
  background: var(--black);
  margin-top: 2.5rem;
  padding: 1.7rem 0;
}

.copyRight p {
  color: var(--white);
  margin: 0;
  font-size: 1.125rem;
}

.cartImg {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  justify-content: end;
}

/* Footer Css End */

/* Inner Css Start */

.innerBanner {
  background: url(../images/innerBan.webp) bottom/cover;
  height: 865px;
  display: flex;
  align-items: center;
}

.innerBanner .secHeading {
  margin: 17rem 0 0 0;
}

.innerBanner .bantext {
  top: 10.5rem;
}

.innerBanner .banpath {
  bottom: -2.9rem;
}

.aboutInner .secHeading {
  white-space: nowrap;
  margin-bottom: 2rem;
}

.aboutInner .aboutContent p {
  margin-top: 1rem;
  width: 100%;
}

.aboutInner .aboutImg {
  margin: 0;
}

.aboutInner {
  padding: 12rem 0 5rem 0;
}

.abtSmile {
  position: absolute;
  right: -1.5rem;
  top: 23%;
}

.blogInner {
  padding: 10.625rem 0 6.25rem 0;
}

.blogInner .blogWrap {
  margin-top: 3.125rem;
}

.cateringHeading p {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 2;
  color: #53595e;
  width: 67%;
  margin: 2.5rem auto 3.5rem;
}

.cateringInner {
  padding-top: 14rem;
}

.cateringBox {
  border: 1px solid #707070;
  padding: 2.5rem 1.375rem 0.625rem 1.375rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.cateringBox h3 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--secondary);
}

.cateringBox p,
.cateringBox a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #53595e;
}

.cateringBox p {
  line-height: 2;
  margin-bottom: 2rem;
}

.cateringBox a {
  text-align: right;
  display: block;
}

.contactInfo figure {
  border: 1px solid var(--black);
  width: 250px;
  height: auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 100%;
  margin: auto;
}

.contactInfo {
  text-align: center;
}

.contactInfo h3 {
  font-size: 1.875rem;
  color: var(--black);
  margin-top: 1rem;
}

.contactInfo a {
  color: var(--black);
  font-size: 1.375rem;
  font-family: "Poppins";
}

.contactImg img {
  width: 100%;
}

.contactHeading p {
  color: var(--black);
  line-height: 2;
  font-size: 1.125rem;
  font-family: "Poppins";
  width: 90%;
  margin-bottom: 1.5rem;
}

.contactForm .form-group {
  margin-bottom: 1.375rem;
}

.contactForm .form-control {
  border: 1px solid #c7c9ca;
  border-radius: unset;
  box-shadow: unset;
  outline: unset;
}

.contactForm input {
  height: 68px;
}

.contactForm .form-control::placeholder {
  color: #c0c0c0;
}

.contactForm button,
.menuPage a {
  font-size: 1.875rem;
  font-family: "celandine";
  color: #323a47;
  outline: unset;
  border: 2px solid #323a47;
  background: transparent;
  display: inline-block;
  padding: 0.8125rem 2em;
  border-radius: 50px;
}

.contactForm button {
  margin-top: 1.5rem;
}

.contactForm button:hover,
.menuPage a:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.contactInner .row + .row {
  margin-top: 4rem;
}

.menuPage p {
  font-size: 0.9375rem;
  color: #53595e;
  line-height: 2;
  margin-bottom: 2rem;
}

.menuPage {
  padding: 12rem 0 1rem 0;
}

.menuPage a {
  padding: 0.8125rem 0.9em;
}

.menuInner {
  background: url(../images/saltBg.webp) top/cover;
  padding: 8rem 0 3.125rem 0;
}

.menuTwo {
  margin-top: 9.375rem;
}

.reviewBox {
  background: var(--white);
  box-shadow: 0 0 49px #d2d2d2;
  border-radius: 27px;
  padding: 2.5rem 2.5rem;
  margin-top: 3.125rem;
}

.reviewUsers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.875rem;
}

.reviewUsers figure {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.reviewUsers h4 {
  font-size: 1.125rem;
  color: #1d3146;
  margin: 0;
  font-family: "Poppins";
  line-height: 1.5;
}

.reviewUsers h4 span {
  display: block;
  font-size: 1.0625rem;
  color: #4a4a4a;
}

.reviewBox p {
  font-size: 1.125rem;
  color: #686868;
  font-weight: 500;
  line-height: 1.9;
  margin: 0;
}

/* Inner Css End */

.newmenuPage {
  padding: 12rem 0 5rem 0;
}

.menuText h3 {
  color: var(--black);
  font-family: "Jost";
  text-transform: capitalize;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menuText h3 img {
  width: 30px;
}

.menuText span {
  color: var(--black);
  font-weight: 500;
  font-size: 1.125rem;
}

.saladSizes h4 img {
  width: 30px;
}

.menuText + .menuText {
  border-top: 1px dashed var(--black);
  margin-top: 0.625rem;
  padding-top: 0.625rem;
}

.newmenuPage h2 {
  font-size: 3rem;
  background: var(--secondary);
  color: var(--white);
  text-align: center;
  padding: 5px 1em;
  width: fit-content;
  margin: 0 auto 1rem;
}

.saladSizes h4 {
  text-align: right;
  font-weight: 600;
  color: var(--black);
  font-size: 1.75rem;
}

.saladSizes ul li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--black);
  padding-bottom: 5px;
  margin-top: 5px;
}

.saladSizes ul li span {
  color: var(--black);
  font-weight: 600;
  font-size: 1.5rem;
}

.proteinBox {
  margin-top: 3rem;
}

.saldsImg img {
  position: absolute;
  top: 20%;
  width: 10%;
}

.sld1 {
  left: 2rem;
}

.sld2 {
  right: 2rem;
}

.sldsLogo {
  text-align: center;
}

.sldsLogo img {
  width: 100%;
}

.jumboPara {
  color: var(--black);
  font-weight: bold;
  font-size: 1.125rem;
}

.kidsMeal p {
  font-size: 0.875rem;
  text-align: center;
  font-weight: 600;
  color: var(--black);
}

.kidsMeal h4 {
  text-transform: uppercase;
  font-weight: bold;
  border: 2px solid var(--secondary);
  padding: 0.75rem 1.5em;
  border-radius: 50px;
  margin: auto;
  color: var(--black);
  font-size: 1.2rem;
  text-align: center;
}

.kidsMeal ul li span {
  font-weight: bold;
  color: var(--black);
  font-size: 1.25rem;
}

.kidsMeal ul {
  margin: 8px 0 0 2rem;
}

.kidsMeal h5 {
  font-weight: 600;
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0 0 0 2.5rem;
}

.kidsMeal .btn-group {
  text-align: center;
  gap: 1rem;
  width: 100%;
}

.kidsMeal .btn-group div {
  width: 100%;
}

.kidsMeal .btn-group span {
  font-weight: 600;
  font-size: 1.25rem;
}

.kidsMeal .btn-group h4 {
  font-size: 1rem;
  margin: 6px 0;
}

.drinkBox {
  background: var(--primary);
  border-radius: 3rem;
  padding: 1rem 2rem;
}

.drinkBox h3 {
  text-align: center;
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.drinkBox ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  border-bottom: 1px dashed var(--white);
  padding: 2px 0;
  margin-top: 4px;
}

.drinkBox ul li h5 {
  margin: 0;
}

.lemonade h5 {
  color: var(--white);
  font-weight: 600;
  margin: 0;
}

.lemonade p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.lemonade {
  margin-top: 6px;
}

.sweetBox {
  background: var(--secondary);
  padding: 1rem 2rem 2rem 2rem;
  margin: 1rem 0;
}

.jumboLogo {
  text-align: center;
  margin-bottom: 1rem;
}

.jumboLogo img {
  width: 100%;
}

.jumboImages img {
  width: 35%;
}

.jumboImages {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}

.cateringBan .bantext {
  width: 30%;
  margin-top: 10rem;
}

.cateringBan .secHeading {
  text-align: center;
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  margin: auto;
}

.reviewForm {
  margin-top: 5rem;
}

.reviewForm .form-control {
  border: 1px solid #ced4da;
  border-radius: 5px;
  outline: unset;
  box-shadow: unset;
  margin-bottom: 1.25rem;
}

.reviewForm input {
  height: 50px;
}

.reviewForm .themeBtn {
  outline: unset;
  border: unset;
}

.cateringInner .row {
  gap: 2rem 0;
}

.menuText {
  display: flex;
  align-items: center;
  gap: 1.125rem;
}

.menuText-img {
  max-width: 120px;
  min-height: 120px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}

.menuText-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
