@import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
  font-family: 'PPTelegraf-Regular';
  src: url('../fonts/PPTelegraf-Regular.otf') format('opentype');
  font-weight: 500;
}
@font-face {
  font-family: 'PPTelegraf-UltraLight';
  src: url('../fonts/PPTelegraf-UltraLight.otf') format('opentype');
  font-weight: 400;
}
@font-face {
  font-family: 'PPTelegraf-UltraBold';
  src: url('../fonts/PPTelegraf-UltraBold.otf') format('opentype');
  font-weight: 600;
}
@font-face {
  font-family: 'Fontspring-DEMO-tt_fors_regular';
  src: url('../fonts/Fontspring-DEMO-tt_fors_regular.otf') format('opentype');
  font-weight: 400;
}
body {
  box-sizing: border-box;
  font-family: 'PPTelegraf-UltraLight';
  margin: 0px;
  padding: 0px;
}
body::-webkit-scrollbar {
  width: 0.5em;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  outline: 1px solid var(--secondary-color);
}
html {
  scroll-behavior: smooth;
}
:root {
  /*--primary-color: #FFCC00;*/
  --secondary-color:#000;
  --primary-color:#d26127;
}
*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
p {
  font-size: 16px;
  color: #000;
}
ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
a,
button {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover {
  text-decoration: none;
}
button:focus,
input:focus,
textarea:focus,
select:focus,
a:hover {
  outline: none;
  box-shadow: none;
}
section {
  padding: 70px 0 70px;
}
.inlineHeader {
  display: flex;
  padding: 0px 0;
  align-items: center;
}
.large_heading {
  font-size: 90px;
}
.heading {
  font-size:clamp(1.4rem, 2.8vw, 3.2rem);
}
.sub_heading {
  font-size: 34px;
}
.small_heading {
  font-size: 26px;
}
.small_heading2 {
  font-size: 22px;
}
.title {
  font-size: 18px;
}
.text {
  font-size: 16px;
}
.fontWeight300 {
  font-weight: 300;
}
.fontWeight400 {
  font-weight: 400;
}
.fontWeight500 {
  font-weight: 500;
}
.fontWeight600 {
  font-weight: 600;
}
.fontWeight700 {
  font-weight: 700;
}
.fontWeight800 {
  font-weight: 800;
}
.fontWeight900 {
  font-weight: 900;
}
.leftLogo {
  width: 180px;
}
.leftLogo img {
  max-width: 100%;
}
.stricky-fixed .onlineLogo{
  width: 22%;
}
.header{
  padding: 2px 0;
}
.stricky-fixed .mainMenu ul li a{
    margin:0 .6vw;
}
.header.stricky-fixed {
  position: fixed;
  z-index: 999;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  width: 100%;
  background: #fff;
  -webkit-animation-name: menu_sticky;
  animation-name: menu_sticky;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  padding: 0px 0;
}
.header.stricky-fixed .rightMenu ul li a{
  padding: 20px 30px;
}
.header.stricky-fixed .centerLogo{
  width: 115px;
}
.header.stricky-fixed .menuPart ul li a{
  color: #000;
}
.header.stricky-fixed .menuPart ul li a:hover{
  color: var(--primary-color);
}
@-webkit-keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }
  50% {
    margin-top: -130px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }
  50% {
    margin-top: -130px;
  }
}
.fontHeading{
  font-family: "PPTelegraf-UltraBold";
}
.fontBanner{
  font-family: "PPTelegraf-UltraBold";
}
.ottFors{
  font-family: 'Fontspring-DEMO-tt_fors_regular';
}
.text_secondary{
  color: var(--secondary-color);
}
.text_primary{
  color: var(--primary-color);
}
.bgPrimary{
  background: var(--primary-color);
}
.bgSecondary{
  background: var(--secondary-color);
}
.bg_orange{
    background:#d26127;
}
.text_orange{
    color:#d26127;
}
.heroBanner{
  position: relative;
}
/* .heroBanner:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 98%;
  background: url(../images/bg/artwork.png) no-repeat;
  background-size: cover;
  z-index: 2;
} */
/* .heroBanner:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 99%;
  background: rgb(219 175 0 / 65%);
  background-size: cover;
  z-index: 1;
} */
 .videoBlock video{
    width: 100%;
    height: 85vh;
    object-fit: cover;  
 }
 .videoText{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
 }
