@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&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;
}
.inlineHeader {
  display: flex;
  padding: 0px 0;
  align-items: center;
  justify-content: space-between;
}
.large_heading {
  font-size: clamp(2rem, 3.3vw, 3.5rem);
}
.heading {
  font-size: clamp(1.4rem, 2.8vw, 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;
}
.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;
}
.header.stricky-fixed .centerLogo{
  width: 200px
}
@-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;
  }
}
.header.stricky-fixed .headerTop{
  display: none;
}
.header.stricky-fixed .colMenu ul li a {
  color: #000;
}
.header.stricky-fixed .mainMenu{
  padding: 10px 0;
}
.fontHeading{
  font-family: 'Telegraf UltraBold 800';
}
.fontBanner{
  font-family: 'Telegraf UltraBold 800';
}
.fontRegular{
  font-family: 'Telegraf Regular';
}
.fontCursive{
  font-family: "Great Vibes", cursive;
}
.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: 1680px;
  margin: 0 auto;
}
.header{
  padding: 0px 0;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 9;
}
.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;
}
.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;
}
.headerTop{
  padding: 10px 0;
}
.headerTop ul{
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}
.headerTop ul li a{
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  background: var(--primary-color);
  display: inline-block;
  padding: 12px 30px;
  font-family: 'Telegraf UltraBold 800';
  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;
}
.headerTop ul li a:hover{
  border-bottom: 5px solid var(--yellow-color);
}
.mainMenu{
  display: flex;
  align-items: center;
  justify-content: center;
}
.colMenu ul{
  display: flex;
}
.colMenu ul li a{
  font-size: 18px;
  display: inline-block;
  padding: 5px 1.5vw;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}
.centerLogo{
  width: 300px;
  margin: 0 15px;
}
.centerLogo img{
  max-width: 100%;
}
.column1{
  width: 80%;
}
.column1 img, .column2 img{
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.column2{
  position: absolute;
  right: 0;
  bottom: 5%;
  width: 50%;
  z-index: 1;
}
.rightAboutHome{
  position: relative;
}
.column2 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%;
  font-family: 'Telegraf UltraBold 800';
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  border:none
}
.btnTheme:hover{
  box-shadow: 0 5px #000;
}
.bgSection{
  background: #fffbd1;
}
.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{
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.innerMenu img{
  max-width: 100%;
  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{
  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;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  margin-top: 20px;
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.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:hover{
  box-shadow: 0 3px var(--primary-color);
}
.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: 5px !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: var(--primary-color) !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{
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.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(--yellow-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;
}
.col1{
  height:700px;
  padding:3px;
}
.col2{
  height:350px;
  padding:3px;
}
.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;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font-weight: 500;
  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%);
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.topLeftContact{
  position: relative;
}
.mainContact img{
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.ifameMap{
  height: 550px;
}
.leftNewsletter{
  width: 65%;
  margin:0 auto
}
.formNews{
  margin-top: 2rem;
}
.form-control{
  border-color: #999;
  height: 65px;
}
.form-control:focus{
  border-color: var(--primary-color);
  outline: none;
  box-shadow: none;
}
.leftNewsletter button:hover{
  box-shadow: 0 5px var(--primary-color);
}
.footer{
  padding: 60px 0;
  background: #222;
  border-top:5px solid var(--primary-color);
}
.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
  );
}
.shortBanner{
  height: 70vh;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10rem;
}
.shortBanner:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: -1;
}
.itemAbout{
  padding: 4rem;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.rightAboutInner{
  padding: 40px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  text-align: center;
}
.iconAboutInner{
  width: 70px;
  height: 70px;
  background: var(--yellow-color);
  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;
}
.itemAbout{
  position: relative;
  z-index: 2;
  margin-top: -10vh;
  background: #fff;
}
.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: #fff;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  margin: 2rem 0;
  border:1px solid #ddd;
  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);
}
.itemMenuSlider img{
  max-width: 100%;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.rightMennuSlider{
  padding: 10px 15px;
}
.rightMennuSlider h4 span{
  font-family: 'Telegraf Regular';
  font-size: 14px;
}
.textBrown{
  color: #b45309;
}
.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(--yellow-color);
  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%;
}
.itemOffer{
  padding: 20px;
  border:1px solid var(--yellow-color);
  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(--secondary-color);
}
.leftCatering{
  border:1px solid #999;
  padding: 40px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.leftCatering .itemForm{
  margin: 10px 0;
}
.rightCatering{
  border:1px solid #999;
  padding: 40px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.iconLeftCatering{
  margin-right: 15px;
}
.iconLeftCatering i{
  font-size: 22px;
}
.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;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: #e5f0ef;
  margin-top: 30px;
  border-left: 5px solid var(--secondary-color);
}
.itemBoxEvents{
  padding: 40px;
  border:1px solid #d8839b;
  background: #fbf5f7;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  height: 100%;
}
.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:#666;
}
.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: #333;
  position: absolute;
  top: 15px;
  left: 0;
}
.itemLiveMusic{
  border:1px solid #99c4c2;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  padding: 20px;
  background: #fff;
  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 h4{
  color: #00403d;
}
.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);
}
.boxInner li:before{
  background: var(--primary-color) !important;
}
.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: #fdebf0;
  border:1px solid #d06a87;
}
.bg2{
  background: #FFF8EC;
  border:1px solid var(--yellow-color);
}
.bg3{
  border:1px solid var(--secondary-color);
  background-color: #eaf3f2;
}
.bg4{
  background: #eee8f3;
  border:1px solid #8a60ab;
}
.itemPackage{
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  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 3rem 0;
}
.packageHeader{
  padding: 1.5rem;
}
.bg1 .packageHeader p{
  color: #c1395e;
}
.table th{
  background: #f6f6f6;
}
.itemPackage td{
  color: var(--secondary-color);
}
.itemPackage td:first-child{
  color: #000;
}
.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: 15px;
}
.itemPackage:hover{
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15)
}
.itemPackage table tr:last-child td{
  border-bottom: none;
}
.bg2 .packageHeader p{
  color: #c3753a;
}
.bg3 .packageHeader p{
  color:#328985 ;
}
.bg4 .packageHeader p{
  color:#8a60ab ;
}
.textPurple{
  color: #581c87;
}
.itemPackage:last-child{
  margin-bottom: 0;
}
.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: #eaf3f2;
  color: var(--secondary-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{
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.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 #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;
  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;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  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;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  background: #ccc;
  padding: 4rem;
}
.placeholderImg img{
  max-width: 100%;
}