@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@media (min-width: 1400px) and (max-width: 1599px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1170px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  background: #222222;
  color: white;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
}
a {
  display: inline-block;
  text-decoration: none;
}
li {
  list-style: none;
}
.myClass {
  overflow: hidden;
}

/* =========================== header start ======================== */
.main-header {
  position: relative;
  transition: 0.3s;
  padding: 10px 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-header.scrolled {
  position: fixed;
  width: 100%;
  top: 0px;
  background: #222222 !important;
  z-index: 999;
  box-shadow: rgba(59, 59, 59, 0.34) 2px 0px 10px 0px;
  transition: 0.3s;
  animation: goDown 0.5s ease-in-out forwards;
}
html.myClass .main-header {
  background: #212121 !important;
}
@keyframes goDown {
  0% {
    top: -60px;
  }
  100% {
    transform: translateY(0px);
  }
}
.navbar-brand {
  margin: 0 !important;
}
.main-header.scrolled .navbar-brand {
  margin: 0 !important;
  width: 100px;
}
.navbar-brand img {
  object-fit: cover;
  width: 100%;
}
.main-header .navbar-nav li > a::after {
  content: "";
  background-color: #f86d18;
  display: block;
  height: 2px;
  position: absolute;
  width: 0px;
  left: 0px;
  bottom: -1px;
  right: 0px;
  transition: 0.5s;
}
.main-header .navbar-nav li:hover > a::after {
  width: 100%;
  transition: 0.5s;
}
.main-header .navbar-nav li a {
  color: #ffffff;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  position: relative;
}
.main-header .navbar-nav li.current-menu-item a, .current-menu-item a{
  background: linear-gradient(90deg, #f86d18 0%, #e9394f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main-menus ul li.current-menu-item a {
  background: linear-gradient(90deg, #f86d18 0%, #e9394f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main-menus ul li.current-menu-item a::after {
  content: "";
  background-color: #f86d18;
  display: block;
  height: 2px;
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: -7px;
  right: 0px;
  transition: 0.5s;
}
.side-bar {
  display: flex;
  align-items: center;
}
.side-bar ul {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0 32px;
}
.side-bar ul li a {
  border-right: 1px solid #ffffff66;
  border-left: 1px solid #ffffff66;
  padding: 0 13px;
}
.call-us-btn {
  border: 2px solid;
  border-image-source: linear-gradient(90deg, #fd8d45 0%, #e9394f 100%);
  border-image-slice: 1;
  color: #ffffff;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  padding: 14px 21px;
  transition: all 0.5s ease;
}
.call-us-btn:hover {
  background: linear-gradient(90deg, #f86d18 0%, #e9394f 100%);
  transition: all 0.5s ease;
}
.main-menus ul {
  display: flex;
  gap: 44px;
  padding: 0;
}
.main-menus ul li a {
    color: #ffffff !important;
    font-family: "Dela Gothic One", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    position: relative;
}
.main-menus ul li > a::after {
  content: "";
  background-color: #f86d18;
  display: block;
  height: 2px;
  position: absolute;
  width: 0px;
  left: 0px;
  bottom: -7px;
  right: 0px;
  transition: 0.5s;
}
.main-menus ul li:hover > a::after {
  width: 100%;
  transition: 0.5s;
}
.navbar-toggler {
  border: none;
  box-shadow: none;
  padding: 0;
}
.navbar-toggler:focus {
  box-shadow: none !important;
}
.navbar-toggler span.navbar-toggler-icon {
  background-image: none;
  width: 21px;
  height: 2px;
  display: block;
  background-color: white;
  margin: 3px 0px;
  transition: 0.5s all;
}
.navbar-toggler.togle span:nth-child(1) {
  transform: rotate(45deg);
  margin: 0;
  position: relative;
  top: 2px;
  transition: 0.5s all;
}
.navbar-toggler.togle span:nth-child(2) {
  display: none;
  margin: 0;
  transition: 0.5s all;
}
.navbar-toggler.togle span:nth-child(3) {
  transform: rotate(-45deg);
  margin: 0;
  transition: 0.5s all;
}
.navbar-toggler.togle span:nth-child(4) {
  display: none;
  margin: 0;
  transition: 0.5s all;
}
.navbar-collapse {
  position: fixed;
  width: 25%;
  height: 100vh !important;
  background-color: #222222;
  left: 0;
  top: 175px;
  transition: 0.3s all;
  padding: 10px;
  gap: 10px;
  transform: translateX(-100%);
  z-index: 99999;
}
.main-header.scrolled .navbar-collapse {
  top: 121px;
}
.navbar-collapse.show {
  transition: 0.5s all;
  transform: translateX(0);
}
 #sr-res-root {
    margin-left: 15px;
}
#sr-res-root i {
    display: none;
}
/* ======================= hero banner start =============================== */

.hero-banner {
  position: relative;
  height: 100vh;
  padding: 66px 0;
  z-index: 1;
}
.hero-banner::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 461px;
  background: linear-gradient(
    180deg,
    #2d0a08 0%,
    rgba(45, 10, 8, 0.968315) 19.12%,
    rgba(45, 10, 8, 0.893424) 49.83%,
    rgba(45, 10, 8, 0.649493) 72.14%,
    rgba(45, 10, 8, 0) 100%
  );
  z-index: 1;
}
.hero-banner::after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 447px;
  background: linear-gradient(
    0deg,
    #222222 0%,
    rgba(34, 34, 34, 0.46) 43.6%,
    rgba(34, 34, 34, 0) 100%
  );
  z-index: 1;
}
.banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.banner-video video , .banner-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero-banner-meta {
  position: relative;
  z-index: 11;
  text-align: center;
}
.hero-banner-meta h1 {
  color: #ffffff;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 68px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 13px;
}
.hero-banner-meta p {
  color: #ffffff;
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  margin: 18px 0;
}
.hero-banner-meta .btn-wrap {
  margin-top: 18px;
}
.all-same-btn {
  background: linear-gradient(90deg, #f86d18 0%, #e9394f 100%);
  border: transparent !important;
  border: 2px solid !important;
  border-image-source: linear-gradient(
    90deg,
    #fd8d45 0%,
    #e9394f 100%
  ) !important;
  border-image-slice: 1 !important;
  transition: all 0.3s ease;
  color: white !important;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-size: 16px !important;
  line-height: 100% !important;
  letter-spacing: 0%;
  text-transform: uppercase !important;
  padding: 14px 26px;
}
.all-same-btn:hover {
  background: transparent;
}

/* =========================== welcome section start =================================== */

.welcome-section {
  position: relative;
  padding: 100px 0;
}
.all-same-heading {
  color: #ffffff;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.welcome-section-meta {
  position: relative;
}
.welcome-section-meta::before {
  content: " ";
  position: absolute;
  bottom: -20px;
  right: 0;
  background-image: url("../images/welcom-overly.png");
  background-repeat: no-repeat;
  width: 96px;
  height: 67px;
  z-index: 1;
}
.welcome-section-meta h2 {
  margin: 11px 0;
}
.welcome-section-meta h5 {
  background: linear-gradient(90deg, #fd8d45 0%, #e9394f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.welcome-section-meta p {
  color: #ffffffe0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  margin: 20px 0;
}
.welcome-section-right {
  display: flex;
  gap: 6px;
}
.welcome-section-main-img {
  flex: 0 0 60%;
  height: 435px;
}
.welcome-section-main-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.welcome-right-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.welcome-right-img {
  height: 167px;
}
.welcome-right-img:first-child {
  height: 262px;
}
.welcome-right-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* ====================== reach section  start ================================= */
.reach-section {
  position: relative;
  padding: 70px 0;
}
.reach-back-img::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    #222222 0%,
    rgba(34, 34, 34, 0.44) 13.57%,
    rgba(34, 34, 34, 0) 52%,
    rgba(34, 34, 34, 0.38) 89.24%,
    #222222 100%
  );
  width: 100%;
  height: 100%;
  z-index: 1;
}
.reach-back-img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.reach-back-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.reach-section-main {
  text-align: center;
}
.reach-section-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 42px;
}
.reach-meta-single {
  background: #191919ad;
  backdrop-filter: blur(4px);
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(
    155.93deg,
    rgba(248, 109, 24, 0.5) 15.44%,
    rgba(233, 57, 79, 0.5) 94.45%
  );
  border-radius: 8px !important;
  padding: 38px 30px;
  text-align: center;
}

