@import url('https://fonts.googleapis.com/css2?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: "Roboto", sans-serif;
  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: #C75C28;
  --secondary-color:#8eab98;
  --yellow-color:#E2C9B00;
}
*,
*::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;
  border-bottom:5px solid #B30838;
}
.borderBottom{
    border-bottom:5px solid #B30838;
}
.inlineHeader {
  display: flex;
  padding: 0px 0;
  align-items: center;
  justify-content: space-between;
}
.large_heading {
  font-size: clamp(1.8rem, 2.9vw, 2.8rem);
}
.heading {
  font-size: clamp(1.3rem, 2vw, 2.3rem);
}
.sub_heading {
  font-size: clamp(1.2rem, 2vw, 2.2rem);
}

.small_heading {
  font-size: clamp(1rem, 1.5vw, 1.6rem);
}
.title {
  font-size: 18px;
}
.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;
}
.fixed{
   position:fixed !important;
}
.stricky .menuBar {
  transition: background-color 0.3s ease-in-out;
}
.fixed .centerLogo{
  width: 100px
}
.fixed .menuBar{
    background:rgb(199 92 40 / 100%);
    margin-top:65px;
    box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.fixed .colMenu ul li a{
    color:#EBDFBF
}
.fixed .colMenu ul li a:hover{
    color:#B30838
}
.fixed .headerTop{
    display:none !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;
  }
}
.fixed .mainMenu{
  padding: 0px 0;
}
.fontHeading{
  font-family: "Roboto", sans-serif;
  font-weight:800;
}
.fontBanner{
  font-family: "Roboto", sans-serif;
  font-weight:800;
}
.fontRegular{
  font-family: "Roboto", sans-serif;
}
.fontCursive{
  font-family: "Roboto", sans-serif;
}
.text_secondary{
  color: var(--secondary-color);
}
.text_primary{
  color: var(--primary-color);
}
.bgPrimary{
  background: var(--primary-color);
}
.bgSecondary{
  background: var(--secondary-color);
}
.containerFull{
  max-width: 100%;
  padding:0 5%;
  
}
.header{
  padding: 0px 0;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 999;
}
.heroSection{
  position: relative;
  z-index: 1;
}
.heroSection:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to bottom,  rgba(0,0,0,0.83) 0%,rgba(0,0,0,0) 44%,rgba(0,0,0,0) 100%);
}
.heroSection video{
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}
.videoButtons{
  position:absolute;
  bottom:20px;
  left:15px;
  z-index:999;
}
.videoButtons ul{
  display:flex;
  align-items:center;
  gap:15px;
}
.videoButtons ul li{
  font-size:34px;
  color:#fff;
  padding:0 8px;
  cursor:pointer;
}
.headerTop{
  padding: 10px 0 0;
}
.headerTop ul{
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}
.headerTop ul li a{
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  background:#B30838;
  display: inline-block;
  padding: 12px 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position:relative;
  z-index:1;
  overflow:hidden;
}
.headerTop ul li a:before{
    content:'';
    position:absolute;
    top:0;
    left:auto;
    right:0;
    width:0;
    height:100%;
    background:var(--secondary-color);
    z-index:-1;
    transition:all 0.3s ease-in-out;
}
.headerTop ul li:hover a:before{
    width:100%;
    left:0;
    right:auto;
}
.mainMenu{
  display: flex;
  align-items: center;
  justify-content: center;
}
.colMenu ul{
  display: flex;
  align-items:center;
}
.colMenu ul li a{
  font-size: 17px;
  display: inline-block;
  padding: 5px 1vw;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}
