@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Engagement&family=Epilogue:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: #435168;
  background-color: #ffaf72;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}
#logoImg{
  width: 35vw;
  display: none;
  margin-left: -25vw;
}
@media (max-width: 1200px) {
  #logoImg{
    width: 35vw;
    display: block;
  }
}
@media (min-width: 483px) {
  #logoImg{
    width: 25vw;
    display: block;
  }
}
@media (min-width: 719px) {
  #logoImg{
    width: 15vw;
    display: block;
  }
}
@media (min-width: 1200px) {
  #logoImg{
    width: 10vw;
    display: none;
  }
}

#bannerShapeImg{
  width: 90%;
  filter: drop-shadow(5px 10px 8px #b5aeb6);
  padding-top: 100px;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: #435168;
  outline: none;
}

h1,
h2,
h3,
h4,
h6 {
  font-family: "Epilogue", sans-serif;
  margin: 0px;
  padding: 0;
  color: #010F1C;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 120%;
}

h2 {
  font-size: 40px;
  line-height: 145%;
  font-weight: 700;
}
@media (max-width: 767px) {
  h2 {
    font-size: 34px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 145%;
}
@media (max-width: 767px) {
  h3 {
    font-size: 16px;
  }
}

h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}

h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 145%;
}

a {
  text-decoration: none;
  color: #435168;
  outline: none !important;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
a:hover {
  color: #EB0029 !important;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

textarea.form-control {
  outline: none;
  box-shadow: none;
  background-color: #f8f9fa;
  border-color: #D4DCFF;
  padding: 15px 10px;
  font-size: 1rem;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border: none;
}

textarea.form-control:focus {
  background-color: #f8f9fa;
  border-color: #D4DCFF;
  outline: none;
  box-shadow: none;
}

/* 04.Buttons */
.theme-btn {
  display: inline-block;
  position: relative;
  padding: 13px 25px 13px 25px;
  background-color: #EB0029;
  color: #fff !important;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  z-index: 1;
  overflow: hidden;
  border: none;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  -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;
}
.theme-btn i {
  padding: 4px;
  background-color: #fff;
  color: #EB0029;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.theme-btn:before {
  content: "";
  background-color: #FC791A;
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.theme-btn:after {
  content: "";
  background-color: #FC791A;
  width: 0;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.theme-btn i {
  margin-left: 10px;
}
.theme-btn:hover {
  background-color: #FC791A;
  color: #fff !important;
}
.theme-btn:hover::before, .theme-btn:hover::after {
  width: 100%;
}
.theme-btn.style3 {
  padding: 13px 25px;
  background: #FC791A;
  color: #010F1C;
}
.theme-btn.style3:before {
  content: "";
  background-color: #010F1C;
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.theme-btn.style3:after {
  content: "";
  background-color: #010F1C;
  width: 0;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.theme-btn.style3:hover {
  background: #EB0029;
  color: #fff !important;
}
.theme-btn.style3:hover::before, .theme-btn.style3:hover::after {
  width: 100%;
}
.theme-btn.style4 {
  background-color: #EB0029;
  color: #fff !important;
  border: 1px solid #EB0029;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.theme-btn.style4 i {
  padding: 4px;
  background-color: transparent;
  color: #fff;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.theme-btn.style4:before {
  content: "";
  background-color: #010F1C;
}
.theme-btn.style4:after {
  content: "";
  background-color: #010F1C;
}
.theme-btn.style4:hover {
  background-color: #010F1C;
  color: #fff !important;
  border: 1px solid #EB0029;
}
.theme-btn.style5 {
  background-color: #FC791A;
  color: #fff !important;
  border: 1px solid #FC791A;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  -webkit-border-radius: 0;
}
.theme-btn.style5 i {
  background-color: transparent;
  color: #fff;
}
.theme-btn.style5:before {
  content: "";
  background-color: #010F1C;
}
.theme-btn.style5:after {
  content: "";
  background-color: #010F1C;
}
.theme-btn.style5:hover {
  background-color: #010F1C;
  color: #fff !important;
  border: 1px solid #EB0029;
}
.theme-btn.style6 {
  padding: 13px 40px;
  border-radius: 100px;
  background-color: rgba(235, 0, 41, 0.1);
  color: #EB0029 !important;
  font-family: "Epilogue", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  border: none;
}
.theme-btn.style6 i {
  background-color: transparent;
  color: #EB0029;
  margin-left: 5px;
  padding: 0;
}
.theme-btn.style6:before {
  content: "";
  background-color: #EB0029;
}
.theme-btn.style6:after {
  content: "";
  background-color: #EB0029;
}
.theme-btn.style6:hover {
  background-color: #EB0029;
  color: #fff !important;
  border: none;
}
.theme-btn.style6:hover i {
  color: #fff;
}
@media (max-width: 767px) {
  .theme-btn {
    padding: 20px 32px;
  }
}
@media (max-width: 575px) {
  .theme-btn {
    padding: 13px 25px;
    font-size: 14px;
  }
}

/* 05.Gutter */
@media (min-width: 1600px) {
  .gx-30 {  }
  .gx-60 {  }
}

/* 06.Container */
@media (min-width: 1400px) {
  .offer-wrapper .container {
    max-width: 1850px;
  }
  .popular-dishes-wrapper-container .container {
    max-width: 1850px;
  }
  .food-menu-wrapper.style3 .container {
    max-width: 1570px;
  }
  .popular-dishes-wrapper.style1 .container {
    max-width: 1500px;
  }
  .popular-dishes-wrapper.style4 .container {
    max-width: 1500px;
  }
  .contact-wrapper.style2 .container {
    max-width: 1300px;
  }
}
/* 07.Animation */
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
/* 08.Helping */
::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #FC791A;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #FC791A;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.fix {
  overflow: hidden;
}

@media (max-width: 767px) {
  br {
    display: none;
  }
}

/* background */

.mb-45 {
  margin-bottom: 45px;
}

.mx-492 {
  max-width: 492px;
}

.bg-color2 {
  background-color: #fff3eb !important;
}

.bg-color3 {
  background-color: #181818;
}

.bg-title {
  background-color: #435168;
}

.bg-transparent {
  background: transparent !important;
}

.text-theme-color2 {
  color: #FC791A !important;
}

.bg-img {
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-white {
  background-color: #fff;
}

/* 09.MeanMenu */

/* 10.Preloader */
.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: #EB0029;
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: bold 5em "Epilogue", sans-serif, "Roboto", sans-serif;
  text-align: center;
  user-select: none;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: #EB0029;
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: #010F1C;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Epilogue", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: #EB0029;
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: #02142A;
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.back-to-top {
  border-radius: 12px;
  background-color: #FC791A;
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 99;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.back-to-top:hover {
  background-color: #010F1C;
}

/* 11.Title */

.title-area {
  position: relative;
  z-index: 5;
}
.title-area .sub-title {
  color: #FC791A;
  font-family: "Epilogue", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.title-area .title {
  color: #010F1C;
  text-align: center;
  font-family: "Epilogue", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 50px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.title-area .text {
  color: #435168;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 45px;
}

/* 12.Common */

.social-profile {
  position: absolute;
  right: 1rem;
  top: 1rem;
  max-height: 380px;
  content: "";
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: inline-block;
  z-index: 9;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
.social-profile .plus-btn {
  position: relative;
  z-index: 2;
  cursor: pointer;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 16px;
  display: inline-block;
  background-color: #EB0029;
  color: #fff !important;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}
.social-profile .plus-btn a {
  background-color: #EB0029;
  color: #fff !important;
}

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: #FC791A;
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid #FC791A;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  -o-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}

.star {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.form-group {
  margin-bottom: var(--bs-gutter-x);
  position: relative;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.section-padding {
  padding: 120px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 90px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

/* 13.Header */

.header-section-3 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: transparent;
  z-index: 99;
}
.header-section-3 .main-header-wrapper .logo-image {
  padding: 0 100px 0 120px;
  background-color: transparent;
}
@media (max-width: 1399px) {
  .header-section-3 .main-header-wrapper .logo-image {
    padding: 0 30px 0 50px;
  }
}
.header-section-3 .header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 40px;
  color: #435168;
  position: relative;
  z-index: 1100;
}
.header-section-3 .container-fluid {
  padding: 0 100px 0 120px;
}
@media (max-width: 1899px) {
  .header-section-3 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1600px) {
  .header-section-3 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-section-3 .container-fluid {
    padding: 0 30px;
  }
}

.main-header-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 1899px) {
  .main-header-wrapper {
    gap: 70px;
  }
}
@media (max-width: 1600px) {
  .main-header-wrapper {
    gap: 40px;
  }
}
@media (max-width: 1399px) {
  .main-header-wrapper {
    gap: 30px;
  }
}
@media (max-width: 1199px) {
  .main-header-wrapper {
    padding: 15px 0;
  }
}
@media (max-width: 767px) {
  .main-header-wrapper {
    gap: 10px;
  }
}
.main-header-wrapper .logo-image {
  padding: 35px 30px 43px 50px;
  background-color: #fff;
}
@media (max-width: 1600px) {
  .main-header-wrapper .logo-image {
    padding: 35px 30px 43px 30px;
  }
}
@media (max-width: 1399px) {
  .main-header-wrapper .logo-image {
    padding: 35px 0px;
  }
}
@media (max-width: 1199px) {
  .main-header-wrapper .logo-image {
    padding: 0px;
  }
}
.main-header-wrapper .main-header-items {
  width: 100%;
}
.header-3 .mega-menu-wrapper {
  padding: 0 25px;
  position: relative;
  z-index: 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1600px) {
  .header-3 .mega-menu-wrapper {
    background-color: transparent;
    background-image: none;
  }
}
@media (max-width: 1199px) {
  .header-3 .mega-menu-wrapper {
    background-color: transparent;
    background-image: none;
  }
}
@media (max-width: 767px) {
  .header-3 .mega-menu-wrapper {
    padding: 0 0px;
  }
}
@media (max-width: 1399px) {
  .header-3 .header-main .main-menu ul li {
    margin-inline-end: 10px;
  }
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 40px;
}
@media (max-width: 1600px) {
  .header-main .main-menu ul li {
    margin-inline-end: 25px;
  }
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 15px;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  color: #0f8e05;
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a:hover {
  color: #EB0029 !important;
}
@media (max-width: 1899px) {
  .header-main .main-menu ul li a {
    color: #0f8e05;
  }
}
.header-main .main-menu ul li:hover > a {
  color: #EB0029;
}
.header-main .main-menu ul li:hover > a::after {
  color: #010F1C;
}
.header-main .header-right {
  gap: 30px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .header-main .header-right {
    gap: 5px;
  }
  .header-main .header-right .theme-btn {
    display: none;
  }
}
.header-main .header-right .header__cart {
  padding: 0 8px;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 991px) {
  .header-main .header-right .header__cart {
    padding: 0px 10px;
  }
}
.header-main .header-right .header__cart:hover > a {
  color: #FC791A;
}
.header-main .header-right .header__cart:hover .header__right__dropdown__wrapper {
  visibility: visible;
  opacity: 1;
  top: 100%;
  transition: 0.3s;
}
.header-main .header-right .header__cart > a {
  font-size: 18px;
  color: #435168;
  padding: 15px 0;
  position: relative;
}
.header-main .header-right .header__cart > a::before {
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
  position: absolute;
  top: 0;
  right: -10px;
  width: 15px;
  height: 15px;
  padding: 0 4px;
  content: "3";
  text-align: center;
  border-radius: 100%;
  background: #FC791A;
  color: #fff;
}
@media (max-width: 991px) {
  .header-main .header-right .header__cart > a::before {
    top: 7px;
    right: 11px;
  }
}
.header-main .header-right .header__cart .header__right__dropdown__wrapper {
  position: absolute;
  width: 300px;
  max-height: 700px;
  padding: 20px;
  border-bottom: 3px solid #373737;
  background-color: #fff;
  box-shadow: 0 0 50px 10px rgba(95, 45, 237, 0.15);
  top: 100%;
  left: -235px;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
@media (max-width: 767px) {
  .header-main .header-right .header__cart .header__right__dropdown__wrapper {
    left: -220px;
  }
}
.header-main .header-right .header__cart .header__right__dropdown__wrapper .dropdown__price {
  text-align: left;
  font-size: 17px;
  margin-bottom: 20px;
}
.header-main .header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  width: 100%;
  padding: 10px 0px;
}
.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: #435168;
}

.offcanvas__info {
  background: #fff none repeat scroll 0 0;
  border-left: 2px solid #EB0029;
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 1040;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__logo a img {
  width: 150px;
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content .text {
  color: #435168;
}
.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area {
  margin-top: 30px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area .offcanvas-gallery-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area .offcanvas-gallery-items:not(:last-child) {
  margin-bottom: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area .offcanvas-gallery-items .offcanvas-image {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: #EB0029;
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: #fff;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: #435168;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: #EB0029;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: #435168;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid #373737;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: #EB0029;
  color: #fff !important;
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}

/* 14.Footer */
.footer-top {
  padding: 50px 50px;
  background: #FC791A;
  margin-bottom: 40px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.footer-top .fancy-box {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-top .fancy-box .item1 i {
  width: 39px;
  height: 39px;
  line-height: 39px;
  text-align: center;
  background: #fff;
  color: #FC791A;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.footer-top .fancy-box .item2 h6 {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.footer-top .fancy-box .item2 p {
  color: #fff;
  font-family: "Epilogue", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.footer-widgets-wrapper {
  padding: 90px 0 120px;
  position: relative;
  z-index: 9;
}
.footer-widgets-wrapper .shape1 {
  position: absolute;
  bottom: 56px;
  left: 0;
  z-index: -1;
}
.footer-widgets-wrapper .shape2 {
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: -1;
}
.footer-widgets-wrapper .shape3 {
  position: absolute;
  top: -40%;
  right: 0;
  z-index: -1;
}
.footer-widgets-wrapper .shape4 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .footer-widgets-wrapper {
    padding: 70px 0 100px;
  }
}
@media (max-width: 991px) {
  .footer-widgets-wrapper {
    padding: 50px 0 70px;
  }
}
.footer-widgets-wrapper .single-footer-widget {
  margin-top: 30px;
}
.footer-widgets-wrapper .single-footer-widget .widget-head {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head {
    margin-bottom: 20px;
  }
}
.footer-widgets-wrapper .single-footer-widget .widget-head h3 {
  font-weight: bold;
  color: #fff;
  font-size: 24px;
  display: inline-block;
  position: relative;
  padding-bottom: 20px;
}
.footer-widgets-wrapper .single-footer-widget .widget-head h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 25px;
  height: 2px;
  background-color: #FC791A;
}
.footer-widgets-wrapper .single-footer-widget .widget-head h3::after {
  position: absolute;
  bottom: 0;
  left: 40px;
  content: "";
  width: 55px;
  height: 2px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head h3 {
    font-size: 23px;
  }
}
@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head h3 {
    font-size: 20px;
  }
}
.footer-widgets-wrapper .single-footer-widget .footer-content p {
  color: rgba(255, 255, 255, 0.85);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
  margin-top: 40px;
  gap: 10px;
  position: relative;
  z-index: 9;
}
@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
    margin-top: 20px;
  }
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  color: #fff;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover {
  background-color: #EB0029;
  color: #fff !important;
}
.footer-widgets-wrapper .single-footer-widget .list-area {
  display: inline-block;
}
.footer-widgets-wrapper .single-footer-widget .list-area li {
  transition: all 0.4s ease-in-out;
  font-weight: 500;
}
.footer-widgets-wrapper .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 20px;
}
.footer-widgets-wrapper .single-footer-widget .list-area li a {
  color: #fff;
}
.footer-widgets-wrapper .single-footer-widget .list-area li a i {
  margin-right: 5px;
}
.footer-widgets-wrapper .single-footer-widget .list-area li:hover {
  margin-left: 5px;
}
.footer-widgets-wrapper .single-footer-widget .list-area li:hover a {
  color: #EB0029;
}

.footer-bottom {
  position: relative;
  z-index: 9;
  background: #EB0029;
}
.footer-bottom .footer-wrapper {
  padding: 18px 0;
}
@media (max-width: 767px) {
  .footer-bottom .footer-wrapper {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center !important;
  }
}
.footer-bottom .footer-wrapper p {
  color: #fff;
}
.footer-bottom .footer-wrapper p a {
  color: #fff !important;
}
.footer-bottom .footer-wrapper p a:hover {
  color: #fff !important;
}
.footer-bottom .footer-wrapper .brand-logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-bottom .footer-wrapper .brand-logo li {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 5px 7px;
  border-radius: 6px;
}
.footer-bottom .footer-wrapper .brand-logo li a {
  color: #fff;
}
.footer-bottom .footer-wrapper .brand-logo li a:hover {
  color: #fff !important;
}

/* 15.Contact */
.contact-wrapper.style2 {
  position: relative;
  background-image: url(../Images/Foods/contactThumb_1.png);
}
.contact-wrapper.style2 .opening-details .schedule-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 90px;
}
.contact-wrapper.style2 .opening-details .schedule-wrapper .schedule .day {
  padding: 15px 20px;
  text-align: center;
  color: #fff;
  font-family: "Epilogue", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  border: 1px solid #ffffff17;
}
.contact-wrapper.style2 .opening-details .schedule-wrapper .schedule .time {
  padding: 10px 30px;
  text-align: center;
  border: 1px solid #ffffff17;
}
.contact-wrapper.style2 .opening-details .number {
  text-align: center;
  color: #fff;
  font-family: #010F1C;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 50px;
  text-transform: capitalize;
  margin-top: 40px;
}
.contact-form.style2 {
  padding: 46px 42px 46px 38px;
  border-radius: 16px;
  background: #fff;
}
.contact-form.style2 h2 {
  color: #010F1C;
  font-family: "Epilogue", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
  line-height: 50px;
  text-transform: capitalize;
  margin-bottom: 25px;
}
.contact-form.style2 input {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 25px;
  border-radius: 8px;
  border: 1px solid #D4DCFF;
  color: #435168;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.contact-form.style2 textarea.form-control {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 25px;
}
@media (max-width: 575px) {
  .contact-form.style2 {
    padding: 30px;
  }
}

.contact-section {
  position: relative;
}

/* 16.Banner */
.banner-wrapper.style3 {
  position: relative;
  background-color: #fff3eb;
  background-image: url(../Image/HeaderBackgrounds/bg1.png);
}
.banner-wrapper.style3 .shape1 {
  position: absolute;
  bottom: 135px;
  left: 26px;
  z-index: 4;
}
.banner-wrapper.style3 .shape2 {
  position: absolute;
  top: 100px;
  right: 140px;
  z-index: 4;
}
.banner-wrapper.style3 .shape3 {
  position: absolute;
  bottom: 100px;
  left: 36%;
  z-index: 3;
}
@media (max-width: 1399px) {
  .banner-wrapper.style3 .shape3 {
    width: 450px;
    bottom: initial;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .banner-wrapper.style3 .shape3 img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .banner-wrapper.style3 .shape3 {
    width: 350px;
  }
}
@media (max-width: 767px) {
  .banner-wrapper.style3 .shape3 {
    width: 200px;
  }
}
.banner-wrapper.style3 .shape4 {
  position: absolute;
  top: -70px;
  left: 40%;
  z-index: 2;
  transform: translateX(-40%);
  -webkit-transform: translateX(-40%);
  -moz-transform: translateX(-40%);
  -ms-transform: translateX(-40%);
  -o-transform: translateX(-40%);
}
.banner-wrapper.style3 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 /* background: linear-gradient(180deg, #ffebdb 0%, rgba(1, 15, 28, 0.75) 100%); */
  z-index: 1;
}

.banner-style3 {
  position: relative;
  padding: 200px 0 235px;
  z-index: 3;
}
@media (max-width: 767px) {
  .banner-style3 {
    padding: 150px 0 80px;
  }
}
.banner-style3 .subtitle {
  position: relative;
  -webkit-text-stroke: 2px #FC791A;
  color: transparent;
  text-align: center;
  font-family: "Engagement", sans-serif;
  font-size: 180px;
  font-style: normal;
  font-weight: 400;
  line-height: 105px;
  text-transform: capitalize;
  margin-bottom: 100px;
  z-index: 5;
}
@media (max-width: 1399px) {
  .banner-style3 .subtitle {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  .banner-style3 .subtitle {
    font-size: 85px;
    margin-bottom: 50px;
  }
}
.banner-style3 .title {
  position: relative;
  color: #0f8e05;
  text-align: center;
  font-family: "Epilogue", sans-serif;
  font-size: 220px;
  font-style: normal;
  font-weight: 900;
  line-height: 105px;
  text-transform: uppercase;
  z-index: 5;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .banner-style3 .title {
    font-size: 120px;
  }
}
@media (max-width: 767px) {
  .banner-style3 .title {
    font-size: 85px;
  }
}
.banner-style3 p {
  color: #f37a0e;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  max-width: 477px;
}

.banner3-slider {
  position: relative;
}
.banner3-slider .arrow-prev3 {
  position: absolute;
  top: 93%;
  left: 45%;
  z-index: 99;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
@media (max-width: 1600px) {
  .banner3-slider .arrow-prev3 {
    display: none;
  }
}
.banner3-slider .arrow-next3 {
  position: absolute;
  top: 93%;
  left: 55%;
  z-index: 99;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
@media (max-width: 1600px) {
  .banner3-slider .arrow-next3 {
    display: none;
  }
}
.banner3-slider .swiper-pagination {
  position: absolute;
  top: 94%;
  left: 26%;
  z-index: 1;
}
@media (max-width: 1600px) {
  .banner3-slider .swiper-pagination {
    display: none;
  }
}

/* 17.Breadcumb */
.breadcumb-wrapper {
  background-image: url(../Image/HeaderBackgrounds/bg1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.breadcumb-wrapper .breadcumb-content {
  padding: 160px 0;
  text-align: center;
}
.breadcumb-wrapper .breadcumb-content .breadcumb-title {
  color: #EB0029;
  font-family: "Epilogue", sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 900;
  line-height: 105px;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .breadcumb-wrapper .breadcumb-content .breadcumb-title {
    font-size: 40px;
    line-height: 52px;
  }
}

/* 18.Marquee */
.marquee-wrapper {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  background-color: #EB0029;
  z-index: 9;
}
.marquee-wrapper.style-1 {
  background-color: transparent;
  line-height: 55px;
  margin-bottom: -50px;
}
@media (max-width: 1199px) {
  .marquee-wrapper.style-1 {
    margin: -10px 0px;
  }
}
.marquee-wrapper.style-1.text-slider {
  height: auto;
}

.text-slider {
  font-size: 50px;
  height: 100px;
  line-height: 90px;
  font-weight: 700;
  text-transform: capitalize;
  color: #fff;
}
.text-slider:not(:last-child) {
  margin-right: 30px;
}
@media (max-width: 767px) {
  .text-slider {
    font-size: 36px;
  }
}
.text-slider img {
  margin-bottom: 10px;
}

.marquee-inner {
  position: absolute;
  display: inline-flex;
  width: 200%;
}

.marquee-item {
  float: left;
  transition: animation 0.2s ease-out;
}
.marquee-item.style1 .text-style {
  transition: all 0.4s ease-in-out;
  background-image: linear-gradient(#EB0029, #EB0029);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  color: #807e7b;
  font-family: "Epilogue", sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.marquee-item.style1 .text-style:hover {
  color: #EB0029;
  background-size: 100% 3px;
  opacity: 1;
}

.marquee-inner.to-left {
  animation: marqueeLeft 25s linear infinite;
}

@keyframes marqueeLeft {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

/* 19.Gallery */

/* 20.Testimonial */
.testimonial-wrapper.style3 {
  position: relative;
}
.testimonial-wrapper.style3 .btn-wrap .arrow-prev {
  position: absolute;
  top: 70%;
  left: 12%;
  transform: translate(-12%, -70%);
  -webkit-transform: translate(-12%, -70%);
  -moz-transform: translate(-12%, -70%);
  -ms-transform: translate(-12%, -70%);
  -o-transform: translate(-12%, -70%);
}
.testimonial-wrapper.style3 .btn-wrap .arrow-prev i {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background: transparent;
  color: #EB0029;
  border: 1px solid #EB0029;
  border-radius: 50%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.testimonial-wrapper.style3 .btn-wrap .arrow-prev i:hover {
  background: #010F1C;
  color: #fff;
  border: 1px solid #010F1C;
}
@media (max-width: 1600px) {
  .testimonial-wrapper.style3 .btn-wrap .arrow-prev {
    display: none;
  }
}
.testimonial-wrapper.style3 .btn-wrap .arrow-next {
  position: absolute;
  top: 70%;
  right: 12%;
  transform: translate(-12%, -70%);
  -webkit-transform: translate(-12%, -70%);
  -moz-transform: translate(-12%, -70%);
  -ms-transform: translate(-12%, -70%);
  -o-transform: translate(-12%, -70%);
}
.testimonial-wrapper.style3 .btn-wrap .arrow-next i {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background: #EB0029;
  color: #fff;
  border: 1px solid #EB0029;
  border-radius: 50%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.testimonial-wrapper.style3 .btn-wrap .arrow-next i:hover {
  background: #fff;
  color: #010F1C;
  border: 1px solid #fff;
}
@media (max-width: 1600px) {
  .testimonial-wrapper.style3 .btn-wrap .arrow-next {
    display: none;
  }
}
.testimonial-card.style3 {
  display: flex;
  gap: 30px;
  padding: 30px;
  margin-top: 40px;
  border-radius: 15px;
  border-top: 5px solid #EB0029;
  border-right: 1px solid #EB0029;
  border-bottom: 1px solid #EB0029;
  border-left: 1px solid #EB0029;
  background: #fff;
  box-shadow: 0px 10px 30px 0px rgba(52, 55, 170, 0.15);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
@media (max-width: 991px) {
  .testimonial-card.style3 {
    flex-direction: column;
  }
}
.testimonial-card.style3 .testimonial-body {
  position: relative;
}
.testimonial-card.style3 .testimonial-body .quote {
  position: absolute;
  bottom: 0;
  right: -20px;
}
@media (max-width: 767px) {
  .testimonial-card.style3 .testimonial-body .quote {
    right: 0px;
  }
}
.testimonial-card.style3 .testimonial-body .icon {
  margin-bottom: 10px;
}
.testimonial-card.style3 .testimonial-body p {
  margin-bottom: 10px;
}
.testimonial-card.style3 .testimonial-body .fancy-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonial-card.style3 .testimonial-body .fancy-box .item2 h6 {
  color: #010F1C;
  font-family: "Epilogue", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.44px;
}

.testimonial-section {
  position: relative;
}
.testimonial-section .testi-shape {
  position: absolute;
  top: 0;
  left: 0;
}

/* 21.Chefe */

/* 22.History */

/* 23.Timer */

/* 24.Menu */

.food-menu-section {
  position: relative;
}
.food-menu-tab .tab-content {
  margin-top: 36px;
}
.food-menu-tab.style2 {
  padding: 0 120px;
}
@media (max-width: 1600px) {
  .food-menu-tab.style2 {
    padding: 0 70px;
  }
}
@media (max-width: 1199px) {
  .food-menu-tab.style2 {
    padding: 0 50px;
  }
}
@media (max-width: 767px) {
  .food-menu-tab.style2 {
    padding: 0 40px;
  }
}
.food-menu-tab.style2 .tab-content {
  margin-top: 0px;
}
.food-menu-tab.style2 .single-menu-items .details .menu-content {
  padding-bottom: 10px;
  border-bottom: 1px solid #D2D2D1;
}
.food-menu-tab.style2 .single-menu-items .details .menu-content h3 {
  color: #010F1C;
  font-family: "Epilogue", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.food-menu-tab.style2 .single-menu-items .details .menu-content h3.active {
  color: #FC791A !important;
}
.food-menu-tab.style2 .single-menu-items .details .menu-content p {
  color: #435168;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  max-width: 350px;
}

.single-menu-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .single-menu-items {
    margin-top: 25px;
  }
}
@media (max-width: 470px) {
  .single-menu-items {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.single-menu-items .details {
  display: flex;
  align-items: center;
  gap: 16px;
}
.single-menu-items .details .menu-content h3 {
  color: #010F1C;
  font-family: "Epilogue", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  text-transform: capitalize;
  margin-bottom: 0px;
  cursor: pointer;
}
.single-menu-items .details .menu-content h3.active {
  color: #EB0029 !important;
}
@media (max-width: 1399px) {
  .single-menu-items .details .menu-content h3 {
    font-size: 21px;
    line-height: 30px;
    margin-bottom: 0px;
  }
}
.single-menu-items .details .menu-content a h3 {
  color: #010F1C;
  font-family: "Epilogue", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  text-transform: capitalize;
  margin-bottom: 0px;
}
@media (max-width: 1399px) {
  .single-menu-items .details .menu-content a h3 {
    font-size: 21px;
    line-height: 30px;
    margin-bottom: 0px;
  }
}
.single-menu-items .details .menu-content p {
  color: #435168;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: -0.3em;
}
.single-menu-items h6 {
  color: #010F1C;
  text-align: right;
  font-family: "Epilogue", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.food-menu-tab-wrapper.style3 {
  position: relative;
  z-index: 1;
}
.food-menu-tab-wrapper.style3 .shape1 {
  position: absolute;
  top: 40px;
  left: 40px;
}
.food-menu-tab-wrapper.style3 .shape2 {
  position: absolute;
  top: 73px;
  right: 20px;
}
.food-menu-tab-wrapper.style3 .shape3 {
  position: absolute;
  bottom: 0px;
  right: 0px;
}

/* 25.Cta */

/* 26.Popular Dishes */
.popular-dishes-wrapper.style1 {
  position: relative;
}
.popular-dishes-wrapper.style1 .shape1 {
  position: absolute;
  bottom: -120px;
  left: 0;
  z-index: 1;
}
.popular-dishes-wrapper.style1 .shape2 {
  position: absolute;
  top: -50px;
  right: 0;
  z-index: 1;
}
.popular-dishes-wrapper.style4 {
  position: relative;
}
.popular-dishes-wrapper.style4 .shape1 {
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 1;
}

.dishes-card-wrap.style1 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
@media (max-width: 1399px) {
  .dishes-card-wrap.style1 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .dishes-card-wrap.style1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .dishes-card-wrap.style1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.dishes-card-wrap.style4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 1399px) {
  .dishes-card-wrap.style4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1199px) {
  .dishes-card-wrap.style4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .dishes-card-wrap.style4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.dishes-card.style1 {
  position: relative;
  padding: 25px;
  border-radius: 16px;
  margin-top: 30px;
  background: #fff;
  text-align: center;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.dishes-card.style1 .dishes-thumb {
  margin-bottom: 30px;
  margin-top: 20px;
}
.dishes-card.style1 h3 {
  color: #010F1C;
  font-family: "Epilogue", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 18px;
}
.dishes-card.style1 p {
  color: #435168;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 16px;
}
.dishes-card.style1 h6 {
  color: #EB0029;
  text-align: center;
  font-family: "Epilogue", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
}
.dishes-card.style1:hover {
  background-image: url(../../assets/img/bg/dishesThumbBG.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.dishes-card.style1:hover h3 {
  color: #fff;
}
.dishes-card.style1:hover p {
  color: #fff;
}
.dishes-card.style1:hover h6 {
  color: #fff;
}
.dishes-card.style5 {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, #FFF 63.33%);
  text-align: left;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .dishes-card.style5 {
    margin-bottom: 0;
  }
}
.dishes-card.style5 .dishes-thumb {
  position: relative;
  margin-bottom: -200px;
  margin-top: -165px;
  margin-left: -2px;
  border-radius: 20px 0px 20px 20px;
}
@media (max-width: 1199px) {
  .dishes-card.style5 .dishes-thumb {
    margin-bottom: 0px;
    margin-top: 0px;
    height: 100%;
  }
}
.dishes-card.style5 .dishes-thumb img {
  position: relative;
  z-index: 2;
  height: 100%;
  border-radius: 20px 0px 20px 20px;
}
.dishes-card.style5 .dishes-content {
  padding: 25px 15px;
}
@media (max-width: 1899px) {
  .dishes-card.style5 .dishes-content {
    padding: 25px 8px;
  }
}
@media (max-width: 1199px) {
  .dishes-card.style5 .dishes-content {
    padding: 15px 3px 15px 25px;
  }
}
@media (max-width: 991px) {
  .dishes-card.style5 .dishes-content {
    padding: 15px 3px 15px 7px;
  }
}
@media (max-width: 767px) {
  .dishes-card.style5 .dishes-content {
    padding: 15px 15px 15px 20px;
  }
}
.dishes-card.style5 .dishes-content a h3 {
  color: #010F1C;
  font-family: #010F1C;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 10px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.dishes-card.style5 .dishes-content a h3:hover {
  color: #EB0029;
}
.dishes-card.style5 .dishes-content .text {
  color: #435168;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-top: 0px;
  margin-bottom: 10px;
}
.dishes-card.style5 .dishes-content h6 {
  color: #EB0029;
  font-family: "Epilogue", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 24px;
}
.dishes-card.style5 .dishes-content .theme-btn.style6 {
  padding: 13px 15px;
}
@media (max-width: 767px) {
  .dishes-card.style5 {
    flex-direction: column;
    padding: 25px;
  }
  .dishes-card.style5 .dishes-thumb {
    width: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .dishes-card.style5 .dishes-thumb img {
    height: 300px;
    width: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .dishes-card.style5 .dishes-content {
    text-align: center;
    padding: 25px 15px 0;
  }
  .dishes-card.style5 .dishes-content a h3 {
    font-size: 25px;
  }
  .dishes-card.style5 .dishes-content .text {
    color: #435168;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-top: 0px;
    margin-bottom: 10px;
  }
  .dishes-card.style5 .dishes-content h6 {
    color: #EB0029;
    font-family: "Epilogue", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    text-transform: capitalize;
    margin-bottom: 24px;
  }
  .dishes-card.style5 .dishes-content .theme-btn.style6 {
    padding: 13px 15px;
  }
}

.dishes-thumb {
  position: relative;
  text-align: center;
}
.dishes-thumb img {
  position: relative;
  z-index: 2;
}
@media (max-width: 500px) {
  .dishes-thumb img {
    max-width: 100%;
  }
}

/* 27.About */
.about-wrapper.style3 {
  position: relative;
}
.about-wrapper.style3 .shape1 {
  position: absolute;
  bottom: 76px;
  left: 140px;
}
@media (max-width: 1399px) {
  .about-wrapper.style3 .shape1 {
    display: none;
  }
}
.about-wrapper.style3 .shape2 {
  position: absolute;
  top: 126px;
  right: 97px;
}
.about-wrapper.style3 .orange-shape {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 1199px) {
  .about-wrapper.style3 .orange-shape {
    display: none;
  }
}
.about-wrapper.style3 .about-thumb-img img {
  width: 100%;
}
.about-wrapper.style3 .about-content .fancy-box-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .about-wrapper.style3 .about-content .fancy-box-wrapper {
    flex-direction: column;
  }
}
.about-wrapper.style3 .about-content .fancy-box-wrapper .fancy-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 10px 30px 0;
  margin-right: 35px;
}

/* 28.Services */

/* 29.Offer */
.offer-card.style1 {
  padding: 0px 0px 18px 30px;
  display: flex;
  gap: 0px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  box-shadow: 2px 2px 3px #999;
}
.offer-card.style1 .offer-content h6 {
  color: #EB0029;
  font-family: "Epilogue", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 15px;
  margin-top: 63px;
}
.offer-card.style1 .offer-content h3 {
  color: #fff;
  font-family: "Epilogue", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.offer-card.style1 .offer-content p {
  color: #FC791A;
  font-family: "Epilogue", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 32px;
}
.offer-card.style1 .offer-thumb {
  position: relative;
}
.offer-card.style1 .offer-thumb .thumbImg {
  width: 276px;
  height: 260px;
  object-fit: contain;
}
@media (max-width: 1600px) {
  .offer-card.style1 .offer-thumb .thumbImg {
    width: 139px;
  }
}
@media (max-width: 991px) {
  .offer-card.style1 .offer-thumb .thumbImg {
    width: 276px;
  }
}
.offer-card.style1 .offer-thumb .shape {
  position: absolute;
  top: 0;
  left: -30px;
}
@media (max-width: 991px) {
  .offer-card.style1 {
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .offer-card.style1 {
    flex-direction: column-reverse;
  }
}