.reach-meta-single p {
  color: #ffffff;
}

.reach-meta-single a {
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
}
.reach-meta-single h3 {
  color: #ffffff;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  margin: 15px 0;
}
.reach-meta-single span {
  background: linear-gradient(90deg, #f86d18 0%, #e9394f 100%);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 10px;
  border-radius: 100px;
}

/* ======================== map section ==================================== */

.map-section {
  position: relative;
  padding-bottom: 100px;
}
.map-main {
  position: relative;
}
.map-content iframe {
  width: 100%;
  height: 395px;
  border-radius: 8px;
  filter: grayscale(1);
}
.map-main .btn-wrap {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
}
.map-main .btn-wrap .all-same-btn {
  border-radius: 100px;
  border: none !important;
}
.map-main .btn-wrap .all-same-btn:hover {
  background: #222222 !important ;
  transition: all 0.3s ease;
}

/* ======================== get in touh section start =========================== */
.get-in-touch {
  position: relative;
  padding: 74px 0;
  z-index: 1;
}
.get-in-touch-bkimg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.get-in-touch-bkimg::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    89.84deg,
    rgba(0, 0, 0, 0.702) 0.14%,
    rgba(0, 0, 0, 0.558) 37.58%,
    rgba(0, 0, 0, 0) 99.86%
  );
  width: 100%;
  height: 100%;
  z-index: 1;
}
.get-in-touch-main h2 {
  margin: 16px 0;
}
.get-in-touch-main p {
  color: #d3d3d3;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin: 16px 0;
}
.get-in-touch-bkimg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.get-in-touch-form {
  background: #ffffff;
  padding: 32px;
}
.get-in-touch-form h3 {
  color: #000000;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.get-in-touch-form form {
  margin-top: 20px;
}
.get-in-touch-form form input,
.get-in-touch-form form textarea {
  border-radius: 0;
  border: 1px solid #dbdbdb;
  color: #666666;
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin: 18px 0;
}
.get-in-touch-form form textarea {
    text-transform: unset;
}
.get-in-touch-form form .all-same-btn {
  width: 100%;
}
.get-in-touch-form form .all-same-btn:hover {
  color: black !important;
  transition: all 0.3s ease;
}