.colMenu ul li a:hover{
    color:#B30838;
}
.centerLogo{
  width: 170px;
  margin: 0 15px;
  transition:all 0.3s ease-in-out;
}
.centerLogo img{
  max-width: 100%;
}
.column1, .column3{
  width: 80%;
  overflow:hidden;
}
.column1 img, .column2 img, .column4 img, .column3 img{
  width: 100%;
  transition:all 0.3s ease-in-out;
}
.column2{
  position: absolute;
  right: 0;
  bottom: 5%;
  width: 50%;
  z-index: 1;
  overflow:hidden;
}
.column3{
    margin:0 0 0 auto;
}
.column4{
  position: absolute;
  left: 2%;
  bottom: 5%;
  width: 50%;
  z-index: 1;
  overflow:hidden;
}
.imgHover{
    overflow:hidden;
}
.imgHover img{
    transition:all 0.3s ease-in-out;
}
.column1:hover img, .column2:hover img, .imgHover:hover img, .imgCard:hover img, .carousel-item:hover img, .column3:hover img, .column4:hover img{
    transform:scale(1.1);
}
.rightAboutHome{
  position: relative;
}
.column2 img, .column4 img{
  border:5px solid #fff
}
.leftAboutHome{
  padding-left: 3rem;
}
.btnTheme{
  padding: 15px 36px;
  display: inline-block;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  width: 100%;
  border:none;
  background:#B30838 !important;
  color:#fff;
  position:relative;
  z-index:1;
  overflow:hidden;
}
.btnTheme:before{
    content:'';
    position:absolute;
    top:0;
    left:auto;
    right:0;
    width:0;
    height:100%;
    background:var(--secondary-color);
    z-index:-1;
    transition:all 0.3s ease-in-out;
}
.btnTheme:hover:before{
    width:100%;
    left:0;
    right:auto;
}
.btnTheme2{
  padding: 15px 36px;
  display: inline-block;
  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;
  border:none;
  background:var(--primary-color);
  color:#fff;
  position:relative;
  z-index:1;
  overflow:hidden;
}
.btnTheme2:before{
    content:'';
    position:absolute;
    top:0;
    left:auto;
    right:0;
    width:0;
    height:100%;
    background:var(--secondary-color);
    z-index:-1;
    transition:all 0.3s ease-in-out;
}
.btnTheme2:hover:before{
    width:100%;
    left:0;
    right:auto;
}
.bgSection{
  background: #EBDFBF;
}
/*.imgRadius{*/
/*  border-radius: 10px;*/
/*  -webkit-border-radius: 10px;*/
/*  -moz-border-radius: 10px;*/
/*  -ms-border-radius: 10px;*/
/*  -o-border-radius: 10px;*/
/*}*/
.bgGrey{
  background: #f3f3f3;
}
.itemMenu{
  padding: 0 5px;
}
.innerMenu{
  position: relative;
  overflow: hidden;
}
.innerMenu 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;
}
.menuText{
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  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;
}
.menuText h3{
  font-family: 'Telegraf UltraBold 800';
}
.menuText a{
  background: #fff;
  display: inline-block;
  padding: 10px 30px;
  margin-top: 20px;
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  position:relative;
  z-index:1;
  overflow:hidden;
}
.innerMenu:hover .menuText{
  top: 0;
}
.innerMenu:hover img{
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.menuText a:before{
    content:'';
    position:absolute;
    top:0;
    left:auto;
    right:0;
    width:0;
    height:100%;
    background:var(--secondary-color);
    z-index:-1;
    transition:all 0.3s ease-in-out;
}
.menuText a:hover{
    color:#fff;
}
.menuText a:hover:before{
    width:100%;
    left:0;
    right:auto;
}
.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;
  right: 2px !important;
}
.slick-prev{
  z-index: 99;
  left: 5px !important;
}
.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;
}
.col1{
  margin: 0 0 0 auto;
}
.col2{
  right: auto;
  left: 0;
}
.innerReview h5 span{
  font-size: 15px;
  color: var(--yellow-color);
}
.innerText{
  padding: 0 10rem;
  position: relative;
  z-index: 1;
}
.reviewSlider .slick-next, .reviewSlider .slick-prev{
  background: transparent !important;
  top: 60% !important;
  
}
.reviewSlider .slick-next:before, .reviewSlider .slick-prev:before{
  color: #EBDFBF !important;
  font-size: 26px !important;
  filter: drop-shadow(2px 1px 0px #000);
  -webkit-filter: drop-shadow(2px 1px 0px #000);
}
.innerText:before{
  content: '';
  position: absolute;
  top: -20px;
  left: 90px;
  width: 50px;
  height: 50px;
  background: url('../images/icons/left-quotation-mark.png') no-repeat;
  background-size: cover;
}
.innerText:after{
  content: '';
  position: absolute;
  bottom: 0px;
  right: 90px;
  width: 50px;
  height: 50px;
  background: url('../images/icons/right-quotation-mark.png') no-repeat;
  background-size: cover;
}
.innerText{
  padding-bottom: 2.3rem;
}
.imgCard img{
  transition:all 0.3s ease-in-out;
}
.imgCard{
  overflow:hidden;
}
.rightCard{
  background: url('../images/bg/blue-corn-pion-pancakes-or-restaurant-table-setting.jpg') no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  position: relative;
  z-index: 1;
}
.rightCard:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  border-radius: 20px;  
  z-index: -1;
}
.text_yellow{
  color: var(--primary-color);
}
.imgSlider img{
  width: 100%;
  height: calc(100vh - 40px);
  object-fit: cover;
}
.carousel-item:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}
.carousel-caption{
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
}
.carousel-progress {
  height: 10px;
}