.mainMenu{
  margin-left: 15px;
}
.mainMenu ul{
  display: flex;
}
.mainMenu ul li a{
  display: inline-block;
  padding: 5px 17px;
  font-size: 15px;
  font-family: 'PPTelegraf-UltraBold';
  text-transform: uppercase;
  background: var(--primary-color);
  border:3px solid #000;
  color: #000;
  margin: 0 5px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  line-height: 25px;
}
.mainMenu ul li{
  position: relative;
}
.mainMenu ul li ul{
  position: absolute;
  top: 70px;
  left: 0;
  width: 260px;
  background: #fff;
  padding:10px;
  display: block;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  border-top: 4px solid var(--primary-color);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.mainMenu ul li:hover ul{
  visibility: visible;
  opacity: 1;
  top: 50px;
  z-index: 9;
}
.mainMenu ul li a i {
  font-size: 11px;
  padding-left: 4px;
  transform: translateY(-1px);
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
}
.mainMenu ul li ul li a{
 border: none;
  display:block;
  padding: 5px 15px;
  font-size: 16px;
  color: #000;
  background: none;
}
.mainMenu ul li ul li a:hover{
  background: transparent;
  color: var(--primary-color);
}
.onlineLogo{
  position: absolute;
  top: 0;
  right: -128px;
  z-index: 9;
  width: 24%;
}
.onlineLogo img{
  max-width: 100%;
  transition:all 0.3s ease-in-out;
}
.onlineLogo:hover img{
    transform:scale(1.1);
}

.strokeBlack{
  -webkit-text-stroke: 2px black;
}
.heroPizza{
  width: 600px;
  margin: 0 auto;
  transform: translateY(-45px);
  -webkit-transform: translateY(-45px);
  -moz-transform: translateY(-45px);
  -ms-transform: translateY(-45px);
  -o-transform: translateY(-45px);
  position: relative;
  z-index: 1;
}
.heroPizza img{
  width: 100%;
  filter: drop-shadow(0 0 10px rgba(0,0,0,.7));
  -webkit-filter: drop-shadow(0 0 10px rgba(0,0,0,.7));
}
@keyframes rotate {
  0%{
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
}
100%{
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}
}
.overlayBg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: url(../images/bg/white-overlay-wave.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 155px;
  z-index: 2;
}
.iconBottom{
  width: 75px;
  margin: 0 auto 20px;
}
.iconBottom img{
  max-width: 100%;
}
.itemBottomBanner .sub_heading{
  font-size: 28px;
}
.leftAbout img, .leftAbout video{
  width: 100%;
  border-radius:10px;
}
.rightAbout p{
  font-size: 17px;
}
.btnBlock a{
  display: inline-block;
  padding: 4px 5px;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  background: #000;
  margin-right: 3px;
}
.btnBlock a span{
  display: inline-block;
  background: var(--primary-color);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.btnBlock a span:first-child{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  font-size: 17px;
  color: #000;
  text-align: center;
  line-height: 40px;
}
.btnBlock a span:last-child{
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  font-size: 16px;
  color: #000;
  text-align: center;
  padding:5px 10px;
}
.btnBlock a:hover span{
  background: #fff;
}
.bannerBottom .btnBlock a span:last-child{
  font-size: 20px;
  padding:10px 15px;
}
.bannerBottom a span:first-child{
  width: 50px;
  height: 50px;
  line-height: 52px;
  margin-right: 2px;
}
.bannerBottom .btnBlock a{
  padding: 10px 10px;
  background: #000;
}
.pizzaSlice, .pizzaSlice2{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.pizzaSlice:after{
  content: '';
  position: absolute;
  right: 0px;
  top:50%;
  transform: translateY(-50%);
  width: 750px;
  height: 750px;
  z-index: -1;
  background: url(../images/bg/pizza-4rth.png) no-repeat;
  background-size: cover;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  animation: rotate infinite 20s linear;
  -webkit-animation: rotate infinite 20s linear;
  opacity: .1;
}
.pizzaSlice2{
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.pizzaSlice2:after{
  content: '';
  position: absolute;
  left: -20px;
  top:50%;
  transform: translateY(-50%);
  width: 750px;
  height: 750px;
  z-index: -1;
  background: url(../images/bg/pizza-4rth.png) no-repeat;
  background-size: cover;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  animation: rotate infinite 20s linear;
  -webkit-animation: rotate infinite 20s linear;
  opacity: .1;
}
@keyframes  rotate{
  0%{
    transform:translateY(-50%) rotate(0deg);
    -webkit-transform:translateY(-50%) rotate(0deg);
    -moz-transform:translateY(-50%) rotate(0deg);
    -ms-transform:translateY(-50%) rotate(0deg);
    -o-transform:translateY(-50%) rotate(0deg);
}
100%{
  transform:translateY(-50%) rotate(360deg);
  -webkit-transform:translateY(-50%) rotate(360deg);
  -moz-transform:translateY(-50%) rotate(360deg);
  -ms-transform:translateY(-50%) rotate(360deg);
  -o-transform:translateY(-50%) rotate(360deg);
}
  
}
.zIndex{
  z-index: 1;
}
.dishImg img{
  width: 100%;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  height: 250px;
  object-fit: cover;
}
.innerDish{
  margin-top: 20px;
}
.innerDish p i{
  color: var(--primary-color);
}
.innerDish h3{
  color: #000;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.innerDish h3.small_heading{
  font-size: 20px;
}
.itemDish:hover h3{
  color: var(--primary-color);
}
.dishImg{
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.itemDish:hover .dishImg img, .innerDish:hover .dishImg img{
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.itemDish{
  padding: 0 10px;
}
.slick-next:before{
  content: '\f054' !important;
  left: 0px;
}
.slick-prev:before{
  content: '\f053' !important;
  right: 0px;
}
.slick-next, .slick-prev{
  width: 45px !important;
  border-radius: 50px;
  height: 45px !important;
  background: var(--primary-color) !important;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  color: #fff;
}
.slick-next {
  z-index: 99;
}
.slick-prev{
  z-index: 99;
}
.slick-next:before, .slick-prev:before{
  font-family: 'Font Awesome 5 Free' !important;
  font-size:20px !important;
  width: 45px !important;
  height: 45px !important;
  line-height: 45px !important;
  top: -2px !important;
  font-weight: 700;
  position: relative;
  color: #fff ;
  opacity: 1 !important;
}
.slick-next:hover, .slick-prev:hover{
  background:var(--primary-color) !important;
}
.btnTheme{
  display: inline-block;
  background: var(--primary-color);
  color: #000;
  padding: 15px 40px;
  border:none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border:3px solid #000;
}
.btnTheme:hover{
  color: #fff;
  background: var(--secondary-color);
}
.btnBlack{
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 15px 40px;
  border:none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  border:3px solid var(--primary-color);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
.btnBlack:hover{
  color: #000;
  border-color: #000;
  background: transparent;
}
.bgSection{
  background: #F8F6F4;
}
.itemLeftPizza img{
  width: 100%;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  height: 25vh;
  object-fit: cover;
}
.itemLeftPizza{
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.overLayItem{
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .8), rgba(0, 0, 0, .02));
  background-image: linear-gradient(bottom, rgba(0, 0, 0, .8), rgba(0, 0, 0, .02));
  padding: 70px 0 20px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items:flex-end;
  text-align: center;
}
.overLayItem h4{
  color: #fff;
  font-size: 18px;
}
.itemLeftPizza:hover img{
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.itemLeftPizza:hover h4{
  color: var(--primary-color);
}
.itemMore{
  padding: 10px;
  border-top-right-radius: 40px;
  margin: 15px 0;
  background: #000;
  min-height: 165px;
  height:100%;
}
.imgMore {
  width: 50px;
  height: 100%;
}
.rightHeadingMenu{
  width: calc(100% - 70px);
  margin-left: 10px;
}
.imgMore img{
  width: 100%;
  height: 100%;
}
.rightMore{
  margin-top: 10px;
}
.rightMore p{
  font-size: 14px;
}
.bgSecondary .rightMore *{
  color: #fff;
}
.historyBg{
  background: url(../images/bg/bg-history.jpg) no-repeat;
  background-size: cover;
}
.leftAction .btnTheme:hover{
  background: #fff;
  color: #000;
}
.leftAction{
  padding: 50px 0 45px;
}
.rightAction{
  position:relative;
  z-index:9;
  margin-top:-20px;
}
.rightAction img{
  max-width: 100%;
  animation: rotate1 infinite 20s linear;
  -webkit-animation: rotate1 infinite 20s linear;
}
.leftAction h3{
  font-size: clamp(2rem, 3.5vw, 3.9rem);
}
.itemLocation img{
  max-width: 100%;
  transition:all 0.3s ease-in-out;
}
.itemLocation{
  text-align: center;
}
.locationImg{
  border:1px solid #999;
  overflow:hidden;
}
.itemLocation .d-flex div{
    width:calc(100% / 2);
}
.itemLocation p{
  color: #666;
}
.itemLocation:hover img{
    transform:scale(1.1);
}
.bgTestimonial{
  background: url(../images/bg/reviews.jpg) no-repeat;
  background-size: cover;
}
.innerTestimonial{
  text-align: center;
  padding: 0 3rem;
}
.auther{
  width: 110px;
  margin: 0 auto;
}
.auther img{
  width: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.testimonialAuthor i{
  color: var(--primary-color);
}
.itemBlog{
  padding: 0 10px;
}
.innerBlog img{
  max-width: 100%;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.blogImg{
  overflow: hidden;
}
.itemBlog:hover img{
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.itemBlog:hover h4{
  color: var(--primary-color);
}
.blogDes h4{
  color: #000;
  transition: all 0.3s ease-in-out;
}
.itemPartner{
  padding: 10px 20px;
}
.innerPartner img{
  max-width: 100%;
  opacity: 0.7;
}
.footer{
  padding: 30px 0;
}
.footerLogo{
  width: 200px;
  background: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  padding: 20px;
  margin: 0px auto 0;
  display: flex;                                        
  justify-content: center;
  align-items: center;
}
.footerLogo img{
  max-width: 100%;
}
.footerItem ul{
  margin-top: 5px;
  display: flex;
}
.footerItem ul li a{
  font-size: 20px;
  display: inline-block;
  color: #000;
  padding:5px 10px
}
.bottom-footer{
  background: #000;
}
.bottom-footer-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.bottom-footer-list li a{
  color: #fff;
  display: inline-block;
  padding: 10px;
  font-size: 16px;
}
.bottom-footer-list li a:hover{
  color: var(--primary-color);
}
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 15px;
  color: #fff;
  background-color: var(--primary-color);
  z-index: 999;
  width: 45px;
  text-align: center;
  height: 45px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  font-size: 18px;
  -webkit-transition: 0.9s;
  transition: 0.9s;
  overflow: hidden;
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 10px;
}
.iconLayer{
  position: fixed;
  top: 210px;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  padding: 0px;
  z-index: 999;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  cursor: pointer;
  right: 0;
  transition: right 0.3s ease-in-out;
  -webkit-transition: right 0.3s ease-in-out;
  -moz-transition: right 0.3s ease-in-out;
  -ms-transition: right 0.3s ease-in-out;
  -o-transition: right 0.3s ease-in-out;
}
body.modal-open {
  overflow: hidden;
}

.rightLocationPopup {
  position: fixed;
  top: 0px;
  width: 300px;
  padding: 20px;
  right: -100%;
  z-index: 99999;
  background: #fff;
  height: 100%;
  overflow-y: auto; /* Enable scrolling inside */
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.popupOpen {
  right: 0;
}

.menuPart img{
  width: 140px;
  position: absolute;
  top: -45px;
  right: -138px;
}
.stricky-fixed .menuPart img{
  width: 125px;
  top: -38px;
}
.stricky-fixed .iconLayer {
  top: 155px;
}
.bgLocation, .bgLocation3{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.bgLocation5{
  position: relative;
  z-index: 1;
}
.bgLocation:after{
  content: '';
  position: absolute;
  top: 0;
  right:0;
  width: 100%;
  height: 100%;
  background: url('../images/bg/bg-pizza2.png') no-repeat;
  background-size: cover;
  z-index: -1;
}
.bgLocation5:after{
  content: '';
  position: absolute;
  top: 0;
  right:0;
  width: 100%;
  height: 100%;
  background: url('../images/bg/bg-pizza2.png') no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: .4;
}
.bgLocation3:after{
  content: '';
  position: absolute;
  top: 0;
  right:0;
  width: 100%;
  height: 100%;
  background: url('../images/bg/bg-pizza3.png') no-repeat;
  background-size: cover;
  z-index: -1;
}
.bgLocation1{
  position: relative;
  z-index: 3;
}
.bgLocation1:after{
  content: '';
  position: absolute;
  top: 0;
  right:0;
  width: 100%;
  height: 100%;
  background: url('../images/bg/bg-pizza2.png') no-repeat;
  background-size: cover;
  z-index: -1;
}
.bannerBtn{
  position: absolute;
  bottom: 30px;
}

.footerItem .title{
  font-size: 17px;
}
.footerItem .small_heading{ 
  font-size: 20px;
}
.sliderMenu .slick-next, .sliderMenu .slick-prev{
  top: 36% !important;
}
.footerItem a{
  color: #444;
}
.footerItem .fa-facebook-f{
  color: #1773EA;
}
.footerItem .fa-instagram{
  color: #CC3773;
}
.footerItem .fa-youtube{
  color: #FF0000;
}
.bottom-footer-list p{
  color: #fff;
}
/* .bannerBottom{
  margin-top: 110px;
} */
.footer{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.footer:after{
  content: '';
  position: absolute;
  top: 0px;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(../images/bg/bg-pizza2.png) no-repeat;
  background-size: 100%;
  background-position: center;
  opacity: .7;
}


/* inner pages */
.innerRight img{
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.innerRight {
    overflow: hidden;
}
 
.innerRight:hover img {
    transform: scale(1.1);
}

.center img{
  object-position: top;
}
.bgInner{
  background: url(../images/bg/bg2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.itemListing{
  background: #f9f9f9;
  padding: 10px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
}
.itemListing:hover{
  border-color: var(--primary-color);
}
.imgProduct{
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.imgProduct img{
  max-width: 100%;
  max-height: 100%;
  animation: rotate1 infinite 30s linear;  
  -webkit-animation: rotate1 infinite 30s linear;
  animation-play-state: paused;
}
.beerwine .imgProduct img{
  animation: none;
  -webkit-animation: none;
}
@keyframes rotate1 {
  0%{
    transform:rotate(0deg) ;
    -webkit-transform:rotate(0deg) ;
    -moz-transform:rotate(0deg) ;
    -ms-transform:rotate(0deg) ;
    -o-transform:rotate(0deg) ;
}
100%{
  transform:rotate(360deg) ;
  -webkit-transform:rotate(360deg) ;
  -moz-transform:rotate(360deg) ;
  -ms-transform:rotate(360deg) ;
  -o-transform:rotate(360deg) ;
}
}
.itemListing:hover .imgProduct img{
  animation-play-state: running;
}
.productDescriptionLis{
  padding: 15px;
}
.productDescriptionLis h3{
  color: var(--primary-color);
}
.productDescriptionLis h3 span{
  color: #999;
  text-decoration: line-through;
  font-size: 16px;
}
.productDescriptionLis h4{
  color: #000;
}
.productDescriptionLis button{
  background:var(--primary-color);
  padding:8px 20px;
  border:2px solid #000;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  font-weight: 600;
}
.itemMenus{
  width: calc(100% / 3 - 20px);
  background: #e7e7e7;
  padding: 15px 10px 25px;
  margin: 10px 10px;
  padding-left: 15px;
}
.itemMenus .small_heading{
  font-size: 20px;
}
.itemPizzaGallery{
  border:1px solid #999;
  padding: 5px;
  overflow:hidden;
}
.itemPizzaGallery img{
  width: 100%;
  height: 150px;
  transition:all 0.3s ease-in-out;
  object-fit: cover;
}
.itemPizzaGallery:hover{
    border-color:var(--primary-color);
}
.itemPizzaGallery:hover img{
    transform:scale(1.1);
}
.borderY{
  padding: 10px 0;
  border:1px solid #e0e0e0;
  border-left: none;
  border-right: none;
}
.listPizza ul{
  display: flex;
  flex-wrap: wrap;
}
.listPizza ul li{
  width: calc(100% / 3 - 10px);
  font-weight: 600;
  font-size: 18px;
  padding: 5px 0;
  position: relative;
  z-index: 1;
  padding-left: 20px;
}
.listPizza ul li:before{
  content: '';
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #000;
}
.itemLocationAd{
  padding: 20px;
  background: #fefbf0;
  border:1px solid var(--primary-color);
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.address:after {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  color: #000;
  font-size: 26px;
  top: -2px;
  left: 0px;
}
.phone:after {
  content: "\f095";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  color: #000;
  font-size: 26px;
  top: -2px;
  left: 0px;
}
.email:after {
  content: "\f0e0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  color: #000;
  font-size: 26px;
  top: -2px;
  left: 0px;
}
.time:after {
  content: "\f017";
  font-family: "Font Awesome 6 Free";
  font-weight: 500;
  position: absolute;
  color: #000;
  font-size: 26px;
  top: -2px;
  left: 0px;
}
.address, .phone, .email, .time {
  position: relative;
  padding-left: 40px;
}
p.address strong, p.phone strong, p.email strong{
  color: #000
}
.address, .phone, .email {
  position: relative;
  padding-left: 40px;
}
.itemLocationAd p a, .itemLocationAd p a{
  color: #000;
}
.itemGalleryLocation img{
  width: 100%;
}
.rightContactForm{
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  position: sticky;
  position: -webkit-sticky;
  top: 240px;
}
.itemForm{
  margin: 15px 0 20px;
}
.itemForm label{
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 15px;
}
.itemForm input, .itemForm select, .itemForm textarea{
  width: 100%;
  height: 50px;
  padding: 10px 15px;
  border:1px solid #999;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font-weight: 600;
}
.itemForm textarea{
  height: 90px;
}
.itemForm input:focus, .itemForm select:focus, .itemForm textarea:focus{
  border-color: #000;
}
.itemAwards{
  border:1px solid #999;
  padding: 20px;
  background: #fff;
  transform:scale(1);
  transition:all 0.3s ease-in-out;
}
.itemAwards:hover{
    border-color:var(--primary-color);
    box-shadow:var(--bs-box-shadow)!important;
    transform:scale(1.1);
}
.itemInnerAwards img{
  width: 100%;
}
.bgAction{
  background: url(../images/bg/chalkboard.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.itemReport{
  text-align: center;
}
.itemReport img{
  max-width: 100%;
  transition:all 0.3s ease-in-out;
  transform:scale(1);
}
.itemReport:hover img{
    transform:scale(1.1)
}
.textGrey{
  color: #444;
}
.itemReporter{
  padding: 5px;
  background: #000;
  overflow:hidden;
}
.itemReporter img{
  max-width: 100%;
  transition:all 0.3s ease-in-out;
}
.itemReporter:hover img{
    transform:scale(1.1);
}
.innerRightHistory img{
  max-width: 100%;
}
.blockInnerContent p{
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: 1px;
}
.blockInnerContent p a{
  color: var(--primary-color);
  text-decoration: underline;
}
.rightSafety img{
  max-width: 100%;
}
.leftSafety ol li{
  font-size: 16px;
  font-weight: 600;
  padding: 5px 0;
  color: #000;
}
.actionText p{
  margin-top: 15px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
}
.actionText ol{
  margin-top: 20px;
}
.actionText ol li{
  padding: 5px 0;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
}
/* popup cart */
.cartModal{
  position: fixed;
  z-index: 999;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  padding:30px 40px;
  background: #000;
  overflow: hidden;
}
.cartContent{
  display: flex;
  align-items: stretch;
  width: 75vw;
  height: 90vh;
  margin: 0 auto;
  background: #fff;
}
.leftCartModal{
  width: 30%;
}
.rightCartModal{
  width: 70%;
}
.leftCartModal img{
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
.rightCartModal{
  padding: 40px;
}
.btnClose{
  background: transparent;
  border:none;
  font-size: 30px;
}
.mtNegative{
  margin-top: -30px;
}
.customizeBlock{
  max-height: 57vh;
  margin-top: 20px;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.itemCustomise{
  border:1px solid #999;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.customizeHeader{
  background:#000;  
  padding: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  letter-spacing: 1px;
}
.customizeHeader p{
  color: #fff;
}
.itemStylePizza{
  margin-top: 10px;
}
.itemStylePizza label{
  width: 140px;
  background:#f1f1f1;
  padding:8px 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  text-align: center;
  position: relative;
  font-weight: 700;
  cursor: pointer;
  font-size: 16px;
}
.itemStylePizza label p{
  font-size: 16px;
}
.itemStylePizza input{
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  left: 0;
  top:0 ;
  cursor: pointer;
}
.itemStylePizza label:has(input:checked){
  background: var(--primary-color);
  color: #000;
}
.itemStylePizza label:has(input:checked) p{
  color: #000;
}
.firstHalf, .secondtHalf{
  padding-left: 25px;
  position: relative;
  z-index: 0;
}
.firstHalf:before{
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 15px;
  background: url(../images/icons/toppings.png) no-repeat;
  background-size: cover;
}
.secondtHalf:before{
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 15px;
  background: url(../images/icons/toppings.png) no-repeat;
  background-size: cover;
  background-position-x: -32px;
}
.secondtHalf select, .selectOption{
  height: 40px;
  padding: 10px;
  border: 1px solid #999;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  font-weight: 600;
}
.itemCheckbox label{
  position: relative;
  padding-left: 15px;
  font-weight: 700;
}
.itemCheckbox label:before{
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  top: 0;
  border:2px solid #000;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
.itemCheckbox label:after{
  content: "\f00c";
  font-family:"Font Awesome 6 Free";
  font-weight:  900;
  position: absolute;
  top: -2px;
  left: 3px;
  font-size: 16px;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.itemCheckbox input{
  opacity: 0;
}
.itemCheckbox label:has(input:checked):after{
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.radioBtnImg label{
  width: 50px;
  height: 30px;
  border:1px solid #ccc;
  text-align: center;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  background-color: #fff;
  position: relative;
}
.radioBtnImg label:after{
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.radioBtnImg .half:after{
  background: url(../images/icons/toppings.png) no-repeat;
  background-size:cover;
}
.radioBtnImg .full:after{
  background: url(../images/icons/toppings.png) no-repeat;
  background-size:cover;
  background-position-x: -85px;
}
.radioBtnImg .halfRight:after{
  background: url(../images/icons/toppings.png) no-repeat;
  background-size:cover;
  background-position-x: -42px;
}
.radioBtnImg label input{
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  cursor: pointer;
}
.radioBtnImg label:has(input:checked){
  background-color:#ccc;
  border-color: transparent;
}
.itemListing .product-action {
	position: absolute;
	top: 10px;
	right: 10px;
	text-align: right;
	width: auto;
	max-width: auto;
	-webkit-transition: all 0.6s ease 0s;
	transition: all 0.6s ease 0s
}

.itemListing .product-action a {
	display: block;
	max-width: 44px;
	padding: 2px;
	border-radius: 23px;
	margin-bottom: 12px;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	overflow: hidden;
	position: relative;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	background: #000;
	margin-left: auto;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateX(60px);
	-ms-transform: translateX(60px);
	transform: translateX(60px);
	-webkit-transition-delay: 0s;
	transition-delay: 0s
}

.itemListing .product-action a:hover,
.itemListing .product-action a:focus {
	background: #000;
	max-width: 135px
}

.itemListing .product-action a:hover .action-text,
.itemListing .product-action a:focus .action-text {
	color:#fff;
	right: 40px
}

.itemListing .product-action a:hover .icon,
.itemListing .product-action a:focus .icon {
	background: var(--primary-color);
  color: #000;
}

.itemListing .product-action a .action-text {
	display: inline-block;
	color: #fff;
	margin-right: 8px;
	position: absolute;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	left: -80px;
	top: 50%;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
  font-weight: 600;
}

.itemListing .product-action a .icon {
	display: inline-block;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	background: #000;
	color:var(--primary-color);
	line-height: 40px;
	text-align: center;
	font-size: 18px
}
.itemListing .fire {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: bottom center;
	-ms-transform-origin: bottom center;
	transform-origin: bottom center;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	-webkit-animation: fireAni 1.6s ease-in-out infinite;
	animation: fireAni 1.6s ease-in-out infinite
}

.itemListing.fire img {
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
  width: 100%;
}


.itemListing:hover .fire,
.itemListing:focus .fire {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1)
}

.itemListing:hover .product-action a,
.itemListing:focus .product-action a {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
	min-width: 44px
}

.itemListing:hover .product-action a:hover,
.itemListing:hover .product-action a:focus,
.itemListing:focus .product-action a:hover,
.itemListing:focus .product-action a:focus {
	min-width: 135px
}

@-webkit-keyframes fireAni {
	0% {
		-webkit-transform: scaleY(1.1);
		transform: scaleY(1.1)
	}

	50% {
		-webkit-transform: scaleY(0.7);
		transform: scaleY(0.7)
	}

	100% {
		-webkit-transform: scaleY(1.1);
		transform: scaleY(1.1)
	}
}

@keyframes fireAni {
	0% {
		-webkit-transform: scaleY(1.1);
		transform: scaleY(1.1)
	}

	50% {
		-webkit-transform: scaleY(0.7);
		transform: scaleY(0.7)
	}

	100% {
		-webkit-transform: scaleY(1.1);
		transform: scaleY(1.1)
	}
}

.tabMenu ul{
  display: flex;
  justify-content: center;
}
.tabMenu ul li{
  font-size: 18px;
  font-weight: 600;
  font-family: "PPTelegraf-UltraBold";
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: 2px solid transparent;
  letter-spacing: 1px;
}
.tabMenu ul li:hover{
  background: #f7f7f7;
}
.tabMenu ul li.active{
  background: var(--primary-color);
  color: #000;
  border: 2px solid #000;
}
.itemTab{
  margin-top: 30px;
}
.itemTab {
  display: none;
}
.itemTab.active {
  display: block;
}

/* cart */
.noticeMessage{
  position: relative;
  padding: 15px 20px 11px 50px;
  background-color:var(--primary-color);
  color: #000;
  border-radius: 5px;
}
.noticeMessage:before{
  content: '\f14a';
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  margin-right: 10px;
  font-size: 18px;
  position: absolute;
  left: 20px;
  top: 11px;
}
.cartTable {
  border: 1px solid #eaf0f2;
  margin-bottom: 45px;
  margin: 0 0 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.cartTable thead {
  background-color: #ecf0f1;
}

.cartTable thead th {
  border: none !important;
}

.cartTable td:before,
.cartTable th {
  color: #000;
  font-weight: 600;
  border: none;
  padding: 27px 15px;
}

.cartTable td:before {
  content: attr(data-title);
  position: absolute;
  left: 15px;
  top: 50%;
  vertical-align: top;
  padding: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
}

.cartTable td {
  border: none;
  border-bottom: 1px solid #f3f3f3;
  color: #000;
  padding: 20px 10px;
  position: relative;
  vertical-align: middle;
}

.cartTable .productQuantity {
  color: #000;
}

.cartTable .productQuantity input {
  position: relative;
  top: -2px;

}

.cartTable .cartProductName {
  font-weight: 700;
  color: #000;
}

.cartTable .cartProductImage {
  display: inline-block;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
}

.cartTable .remove {
  color: #333;
  font-size: 20px;
}

.cartTable .quantity {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.cartTable .qtyBtn {
  border: 2px solid #ccc !important;
  background-color: transparent;
  color: #b8c6d0;
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: 28px;
  font-size: 16px;
  border-radius: 4px;
}

.cartTable .qtyBtn:hover {
  background-color: #000;
  border-color: transparent !important;
  color: #fff;
}

.cartTable .qtyInput {
  vertical-align: middle;
  border: 2px solid #ccc;
  width: 70px;
  height: 30px;
  font-size: 14px;
  text-align: center;
  color: #000;
  font-weight: 700;
  margin: 0 10px;
  border-radius: 4px;
  padding: 0;
}

.cartTable .qtyInput::-moz-placeholder {
  color: var(--title-color);
}

.cartTable .qtyInput::-webkit-input-placeholder {
  color: var(--title-color);
}

.cartTable .qtyInput:-ms-input-placeholder {
  color: var(--title-color);
}

.cartTable .qtyInput::-ms-input-placeholder {
  color: var(--title-color);
}

.cartTable .qtyInput::placeholder {
  color: var(--title-color);
}

.cartTable .qtyInput::-webkit-outer-spin-button,
.cartTable .qtyInput::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cartTable .qtyInput[type=number] {
  -moz-appearance: textfield;
}

.cartTable .actions {
  text-align: right;
  vertical-align: middle;
}

.cartTable .actions > .thBtn {
  font-size: 14px;
  padding: 17px 28px;
  margin-right: 15px;
}

.cartTable .actions > .thBtn:last-child {
  margin-right: 0;
}

.cartTable .cartCoupon {
  float: left;
  margin: 0;
  width:500px;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.cartTable .cartCoupon input {
  height: 50px;
  width: calc(100% - 245px);
  margin-right: 10px;
  padding: 10px 20px;
  border: 1px solid #999;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.cartTable .cartCoupon .thBtn {
  font-size: 14px;
  padding: 17px 22px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.cartTotals {
  border: 1px solid #ecf0f1;
}

.cartTotals th,
.cartTotals td {
  vertical-align: top;
  padding: 20px 20px;
  border: none;
  border-bottom: 1px solid #ecf0f1;
  font-size: 14px;
  color: var(--title-color);
  width: 55%;
}

.cartTotals th:first-child,
.cartTotals td:first-child {
  width: 45%;
  background-color: #f9fbfb;
  font-weight: 700;
  font-size: 14px;
  color: #333333;
}

.cartTotals .shippingCalculatorButton {
  display: inline-block;
  border-bottom: 1px solid;
  color: var(--title-color);
  font-weight: 700;
}

.cartTotals .shippingCalculatorButton:hover {
  color: var(--theme-color);
}

.cartTotals .woocommerceShippingDestination {
  margin-bottom: 10px;
}

.cartTotals .woocommerceShippingMethods {
  margin-bottom: 0;
}

.cartTotals .shippingCalculatorForm {
  display: none;
}

.cartTotals .shippingCalculatorForm p:first-child {
  margin-top: 20px;
}

.cartTotals .shippingCalculatorForm p:last-child {
  margin-bottom: 0;
}

.cartTotals .shippingCalculatorForm .thBtn {
  padding: 5px 30px;
}

.cartTotals .amount {
  font-weight: 700;
}

.cartTotals .orderTotal .amount {
  color: var(--theme-color);
}

.shipping input[type="radio"] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none
}

.shipping input[type="radio"] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  line-height: 1;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0
}

.shipping input[type="radio"] ~ label::before {
  content: "\f111";
  position: absolute;
  font-family:'Font Awesome 5 Free' !important;
  left: 0;
  top: -2px;
  width: 20px;
  height: 20px;
  padding-left: 0;
  font-size: 0.6em;
  line-height: 19px;
  text-align: center;
  border: 1px solid #000;
  border-radius: 100%;
  font-weight: 700;
  background: #fff;
  color: transparent;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease
}

.shipping input[type="radio"]:checked ~ label::before {
  border-color: #000;
  background-color: #000;
  color: var(--primary-color)
}
.text-white p {
color: #fff
}

.shipping label {
  margin-bottom: 1em;
  margin-top: -0.3em;
  display: block;
  color: var(--title-color);
  font-family: var(--body-font);
  font-size: 16px
}
.woocommerceShippingMethods li{
  margin-bottom: 5px;
}
.rightCheckout{
  border:1px solid #ccc;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.stickyItem{
  position: sticky;
  position: -webkit-sticky;
  top: 108px;
}
.itemCheckPro{
  border:1px solid #e0e0e0;
  padding: 0px;
  width: 80px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.itemCheckPro img{
  max-width: 100%;
  border-radius: 5px;
}
.rightCheckoutBody{
  padding: 15px;
}
.itemExtraMenu{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 5px;
}
.itemExtraMenu p{
  font-size: 14px;
}
.headerCheckForm{
  background: #f1f1f1;
  padding: 15px;
}
.leftCheckout{
  padding-right: 15px;
}
.itemCheckForm{
  margin: 15px 0;
}
.itemCheckForm p{
  font-size: 15px;
  color: #444;
}
.orderTypeOption{
  width: 290px;
  padding: 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border:1px solid #ccc;
  text-align: center;
}
.orderTypeOption a{
  display: inline-block;
  padding: 10px 25px;
  background: #cacaca;
  color: #000;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-top: 15px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.orderTypeOption a:hover{
  background: #000;
  color: #fff;
}
.orderSummary{
  background: #f9f9f9;
  padding: 20px;
  margin: 30px 0;
  border-radius: 8px;
  text-align: left;
}
.confirmTable th{
  background:#000;
  padding: 15px; 
  text-align: left; 
  font-size: 22px;
  color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.confirmTable td:first-child{
  background:#f1f1f1
}
.confirmTable td{
  border-right: 1px solid #ddd;
}
.transBorder{
  border-color: transparent;
}
.height380 img{
  height: 300px;
}
.itemPizzaGallery{
  margin: 0 5px;
}
.emailBottom a{
  color: #333;
}
.itemMenusHome{
    padding:0 5px;
}
.grid-box{
    overflow:hidden;
}
.grid-box img{
    width:100%;
    filter: brightness(.8);
    transition:all 0.3s ease-in-out;
}
.grid-box:hover img{
    transform:scale(1.1);
    filter: brightness(1);
}
.galleryRow a{
    display:block;
    height:100%;
}
.galleryRow .col-4 .grid-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.column1{
    height:700px;
    padding:3px;
}
.column2{
    height:350px;
    padding:3px;
}
.column2 img{
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}
.itemMenus .small_heading{
    text-transform:uppercase;
}

.videoButtons{
    position:absolute;
    bottom:20px;
    left:15px;
}
.videoButtons ul{
    display:flex;
    align-items:center;
    gap:15px;
}
.videoButtons ul li{
    font-size:34px;
    color:#fff;
    padding:0 8px;
    cursor:pointer;
}
.bottomOnlineLogo{
    width:240px;
    position:absolute;
    bottom:10px;
    right:60px;
}
.bottomOnlineLogo img{
    max-width:100%;
}