body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    color: #aeb0b4;
    font-size: 17px;
    line-height: 26px;
    font-weight: 300;

}

* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}
:root{
    --yellow-color:#fdc739;
    --lightBlue:#0d1f24;

}

/* p {
    font-size: 15px;
    color: #252123;
    line-height: 26px
} */

a {
    outline: 0;
    color: #252123;
    text-decoration: none;
}

a:focus {
    outline: 0
}

.clearfix {
    clear: both;
    font-size: 0;
    line-height: 0;
    margin: 0;
    padding: 0
}

ul {
    padding: 0;
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

::-moz-selection {
    text-shadow: none;
    background: #2f4398;
    color: #fff
}

a,
input,
select,
textarea {
    transition: all .1s;
    -webkit-transition: all .1s;
    -moz-transition: all .1s;
    transition: all .1s
}

::selection {
    text-shadow: none;
    background: #2f4398;
    color: #fff
}


/* a:focus,
a:hover {
    color: #1c84f9;
    text-decoration: none
} */

h1,
h2 {
    font-family: "Poppins", sans-serif;
    color: #fff;
    font-size:42px;
    font-weight: 600;
    line-height: 50px;

}

h1 span,
h2 span {
    color: var(--yellow-color);
}

h3,
h4,
h5 {
    font-family: "Poppins", sans-serif;
}


/* Header */

.topHeader {
    border-bottom: 1px solid #2c2c2b;
    padding: 10px 0;
}

.top-phone{
    position: relative;
    font-size: 24px;
    font-weight: 500;
    padding-left: 37px;
}
.top-phone-icon {
    background: url('../images/top-phone-call.webp') no-repeat center;
    position: absolute;
    width: 27px;
    height: 27px;
    top: 0;
    left: 0;
}
.top-phone a {
    color: #fff;
}

.main_menu {
    display: flex;
    align-items: center;
    gap: 20px;
}
/*.main_menu > ul {
    margin-bottom: 0px;
    margin-left: 80px;
    
}*/
.main_menu > ul {
    margin-bottom: 0px;
    margin-left: auto;
    text-align:right !important;
    width:100%;
}
.main_menu ul li a {
    padding: 10px 15px;
    font-size: 16px;
    color: #fff;
    transition: all 0.35s ease;
}
.main_menu ul li:hover > a {
  text-decoration: none;
  color: #fdc739;
}
.main_menu ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 0px;
    height: 3px;
    background: var(--darkNavyBlue);
    transition: width 0.3s ease-in-out;
}
.main_menu ul li a:hover::after {
    width: 30px;
}
.main_menu ul li a.active::after {
    width: 30px;
}

.main_menu .secbtn {
    margin-left: auto;
}
.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

/* -------------------------
Global Custom Cursor
------------------------- */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height:10px;
    background-color:var(--yellow-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;

    mix-blend-mode: difference; 
}

/* -------------------------
Headings Styles
------------------------- */

.hover-target span {
color: #a39b7d;
}

.btn-info {
    font-weight: 500;
    font-size: 16px;
    color: #000;
    line-height: 1;
    text-transform: uppercase;
    padding: 17px 25px;
    background: linear-gradient(to bottom,  rgba(255,215,84,1) 0%,rgba(226,151,11,1) 100%);
    border: 1px solid var(--yellow-color);
    white-space: nowrap;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}
.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: #7bbac2;
    border-color: #0e1128;
}


.btn-info::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
	right: 0;
    width: 0;
    height: 106%;
    background: #fff;
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-info:hover::before{
	width: 100%;
    transform: skew(0deg);
    left: 0;
}








.hero-banner{
    padding: 80px 0;
}
.hero-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 30px;
}
.hero-btn .contact-app-btn {
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
  text-transform: capitalize;
  color: var(--yellow-color);
  transition: all 0.3s ease-in-out;
}
.hero-btn .contact-app-btn:hover {
  color: #fff;
  background: none;
}
.hero-content .section-title {
  margin-bottom: 60px;
}
.hero-content .section-title p{
    font-size: 18px;
}
.bnrTitle {
    font-size: 80px;
    font-weight: 600;
    color: #fff;
    line-height: 90px;
}
.bnrTitle span{
    color: var(--yellow-color);
}

.hero-images{
    position: relative;
    padding: 0 42px 0 80px;
    margin-left: 54px;
    z-index: 1;
}

.hero-image,
.hero-image figure{
    display: block;
    border-radius: 999px;
	overflow: hidden;
}

.hero-image figure:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #232524;
    opacity: 20%;
	border-radius: 999px;
    z-index: 0;
}

