@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: 'Telegraf Regular';
  src: url('../fonts/Telegraf-Regular.otf') format('opentype');
  font-weight: 500;
}
@font-face {
  font-family: 'PPTelegraf UltraLight 200';
  src: url('../fonts/Telegraf-UltraLight200.otf') format('opentype');
  font-weight: 400;
}
@font-face {
  font-family: 'Telegraf UltraBold 800';
  src: url('../fonts/Telegraf-UltraBold-800.otf') format('opentype');
  font-weight: 800;
}
@font-face {
  font-family: 'kingred';
  src: url('../fonts/kingred.otf') format('opentype');
}
body {
  box-sizing: border-box;
  font-family: 'Telegraf Regular';
  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(--primary-color);
  outline: 1px solid var(--primary-color);
}
html {
  scroll-behavior: smooth;
}
:root {
  --primary-color: #B20837;
  --secondary-color:#006C67;
  --yellow-color:#FAB919;
}
*,
*::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;
    overflow: hidden
}
.inlineHeader {
  display: flex;
  padding: 10px 0;
  align-items: center;
  justify-content: space-between;
}
.large_heading {
  font-size: 68px;
}
.heading {
  font-size:50px;
}
.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: 310px;
}
.leftLogo img {
  max-width: 100%;
}

.header{
  padding: 0px 0;
}
.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 .leftLogo span:first-child{
  color: var(--primary-color) !important;
}
@-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: 'Telegraf UltraBold 800';
}
.fontBanner{
  font-family: 'Telegraf UltraBold 800';
}
.fontRegular{
  font-family: 'Telegraf Regular';
}
.text_secondary{
  color: var(--secondary-color);
}
.text_primary{
  color: var(--primary-color);
}
.bgPrimary{
  background: var(--primary-color);
}
.bgSecondary{
  background: var(--secondary-color);
}
.rightMenu ul{
  display: flex;
  align-items: center;
}
.rightMenu ul li a{
  font-size: 20px;
  display: inline-block;
  padding: 5px 10px;
  text-transform: uppercase;
  font-weight: 600;
  color: #000;
  letter-spacing: 1px;
}
.rightMenu ul li > a:hover, .rightMenu ul li.active > a{
  color: var(--primary-color);
}
.rightMenu ul li{
  position: relative;
}
.rightMenu 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;
}
.rightMenu ul li:hover ul{
  visibility: visible;
  opacity: 1;
  top: 40px;
  z-index: 9;
}
.rightMenu ul li a i {
  font-size: 11px;
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}
.rightMenu ul li ul li a{
 border: none;
  display:block;
  padding: 5px 15px;
  font-size: 17px;
  color: #000;
  background: none;
}
.rightMenu ul li ul li a:hover{
  background: transparent;
  color: var(--primary-color);
}
.headerBtn{
  display: inline-block;
  padding: 18px 45px;
  background: var(--primary-color);
  color: #fff;
  font-size: 34px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  font-family: 'Telegraf UltraBold 800';
}
.headerBtn:hover {
  background: var(--secondary-color);
  box-shadow: none;
}
.rightHeader p a{
  display: inline-block;
  font-size: 26px;
  font-weight: 500;
  color: var(--primary-color);
  font-family: "Lilita One", serif;
  margin-right: 15px;
}
.rightHeader p a i{
  font-size: 24px;
}
.heroBanner{
  background:#fff url(../images/bg/banner-hero.jpg) no-repeat;
  background-size: cover;
}
.text_yellow{
  color: var(--yellow-color);
}
.leftBanner .headerBtn:hover{
  background: var(--yellow-color);
}
.plate img{
  max-width: 100%;
}
@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) ;
}
}
.leftontent a{
  font-size: 20px;
  font-size: 24px;
}
.leftontent a i{
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.itemMenu{
  padding: 40px;
}
.bg1{
  background: #E3D5CF;
}
.leftontent{
  text-align: center;
}
.rightPlate{
  /*width: 200px;*/
  /*margin: 0 auto;*/
  margin-top: 20px;
}
.rightPlate img{
 width:100%;

}
.itemMenu:hover .rightPlate img{
  animation: rotate1 infinite 30s linear;
  -webkit-animation: rotate1 infinite 30s linear;
}
@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) ;
  }
}
.bg2{
  background: #111;
}
.leftImg{
  height: 100%;
}
.leftImg img{
  width: 100%;
  height: 100%;
}
.rightContent{
  padding: 60px 70px;
  height: 100%;
}
.titleColor{
  -webkit-text-stroke: 1px var(--yellow-color); 
}
.titleColor1{
  -webkit-text-stroke: 1px #fff; 
}
.btn1{
  display: inline-block;
  padding: 12px 0;
  background:#000;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  width: 100%;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  font-family: 'Telegraf UltraBold 800';
  border:2px solid transparent;
}
.btns a:hover{
  border-color: #fff;
  background: transparent;
}
.btn2{
  display: inline-block;
  padding: 12px 0;
  background: var(--yellow-color);
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  width: 100%;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  font-family: 'Telegraf UltraBold 800';
  border:2px solid transparent;
}
.btn3{
  display: inline-block;
  padding: 12px 0;
  background: var(--secondary-color);
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  width: 100%;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  font-family: 'Telegraf UltraBold 800';
  border:2px solid transparent;
}
.btn4{
  display: inline-block;
  padding: 12px 0;
  background: var(--primary-color);
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  width: 100%;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  font-family: 'Telegraf UltraBold 800';
  border:2px solid transparent;
}
.rightContent ul{
  text-align: left;
  margin-top: 20px;
  padding-left: 90px;
}
.rightContent ul li{
  font-size: 18px;
  padding:10px 15px;
  color: #333;
  position: relative;
  padding-left: 20px;
  font-weight: 700;
}
.rightContent ul li:before{
  content: '';
  position: absolute;
  top: 17px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #222;
}
.bgCta{
  background-color: rgb(0 0 0 / 63%);
  background-image: url(../images/bg/cta.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-attachment: fixed;
}
.imgMenu{
  overflow: hidden;
}
.imgMenu 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;
  border:1px solid #e0e0e0;
}
.itemDish h4{
  color: #222;
}
.itemDish:hover img{
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
}
.itemDish:hover h4{
  color: var(--primary-color);
}
.itemDish button{
  border:none;
  background: #999;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: #fff;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.itemDish:hover button{
  background: var(--secondary-color);
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}
.bg_yellow{
  background: var(--yellow-color);
}
.bgTestimonial{
  background-color: rgb(0 0 0 / 80%);
  background-image: url(../images/bg/cta.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-attachment: fixed;
}
.testimonialSlider .slick-next{
  right: -65px !important;
}
.testimonialSlider .slick-prev{
  left: -65px !important;
}
.testimonialAuthor {
  position: relative;
  width: 100px;
  margin: 0 auto;
  z-index: 1;
}
.testimonialAuthor img{
  width: 100%;
  border-radius: 50%;
}
.testimonialAuthor:before{
  content: '';
  position: absolute;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  width: 45px;
  height: 45px;
  background: url(../images/icons/left-quote.png);
  background-size:cover;
}
.testimonialContent{
  margin-top: 60px;
  text-align: center;
}
.testimonialContent h4{
  color: #fff;
  line-height: 38px;
}
.testimonialSlider .slick-next{
  right: -65px !important;
}
.testimonialSlider .slick-prev{
  left: -65px !important;
}
.slick-next:before{
  content: '\f054' !important;
  left: 0px;
}
.slick-prev:before{
  content: '\f053' !important;
  right: 0px;
}
.slick-next, .slick-prev{
  width: 50px !important;
  border-radius: 50px;
  height: 50px !important;
  background: var(--primary-color) !important;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
.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:24px !important;
  width: 50px !important;
  height: 50px !important;
  line-height: 55px !important;
  top: -2px !important;
  font-weight: 700;
  position: relative;
  color: #fff !important;
  opacity: 1 !important;
}
.slick-next:hover, .slick-prev:hover{
  background:var(--primary-color) !important;
}
.blogSlider {
  margin-top: 40px;
}

.imgBlog img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.blogDesHome {
  background: var(--secondary-color);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.innerDes {
  padding: 15px;
}

.descriptionHome {
  background: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin-top: -35px;
  position: relative;
  z-index: 1;
  padding: 20px;
  padding-top: 0px;
}
.descriptionHome h4{
  color: #222;
}

.userIcon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  color: var(--primary-color);
}

.bottomBtn {
  padding: 5px 25px 15px;
}

.bottomBtn p {
  color: #fff;
}

.bottomBtn button {
  text-transform: uppercase;
  display: inline-block;
  font-size: 15px;
  color: #fff;
  background: none;
  border:none
}

.bottomBtn button i {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  font-size: 12px;
  padding-left: 3px;
}

.bottomBtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.itemBlog {
  padding: 0 15px;
}

.footer-info h5 {
  color: #fff;
  line-height: 1;
  margin-bottom: 25px;
}
.footer-info p{
  color: #fff;
  font-size: 17px;
  margin-top: 10px;
}
.footer-info ul{
  margin-top: 15px;
  display: flex;
  justify-content: center;
}
.footer-info ul li a{
  font-size: 20px;
  display: inline-block;
  color: #fff;
  padding:5px 10px
}
.bottom-footer{
  background: #fff;
}
.bottom-footer-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.bottom-footer-list li a{
  color: #000;
  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: 30px;
}

.b{
    border:1px solid red;
}
.cactusBG img{
  content: '';
  position: absolute;
  bottom: -150px;
  left: 0;
  width:600px;


  opacity:.2;

  z-index: -1;
}
.textPhone{
  font-size: 28px;
  color: var(--primary-color);
  font-weight: 600;
}
.bgCactus, .bgCactus2, .bgCactus3, .bgCactus5, .bgCactus6{
  position: relative;
  z-index: 1;
}
.bgCactus:after{
  content: '';
  position: absolute;
  top: 0;
  left:42%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  width:80%;
  height: 100%;
  background: url(../images/cactus.png) no-repeat;
  background-size: cover;
  background-position: -27px center;
  z-index: -1;
  opacity: .15;
}
.bgCactus6:after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width:50%;
  height: 100%;
  background: url(../images/cactus.png) no-repeat;
  background-size: cover;
  background-position: -27px center;
  z-index: -1;
  opacity: .15;
}
.bgCactus2:after{
  content: '';
  position: absolute;
  top: 0;
  right:0;
  width:55%;
  height: 100%;
  background: url(../images/cactus.png) no-repeat;
  background-size: cover;
  background-position: -27px center;
  z-index: -1;
  opacity: .3;
}
.bgCactus3:after{
  content: '';
  position: absolute;
  top: 0;
  right:0;
  width:55%;
  height: 100%;
  background: url(../images/cactus3.png) no-repeat;
  background-size: cover;
  background-position: -27px center;
  z-index: -1;
  opacity: .3;
}
.bgCactus5:after{
  content: '';
  position: absolute;
  top: 0;
  right:0;
  width:100%;
  height: 100%;
  background: url(../images/cactus3.png) no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: .2;
}
.largeBtns{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.largeBtns a{
  display: inline-flex;
  padding: 10px 8px;
  height: 150px;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  width: 140px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  font-family: 'Telegraf UltraBold 800';
  border: 2px solid transparent;
  text-align: center;
  background: #000;
  color: #fff;
}
.largeBtns a:first-child{
  background:var(--primary-color);
}
.largeBtns a:nth-child(2){
  background:var(--secondary-color);
}
.largeBtns a:hover{
  background: transparent;
  border-color: #fff;
}
.bgCactus3 .btn3:hover{
  border-color: var(--secondary-color) !important;
  color: var(--secondary-color);
}
.bgCactus3 .btn4:hover{
  border-color: var(--primary-color) !important;
  color: var(--primary-color);
}
.bgCactus3{
  position: relative;
  z-index: 1;
}
.wAuto{
  width: auto !important;
}
.rightFooter{
  background: #000;
  padding: 40px;
}
.leftFooter{
  height: 100%;
}
.leftFooter img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footerFont{
  font-family: 'Telegraf UltraBold 800';
}
.footerText{
  font-family: 'Telegraf Regular';
}
.rightFooter .sub_heading{
  font-size: 28px;
}
.socialIcons ul{
  display: flex;
  margin-top: 20px;
}
.socialIcons ul li a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  font-size: 22px;
  color: #fff;
  width: 35px;
  height: 35px;
}
.socialIcons ul li{
  margin: 0 5px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.socialIcons ul li.facebook{
  background: #1877F2 ;
}
.socialIcons ul li.twitter{
  background: #fff;
}
.socialIcons ul li.twitter a{
  color: #000;
}
.socialIcons ul li.youtube{
  background: #ff0000;
}
.socialIcons ul li.instagram{
  background: #833ab4;
  background: linear-gradient(
    to right,
    #833ab4,#fd1d1d,#fcb045
  );
}

/* inner page */
.innerPage{
  background:linear-gradient(0deg, transparent 0%, rgb(0, 0, 0) 100%),  url(../images/bg/tortillaflats-innerbg.jpg) no-repeat;
  background-size: cover;
}
.textLeft p{
  margin-bottom: 15px;
}
.rightAbout{
  padding: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background: #fff;
}
.rightAbout img{
  max-width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.heroBanner2{
  background:#fff url(../images/bg/banner-hero2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.btnInner a{
  padding: 15px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font-family: 'Telegraf UltraBold 800';
  text-transform: uppercase;
  font-size: 17px;
  width: 170px;
}
.btnLink{
  background: var(--primary-color);
  color: #fff;
}
.btnLink2{
  background: var(--secondary-color);
  color: #fff;
}
.btnLink3{
  background: var(--yellow-color);
  color: #000;
}
.btnLink4{
  background:#000;
  color: #fff;
}
.btnDish a{
  display: inline-block;
  padding: 15px 20px;
  background: var(--primary-color);
  color: #fff;
  font-family: 'Telegraf UltraBold 800';
  font-size: 17px;
  border-bottom: 5px solid #7c0324;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}
.btnDish a:hover{
  background: var(--yellow-color);
  color: #000;
  border-color: #bf8b0a;
}
.rightDish img{
  max-width: 100%;
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.5));
  -webkit-filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.5));
  animation: rotate1 infinite 30s linear;
}
.btnImg1{
  display: inline-flex;
  background: linear-gradient(0deg, rgba(0,0,0,.5) 40%, rgb(0, 0, 0) 100%), url(../images/cta1.jpg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 150px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 28px;
  text-transform: uppercase;
  font-family: 'Telegraf UltraBold 800';
}
.btnImg1:hover{
  background: linear-gradient(0deg, hsla(167, 99%, 27%, 0.5) 40%, rgb(2, 141, 118) 100%), url(../images/cta1.jpg) no-repeat;
  background-size: cover;
}
.btnImg2{
  display: inline-flex;
  background: linear-gradient(0deg, rgba(0,0,0,.5) 40%, rgb(0, 0, 0) 100%), url(../images/cta2.jpg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 150px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 28px;
  text-transform: uppercase;
  font-family: 'Telegraf UltraBold 800';
}
.btnImg2:hover{
  background: linear-gradient(0deg, hsla(167, 99%, 27%, 0.5) 40%, rgb(2, 141, 118) 100%), url(../images/cta2.jpg) no-repeat;
  background-size: cover;
}
.topLeftContact img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.topLeftContact{
  position: relative;
}
.bannerTextContact{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background:linear-gradient(0deg, rgb(0, 0, 0) 0%, transparent 100%);
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: flex-end;
}
.paymentIcon{
  margin-top: 30px;
}
.paymentIcon img{
  width: 50px;
  margin: 0 5px;
  filter: grayscale(100);
  -webkit-filter: grayscale(100);
}
.rightContactInner{
  background: #fff;
  padding: 40px;
  position: sticky;
  position: -webkit-sticky;
  top: 80px;
}
/* .mainForm{
  border:1px dashed #ccc;
  padding: 30px;
} */
.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;
}
.fullImg{
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.blogDesInner p{
  margin-top: 15px;
  font-size: 18px;
}
.bodyBg{
  background: url(../images/bg/cactus-2nd.png);
  background-repeat: repeat;
}
.bgWhite{
  background: #fff;
}
.tabMenu ul{
  display: flex;
  justify-content: center;
}
.tabMenu ul li {
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 10px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent;
  margin: 0 5px;
  font-family: 'Telegraf UltraBold 800';
}
.tabMenu ul li:hover{
  background: #f1f1f1;
}
.tabMenu ul li.active, .tabMenu ul li.active:hover a {
  background: var(--primary-color);
  color: #fff;
  font-family: 'Telegraf UltraBold 800';
  border-bottom-color:#7c0324;
}
.itemTab{
  margin-top: 30px;
}
.itemTab {
  display: none;
}
.itemTab.active {
  display: block;
}
.itemListing{
  background: #fff;
  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;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border:1px solid #e0e0e0;
}
.itemListing:hover{
  border-color: var(--primary-color);
}
.imgProduct{
  height: 250px;
  padding-top: 10px;
}
.imgProduct img{
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.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;
}
.itemListing .product-action {
	position: absolute;
	top: 20px;
	right: 15px;
	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: var(--secondary-color);
	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: var(--secondary-color);
	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: #fff;
}

.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: var(--secondary-color);
	color:#fff;
	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;
  text-align: center;
  width: 100%;
}
.fire img{
  width: 100%;
}
.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)
	}
}