/* ======================== foloow section start  =========================== */

.follow-section {
  position: relative;
  padding: 100px 60px;
}
.follow-section-content h3 {
  color: #ffffff;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}
.follow-main-img {
  width: 100%;
  height: 525px;
  position: relative;
}
.follow-main-img:after {
  content: "\f16d";
  font-family: FontAwesome;
  width: 0;
  height: 100%;
  z-index: 1;
  right: 0;
  top: 0;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  background: #0006;
  transition: all 0.5s;
  overflow: hidden;
}
.follow-main-img:hover:after {
  width: 100%;
  left: 0;
}
.follow-main-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.follow-section-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.follow-right-img {
  height: 260px;
  width: 100%;
  position: relative;
}
.follow-right-img:after {
  content: "\f16d";
  font-family: FontAwesome;
  width: 0;
  height: 100%;
  z-index: 1;
  right: 0;
  top: 0;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  background: #0006;
  transition: all 0.5s;
  overflow: hidden;
}
.follow-right-img:hover:after {
  width: 100%;
  left: 0;
}
.follow-right-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* ====================== footer start ================================= */

.main-footer {
  background: #171717;
  position: relative;
  padding-top: 88px;
}
.footer-logo img {
  object-fit: cover;
  width: 100%;
}
.footer-meta ul {
  padding: 0;
  margin-top: 30px;
}
.footer-meta h4 {
  color: #ffffffeb;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0px;
  text-transform: uppercase;
}
.footer-meta ul li a {
  color: #ffffffd1;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0px;
  position: relative;
}
.footer-meta ul li > a::after {
  content: "";
  background-color: #f86d18;
  display: block;
  height: 2px;
  position: absolute;
  width: 0px;
  left: 0px;
  bottom: 0x;
  right: 0px;
  transition: 0.5s;
}
.footer-meta ul li:hover > a::after {
  width: 100%;
  transition: 0.5s;
}
.quick-links {
  column-count: 2;
}
.soical-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.personal-information li a {
  margin-bottom: 10px;
}
.copy-right-section {
  margin-top: 50px;
  padding: 32px 0;
  text-align: center;
  border-top: 1px solid #ffffff24;
}
.copy-right-section p {
  color: #ffffff99;
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
}

/* ================ all same banner start =========================== */

.all-same-banner {
  position: relative;
  padding: 50px 0;
  height: 570px;
  z-index: 1;
}
.all-same-banner::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 290px;
  background: linear-gradient(
    180deg,
    #2d0a08 0%,
    rgba(45, 10, 8, 0.968315) 19.12%,
    rgba(45, 10, 8, 0.893424) 49.83%,
    rgba(45, 10, 8, 0.649493) 72.14%,
    rgba(45, 10, 8, 0) 100%
  );
  z-index: 1;
}
.all-same-banner::after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 183px;
  background: linear-gradient(
    0deg,
    #222222 0%,
    rgba(34, 34, 34, 0.46) 43.6%,
    rgba(34, 34, 34, 0) 100%
  );
  z-index: 1;
}
.all-same-banner-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.all-same-banner-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.all-same-banner-main {
  position: relative;
  z-index: 2;
  text-align: center;
}
.all-same-banner-main h1 {
  color: #ffffff;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  margin: 15px 0;
}
.all-same-banner-main p {
  color: #ffffffe0;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  margin: 20px 0;
  padding: 0 1rem;
}