.carousel-bar {
  height: 100%;
  width: 0%;
}
.bgYellow{
  background: var(--yellow-color);
}
.carousel-control-next, .carousel-control-prev{
  opacity: 1;
}
.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;
}
.colBlock{
    margin:0 0 0 auto;
}
.col1{
  height:700px;
  overflow:hidden;
}
.col2{
  height:350px;
  overflow:hidden;
}
.col2 img{
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
.bgHalf{
  position: relative;
  z-index: 1;
  background:url(../images//bg/bg-contact.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 200px 0 250px;
}
.bgHalf::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: -1;
}
.bgGrayGradient{
  background: linear-gradient(to bottom, #f3f3f3 0%, #fff 100%);
}
.itemBoxContact{
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  text-align: center;
  box-shadow:0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .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;
  height: 100%;
}
.itemBoxContact:hover{
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);
  transform: translateY(-.5rem);
  -webkit-transform: translateY(-.5rem);
  -moz-transform: translateY(-.5rem);
  -ms-transform: translateY(-.5rem);
  -o-transform: translateY(-.5rem);
}
.lapSection{
  position: relative;
  z-index: 2;
  margin-top: -100px;
}
.iconContact{
  margin: 0 auto 30px;
  width: 60px;
  height: 60px;
  background:#f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  font-size: 24px;
}
.itemBoxContact h3{
  margin-bottom: 30px;
}
.itemBoxContact p{
  font-size: 17px;
  color: #000;
}
.itemBoxContact p a{
  color: #000;
}
.rightContactInner{
  background: #fff;
  padding: 40px;
  /*position: sticky;*/
  /*position: -webkit-sticky;*/
  /*top: 80px;*/
}
.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;
  font-weight: 500;
  color:#000 !important;
  background: #f8f8f8;
}
.itemForm textarea{
  height: 90px;
  width: 100%;
}
.itemForm input:focus, .itemForm select:focus, .itemForm textarea:focus{
  border-color: #000;
}
.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%);
  padding: 20px;
  display: flex;
  align-items: flex-end;
}
.topLeftContact{
  position: relative;
}
.mainContact{
    overflow:hidden;
}
.mainContact img{
  transition:all 0.3s ease-in-out;
}
.topLeftContact:hover .mainContact img{
    transform:scale(1.1);
}
.ifameMap{
  height: 550px;
}
.leftNewsletter{
  width: 65%;
  margin:0 auto
}
.formNews{
  margin-top: 2rem;
}
.form-control{
  border-color: #999;
  height: 65px;
  border-radius:0px;
}
.form-control:focus{
  border-color: var(--primary-color);
  outline: none;
  box-shadow: none;
}
.footer{
  padding: 60px 0;
  background: #EBDFBF;
}
.socialIcons{
  margin-top: 20px;
}
.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
  );
}
.innerPage{
  background-size: cover;
  background-position: center;
  background-attachment:fixed;
  padding-top: 10rem;
  position:relative;
  z-index:-1;
}
.innerPage:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: -1;
}
.itemAbout{
  padding: 4rem;
}
.rightAboutInner{
  padding: 40px;
  text-align: center;
}
.iconAboutInner{
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  font-size: 30px;
  margin: 10px auto 30px;
}
.bgInner{
  background: #FFF8EC;
}
.box1{
  background: #fee2e2;
  border:1px solid #b2083733
}
.box2{
  background: #ccfbf1;
  border: 1px solid #006c6733;
}
.itemVisit{
  padding: 40px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  position: relative;
}
.itemVisit ul{
  margin-top: 10px;
}
.itemVisit ul li{
  padding: 10px 20px;
  font-weight: 600;
  position: relative;
  padding-left: 30px;
}
.itemVisit ul li:before{
  content:'\f00c';
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
  position: absolute;
  top: 10px;
  left: 0;
}
.itemVisit{
  height: 100%;
}
.itemDish{
  padding: 5px;
}
.innerDish{
  border:5px solid var(--yellow-color);
  overflow: hidden;
}
.innerDish 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;
}
.itemDish:hover .innerDish 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);
}
.divider{
  display: inline-block;
  position: relative;
}
.divider:after{
  content: '';
  position: absolute;
  bottom:-20px;
  left: 50%;
  width: 50%;
  height: 3px;
  background: var(--yellow-color);
  z-index:1 ;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.itemMenuList{
  padding:15px;
  background:rgb(199 92 40 / 50%);
  margin: 2rem 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;
  box-shadow:  0 5px 10px rgba(0,0,0,0.1);
}
.itemMenuList *, .itemMenuList .textBrown{
    color:#fff;
}
.table th, .table td, .table tr{
    background:rgb(199 92 40 / 10%);
    border:none;
    color:#fff;
}
.table .bg-black{
    background:rgb(0 0 0 / 50%) !important;
}
.itemMenuSlider img{
  max-width: 100%;
}
.rightMennuSlider{
  padding: 10px 15px;
}
.rightMennuSlider h4 span{
  font-family: 'Telegraf Regular';
  font-size: 14px;
}
.textBrown{
  color: var(--secondary-color);
}
.itemMenuList:hover{
  box-shadow:var(--bs-box-shadow);
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}
.columnBox{
  height: 100%;
}
.rightMennuSlider ul{
  display: flex;
  flex-wrap: wrap;
  list-style-type: disc;
  margin-left: 20px;
}
.rightMennuSlider ul li{
  width: calc(100% / 3 - 10px);
  font-size: 15px;
}
.shortBanner p.title{
  font-size: 16px;
}
.iconOffer{
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color) !important;
  margin-right: 15px;
  font-size: 24px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color:#fff;
}
.itemOffer{
  padding: 20px;
  border:none !important;
  border-radius:0px !important;
  height: 100%;;
}
.textOffer{
  width: calc(100% - 65px);
}
.leftAboutHome ul{
  margin-top: 2rem;
}
.leftAboutHome ul li{
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
  position: relative;
  padding-left: 35px;
}
.leftAboutHome ul li:before{
  content: "\f816";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  color: var(--primary-color);
}
.leftCatering{
  padding: 40px;
}
.leftCatering *{
    color:#fff;
}
.leftCatering .itemForm{
  margin: 10px 0;
}
.rightCatering{
  padding: 40px;
}
.iconLeftCatering{
  margin-right: 15px;
}
.iconLeftCatering i{
  font-size: 22px;
  color:#fff;
  margin-top:3px;
}
.rightCatering *{
    color:#fff !important;
}
.rightCatering2{
  background: var(--yellow-color);
  padding: 40px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  margin-top: 40px;
}
.iconLeftCatering .fa-map-pin{
  transform: translateY(2px);
  -webkit-transform: translateY(2px);
  -moz-transform: translateY(2px);
  -ms-transform: translateY(2px);
  -o-transform: translateY(2px);
}
.centerHours{
  padding:30px;
  background: rgb(199 92 40 / 50%);
  margin-top: 30px;
}
.centerHours *{
    color:#fff;
}
.itemBoxEvents{
  padding: 40px;
  background: rgb(199 92 40 / 50%);
  height: 100%;
}
.itemBoxEvents *{
    color:#fff;
}
.itemBoxEvents img{
  width: 45px;
  margin-right: 10px;
}
.itemBoxEvents ul li{
  font-size: 16px;
  font-weight: 600;
  padding: 10px;
  position: relative;
  z-index: 1;
  padding-left: 25px;
}
.itemBoxEvents ul li a{
  color:#fff;
}
.itemBoxEvents ul li: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: #fff;
  position: absolute;
  top: 15px;
  left: 0;
}
.itemLiveMusic{
  padding: 20px;
  background: rgb(199 92 40 / 50%);
  text-align: center;
  box-shadow: 0 5px 10px rgba(0,0,0,0.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;
  height: 100%;
}
.itemLiveMusic *{
    color:#fff;
}
.iconMusic{
  font-size: 40px;
  margin: 15px 0;
}
.itemLiveMusic:hover{
  box-shadow: var(--bs-box-shadow);
}
.boxInner{
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
}
.boxInner li{
  width: calc(100% / 3);
}
.bgCelebrate{
  background: var(--secondary-color);
}
.itemOffer a.title{
  font-size: 16px;
}
.servePill li{
  padding: 10px 20px;
  background: #FFF8EC;
  border: 1px solid var(--yellow-color);
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  font-weight: 600;
}
.bg1{
  background: rgb(199 92 40 / 50%);
}
.bg2{
  background: rgb(199 92 40 / 50%);
}
.bg3{
  background-color:rgb(199 92 40 / 50%);
}
.bg4{
  background: #eee8f3;
  border:1px solid #8a60ab;
}
.itemPackage{
  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: .5rem 0 2rem 0;
}
.itemPackage *{
    color:#fff;
}
.packageHeader{
  padding: 1.5rem;
}
/*.table th{*/
/*  background: #f6f6f6;*/
/*}*/
.itemPackage td{
  color: var(--primary-color);
}
.itemPackage td:first-child{
  color: #fff;
}
.itemPackage table, .itemPackage table tr{
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.itemPackage table tr:last-child td:first-child{
  border-bottom-left-radius: 15px;
}
.itemPackage table tr:last-child td:last-child{
  border-bottom-right-radius: 15px;
}
.table th, .table td{
  padding: 5px 15px;
  font-size:15px;
}
.itemPackage:hover{
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform:translateY(-20px);
}
.itemPackage table tr:last-child td{
  border-bottom: none;
}
.iconCard{
  width: 70px;
  margin: 0 auto;
}
.iconCard img{
  max-width: 100%;
}
.innerGift{
  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;
  height: 100%;
}
.innerGift:hover{
  box-shadow: var(--bs-box-shadow)!important;
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.iconChl{
  width: 70px;
  margin: 0 auto;
}
.iconChl img{
  max-width: 100%;
}
.bgAction{
  background: url(../images//bg/bg-action.jpg) no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.bgAction:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(0,0,0,0.8);
}
.accordion-button:not(.collapsed){
  box-shadow: none;
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
.accordion-item{
  margin-bottom: 20px;
  border:1px solid #ccc;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.accordion-button{
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.accordion-item:not(:first-of-type){
  border:1px solid #ccc;
}
.formBox *{
  color:#fff;
}
.formBody{
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.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 #fff;
}
.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;
  position: absolute;
}
.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);
}
.itemCheckbox span{
  font-size: 14px;
}
.uploadFile{
  padding: 1.5rem 0;
  border:2px dashed #888;
  background: #f8f8f8;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.uploadFile input{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
}
#filePreview ul li{
  font-weight: 500;
  color: var(--secondary-color);
}
.placeholderImg{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ccc;
  padding: 4rem;
}
.placeholderImg img{
  max-width: 100%;
}
.sectionHome section{
    overflow:hidden;
}
.bgLight{
    background:#8eab989c;
}

.ribbonDesign{
    width: 150px;
    position: absolute;
    top: -8px;
    right: -30px;
}
.ribbonDesign img, .ribbonDesign2 img{
    max-width:100%;
}
.ribbonDesign2{
    width: 150px;
    position: absolute;
    top: -8px;
    left: -30px;
    transform:rotate(-76deg);
}
.borderNone{
    border-bottom:none !important;
}
.iconCircle{
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}
.bgAccent{
    background:#B30838;
}
.text_accent{
    color:#B30838;
}
.text_light{
    color:#EBDFBF;
}
.orderOnlineFixed{
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    background: #B30838;
    display: none;
    padding: 12px 30px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: fixed;
    top:50%;
    right:-64px;
    transform:translateY(-50%) rotate(-90deg);
    z-index:99;
    overflow:hidden;
    box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.orderOnlineFixed:before{
    content:'';
    position:absolute;
    top:0;
    left:auto;
    right:0;
    width:0;
    height:100%;
    background:var(--secondary-color);
    z-index:-1;
    transition:all 0.3s ease-in-out;
}
.orderOnlineFixed:hover:before{
    width:100%;
    left:0;
    right:auto;
}
.hoverPrimary:before{
    background:var(--primary-color);
}
.fixed .orderOnlineFixed{
    display:block !important;
}
.innerReview h4, .innerReview h5, .innerReview p{
    color:#fff;
}
.translateY{
    transform:translateY(0px);
    transition:all 0.3s ease-in-out;
}
.translateY:hover{
    transform:translateY(-20px);
}
.topImg{
    top: 2%;
    height: 220px;
    width: 47%;
    bottom: auto;
}
.itemOffer:hover .iconOffer i {
    animation:fadeIn .4s linear;
}
@keyframes fadeIn{
    0%{
        transform:scale(1);
        opacity:1;
    }
    50%{
        transform:scale(2);
        opacity:0;
    }
    100%{
        transform:scale(1);
        opacity:1;
    }
}

.innerPage .bgSection{
    background:rgb(235 223 191 / 50%);
}
.innerPage .bgSecondary{
    background:rgb(142 171 152 / 50%);
}
.innerPage .bgPrimary{
    background:rgb(199 92 40 / 50%);
}
.innerPage .itemVisit{
    border-radius:0px;
}
.innerPage .bgInner{
    background:rgb(255 248 236 / 35%);
}
.innerPage .itemOffer *{
    color:#fff;
}
.itemAbout *{
    color:#fff;
}
.innerPage .rightContactInner{
    background:rgb(199 92 40 / 50%);
}
.innerPage .rightContactInner *{
    color:#fff;
}

.innerPage .rightContactInner .itemForm option {
    color: #000;
}

.innerPage .formBody.bgPrimary{
    background:rgb(199 92 40 / 20%);
}
.innerGift *{
    color:#fff;
}
.formBox iframe, .leftCatering iframe{
    width:100%;
    height:600px;
    overflow:auto;
}
.ribbonForm{
    position:absolute;
    bottom: 7px;
    left: 0;
    width: 98.7%;
    height: 63px;
    background:#F3F3FE;
}
.colMenu ul li a i{
    font-size:13px;
}
.colMenu ul li {
  position: relative;
}

.colMenu ul li ul {
  position: absolute;
  top: 70px;
  visibility: hidden;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  left: 0px;
  display: block;
  width: 300px;
  background: rgb(17 17 17 / 78%);
  padding: 10px 0;
}

.colMenu ul li ul li a {
  font-size: 16px;
  text-transform: capitalize;
  display: block;
  padding: 8px 20px;
  color: #eee;
}

.colMenu ul li:hover ul {
  top: 40px;
  visibility: visible;
  opacity: 1;
  z-index: 9;
}

.colMenu ul li ul li a:hover {
  background: rgb(17 17 17 / 80%);
}

a.linkBtn{
    text-decoration:underline;
    color:#EBDFBF;
}

.radio_input label {
    display: flex;
    align-items: center;
}

.radio_input label input {
    width: 50px;
    height: 20px;
}