.hero-image img{
    width: 100%;
    aspect-ratio: 1 / 1.58;
    object-fit: cover;
    border-radius: 999px;
}

.hero-circle-img-1{
    position: absolute;
    top: 100px;
    right: 0;
	z-index: 1;
}

.hero-circle-img-2{
    position: absolute;
    bottom: 100px;
    left: 0;
	z-index: 1;
}

.hero-circle-img-1 figure,
.hero-circle-img-2 figure{
	width: 100%;
    max-width: 160px;
    border-radius: 50%;
}

.hero-circle-img-1 img,
.hero-circle-img-2 img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 8px solid #fff;
    border-radius: 50%;
}
.section-bd{
    padding: 100px 0;
}
.bg-0d1f24 {
    background: #0d1f24;
}

.about-us-image {
  position: relative;
  margin-right: 70px;
  padding: 0 100px 0 60px;
}
.about-us-img, .about-us-img figure {
  display: block;
  border-radius: 999px;
  overflow: hidden;
}
.about-us-img figure::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #1f2120;
  border-radius: 999px;
  opacity: 20%;
  z-index: 0;
}
.about-us-img img {
  width: 100%;
  aspect-ratio: 1 / 1.53;
  object-fit: cover;
  border-radius: 999px;
}
.company-experience {
  width: 165px;
  position: absolute;
  top: 120px;
  right: 0px;
  background: #027284;
  border-radius: 14px;
  padding: 20px;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  z-index: 1;
}

.company-experience::before {
  content: '';
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #fff;
  z-index: 0;
  transition: all 0.4s ease-in-out;

}
.company-experience .icon-box {
  margin-bottom: 20px;
}
.company-experience .icon-box img {
  position: relative;
  width: 100%;
  max-width: 40px;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}
.company-experience-content h3 {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.company-experience-content h3 {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.about-author-img {
  position: absolute;
  bottom: 60px;
  left: 0;
  z-index: 1;
}
.about-author-img figure {
  max-width: 140px;
  border-radius: 50%;
}
.about-author-img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: 50%;
}

.about-us-content {
    max-width: 600px;
}
.abt-title {
  display: inline-block;
  position: relative;
  font-size: 15px;
  font-weight:400;
  line-height: 1.3em;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow-color);
  padding-left: 16px;
  margin-bottom: 10px;
}

.abt-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--yellow-color);
  border-radius: 50%;

  width: 6px;
  height: 6px;
}
.about-content-btn {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.btn-default {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight:500;
  line-height: 1em;
  text-transform: capitalize;
  background: #fff;
  border-radius: 30px;
  padding: 17px 58px 17px 30px;
  border: none;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}
.btn-default.btn-highlighted {
  background: #fff;
  color: #000000;
}
.btn-default::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 18px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  transform: translate(-30px, -50%);
  transition: all 0.4s ease-in-out;
}
.btn-default.btn-highlighted::after {
  background-image: url('../images/arrow-dark.svg');
}

.bg-12272d{
    background: #12272d;
}

.catering-thumb {
    max-width: 200px;
    border-radius: 200px;
    margin: 0 auto;
}
.catering-content {
    padding: 35px 30px 0;
    text-align: center;
}
.catering-content h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}
.no-matter{
    margin-top: 60px;
}
.no-matter p{
    max-width: 810px;
    margin: 0 auto;
    font-size: 18px;
    color: #fff;
}
b, strong {
    font-weight:600;
}

ul.bd-list{
    margin-top: 50px;
    margin-bottom: 40px;
}
ul.bd-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 17px;
    color: #fff;
}
ul.bd-list li::before{
    content: url('../images/circle-check-mark.webp');
    position: absolute;
    top: 2px;
    left: 0;

}

.testmls-section-db {
    background: url('../images/testimonial-item-bg.webp') no-repeat center/cover;
    padding: 85px 120px;
    border-radius: 200px 200px 15px  15px;
    border: 2px solid #e4af3a;
}
.testimonial-item{
	text-align: center;
}

.testimonial-quote{
	text-align: center;
	margin-bottom: 30px;
}

.testimonial-quote img{
	max-width: 50px;
    margin: auto;
}

.testimonial-content{
	margin-bottom: 40px;
}

.testimonial-content p{
	font-size: 24px;
	line-height: 45px;
	margin: 0;
    color: #fff;
}

.author-image{
	margin-bottom: 20px;
}

.author-image figure,
.author-image img{
	border-radius: 50%;
	max-width: 80px;
	margin: 0 auto;
}

.author-content h3{
	color: #fff;
	font-size: 22px;
	text-transform: capitalize;
}