/* ===== our stroy page start====================== ========= */

/* ===== our stroy section  start ========= */

.our-stroy-section {
  position: relative;
  padding: 70px 0;
}
.our-story-section-meta {
  position: relative;
}
.our-story-all-images {
  display: flex;
  gap: 8px;
}

.our-story-single-img {
  height: 435px;
  width: 100%;
}
.our-story-single-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.our-story-extra {
  display: flex;
  align-items: center;
  margin-bottom: 73px;
}
.our-story-extra:nth-child(1)
  .our-story-all-images
  .our-story-single-img:nth-child(1) {
  flex: 0 0 60%;
}
.our-story-extra:nth-child(2)
  .our-story-all-images
  .our-story-single-img:nth-child(2) {
  flex: 0 0 60%;
}
.our-story-extra-imgs {
  display: flex;
  flex-direction: column;
  gap: 7px;
/*   height: 100%; */
}
.our-story-extra-imgs .our-story-single-img {
  height: 214px;
}
.our-story-main {
  position: relative;
  flex: 0 0 50%;
}
.our-story-main::before {
  content: " ";
  position: absolute;
  bottom: -30px;
  right: -80px;
  background-image: url("../images/welcom-overly.png");
  background-repeat: no-repeat;
  width: 96px;
  height: 67px;
  z-index: 1;
}
.our-story-main-1 {
  padding-left: 43px;
}
.our-story-main h2 {
  line-height: 45px;
  margin-bottom: 16px;
}
.our-story-main p {
  color: #ffffffe0;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
  margin: 16px 0;
}

/* 1st, 3rd, 5th... (odd) */
.our-story-main:nth-of-type(odd) {
  padding-right: 43px;
}

/* 2nd, 4th, 6th... (even) */
.our-story-main:nth-of-type(even) {
  padding-left: 43px;
}
.our-story-main:nth-of-type(odd)::before {
  bottom: -30px;
  right: unset;
  left: -80px;
  transform: rotatey(178deg);
}

/* ================ menus born start =================== */