/* popup */
.cartModal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  align-items: center;
  justify-content: center;
  z-index: 999;
  backdrop-filter: blur(3px);
  transition: opacity 0s linear;
  -webkit-transition: opacity 0s linear;
  -moz-transition: opacity 0s linear;
  -ms-transition: opacity 0s linear;
  -o-transition: opacity 0s linear;
  display: none;
}
body.modal-open{
  overflow: hidden;
}
.cartModal.active{
  display: flex;
}
.modalContent{
width: 38vw;
margin: 0 auto;
background: #f1f1f1;
padding: 30px;
border-radius: 20px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-ms-border-radius: 20px;
-o-border-radius: 20px;
}
.popupHeader{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom:1px solid #e0e0e0;
  padding-bottom:15px;
}
.btnClose{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #fff;
  border:none;
  font-size: 20px;
}
.bodyModal{
  padding: 20px 0;
}
.itemAddon{
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  cursor: pointer;
  box-shadow: 0px 0px 5px rgb(0 0 0 / 10%);
}
.itemAddon label{
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
}
.itemAddon label input{
  visibility: hidden;
}
.itemAddon label:after{
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border:2px solid #000;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.itemAddon label:has(input:checked):after{
  border-color: var(--primary-color);
}
.itemAddon label:has(input:checked):before{
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: var(--primary-color);
  position: absolute;
  top: 50%;
  right:5px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.bodyModal .btnDish a{
  padding: 12px 20px;
  letter-spacing: 1px;
}
.itemListing p{
  display: -webkit-box;
  -webkit-line-clamp: 3; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bullet{
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #000;
  transform: translateY(-8px);
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  -o-transform: translateY(-8px);
}
.listNewSpace ul{
  margin-top: 10px !important;
}
.listNewSpace ul li{
  padding: 0px 15px;
  padding-left: 25px;
}
.listNewSpace ul li:before{
  top:7px;
}
.testimonialHeading{
  font-family: 'kingred';
}
.bgCactus6 ul li{
  color: #fff;
}
.bgCactus6 ul li:before{
  background: #fff;
}