.finger-food-tables {
    background: url('../images/finger-food-tables-bg.webp') no-repeat center/cover;
    padding: 65px 50px;
}
.food-menu-title,
.food-menu-title h3 {
    color: #fff;
}
.food-menu-title p{
    max-width: 700px;
    margin: 0 auto;
}

.our-menu-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  z-index: 2;
  justify-content: center;
}
.our-menu-item {
  /*width: calc(50% - 30px);*/
  width: calc(35% - 30px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.our-menu-image {
  margin-right:20px;
}
figure {
  margin: 0;
}
.our-menu-image figure {
  display: block;
  max-width: 100px;
  border-radius: 50%;
}
.our-menu-image img {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 5px solid rgba(255,255,255,.1);
}
.menu-item-body {
  width: calc(100% - 130px);
}
.menu-item-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 0px;
}
.menu-item-title h3 {
  width: 100%;
  max-width: fit-content;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
}
.menu-item-title hr {
  height: 1px;
  width: 50%;
  color: var(--primary-color);
}
.menu-item-title span {
  color: #0d1f24;
  font-weight: 700;
  font-size: 16px;
  background: var(--yellow-color);
  border-radius: 14px;
  padding: 5px 20px;
}
.menu-item-content p {
  margin: 0;
  color: #c6eff5;
}
.choose-from-items > h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 35px;
}
/*.our-menu-item-w {*/
/*    width: 50%;*/
/*}*/
.menu-item-body-w {
    width: 100%;
}
.menu-item-body-w p {
    color: #FFF;
}

.desserts-swiss-rolls {
    background: none;
}

.desserts-swiss-rolls .menu-item-content p{
    color: #aeb0b4;
}
.every-dessent p {
    font-size: 18px;
    color: #fff;
}
.lkng-text {
    max-width: 565px;
    margin: 0 auto;
}

.private-hire-for-your-event .s-block .inner {
  position: relative;
  display: block;
  min-height: 100px;
}
.private-hire-for-your-event .s-block {
  position: relative;
  margin-bottom: 100px;
}
.private-hire-for-your-event .s-block.alternate .inner {
  padding-left: 0;
  text-align: right;
}
.private-hire-for-your-event .s-block .icon-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 60px;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}
.private-hire-for-your-event .s-block.alternate .icon-box {
  left: auto;
  right: 0;
}
.private-inner-content .s-block .icon-box img {
  max-height: 66px;
}
.private-hire-for-your-event .s-block h3 {
  padding-top: 15px;
  padding-right: 0;
  padding-left: 70px;
}
.private-hire-for-your-event .s-block.alternate h3 {
  padding-top: 15px;
  padding-right: 70px;
}
.private-hire-for-your-event .s-block .prvtc-text {
  position: relative;
  color: #aeb0b4;
  padding-top: 15px;
}
.private-hire-for-your-event .s-col .s-block:last-child {
  margin-bottom: 0;
}

.private-hire-for-your-event .s-block h3 {
  padding-top: 15px;
  padding-right: 0;
  padding-left: 70px;
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 0;
}
.private-hire-for-your-event .s-block {
  position: relative;
  margin-bottom: 100px;
}

.private-hire-for-your-event .s-col.last {
  order: 12;
  padding-left: 50px;
  padding-right: 0;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.private-hire-for-your-event .s-col.last {
  order: 12;
  padding-left: 50px;
  padding-right: 0;
}
.private-hire-for-your-event .image-col .image-box {
  position: relative;
  display: inline-block;
  text-align: center;
}
.private-hire-for-your-event .image-col .image-box img {
  position: relative;
  z-index: 1;
  border-radius: 200px 200px 0 0;
  margin: auto;
  border: 5px solid rgba(255, 255, 255, .1);
}




.bg-0d1f24{
    background: #0d1f24;
}
.news-block .inner-box {
  position: relative;
  display: block;
  max-width: 440px;
}
.news-block .image-box {
  position: relative;
  display: block;
}
.news-block .image-box::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height:230px;
  background: rgba(0, 0, 0, 0.70);
  background: -webkit-linear-gradient(bottom,rgba(0, 0, 0, 0.90),rgba(0, 0, 0, 0.70),rgba(0, 0, 0, 0.0));
  background: -ms-linear-gradient(bottom,rgba(0, 0, 0, 0.90),rgba(0, 0, 0, 0.70),rgba(0, 0, 0, 0.0));
  z-index: 1;
}
.news-block .image {
  position: relative;
  display: block;
  z-index: 0;
  overflow: hidden;
}
.news-block .image.round {
  overflow: hidden;
  border-radius: 500px 500px 0 0;
}
.news-block .image img {
  position: relative;
  display: block;
  width: 100%;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.news-block .over-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 30px 30px 30px;
  z-index: 3;
}
.news-block .date {
  font-size: 23px;
  letter-spacing: 0.10em;
  border-bottom: solid 1px #fff;
  display: inline-block;
  color: #fff;
}
.news-block .date span {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 14px;
}
.news-block .cat {
  position: relative;
  color: var(--yellow-color);
  padding: 20px 0 10px 0;
  text-transform: capitalize;
}
.news-block h3 {
  position: relative;
  margin-bottom: 0;
  font-size: 24px;
  color: #fff;
}
.news-block h3 a {
  color: #fff;
}