.menus-born {
  position: relative;
  padding-bottom: 50px;
  border-bottom: 1px solid #ffffff1a;
}

.menus-born-main {
  text-align: center;
}
.menus-born-main h3 {
  background: linear-gradient(90deg, #f86d18 0%, #e9394f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.menus-born-main p {
  color: #ffffffe0;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
  padding: 0 1rem;
}
.menus-born-main h4 {
  color: #ffffff;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  margin: 35px 0 15px;
}

/* ===== menus page start====================== ========= */

/* ===== menus section  start ========= */

section.menus-section {
  position: relative;
}
.menus-section-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding-bottom: 70px;
  border-bottom: 1px solid #ffffff1a;
}
.menus-single-img {
  width: 100%;
  height: 204px;
}
.menus-single-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.menus-main-content {
  background: linear-gradient(90deg, #f86d18 0%, #e9394f 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
}
.menus-main-content h4 {
  color: #ffffff;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.menus-main-content a {
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0%;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-offset: 0%;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
}

/* =============== drinsk page start ==================== */
/* ---------- drinks section start ---------------- */

.drinks-section {
  position: relative;
}
.drinks-section-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  padding-bottom: 70px;
  border-bottom: 1px solid #ffffff1a;
}
.drinks-section-img {
  width: 100%;
  height: 332px;
}
.drinks-section-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.drinks-section-content {
  background: linear-gradient(90deg, #f86d18 0%, #e9394f 100%);
  text-align: center;
  padding: 15px;
}
.drinks-section-content h4 {
  color: #ffffff;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}

/* =============== contact page start ==================== */
/* ---------- send us massege section start ---------------- */

.send-us-msg {
  position: relative;
  background: linear-gradient(
    90deg,
    rgba(72, 72, 72, 0.6) 0%,
    rgba(0, 0, 0, 0.48) 47.66%,
    rgba(77, 77, 77, 0.75) 100%
  );
  padding: 76px 0 200px 0;
}
.send-us-msg-header {
  text-align: center;
}
.send-us-msg-header h2 {
  background: linear-gradient(90deg, #f86d18 0%, #e9394f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.send-us-msg-form {
  background: #262626;
  position: relative;
  padding: 24px;
}
.send-us-msg-form .all-same-btn {
  width: 100%;
}
.send-us-msg-header p {
  color: #ffffffe0;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
  width: 42%;
  margin: 20px auto;
}
.send-us-msg-img {
  width: 100%;
  height: 537px;
}
.send-us-msg-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.send-us-msg-form form .form-group {
  margin-bottom: 15px;
}
.send-us-msg-form form label {
  color: #ffffffd1;
  font-weight: 500;
  font-size: 15px;
  line-height: 187%;
  letter-spacing: 1%;
}
.send-us-msg-form form .form-control {
  background: #141414;
  border: 1px solid #3c3c3c;
  padding: 12px 10px;
  color: white;
  border-radius: 8px;
}

/* =============== kebab page start ==================== */
/* ---------- kebab banner section start ---------------- */
.banner-nav {
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 25px;
}
.banner-nav li a {
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
}

/* ---------- kebab tab section start ---------------- */

.kebab-section {
  position: relative;
}
.custom-row {
  border-bottom: 1px solid #ffffff1a;
  padding-bottom: 70px;
}
.kebab-section-tabs nav ul {
  padding: 0;
}

.kebab-section-tabs nav ul li {
  cursor: pointer;
  color: #ffffffbd;
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0px;
  text-transform: uppercase;
  padding: 21px 14px;
  border-bottom: 1px solid #ffffff1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kebab-section-tabs nav ul li:hover {
  color: #ffffff;
  background: linear-gradient(90deg, #f86d18 0%, #e9394f 100%);
  border: 0;
  transition: all 0.5s ease;
}

.kebab-section-tabs nav ul li.active {
  color: #ffffff;
  background: linear-gradient(90deg, #f86d18 0%, #e9394f 100%);
  border: 0;
  transition: all 0.5s ease;
}

.kebab-section-tabs nav ul {
  display: flex;
  flex-direction: column;
}

.kebab-section-tabs nav ul li {
  order: 1;
}

.kebab-section-tabs nav ul li.active {
  order: 0;
}

.kebab-section-tabs nav ul li.active:after {
  width: 1px;
  height: 1px;
  border: 5px solid transparent;
  border-top: 5px solid #555;
  content: "";
  position: absolute;
  right: 1.5em;
  top: 1.4em;
  z-index: 9999;
}

.kebab-section-tabs nav ul li:not(.active) {
  position: absolute;
  top: -999em;
}

.kebab-section-tabs nav ul.expanded li.active:after {
  border-top-color: transparent;
  border-bottom-color: #555;
  top: 1em;
}

.kebab-section-tabs nav ul.expanded li:not(.active) {
  position: relative;
  top: auto;
}

@media all and (min-width: 672px) {
  .kebab-section-tabs nav {
    background: transparent;
  }

  .kebab-section-tabs nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    border: none;
    padding: 0;
    border: 1px solid #ffffff1a;
    padding: 0 6px;
  }

  .kebab-section-tabs nav ul li:not(.active) {
    position: relative;
    top: auto;
  }

  .kebab-section-tabs nav ul li.active {
    order: 1;
  }

  .kebab-section-tabs nav ul li.active:after {
    display: none;
  }
}

.kebab-section .tab-content {
  display: none;
}

.kebab-section .tab-content.current {
  display: inherit;
}
.kebab-section-meta {
  display: flex;
  align-items: center;
  padding: 12px;
  background: #303030;
  margin-bottom: 18px;
}
.kebab-section-meta:last-child {
  margin-bottom: 0;
}
.kebab-meta-content {
  width: 100%;
  padding: 30px;
}
.kebab-meta-content h4 a {
  color: #ffffff;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.kebar-meta-img {
  flex: 0 0 45%;
  /* height: 240px; */
  overflow: hidden;
}
.kebar-meta-img img {
  object-fit: cover;
  width: 100%;
  /* height: 100%; */
}
.prdocus-single-price a {
  border: 1px solid #ffffff4d;
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  margin-bottom: 18px;
}
.products-prices-main {
  margin-top: 34px;
}
.prdocus-single-price a {
  color: #ffffff;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.page-pagination {
  margin-top: 32px;
}
.page-pagination ul {
  gap: 10px;
  justify-content: center;
}
.page-pagination .page-item .page-link {
  background: #303030;
  border: none;
  color: #ffffff !important;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  text-transform: capitalize;
  padding: 11px 15px;
}
.page-pagination .page-item .page-link:hover {
  background: linear-gradient(90deg, #f86d18 0%, #e9394f 100%) !important;
  transition: all 0.3s ease;
}
.page-pagination .page-item .page-link.active {
  background: linear-gradient(90deg, #f86d18 0%, #e9394f 100%) !important;
}
.page-prev,
.page-next {
  background: transparent !important;
}

/* =============== partiespage start ==================== */
/* ---------- parties section start ---------------- */

.parties-section-content {
  background: #303030;
  padding: 25px 20px;
  margin-bottom: 14px;
}
.parties-heading {
  width: 75%;
  margin: auto;
  text-align: center;
  margin-top: -40px;
  position: relative;
  z-index: 1;
}
.parties-heading p {
  color: #ffffff;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0%;
  text-align: center;
}
.parties-section-content:last-child {
  margin-bottom: 0;
}
.parties-section-content h4 {
  color: #ffffff;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
}
.parties-content-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.parties-content-single-img {
  height: 128px;
}

.parties-content-single-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.parties-form {
  background: #303030;
  position: relative;
  padding: 30px;
}
.parties-form form label {
  color: #ffffffd1;
  font-weight: 500;
  font-size: 15px;
  line-height: 187%;
  letter-spacing: 1%;
}
.parties-form form .form-check-label {
  color: #ffffff !important;
  font-weight: 500;
  font-size: 14px !important;
  line-height: 22px;
  letter-spacing: 0%;
}
.parties-form form .form-group ul li {
    list-style: disc;
    color: #fff;
}
.parties-form form .form-control,
.parties-form form select,
.parties-form form textarea {
  color: #ffffffd1;
  font-weight: 500;
  font-size: 15px;
  line-height: 187%;
  letter-spacing: 1%;
/*   text-transform: capitalize; */
  padding: 9px 15px;
  background: #141414;
  border: 1px solid #3c3c3c;
}
.parties-form form .form-check-input {
  border: 1px solid !important;
  border-image-source: linear-gradient(
    90deg,
    #fd8d45 0%,
    #e9394f 100%
  ) !important;
  border-image-slice: 1 !important;
  padding: 0 !important;
  accent-color: #000000 !important;
}
.parties-form form textarea::placeholder {
  color: #ffffffb2;
}
.parties-form form input::placeholder {
  color: #ffffffb2;
}
.parties-form form .form-group a {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0%;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-offset: 0%;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
  padding-left: 25px;
}
.parties-form form .form-group {
  margin: 18px 0;
}
.parties-form form ul {
  margin-top: 20px;
}
.parties-form form .all-same-btn {
  width: 100%;
}
.parties-form form .form-select {
  --bs-form-select-bg-img: url("../images/select-arrow.png") !important;
}

/* =============== order page start ==================== */
/* ---------- order header section start ---------------- */

.order-header-section {
  position: relative;
  margin-top: -40px;
  z-index: 1;
}
.order-header-main {
  background: #303030;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px;
}
.order-header-left {
  flex: 0 0 50%;
}
.order-header-left h3 {
  color: #ffffff;
  font-weight: 500;
  font-size: 22px;
  line-height: 31px;
  letter-spacing: 0%;
  margin-bottom: 15px;
}
.order-header-left p {
  color: #ffffffbf;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  margin: 25px 0;
}
.search-box {
  background: #222222;
  border-radius: 50px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  width: 90%;
  margin-top: 15px;
}

.search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  margin-left: 12px;
  width: 100%;
  font-size: 1rem;
}

.search-box input::placeholder {
  color: #ffffffbf;
}
.search-box button {
  border: none;
  background: transparent;
}

.order-header-right {
  flex: 0 0 35%;
}
.order-header-right #myTab {
  background: #222222;
  border-radius: 100px !important;
  border: none;
  width: fit-content;
  padding: 4px;
  margin-bottom: 30px !important;
}
.order-header-right .nav-link {
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  padding: 14px 44px !important;
}
.order-header-right .nav-link.active {
  background: #0c0c0c;
  color: #ffffff !important;
  border-radius: 100px;
  border: none;
}
.delivery-tab-content p {
  color: #ffffff;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  margin: 15px 0;
}
.delivery-schedule {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(
      90deg,
      rgb(248, 109, 24) 0%,
      rgb(233, 57, 79) 100%
    )
    text;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  margin: 10px 0;
}

/* ---------- menus tabs section start ---------------- */
.menus-tabs-section {
  position: relative;
  padding-top: 44px;
}
.menus-tabs-main {
  padding-bottom: 70px;
  border-bottom: 1px solid #ffffff1a;
}
.menus-tabs-main .nav-tabs {
  border-bottom: 1px solid #ffffff2e;
  gap: 22px;
}
.menus-tabs-main .nav-tabs .nav-link {
  border: none;
  color: #ffffff;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  padding-bottom: 20px;
  position: relative;
}
.menus-tabs-main .nav-tabs .nav-link.active {
  background: transparent;
}
.menus-tabs-main .nav-tabs .nav-link.active::before {
  content: "";
  background: linear-gradient(90deg, #f86d18 0%, #e9394f 100%);
  display: block;
  height: 2px;
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: 0px;
  right: 0px;
  transition: 0.5s;
}
.menus-tabs-main .nav-tabs .nav-link::before {
  content: "";
  background: linear-gradient(90deg, #f86d18 0%, #e9394f 100%);
  display: block;
  height: 2px;
  position: absolute;
  width: 0;
  left: 0px;
  bottom: 0px;
  right: 0px;
  transition: 0.5s;
}
.menus-tabs-main .nav-tabs .nav-link:hover.nav-link::before {
  width: 100%;
  transition: 0.5s;
}
.menus-tabs-main .nav-tabs .nav-link span {
  margin-left: 10px;
}
.menus-tabs-meta {
  position: relative;
  margin-top: 40px;
}
.menus-tabs-content h3 {
  color: #ffffff;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.menus-tabs-content {
  margin-bottom: 62px;
  position: relative;
}
.menus-tabs-content:last-child {
  margin-bottom: 0;
}
.menus-tabs-top-div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 36px;
}
.rewards-saving {
  background: #303030;
  border: 1px solid;
  border-image-source: linear-gradient(90deg, #fd8d45 0%, #e9394f 100%);
  border-image-slice: 1;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rewards-saving-content {
  flex: 0 0 60%;
}
.rewards-saving-content h5 {
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 20px;
}
.menus-tabs-top-div p {
  color: #ffffffbf;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-top: 30px;
}
.rewards-savings-img img {
  object-fit: cover;
  width: auto;
}
.featured-meta {
  background: #303030;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.featured-img {
  flex: 0 0 38%;
  height: 128px;
}
.featured-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.featured-content {
  padding: 0 24px;
}
.featured-content h5 {
  color: #ffffff;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 11px;
}
.our-price {
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-top: 11px;
}
.featured-content p {
  margin: 22px 0;
  line-height: 24px;
}

/* =============== cartering page start ==================== */
/* ---------- cartering section start ---------------- */

.cartering-section {
  position: relative;
  padding: 100px 0;
}
.cartering-section-main {
  background: #262626;
  padding: 24px;
  position: relative;
}
.cartering-meta-main {
  background: #141414;
  border: 1px solid #3c3c3c;
  border-radius: 8px;
  padding: 28px 26px;
  margin-bottom: 14px;
}
.cartering-meta-main:last-child {
  margin-bottom: 0;
}
.cartering-meta-main h3 {
  color: #ffffff;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
}
.cartering-meta-main p {
  color: #ffffff;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0%;
  margin: 24px 0;
}
.cartering-section-map {
  height: 100%;
  width: 100%;
}
.cartering-section-map .map-content iframe {
  width: 100%;
  height: 100%;
}
.cartering-section-map .map-content {
    height: 100%;
}

.form-check input[type="checkbox"] {
  margin-right: 10px;
}
.map-content {
  height: 395px;
}

.map-content iframe {
  height: 100% !important;
  display: block;
  object-fit: cover;
}
ul.personal-information li a {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-meta ul.personal-information li > a::after {
    bottom: -5px;
}
 #menu-quick-links .nav-link:focus,   #menu-quick-links .nav-link:hover {
    color: #FFF;
}

section.menus-page-section .cartering-meta-main {
    margin-bottom: 20px;
}
section.menus-page-section {
    padding: 80px 0;
}

body#tinymce.wp-editor.content{
  width: auto !important;
}

.food-menu-image img {
    width: 100%;
}
section.food-menu-section {
    padding: 80px 0;
}
div#sr-res-root i {
    margin-right: 10px;
}
div#sr-res-root {
    margin-left: 10px;
}
section.menus-page-section .cartering-meta-main {
    padding: 45px 0px;
}

.food-menu-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
        margin-top: 20px;
}

.food-menu-description h2 {
    font-size: 24px;
    color: #fff;
    line-height: 34px;
    letter-spacing: 0.5px;
}

.food-menu-description h3 {
    font-size: 20px;
    color: #fff;
    line-height: 34px;
    letter-spacing: 0.5px;
    margin-top: 25px;
}

ul.social-media-icon-list {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

div#navbarSupportedContent .side-bar {
    display: none;
}
.wpcf7 form.sent .wpcf7-response-output {
    color: #46b450;
    border: none;
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    text-align: center;
    padding: 0;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    color: #ffb900;
    border: none;
    text-align: center;
    padding: 0;
    margin: 0;
}