.inner-header{
  position: relative;
}
.inner-topHeader {
  position: absolute;
  top: 0;
  width: 100%;
}
.inner-banner {
  padding-top:125px;
  height: 750px;
}
.banner-caption {
  width: 100%;
}

.gitwu-lft-sec {
  background: #027284;
  padding: 40px 80px;
  height: 100%;
}
.pq-contact-box {
  display: flex;
  align-items: center;
  padding: 30px 0;
}
.btmborder {
  border-bottom: 1px solid #0f8093;
}
.pq-contact-box .pq-contact-box-icon {
  margin-right: 20px;
}
.pq-contact-box .pq-contact-box-icon i {
  font-size: 24px;
  color: #fff;
  background-color: var(--yellow-color);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 10px;
  display: inline-block;
}
.pq-contact-box-content h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom:8px;
  font-size: 18px;

}
.pq-contact-box p {
  font-size:18px;
  color: #fff;
}
.pq-contact-box .pq-contact-box-content p {
  margin-bottom: 0;
}
.pq-contact-box-content a {
  color: var(--yellow-color);
  font-size: 24px;
}
.flwus-sec h3{
  color: #fff;
  font-size:28px;
  margin-bottom: 15px;
}
.flwus-sec a {
  color: #fff;
  font-size: 20px;
  margin: 0 5px;
}


.bbDlusbox .form-control {
    height: 62px;
    border-radius: 6px;
    box-shadow: none;
    border: none;
    padding: 10px 20px;
}
.bbDlusbox textarea.form-control {
    height: 162px;
}

.bbDlusMsg__botton input[type="submit"]{
    background: linear-gradient(to bottom, rgba(255, 215, 84, 1) 0%, rgba(226, 151, 11, 1) 100%);
    border: 1px solid var(--yellow-color);
    padding: 20px 50px;
    border-radius: 60px;
    font-family: "Poppins";
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.about-us-image video {
  display: block;
}

/* =========================== */

.footer-container {
    background: #0d1f24 url('../images/footer-bg.webp') no-repeat center/cover;
    
}
.footer-container .info-col {
  position: relative;
  order: 4;
}
.footer-container .footer-image-col.last {
  order: 12;
}
.topFooter-container .footer-image-col .footer-image {
  position: relative;
  display: inline-block;
  border-radius: 200px;
  overflow: hidden;
}
.topFooter-container .footer-image-col .footer-image img {
  display: block;
  border-radius: 200px;
  position: relative;
  z-index: 1;
}
.topFooter-container .footer-col {
  text-align: center;
}
.topFooter-container {
    padding: 120px 0;
}
.topFooter-container .info-col .content {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}
.topFooter-container .info-col .logo {
  position: relative;
  margin-bottom: 40px;
}
.topFooter-container .info h4 {
  gap: 8px;
  display: inline-flex;
  align-items: center;
  position: relative;
  color: var(--yellow-color);
  text-transform: uppercase;
  padding-bottom: 15px;
  font-size: 20px;
}
ul.ftr-adrs-list{}
ul.ftr-adrs-list li{
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}
ul.ftr-adrs-list li a {
    color: #fff;
}
.topFooter-container .info-col .separator{
    margin: 30px 0;
}
.topFooter-container .info-col .separator span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 1px;
  height: 62px;
  width: 2px;
  background: var(--yellow-color);
}
.bkng-request h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 0px;
}
.bkng-request i{
    font-size: 65px;
    color: #25d366;
}

.ftrtp-copy-right{
    border-top: 1px solid #5e6f6d;
    padding: 25px 0;
}
.copy-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}
.ftrSocial a {
    width: 38px;
    height: 38px;
    border-radius: 38px;
    border: 1px solid #5e6f6d;
    color: #fff;
    display: inline-block;
    line-height: 38px;
    text-align: center;
}
.copyright a {
    font-weight: 600;
    color: var(--yellow-color);
}


.back-to-top {
    position: fixed;
    bottom: 75px;
    right: 25px;
    display: none;
    background: var(--yellow-color);
    color: #fff;
    border-radius:8px;
    border: none;
    z-index: 9999;
}