@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"); :root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #eb0029;
  --theme2: #fc791a;
  --title: #010f1c;
  --dark: #222222;
  --text: #5c6574;
  --text2: #ababab;
  --bg: #02142a;
  --box-shadow: 0px 6px 30px 0px rgba(52, 55, 170, 0.15);
  --bg2: #f4f1ea;
  --border: #373737;
  --border-2: #d2d2d1;
  --border-3: #ffffff17;
  --title-font: "Epilogue", sans-serif;
  --body-font: "Roboto", sans-serif;
  --icon-font: "Font Awesome 6 Pro";
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: #ffffff;
  background-color: var(--white);
  padding: 0px;
  margin: 0px;
  overflow-x: hidden;
}

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

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

input:focus {
  color: var(--text);
  outline: none;
}

input::placeholder {
  color: var(--text);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--title-font);
  margin: 0px;
  padding: 0px;
  color: var(--title);
  text-transform: capitalize;
  transition: 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%;
}

h5 {
  font-size: 18px;
  font-weight: 700;
}

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

a {
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
  transition: 0.4s ease-in-out;
  outline: none !important;
}

a:hover {
  color: var(--theme) !important;
}

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

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

input.form-control, textarea.form-control {
  outline: none;
  box-shadow: none;
  background-color: rgb(248, 249, 250);
  padding: 15px 10px;
  font-size: 1rem;
  border-radius: 0px;
  border: none;
}

input.form-control:focus, textarea.form-control:focus {
  background-color: rgb(248, 249, 250);
  border-color: rgb(212, 220, 255);
  outline: none;
  box-shadow: none;
}

.theme-btn {
  display: inline-block;
  position: relative;
  padding: 13px 25px;
  background-color: var(--theme);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  z-index: 1;
  overflow: hidden;
  border: none;
  border-radius: 0px;
  transition: 0.3s ease-in-out;
  color: var(--white) !important;
}

.theme-btn i {
  padding: 4px;
  background-color: var(--white);
  color: var(--theme);
  transition: 0.4s;
}

.theme-btn::before {
  content: "";
  background-color: var(--theme2);
  width: 0px;
  height: 50%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.theme-btn::after {
  content: "";
  background-color: var(--theme2);
  width: 0px;
  height: 50%;
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: -1;
  transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.theme-btn i {
  margin-left: 10px;
}

.theme-btn:hover {
  background-color: var(--theme2);
  color: var(--white) !important;
}

.theme-btn:hover::before, .theme-btn:hover::after {
  width: 100%;
}

.theme-btn.style2 {
  padding: 20px 155px;
  border-radius: 12px;
}

.theme-btn.style2:hover {
  color: var(--title) !important;
}

@media (max-width: 767px) {
  .theme-btn.style2 {
      padding: 21px 80px;
  }
}

.theme-btn.style3 {
  padding: 13px 25px;
  background: var(--theme2);
  color: var(--title);
}

.theme-btn.style3::before {
  content: "";
  background-color: var(--title);
  width: 0px;
  height: 50%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.theme-btn.style3::after {
  content: "";
  background-color: var(--title);
  width: 0px;
  height: 50%;
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: -1;
  transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.theme-btn.style3:hover {
  background: var(--theme);
  color: var(--white) !important;
}

.theme-btn.style3:hover::before, .theme-btn.style3:hover::after {
  width: 100%;
}

.theme-btn.style4 {
  background-color: var(--theme);
  border: 1px solid var(--theme);
  border-radius: 0px;
  color: var(--white) !important;
}

.theme-btn.style4 i {
  padding: 4px;
  background-color: transparent;
  color: var(--white);
  transition: 0.4s;
}

.theme-btn.style4::before {
  content: "";
  background-color: var(--title);
}

.theme-btn.style4::after {
  content: "";
  background-color: var(--title);
}

.theme-btn.style4:hover {
  background-color: var(--title);
  border: 1px solid var(--theme);
  color: var(--white) !important;
}

.theme-btn.style5 {
  background-color: var(--theme2);
  border: 1px solid var(--theme2);
  border-radius: 0px;
  color: var(--white) !important;
}

.theme-btn.style5 i {
  background-color: transparent;
  color: var(--white);
}

.theme-btn.style5::before {
  content: "";
  background-color: var(--title);
}

.theme-btn.style5::after {
  content: "";
  background-color: var(--title);
}

.theme-btn.style5:hover {
  background-color: var(--title);
  border: 1px solid var(--theme);
  color: var(--white) !important;
}

.theme-btn.style6 {
  padding: 13px 40px;
  border-radius: 100px;
  background-color: rgba(235, 0, 41, 0.1);
  font-family: var(--title-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  border: none;
  color: var(--theme) !important;
}

.theme-btn.style6 i {
  background-color: transparent;
  color: var(--theme);
  margin-left: 5px;
  padding: 0px;
}

.theme-btn.style6::before {
  content: "";
  background-color: var(--theme);
}

.theme-btn.style6::after {
  content: "";
  background-color: var(--theme);
}

.theme-btn.style6:hover {
  background-color: var(--theme);
  border: none;
  color: var(--white) !important;
}

.theme-btn.style6:hover i {
  color: var(--white);
}

@media (max-width: 767px) {
  .theme-btn {
      padding: 20px 32px;
  }
}

@media (max-width: 575px) {
  .theme-btn {
      padding: 13px 25px;
      font-size: 14px;
  }
}

.arrow-btn {
  display: inline-block;
  position: absolute;
  top: 7px;
  right: -43px;
  width: 43px;
  height: 43px;
  line-height: 43px;
  text-align: center;
  background: var(--theme);
  color: var(--white);
  margin-top: -0.4em;
  border-radius: 50%;
  transition: 0.4s ease-in-out;
}

.arrow-btn:hover {
  background: var(--theme2);
  color: var(--title);
}

.arrow-btn.style2 {
  background: var(--theme2);
  color: var(--title);
}

.arrow-btn.style2:hover {
  background: var(--theme);
  color: var(--white);
}

.btn-wrapper {
  position: relative;
  max-width: 200px;
}

.btn-wrapper:hover .arrow-btn {
  background: var(--theme2);
  color: var(--title);
}

.btn-wrapper:hover .theme-btn {
  background-color: var(--theme2);
  color: var(--title);
}

.btn-wrapper:hover .arrow-btn.style2 {
  background: var(--title);
  color: var(--white);
}

.btn-wrapper:hover .theme-btn.style3 {
  background-color: var(--title);
  color: var(--white);
}

.link-btn {
  display: inline-block;
  color: var(--text);
  text-align: center;
  font-family: "DM Sans";
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.link-btn i {
  margin-left: 10px;
  transform: rotate(-40deg);
  transition: 0.4s ease-in-out;
}

.link-btn:hover {
  color: var(--theme2);
}

.link-btn:hover i {
  margin-left: 10px;
  transform: rotate(0deg);
}

@media (min-width: 1600px) {
  .gx-40 {
      --bs-gutter-x: 40px;
  }

  .gx-30 {
      --bs-gutter-x: 30px;
  }

  .gx-60 {
      --bs-gutter-x: 60px;
  }

  .gx-80 {
      --bs-gutter-x: 80px;
  }

  .gx-134 {
      --bs-gutter-x: 134px;
  }

  .gx-165 {
      --bs-gutter-x: 165px;
  }
}

.gx-0 {
  --bs-gutter-x: 0px;
}

.gy-20 {
  --bs-gutter-y: 20px;
}

@media (min-width: 1400px) {
  .header-section-2 .container, .header-2 .container {
      max-width: 1352px;
  }

  .banner-container .container {
      max-width: 1544px;
  }

  .banner-bottom .container-fluid {
      padding: 0px 160px !important;
  }

  .best-food-wrapper .container {
      max-width: 1084px;
  }

  .offer-wrapper .container {
      max-width: 1850px;
  }

  .about-wrapper.style1 .container {
      max-width: 1850px;
  }

  .timer-wrapper.style1 .container {
      max-width: 1850px;
  }

  .popular-dishes-wrapper-container .container {
      max-width: 1850px;
  }

  .food-menu-wrapper-container.style2 .container {
      max-width: 1820px;
  }

  .food-menu-wrapper.style2 .container {
      max-width: 1670px;
  }

  .food-menu-wrapper.style3 .container {
      max-width: 1570px;
  }

  .timer-wrap.style1 .container {
      max-width: 1360px;
  }

  .popular-dishes-wrapper.style1 .container {
      max-width: 1500px;
  }

  .popular-dishes-wrapper.style2 .container {
      max-width: 1500px;
  }

  .popular-dishes-wrapper.style4 .container {
      max-width: 1500px;
  }

  .cta-wrapper.style1 .container {
      max-width: 1360px;
  }

  .cta-wrapper.style2 .container {
      max-width: 1520px;
  }

  .cta-wrapper.style3 .container {
      max-width: 1450px;
  }

  .contact-wrapper.style1 .container {
      max-width: 1480px;
  }

  .contact-wrapper.style2 .container {
      max-width: 1300px;
  }

  .testimonial-wrapper.style2 .container {
      max-width: 1450px;
  }

  .shop-wrapper.style1 .container {
      max-width: 1620px;
  }

  .shop-details-wrapper.style1 .container {
      max-width: 1620px;
  }

  .shop-details-wrapper.style1 .shop-details .container {
      max-width: 1200px;
  }

  .contact-box-wrapper.style1 .container {
      max-width: 1420px;
  }

  .contact-form-wrapper.style2 .container {
      max-width: 1420px;
  }

  .modal-dialog {
      max-width: 1223px;
      height: 588px;
      margin-right: auto;
      margin-left: auto;
  }
}

@-webkit-keyframes rippleOne {
  70% {
      box-shadow: rgba(244, 68, 56, 0) 0px 0px 0px 40px;
  }

  100% {
      box-shadow: rgba(244, 68, 56, 0) 0px 0px 0px 0px;
  }
}

@keyframes rippleOne {
  70% {
      box-shadow: rgba(244, 68, 56, 0) 0px 0px 0px 40px;
  }

  100% {
      box-shadow: rgba(244, 68, 56, 0) 0px 0px 0px 0px;
  }
}

.ripple-effect {
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: var(--theme);
  border: 1px solid var(--white);
  border-radius: 50%;
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px;
  animation: 2s ease 0s infinite normal none running rippleOne;
}

.ripple-effect .playerImg {
  width: 28px;
  height: 25.972px;
}

@keyframes up-down {
  0% {
      transform: translateY(10px);
  }

  100% {
      transform: translateY(-10px);
  }
}

@-webkit-keyframes spinner {
  100% {
      transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  100% {
      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);
  }
}

@keyframes loaderspin {
  0% {
      transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
      transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes tpswing {
  0% {
      transform: rotate(20deg);
  }

  100% {
      transform: rotate(0deg);
  }
}

@keyframes width {
  0% {
      width: 0%;
  }

  100% {
      width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
      width: 0%;
  }

  100% {
      width: 100%;
  }
}

@-webkit-keyframes loaderspin {
  0% {
      transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
      transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loaderpulse {
  0% {
      transform: scale(1);
  }

  100% {
      transform: scale(1.2);
  }
}

@keyframes rounded {
  50% {
      transform: rotate(20deg);
  }
}

.cir36 {
  animation: 20s linear 0s infinite normal none running cir36;
}

@keyframes cir36 {
  100% {
      transform: rotate(360deg);
  }
}

.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
      transform: translateY(-30px);
  }

  50% {
      transform: translateY(-10px);
  }

  100% {
      transform: translateY(-30px);
  }
}

@keyframes float-bob-y {
  0% {
      transform: translateY(-30px);
  }

  50% {
      transform: translateY(-10px);
  }

  100% {
      transform: translateY(-30px);
  }
}

.float-bob-x {
  animation-name: float-bob-x;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
      transform: translateX(30px);
  }

  50% {
      transform: translateX(10px);
  }

  100% {
      transform: translateX(30px);
  }
}

@keyframes float-bob-x {
  0% {
      transform: translateX(30px);
  }

  50% {
      transform: translateX(10px);
  }

  100% {
      transform: translateX(30px);
  }
}

@keyframes bounce-x {
  0% {
      transform: translateX(0px);
  }

  50% {
      transform: translateX(30px);
  }

  100% {
      transform: translateX(0px);
  }
}

.bounce-x {
  animation: 7s linear 0s infinite normal none running bounce-x;
}

@keyframes criss-cross-left {
  0% {
      left: -20px;
  }

  50% {
      left: 50%;
      width: 20px;
      height: 20px;
  }

  100% {
      left: 50%;
      width: 375px;
      height: 375px;
  }
}

@keyframes criss-cross-right {
  0% {
      right: -20px;
  }

  50% {
      right: 50%;
      width: 20px;
      height: 20px;
  }

  100% {
      right: 50%;
      width: 375px;
      height: 375px;
  }
}

@keyframes rotated2 {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(-360deg);
  }
}

@keyframes wave {
  0% {
      transform: translateX(0px);
  }

  50% {
      transform: translateX(-25%);
  }

  100% {
      transform: translateX(-50%);
  }
}

@keyframes animate-positive {
  0% {
      width: 0px;
  }

  100% {
      width: var(--progress-width);
  }
}

.reveal {
  position: relative;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  display: inline-block;
  object-fit: cover;
  transform-origin: left center;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

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

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

@keyframes slideDown {
  0% {
      top: 370px;
  }

  100% {
      top: 0px;
  }
}

::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme2);
}

::-webkit-scrollbar-thumb {
  background: var(--theme2);
  border-radius: 5px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}

.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: rgba(56, 75, 255, 0.5) 0px 0px 0px 0px;
  animation: 3s ease 0s infinite normal none running rippleOne;
}

.ripple::before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.ripple::after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.mega-hover {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.mega-hover::after, .mega-hover::before {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 1;
  z-index: -1;
}

.mega-hover::before {
  inset: 0px 51% 0px 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mega-hover::after {
  inset: 50% 0px;
  background: rgba(245, 255, 255, 0.3);
}

.mega-hover:hover::before {
  left: 0px;
  right: 0px;
  opacity: 0;
  transition: 900ms linear;
}

.mega-hover:hover::after {
  top: 0px;
  bottom: 0px;
  opacity: 0;
  transition: 900ms linear;
}

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

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center center;
}

.bg-cover-2 {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center center;
  width: 100%;
  height: 100%;
}

.box-shadow {
  box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 40px 0px;
}

.pt-100 {
  padding-top: 100px;
}

@media (max-width: 991px) {
  .pt-100 {
      padding-top: 80px;
  }
}

.pt-110 {
  padding-top: 110px;
}

@media (max-width: 991px) {
  .pt-110 {
      padding-top: 80px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}

@media (max-width: 991px) {
  .pb-100 {
      padding-bottom: 80px;
  }
}

.pb-110 {
  padding-bottom: 110px;
}

@media (max-width: 991px) {
  .pb-110 {
      padding-bottom: 80px;
  }
}

.pb-30 {
  padding-bottom: 30px;
}

.pt-30 {
  padding-top: 30px;
}

.margin-top-10 {
  margin-top: -10px;
}

.margin-top-5 {
  margin-top: -5px;
}

.margin-top-60 {
  margin-top: -65px;
}

@media (max-width: 1399px) {
  .margin-top-60 {
      margin-top: -25px;
  }
}

@media (max-width: 1199px) {
  .margin-top-60 {
      margin-top: -27px;
  }
}

@media (max-width: 991px) {
  .margin-top-60 {
      margin-top: -75px;
  }
}

@media (max-width: 767px) {
  .margin-top-60 {
      margin-top: -65px;
  }
}

.margin-top-8 {
  margin-top: -10px;
}

.mt-n30 {
  margin-top: -30px !important;
}

.mt-n50 {
  margin-top: -50px !important;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mr-7 {
  margin-right: 7px;
}

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

.mt-30 {
  margin-top: 30px;
}

.mr-44 {
  margin-right: 44px;
}

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

@media (max-width: 767px) {
  .mb-40 {
      margin-bottom: 35px;
  }
}

@media (max-width: 575px) {
  .mb-40 {
      margin-bottom: 25px;
  }
}

.ml-50 {
  margin-left: 50px;
}

@media (max-width: 1199px) {
  .ml-50 {
      margin-left: 0px;
  }
}

.mt-10 {
  margin-top: 10px;
}

.mt-60 {
  margin-top: 55px;
}

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

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

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

.mb-n40 {
  margin-bottom: -40px;
}

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

.center {
  text-align: center;
  margin: 0px auto;
}

.bg-theme {
  background-color: var(--theme) !important;
}

.bg-theme2 {
  background-color: var(--theme2) !important;
}

.bg-orange {
  background-color: var(--theme2) !important;
}

.bg-color {
  background-color: var(--bg) !important;
}

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

.bg-color3 {
  background-color: rgb(24, 24, 24);
}

.dark-mood {
  background-color: rgb(24, 24, 24);
}

.bg-title {
  background-color: var(--title);
}

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

.text-dark2 {
  color: rgb(131, 131, 135) !important;
}

.text-color {
  color: var(--text);
}

.text-title {
  color: var(--title) !important;
}

.text-bg-color2 {
  color: var(--bg2) !important;
}

.text-theme-color {
  color: var(--theme) !important;
}

.text-theme-color2 {
  color: var(--theme2) !important;
}

.text-orange-color {
  color: var(--theme2) !important;
}

.border-right-none {
  border-right: 0px !important;
}

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

.bg-white {
  background-color: var(--white);
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0px;
}

.mean-container .mean-bar {
  padding: 0px;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0px;
  margin: 0px;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container .mean-nav > ul .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items {
      flex-wrap: wrap;
  }
}

.mean-container .mean-nav > ul .homemenu-items .homemenu {
  position: relative;
}

@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items .homemenu {
      max-width: 300px;
      text-align: center;
      margin: 0px auto;
      border: 1px solid var(--border);
      padding: 10px;
  }
}

.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}

.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease-in-out;
  margin-top: 20px;
}

.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 12px 20px;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0px;
  color: var(--white) !important;
}

.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}

.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb::before {
  background: linear-gradient(rgba(99, 92, 92, 0) 0%, rgb(37, 37, 39) 100%) center center / cover no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
  content: "";
}

.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}

.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0px;
}

.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}

.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}

.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: capitalize;
  border-top: none;
  border-right: none;
  border-left: none;
  border-image: initial;
  color: var(--title) !important;
  border-bottom: 1px solid var(--border) !important;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0px;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme2);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0px !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0px;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  transition: 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0px;
  border-top: 0px;
  margin-bottom: 20px;
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 9999999;
}

.preloader .animation-preloader {
  z-index: 1000;
}

.preloader .animation-preloader .spinner {
  animation: 1s linear 0s infinite normal none running spinner;
  border-radius: 50%;
  border-width: 3px;
  border-style: solid;
  border-right-color: rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  border-left-color: rgba(0, 0, 0, 0.2);
  border-image: initial;
  border-top-color: var(--theme);
  height: 9em;
  margin: 0px auto 3.5em;
  width: 9em;
}

@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
      width: 7.5em;
      height: 7.5em;
      margin: 0px auto 1.5em;
  }
}

.preloader .animation-preloader .txt-loading {
  font: bold 5em var(--title-font), var(--body-font);
  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: var(--theme);
  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: 4s ease 0s infinite normal none running letters-loading;
  color: var(--title);
  content: attr(data-text-preloader);
  left: 0px;
  opacity: 0;
  font-family: var(--title-font);
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}

.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme);
}

.preloader .loader {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  font-size: 0px;
  z-index: 1;
  pointer-events: none;
}

.preloader .loader .row {
  height: 100%;
}

.preloader .loader .loader-section {
  padding: 0px;
}

.preloader .loader .loader-section .bg {
  background-color: var(--bg);
  height: 100%;
  left: 0px;
  width: 100%;
  transition: 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.preloader.loaded .loader-section .bg {
  width: 0px;
  transition: 0.7s;
}

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

.back-to-top:hover {
  background-color: var(--title);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0px);
}

.section-title .sub-title {
  color: var(--theme2);
  font-family: Epilogue, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 60px;
  text-transform: uppercase;
}

.section-title .title {
  margin-bottom: 45px;
  color: var(--white);
  font-family: Epilogue, sans-serif;
  font-size: 96px;
  font-style: normal;
  font-weight: 900;
  line-height: 105px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .section-title .title {
      font-size: 65px;
      line-height: 80px;
  }
}

.section-title .text {
  color: var(--white);
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 35px;
}

@media (max-width: 767px) {
  .section-title {
      position: relative;
      padding: 110px 0px 90px;
      z-index: 9;
  }
}

@media (max-width: 767px) {
  .section-title {
      padding: 110px 0px;
  }
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}

@media (max-width: 991px) {
  .section-title-area {
      flex-wrap: wrap;
      gap: 30px;
  }
}

.title-area {
  position: relative;
  z-index: 5;
}

.title-area .sub-title {
  color: var(--theme2);
  font-family: var(--title-font);
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.title-area .title {
  color: var(--title);
  text-align: center;
  font-family: var(--title-font);
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 50px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.title-area .text {
  color: var(--text);
  text-align: center;
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 22px;
}

.fancy-box.style1 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.fancy-box.style1 .item .icon {
  padding: 30px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.fancy-box.style1 .item .icon i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  border-radius: 50%;
}

.fancy-box.style1 .item h5 {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  text-align: start;
}

.fancy-box.style1 .item p {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  margin-top: 10px;
}

.fancy-box.style2 {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 3;
}

.fancy-box.style2 .item img {
  margin-right: 15px;
  border-radius: 50%;
}

.fancy-box.style2 .item h4 {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-right: 30px;
}

.fancy-box.style2 .item span {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  margin-right: 5px;
}

.fancy-box.style2 .item i {
  padding: 12px 0px 12px 30px;
  text-align: center;
  color: var(--theme);
  border-left: 2px solid var(--border);
}

.fancy-box.style3 .item img {
  margin-bottom: 15px;
}

.fancy-box.style3 .item h6 {
  color: var(--title);
  font-family: var(--body-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 5px;
}

.fancy-box.style3 .item span {
  color: var(--title);
  font-family: var(--body-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
}

.fancy-box.style4 {
  display: flex;
  align-items: center;
  gap: 20px;
}

.fancy-box.style4 .item img {
  border-radius: 50%;
}

.fancy-box.style4 .item p {
  color: rgb(30, 32, 35);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

.fancy-box.style4 .item h6 {
  color: var(--title);
  font-family: var(--body-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.fancy-box.style5 {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.fancy-box.style5 .item .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: rgb(14, 19, 23);
  border-radius: 50%;
}

.fancy-box.style5 .item p {
  color: rgb(30, 32, 35);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

.fancy-box.style5 .item h6 {
  color: var(--title);
  font-family: var(--body-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

.fancy-box.style6 {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.fancy-box.style6 .item p {
  font-family: var(--body-font);
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
}

.fancy-box.style6 .item h6 {
  color: var(--white);
  font-family: var(--title-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.social-profile {
  position: absolute;
  right: 1rem;
  top: 1rem;
  max-height: 380px;
  content: "";
  transition: 0.4s ease-in-out;
  display: inline-block;
  z-index: 9;
}

.social-profile ul {
  max-width: 50px;
  margin: 0px auto;
  transition: 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  border-radius: 144px;
}

.social-profile ul li {
  margin-bottom: 8px;
  display: block;
  text-align: center;
}

.social-profile ul li:last-child {
  margin-bottom: 0px;
}

.social-profile ul li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 16px;
  display: inline-block;
  background: var(--white);
  color: var(--title);
  transition: 0.4s ease-in-out;
  border-radius: 50%;
}

.social-profile ul li a:hover {
  background: var(--theme);
  color: var(--white) !important;
}

.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: var(--theme);
  transition: 0.4s ease-in-out;
  border-radius: 50%;
  color: var(--white) !important;
}

.social-profile .plus-btn a {
  background-color: var(--theme);
  color: var(--white) !important;
}

.social-profile:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(10%);
}

.modal-details .title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgb(229, 229, 229);
}

.modal-details .title-box .title h3 {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  text-transform: capitalize;
}

.modal-details .title-box .price {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
}

.modal-details .desc p {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.star ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
}

.star ul li i {
  color: var(--theme2);
}

.progress-wrap {
  margin-bottom: 15px;
}

.progress-wrap .progress-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.progress-wrap .progress-meta .title {
  color: var(--theme);
  font-family: var(--title-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

.progress-wrap .progress-meta .percentage {
  color: var(--theme);
  font-family: var(--title-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

@media (max-width: 500px) {
  .progress-wrap .progress-meta {
      gap: 210px;
  }
}

@media (max-width: 470px) {
  .progress-wrap .progress-meta {
      gap: 150px;
  }
}

.progress-wrap .progress-container {
  position: relative;
  width: 100%;
  height: 5px;
  border-radius: 10px;
  overflow: visible;
  background-color: rgb(217, 221, 255) !important;
}

.progress-wrap .progress-container .progress-bar {
  height: 5px;
  background-color: var(--theme);
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  z-index: 1;
}

@media (max-width: 575px) {
  .progress-wrap .progress-container {
      width: 85%;
  }
}

.progress-wrap .progress-container::before, .progress-wrap .progress-container::after {
  position: absolute;
  top: -4px;
  content: "";
  width: 8px;
  height: 12px;
  background-color: var(--theme);
  z-index: 3;
  border-radius: 2px;
}

.progress-wrap .progress-container::before {
  left: 0px;
}

.progress-wrap .progress-container::after {
  right: 30%;
}

.progress-wrap .progress-container.style2::before, .progress-wrap .progress-container.style2::after {
  background-color: var(--theme2);
}

.arrow-button {
  position: absolute;
  z-index: 9;
}

.arrow-button .arrow-prev {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin-right: 8px;
  background-color: var(--white);
  color: var(--title);
  border: 1px solid var(--title);
  border-radius: 50%;
  transition: 0.4s ease-in-out;
}

.arrow-button .arrow-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--theme2);
  color: var(--title);
  border: 1px solid var(--theme2);
  border-radius: 50%;
  transition: 0.4s ease-in-out;
}

.arrow-button .arrow-next:hover, .arrow-button .arrow-prev:hover {
  background-color: var(--title);
  color: var(--white);
  border: 1px solid var(--title);
}

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

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--theme2);
  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-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--theme2);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme2);
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  transition: 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.comment-list .comment-item {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-2);
}

.comment-list .comment-item .post-comment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.comment-list .comment-item .post-comment .comment-content .name {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.comment-list .comment-item .post-comment .comment-content .commented-on {
  margin-bottom: 15px;
}

@media (max-width: 575px) {
  .comment-list .comment-item .post-comment .comment-content .commented-on {
      margin-bottom: -10px;
  }
}

.comment-list .comment-item .post-comment .comment-content .star {
  position: absolute;
  top: 15px;
  right: 15px;
}

@media (max-width: 575px) {
  .comment-list .comment-item .post-comment .comment-content .star {
      position: relative;
      margin: 0px 0px 25px 12px;
  }
}

@media (max-width: 575px) {
  .comment-list .comment-item .post-comment {
      display: flex;
      flex-direction: column;
  }
}

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

.star li {
  color: var(--theme);
}

.comment-form {
  margin-top: var(--blog-space-y, 50px);
  padding: 60px;
  position: relative;
  background: var(--bg2);
  border: 0px;
  border-radius: 10px;
}

.comment-form .inner-title {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
  line-height: 50px;
  text-transform: capitalize;
  margin-bottom: 25px;
}

.comment-form .rating {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 15px;
  margin-bottom: 35px;
}

@media (max-width: 575px) {
  .comment-form {
      padding: 30px;
  }
}

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

.form-group > i {
  display: inline-block;
  position: absolute;
  right: 25px;
  top: 18px;
  font-size: 16px;
  color: var(--text);
}

.form-group > i.fa-envelope {
  padding-top: 1px;
}

input[type="number"] {
}

input[type="checkbox"] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0px;
  height: 0px;
  border-radius: 10px;
}

input[type="checkbox"]:checked ~ label::after {
  opacity: 1;
}

input[type="checkbox"] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: block;
  line-height: 30px;
}

input[type="checkbox"] ~ label::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 3.5px;
  background: var(--white);
  border: 1px solid var(--border-2);
  height: 20px;
  width: 20px;
  text-align: center;
  z-index: 9;
}

input[type="checkbox"] ~ label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  background: var(--theme);
  height: 8px;
  width: 8px;
  opacity: 0;
  transition: 0.4s;
  z-index: 9;
}

input[type="checkbox"].style2 ~ label {
  color: rgb(139, 146, 156);
  padding-left: 23px;
  margin-bottom: -0.5em;
}

input[type="checkbox"].style2 ~ label::before {
  background-color: white;
  border: 1px solid rgb(247, 204, 215);
  height: 14px;
  width: 14px;
  line-height: 14px;
  border-radius: 3px;
  top: 6px;
}

input[type="checkbox"].style2:checked ~ label::before {
  color: var(--theme);
}

input[type="radio"] {
  visibility: hidden;
  opacity: 0;
  vertical-align: middle;
  width: 0px;
  height: 0px;
  display: none;
}

input[type="radio"] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  line-height: 1;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0px;
}

input[type="radio"] ~ label::before {
  content: "";
  position: absolute;
  font-family: var(--icon-font);
  left: 0px;
  top: -2px;
  width: 20px;
  height: 20px;
  padding-left: 0px;
  font-size: 0.6em;
  line-height: 19px;
  text-align: center;
  border: 1px solid var(--theme);
  border-radius: 100%;
  font-weight: 700;
  background: var(--white);
  color: transparent;
  transition: 0.2s;
}

input[type="radio"]:checked ~ label::before {
  border-color: var(--theme);
  background-color: var(--theme);
  color: var(--white);
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999999;
  background-color: rgba(255, 255, 255, 0.9);
}

.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: 0.3s ease 0s 1 normal none running slideInUp;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
      width: 70%;
  }
}

@media (max-width: 575px) {
  .search-wrap .search-field-holder {
      width: 80%;
  }
}

.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border-top: 0px;
  border-right: 0px;
  border-left: 0px;
  border-image: initial;
  padding: 0px 50px;
  text-transform: capitalize;
  background: transparent;
  font-size: 25px;
  color: var(--theme);
  border-bottom: 2px solid var(--theme);
  text-align: center;
  letter-spacing: 2px;
}

@media (max-width: 575px) {
  .search-wrap .main-search-input {
      height: 50px;
      padding: 0px;
      line-height: 50px;
      font-size: 18px;
  }
}

.search-wrap input.form-control, .search-wrap input.form-control:focus {
  background-color: var(--theme);
}

input.main-search-input::placeholder {
  color: var(--theme);
  opacity: 1;
  font-size: 25px;
}

@media (max-width: 575px) {
  input.main-search-input::placeholder {
      font-size: 18px;
  }
}

.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: var(--theme);
  cursor: pointer;
}

.section-padding {
  padding: 120px 0px;
}

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

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

.section-padding1 {
  padding: 200px 0px 110px;
}

@media (max-width: 1199px) {
  .section-padding1 {
      padding: 180px 0px 90px;
  }
}

@media (max-width: 991px) {
  .section-padding1 {
      padding: 170px 0px 80px;
  }
}

.section-padding2 {
  padding: 110px 0px 270px;
}

@media (max-width: 1199px) {
  .section-padding2 {
      padding: 90px 0px 240px;
  }
}

@media (max-width: 991px) {
  .section-padding2 {
      padding: 80px 0px 230px;
  }
}

@media (max-width: 767px) {
  .section-padding2 {
      padding: 80px 0px 190px;
  }
}

.background-image, [data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.mask-content {
  mask-repeat: no-repeat;
  mask-size: cover;
  mask-position: center center;
  width: 100%;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2050;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(118, 118, 118, 0.5);
}

.modal .modal-content {
  position: relative;
  margin-top: 20px;
}

.modal .modal-content .modal-header .btn-close {
  position: absolute;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 15px;
  opacity: 1;
  text-align: center;
  background-color: var(--title);
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  color: var(--white);
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}

.dark-mood h2 {
  color: var(--white) !important;
}

.dark-mood .about-wrapper.style1 .about-us {
  background: var(--dark);
}

.dark-mood .single-food-items {
  background: linear-gradient(rgba(72, 67, 67, 0.3) 0%, rgb(34, 34, 34) 63.33%);
}

.dark-mood .single-food-items .item-content h3 {
  color: var(--white);
}

.dark-mood .dishes-card.style1 {
  background: var(--dark);
}

.dark-mood .dishes-card.style1 h3 {
  color: var(--white);
}

.dark-mood .food-menu-tab .nav-pills .nav-link {
  color: var(--white);
}

.dark-mood .single-menu-items .details .menu-content a h3 {
  color: var(--white);
}

.dark-mood .single-menu-items h6 {
  color: var(--white);
}

.dark-mood .chefe-card.style1 {
  background: var(--dark);
}

.dark-mood .chefe-card.style1 .chefe-content a h3 {
  color: var(--white);
}

.dark-mood .blog-card.style1 {
  background: var(--dark);
}

.dark-mood .blog-card.style1 .blog-content a h3 {
  color: var(--white);
}

.dark-mood .dishes-card.style1 p {
  color: var(--text2);
}

.dark-mood .single-food-items .item-content .text {
  color: var(--text2);
}

.dark-mood .title-area .text {
  color: var(--text2);
}

.dark-mood .single-menu-items .details .menu-content p {
  color: var(--text2);
}

.dark-mood .chefe-card.style1 .chefe-content p {
  color: var(--text2);
}

.dark-mood .blog-card.style1 .blog-content .blog-meta .item2 .icon span {
  color: var(--text2);
}

.dark-mood .blog-card.style1 .blog-content .blog-meta .item3 .icon span {
  color: var(--text2);
}

.dark-mood .link-btn {
  color: var(--text2);
}

.dark-mood .blog-card.style1 .blog-content a span {
  color: var(--text2);
}

.dark-mood .food-menu-tab .nav-pills {
  border-bottom: 1px solid var(--border-3);
}

.dark-mood .food-menu-tab .nav-pills .nav-link {
  border-right: 1px dashed var(--border-3);
}

.dark-mood .about-wrapper.style2 .about-us .fancy-box-wrapper .fancy-box .item h6 {
  color: var(--white);
}

.dark-mood .dishes-card.style2 {
  background: var(--dark);
}

.dark-mood .dishes-card.style2 .dishes-content h3 {
  color: var(--white);
}

.dark-mood .popular-dishes-wrapper.style2 {
  background: var(--dark);
}

.dark-mood .dishes-card.style3 .dishes-content a h3 {
  color: var(--white);
}

.dark-mood .chefe-card.style2 .chefe-content {
  background: var(--dark);
}

.dark-mood .chefe-card.style2 .chefe-content a h3 {
  color: var(--white);
}

.dark-mood .food-menu-wrapper.style2 {
  background: var(--dark);
}

.dark-mood .food-menu-tab-wrapper.style2 {
  background: var(--dark);
}

.dark-mood .single-menu-items .details .menu-content h3 {
  color: var(--white);
}

.dark-mood .testimonial-wrap.style2 .testimonialSliderTwo .btn-wrap .arrow-next, .dark-mood .testimonial-wrap.style2 .testimonialSliderTwo .btn-wrap .arrow-prev {
  color: var(--white);
}

.dark-mood .about-wrapper.style2 .about-us .fancy-box-wrapper .fancy-box .item p {
  color: var(--text2);
}

.dark-mood .about-wrapper.style2 .about-us .title-area .text {
  border-bottom: 1px solid var(--border-3);
}

.dark-mood .about-wrapper.style2 .about-us .fancy-box-wrapper .fancy-box {
  border-right: 1px solid var(--border-3);
}

.dark-mood .about-wrapper.style2 .about-us .fancy-box-wrapper {
  border-bottom: 1px solid var(--border-3);
}

.dark-mood .dishes-card.style2 .dishes-content .text {
  color: var(--text2);
}

.dark-mood .chefe-card.style2 .chefe-content p {
  color: var(--text2);
}

.dark-mood .dishes-card.style3 .dishes-content p {
  color: var(--text2);
}

.dark-mood .testimonial-card.style2 p {
  color: var(--text2);
}

.dark-mood .about-wrapper.style3 .about-content .fancy-box-wrapper .fancy-box .item h6 {
  color: var(--white);
}

.dark-mood .fancy-box.style4 .item p {
  color: var(--white);
}

.dark-mood .fancy-box.style4 .item h6 {
  color: var(--white);
}

.dark-mood .food-menu-tab.style2 .nav-pills .nav-link {
  color: var(--white);
}

.dark-mood .food-menu-tab.style2 .single-menu-items .details .menu-content h3 {
  color: var(--white);
}

.dark-mood .food-menu-tab.style2 .single-menu-items .details .menu-content p {
  color: var(--text2);
}

.dark-mood .food-menu-tab.style2 .single-menu-items .details .menu-content {
  border-bottom: 1px solid var(--border-3);
}

.dark-mood .testimonial-card.style3 {
  background: var(--title);
}

.dark-mood .testimonial-card.style3 .testimonial-body p {
  color: var(--text2);
}

.dark-mood .testimonial-card.style3 .testimonial-body .fancy-box .item2 h6 {
  color: var(--white);
}

.dark-mood .testimonial-card.style3 .testimonial-body .fancy-box .item2 p {
  color: var(--text2);
}

.dark-mood .fancy-box.style5 .item h6 {
  color: var(--white);
}

.dark-mood .fancy-box.style5 .item p {
  color: var(--text2);
}

.dark-mood .dishes-card.style5 {
  background: var(--dark);
}

.dark-mood .dishes-card.style5 .dishes-content a h3 {
  color: var(--white);
}

.dark-mood .dishes-card.style5 .dishes-content .text {
  color: var(--text2);
}

.dark-mood .faq-content-3 .accordion-item .accordion-header .accordion-button {
  color: var(--white);
}

.dark-mood .faq-content-3 .accordion-item .accordion-collapse .accordion-body {
  color: var(--text2);
}

.dark-mood .faq-wrapper-4 .clock-wrapper-area {
  background: var(--dark);
}

.dark-mood .faq-wrapper-4 .clock-wrapper-area h3 {
  color: var(--white);
}

@font-face {
  font-family: "Glyphicons Halflings";
  src: url("../fonts/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/glyphicons-halflings-regular.ttf") format("truetype");
}

.cbp-spmenu {
  background: rgb(223, 223, 223);
  position: fixed;
}

.cbp-spmenu h3 {
  color: rgb(255, 255, 255);
  font-size: 1.9em;
  padding: 20px;
  margin: 0px;
  font-weight: 300;
  background: rgb(0, 0, 0);
}

.cbp-spmenu a {
  display: block;
  color: rgb(255, 255, 255);
  font-size: 1.1em;
  font-weight: 300;
}

.cbp-spmenu a:hover {
  background: rgb(255 255 255);
}

.cbp-spmenu a:active {
  background: rgb(51, 51, 51);
  color: rgb(255, 255, 255);
}

.cbp-spmenu-vertical {
  width: 240px;
  height: 100%;
  top: 0px;
  z-index: 1000;
}

.cbp-spmenu-vertical a {
  border-bottom: 1px solid rgb(204, 204, 204);
  padding: 1em;
}

.cbp-spmenu-horizontal {
  width: 100%;
  height: 150px;
  left: 0px;
  z-index: 1000;
  overflow: hidden;
}

.cbp-spmenu-horizontal h3 {
  height: 100%;
  width: 20%;
  float: left;
}

.cbp-spmenu-horizontal a {
  float: left;
  width: 20%;
  padding: 0.8em;
  border-left: 1px solid rgb(37, 142, 205);
}

.cbp-spmenu-left {
  left: -240px;
}

.cbp-spmenu-right {
  right: -240px;
}

.cbp-spmenu-left.cbp-spmenu-open {
  left: 0px;
}

.cbp-spmenu-right.cbp-spmenu-open {
  right: 0px;
}

.cbp-spmenu-top {
  top: -150px;
}

.cbp-spmenu-bottom {
  bottom: -150px;
}

.cbp-spmenu-top.cbp-spmenu-open {
  top: 0px;
}

.cbp-spmenu-bottom.cbp-spmenu-open {
  bottom: 0px;
}

.cbp-spmenu-push {
  overflow-x: hidden;
  position: relative;
  left: 0px;
}

.cbp-spmenu-push-toright {
  left: 240px;
}

.cbp-spmenu-push-toleft {
  left: -240px;
}

.cbp-spmenu, .cbp-spmenu-push {
  transition: 0.3s;
}

@media screen and (max-width: 55.1875em) {
  .cbp-spmenu-horizontal {
      font-size: 75%;
      height: 110px;
  }

  .cbp-spmenu-top {
      top: -110px;
  }

  .cbp-spmenu-bottom {
      bottom: -110px;
  }
}

@media screen and (max-height: 26.375em) {
  .cbp-spmenu-vertical {
      font-size: 90%;
      width: 190px;
  }

  .cbp-spmenu-left, .cbp-spmenu-push-toleft {
      left: -190px;
  }

  .cbp-spmenu-right {
      right: -190px;
  }

  .cbp-spmenu-push-toright {
      left: 190px;
  }
}

#showLeftPush {
  display: block;
  height: 30px;
  position: absolute;
  left: 8px;
  top: 18px;
  width: 40px;
  z-index: 2;
  background: 0px 0px;
  border: 0px;
  cursor: pointer;
}

#showLeftPush span, #showLeftPush::after, #showLeftPush::before {
  background: rgb(0, 0, 0);
  content: "";
  display: block;
  height: 4px;
  left: 7px;
  position: absolute;
  width: 30px;
}

#showLeftPush::before {
  top: 8px;
}

#showLeftPush::after {
  top: 24px;
}

#showLeftPush span {
  top: 16px;
}

#showLeftPush.active::before {
  transform: rotate(45deg);
}

#showLeftPush.active::after, #showLeftPush.active::before {
  top: 10px;
}

#showLeftPush.active::after {
  transform: rotate(-45deg);
}

#showLeftPush.active span {
  opacity: 0;
}

.navbar {
  display: none;
}

#ommenu a, #ommenu li, #ommenu span, #ommenu ul {
  margin: 0px;
  padding: 0px;
  position: relative;
}

#ommenu {
  width: auto;
}

#ommenu a {
  color: rgb(255, 255, 255);
  font-weight: 700;
  font-size: 18px;
  position: relative;
  line-height: 32px;
  border-bottom: 2px solid rgb(204, 204, 204);
  display: block;
  padding: 10px;
}

#ommenu ul {
  list-style: none;
}

#ommenu > ul > li {
  display: block;
  margin: 0px;
}

#ommenu.align-center {
  text-align: center;
}

#ommenu.align-center > ul > li {
  float: none;
}

#ommenu.align-center ul ul {
  text-align: left;
}

#ommenu.align-right > ul {
  float: right;
}

#ommenu.align-right ul ul {
  text-align: right;
}

#ommenu > ul > li > a {
  color: rgb(255, 255, 255);
  font-size: 15px;
}

a.nav-link {
}

#ommenu .has-sub:hover > ul {
  display: block;
  z-index: 20;
}

#ommenu .has-sub ul {
  display: none;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0px;
  background: rgb(34, 34, 34);
}

#ommenu .has-sub ul li a {
  background: rgb(255, 255, 255);
  border-bottom: 2px solid rgb(8, 8, 8);
  font-size: 15px;
  display: block;
  line-height: 120%;
  padding: 12px;
  color: rgb(0, 0, 0);
}

#ommenu .has-sub ul li:hover a {
  background: rgb(34, 34, 34);
  color: rgb(255, 255, 255);
}

#ommenu ul ul li:hover > a {
  color: rgb(0, 0, 0);
}

#ommenu .has-sub .has-sub:hover > ul {
  display: block;
}

#ommenu .has-sub .has-sub ul {
  display: none;
  position: absolute;
  left: 100%;
  top: 0px;
}

#ommenu .has-sub .has-sub ul li a {
  background: rgb(12, 127, 176);
  border-bottom: 1px dotted rgb(49, 183, 241);
}

#ommenu .has-sub .has-sub ul li a:hover {
  background: rgb(10, 109, 152);
}

body.cbp-spmenu-push-toleft {
  left: 240px;
}

@media screen and (min-width: 768px) {
  #showLeftPush {
      display: none;
  }

  .navbar {
      display: block;
  }

  .navbar-inverse {
      background: 0px 0px;
      margin-top: 9px;
      margin-bottom: 0px;
      border: 0px;
      z-index: 1;
      min-height: auto;
      text-transform: none;
      border-radius: 0px;
  }

  #ommenu a {
      border-bottom: none;
      padding: 0px 10px;
      font-weight: 400;
      line-height: 102px;
  }

  #ommenu ul {
      display: table;
      margin: 0px auto;
  }

  #ommenu ul ul {
      display: block;
  }

  #ommenu .has-sub ul li a {
      background: rgb(0, 0, 0);
      color: rgb(255, 255, 255);
      border-bottom-color: rgb(34, 34, 34);
  }

  #ommenu > ul > li > a {
      color: rgb(0, 0, 0);
      font-size: 18px;
      font-weight: 700;
      position: relative;
  }

  #ommenu ul::after, #ommenu::after {
      content: "";
      display: block;
      clear: both;
  }

  #ommenu > ul > li:hover::after {
      content: "";
      display: block;
      width: 0px;
      height: 0px;
      position: absolute;
      left: 50%;
      bottom: 0px;
  }

  #ommenu > ul > li:first-child > a {
      border-radius: 5px 0px 0px;
  }

  #ommenu.align-center > ul > li:first-child > a, #ommenu.align-right > ul > li:first-child > a {
      border-radius: 0px;
  }

  #ommenu.align-right > ul > li:last-child > a {
      border-radius: 0px 5px 0px 0px;
  }

  #ommenu > ul > li.active > a {
      color: rgb(104, 128, 5);
      border-bottom-color: rgb(104, 128, 5);
      border-radius: 0px;
  }

  #ommenu > ul > li:hover > a {
      color: rgb(38, 72, 150);
      border-bottom-color: rgb(38, 72, 150);
      border-radius: 0px;
  }

  #ommenu .has-sub {
      z-index: 10;
  }

  #ommenu.align-right .has-sub ul {
      left: auto;
      right: 0px;
  }

  #ommenu .has-sub ul li {
      background: rgb(34, 34, 34);
  }

  #ommenu.align-right .has-sub .has-sub ul, #ommenu.align-right ul ul ul {
      left: auto;
      right: 100%;
  }

  #ommenu .has-sub ul li.last > a, #ommenu .has-sub ul li:last-child > a, #ommenu ul ul li.last > a, #ommenu ul ul li:last-child > a, #ommenu ul ul ul li.last > a, #ommenu ul ul ul li:last-child > a {
      border-bottom: 0px;
  }

  #ommenu > ul > li {
      display: inline-block;
      float: left;
      margin: 0px;
  }

  #ommenu .has-sub ul {
      width: 250px;
  }
}

@media screen and (min-width: 992px) {
  #ommenu > ul > li > a {
      font-size: 16px;
  }

  #ommenu .has-sub ul li a {
      font-size: 14px;
  }

  #ommenu a {
      padding-left: 20px;
      padding-right: 20px;
  }
}

@media screen and (min-width: 992px) {
  #ommenu > ul > li > a {
      font-size: 20px;
  }
}

.button, .om-btn-wrapper a, .view-menu-btn {
  background: rgb(246, 2, 7);
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  border: none;
  margin: 15px auto 0px;
  padding: 10px 15px;
  position: relative;
  text-align: center;
  transition: 0.2s ease-in-out;
  min-width: 160px;
  text-decoration: none;
  color: rgb(255, 255, 255) !important;
}

.button:hover, .om-btn-wrapper a:hover, .view-menu-btn:hover {
  background: rgb(255, 131, 67);
  color: rgb(255, 255, 255) !important;
}

.button.red-btn, .om-btn-wrapper a.red-btn, .view-menu-btn.red-btn {
  background: rgb(104, 128, 5);
  font-weight: 700;
  color: rgb(255, 255, 255) !important;
}

.button.red-btn:hover, .om-btn-wrapper a.red-btn:hover, .view-menu-btn.red-btn:hover {
  background: rgb(64, 79, 3);
}

.button a, .om-btn-wrapper a a, .view-menu-btn a {
  color: rgb(255, 255, 255);
}

.button a:hover, .om-btn-wrapper a a:hover, .view-menu-btn a:hover {
  color: rgb(0, 0, 0);
}

.button.book-btn, .om-btn-wrapper a.book-btn, .view-menu-btn.book-btn {
  width: 50%;
}

.order-online a {
  background: rgb(255, 0, 0);
  display: block;
  font-size: 16px;
  border: none;
  margin: 15px auto 0px;
  padding: 8px 15px;
  position: relative;
  text-align: center;
  transition: 0.2s ease-in-out;
  min-width: 160px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
}

.order-online a:hover {
  background: rgb(84, 103, 4);
  color: rgb(255, 255, 255) !important;
}

#header {
  background: rgb(228, 219, 208);
  width: 100%;
  padding: 14px;
}

#header .container {
  position: relative;
  color: rgb(255, 255, 255);
  padding: 0px;
}

#header .container #logo {
  margin: 0px auto;
  width: 120px;
}

#header .container #logo a {
  display: block;
}

#header .container .order-online ul {
  padding: 0px;
  margin: 0px;
}

#header .container .order-online ul li {
  display: block;
}

#header .left-nav, #header .right-nav, .header-top .address, .header-top .oo-top {
  display: none;
}

@media screen and (min-width: 700px) {
  #header, #header .container {
      padding: 0px;
  }

  #header .container #logo {
      width: 140px;
      float: left;
      margin: 0px;
      padding: 14px 0px 14px 14px;
  }

  #header .container #logo a {
      padding: 0px;
  }

  #header .container .navbar {
      float: right;
      padding: 0px;
      margin-top: 0px;
      margin-right: 175px;
  }

  #header .container .navbar .navbar-collapse {
      display: block;
  }

  #header .container .order-online {
      right: 0px;
      top: 15px;
      position: absolute;
      margin: 0px;
      padding: 0px;
  }

  #header .left-nav, #header .right-nav {
      display: block;
  }

  #header .left-nav .nav ul, #header .right-nav .nav ul {
      list-style: none;
      margin: 0px;
      padding: 0px;
  }

  #header .left-nav .nav ul li, #header .right-nav .nav ul li {
      display: inline-block;
  }

  #header .left-nav .nav ul li a, #header .right-nav .nav ul li a {
      display: block;
      padding: 0px 10px;
      font-size: 15px;
      font-weight: 700;
      line-height: 50px;
      color: rgb(0, 0, 0);
  }

  #header .left-nav .nav ul li a:hover, #header .right-nav .nav ul li a:hover {
      color: rgb(237, 28, 36);
  }

  #header .left-nav {
      float: left;
      margin-left: 70px;
  }

  #header .right-nav {
      float: right;
  }

  .contact-wrapper {
      padding-right: 80px;
  }
}

@media screen and (min-width: 768px) {
  .m-visible {
      display: none !important;
  }

  .d-visible {
      display: block !important;
  }

  #header .container .navbar-collapse {
      padding: 0px;
  }
}

@media screen and (min-width: 980px) {
  #header .container #logo {
      width: 158px;
      padding: 5px 0px 0px;
  }

  #header .container .top-right .order-online {
      right: 80px;
      top: 52px;
  }

  #header .container .navbar {
      margin-right: 265px;
      margin-top: 25px;
  }

  section.about-us {
      padding: 40px;
      text-align: center;
  }

  .menu-wrapper h2 {
      font-size: 32px;
  }

  .menu-wrapper h3 {
      font-size: 30px;
  }

  .menu-wrapper p {
      font-size: 20px;
  }

  .menu-wrapper p.m-heading {
      font-size: 28px;
  }
}

@media screen and (min-width: 992px) {
  .h1, h1 {
      font-size: 32px;
  }

  .h2, h2 {
      font-size: 28px;
  }

  #header {
      position: static;
  }

  #header .container, #header .container .navbar-inverse .navbar-collapse.collapse {
      padding: 0px;
  }

  .main-container h1 {
      margin-bottom: 65px;
  }
}

@media screen and (min-width: 1180px) {
  #header .container .top-right .social-icon-list {
      margin-left: 50px;
  }

  .menu-items .menu-item {
      margin-bottom: 0px;
  }

  .header-top .oo-top {
      top: 12px;
  }

  .header-top .oo-top a {
      font-size: 23px;
      padding-left: 10px;
      padding-right: 10px;
  }

  .main-container {
      padding: 40px;
  }
}

@media screen and (min-width: 1200px) {
  .menu-items .menu-item .desc {
      min-height: 130px;
  }

  .container {
      max-width: 1080px;
  }
}

#header .container::after, .header-right-bottom::after, .header-right-top::after, .menu-items::after, .order-online-btns ul::after, .social-icon-list ul::after {
  clear: both;
  content: ".";
  display: block;
  height: 0px;
  line-height: 0;
  visibility: hidden;
}

#header {
  padding-top: 0px;
}

#header .container #logo {
  width: 245px;
  margin: 0px auto 10px;
  padding: 15px 0px 0px;
  text-align: center;
}

#header .container #logo h1 {
  font-size: 20px;
  line-height: 50px;
  font-weight: bold;
  color: rgb(3, 62, 75);
}

a, .home-text h1, .box-section h2, h2 {
  color: rgb(3, 62, 75);
}

#showLeftPush span, #showLeftPush::after, #showLeftPush::before {
  background: rgb(255, 0, 0);
}

#ommenu > ul > li > a {
  color: rgb(0, 0, 0);
}

#ommenu > ul > li:hover > a {
  color: rgb(255, 255, 255);
}

@media screen and (min-width: 768px) {
  #ommenu > ul > li.active > a, #ommenu > ul > li:hover > a:hover {
      color: rgb(255, 0, 0);
  }

  #ommenu > ul > li > a {
      color: rgb(0, 0, 0);
      text-transform: uppercase;
  }

  #header {
  }

  .menu-category .menu-category-wrapper {
      max-width: 1480px;
      margin: 0px auto;
      background: rgb(255, 255, 255);
  }

  .menu-category .menu-category-wrapper .menu-items-wrapper {
      display: flex;
      margin: 0px -15px;
  }

  .menu-category .menu-category-wrapper .menu-item {
      flex: 1 1 0%;
      padding: 0px 15px;
  }

  .menu-category .menu-category-wrapper .menu-title {
      top: auto;
      bottom: -25px;
  }

  #header .container #logo {
      margin: 0px auto;
      width: 105px;
      z-index: 50;
  }

  #ommenu a {
      line-height: 60px;
  }

  #header .container .navbar {
      margin-top: 16px;
  }

  #header .container .order-online {
      top: 5px;
  }
}

@media screen and (min-width: 980px) {
  #header .container {
      display: flex;
      align-items: center;
  }

  #header .container .navbar {
      margin-top: 0px;
  }

  .order-online a {
      margin-top: 0px;
  }

  #header .container .top-right {
      flex: 1 1 0%;
  }

  #header .container #logo {
      padding-top: 0px;
  }

  #header .container .top-right .order-online {
      top: 9px;
  }
}

@media screen and (min-width: 1200px) {
  #header {
      padding: 10px;
      background: rgb(228, 219, 208);
  }

  #header .container #logo {
      width: 180px;
  }

  #header .container .top-right .order-online {
      top: 30px;
  }
}

@media screen and (min-width: 1500px) {
  .container {
      max-width: 1280px;
  }
}

.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 9;
  padding-top: 190px;
  padding-bottom: 50px;
}

@media (max-width: 1199px) {
  .breadcrumb-wrapper {
      padding-top: 80px;
  }
}

@media (max-width: 991px) {
  .breadcrumb-wrapper {
      padding-top: 160px;
      padding-bottom: 0px;
  }
}

.breadcrumb-wrapper::before {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  opacity: 0.85;
  background: var(--title);
}

.breadcrumb-wrapper .shape-image {
  position: absolute;
  right: 0px;
  bottom: 10%;
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .shape-image {
      display: none;
  }
}

.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
  font-size: 74px;
  position: relative;
  z-index: 9;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h1 {
      font-size: 60px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
      font-size: 42px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
      margin-top: 15px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: var(--theme);
  text-transform: capitalize;
  font-weight: 500;
  font-size: 18px;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--white);
  transition: 0.4s ease-in-out;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: var(--white);
  opacity: 0.8;
}

.breadcrumb-wrapper .breadcrumb-wrapper-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .breadcrumb-wrapper-items {
      flex-wrap: wrap;
  }
}

.breadcrumb-wrapper .breadcrumb-wrapper-items .breadcrumb-image {
  position: relative;
  height: 380px;
  margin-bottom: -50px;
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .breadcrumb-wrapper-items .breadcrumb-image {
      margin-bottom: 0px;
  }

  .breadcrumb-wrapper .breadcrumb-wrapper-items .breadcrumb-image img {
      width: 100%;
      height: 100%;
  }
}

.breadcrumb-wrapper .breadcrumb-wrapper-items .breadcrumb-image .bar-shape {
  position: absolute;
  top: -60px;
  bottom: 0px;
  left: -27%;
  z-index: -1;
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .breadcrumb-wrapper-items .breadcrumb-image .bar-shape {
      display: none;
  }
}

.breadcrumb-wrapper .breadcrumb-wrapper-items .breadcrumb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.error-items {
  text-align: center;
}

.error-items .error-image {
  max-width: 896px;
  margin: 0px auto 50px;
  text-align: center;
}

.error-items .error-image img {
  width: 100%;
  height: 100%;
}

.error-items h2 {
  margin-bottom: 15px;
  font-size: 60px;
  font-weight: 600;
}

.error-items h2 b {
  color: var(--theme);
  font-weight: 400;
}

.error-items p {
  font-size: 18px;
  margin-bottom: 30px;
}

.footer-top {
  padding: 50px;
  background: var(--theme2);
  margin-bottom: 40px;
  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: var(--white);
  color: var(--theme2);
  border-radius: 50%;
}

.footer-top .fancy-box .item2 h6 {
  color: var(--white);
  font-family: var(--body-font);
  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: var(--white);
  font-family: var(--title-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.footer-widgets-wrapper {
  padding: 90px 0px 120px;
  position: relative;
  z-index: 9;
}

.footer-widgets-wrapper .shape1 {
  position: absolute;
  bottom: 56px;
  left: 0px;
  z-index: -1;
}

.footer-widgets-wrapper .shape2 {
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: -1;
}

.footer-widgets-wrapper .shape3 {
  position: absolute;
  top: -40%;
  right: 0px;
  z-index: -1;
}

.footer-widgets-wrapper .shape4 {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
}

@media (max-width: 1199px) {
  .footer-widgets-wrapper {
      padding: 70px 0px 100px;
  }
}

@media (max-width: 991px) {
  .footer-widgets-wrapper {
      padding: 50px 0px 70px;
  }
}

.footer-widgets-wrapper .single-footer-widget {
  margin-top: 30px;
}

.footer-widgets-wrapper .single-footer-widget form .form-control {
  display: flex;
  min-width: 260px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.footer-widgets-wrapper .single-footer-widget form .form-control .email {
  border: none;
}

.footer-widgets-wrapper .single-footer-widget form .form-control button {
  text-align: center;
  background: var(--theme2);
  color: var(--white);
  border-radius: 8px;
  padding: 10px 15px;
}

.footer-widgets-wrapper .single-footer-widget form .form-control.style2 {
  background: transparent;
  padding-left: 0px;
  justify-content: start;
  gap: 10px;
}

.footer-widgets-wrapper .single-footer-widget form .form-control.style2 label {
  color: rgb(255, 255, 255);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.footer-widgets-wrapper .single-footer-widget form .form-control.style2 label a {
  color: rgb(255, 255, 255);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-decoration: underline;
}

@media (max-width: 1199px) {
  .footer-widgets-wrapper .single-footer-widget form .form-control {
      max-width: 270px;
  }
}

.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: var(--white);
  font-size: 24px;
  display: inline-block;
  position: relative;
  padding-bottom: 20px;
}

.footer-widgets-wrapper .single-footer-widget .widget-head h3::before {
  position: absolute;
  bottom: 0px;
  left: 0px;
  content: "";
  width: 25px;
  height: 2px;
  background-color: var(--theme2);
}

.footer-widgets-wrapper .single-footer-widget .widget-head h3::after {
  position: absolute;
  bottom: 0px;
  left: 40px;
  content: "";
  width: 55px;
  height: 2px;
  background-color: var(--white);
}

@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 .widget-head h4 {
  font-weight: bold;
  color: var(--white);
  font-size: 24px;
  display: inline-block;
}

.footer-widgets-wrapper .single-footer-widget .widget-head .footer-input {
  position: relative;
}

.footer-widgets-wrapper .single-footer-widget .widget-head .footer-input input {
  background: transparent;
  border-top: none;
  border-right: none;
  border-left: none;
  border-image: initial;
  outline: none;
  width: 100%;
  color: rgba(255, 255, 255, 0.69);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 20px;
}

.footer-widgets-wrapper .single-footer-widget .widget-head .footer-input input::placeholder {
  color: rgba(255, 255, 255, 0.69);
}

.footer-widgets-wrapper .single-footer-widget .widget-head .footer-input .newsletter-btn {
  position: absolute;
  top: 10px;
  right: 0px;
  color: var(--white);
}

.footer-widgets-wrapper .single-footer-widget .widget-head .footer-input .newsletter-btn i {
  font-size: 22px;
  transform: rotate(-40deg);
}

.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: var(--white);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white) !important;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
  position: relative;
  margin-top: 40px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input {
  background: transparent;
  outline: none;
  padding: 18px 20px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 60px;
  height: 55px;
  line-height: 60px;
  border-radius: 8px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  bottom: 5px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn i {
  font-size: 24px;
}

.footer-widgets-wrapper .single-footer-widget .list-area {
  display: inline-block;
}

.footer-widgets-wrapper .single-footer-widget .list-area li {
  transition: 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: var(--white);
}

.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: var(--theme);
}

.footer-bottom {
  position: relative;
  z-index: 9;
  background: var(--theme);
}

.footer-bottom .footer-wrapper {
  padding: 18px 0px;
  text-align: center;
}

@media (max-width: 767px) {
  .footer-bottom .footer-wrapper {
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center !important;
  }
}

.footer-bottom .footer-wrapper p {
  color: var(--white);
}

.footer-bottom .footer-wrapper p a {
  color: var(--white) !important;
}

.footer-bottom .footer-wrapper p a:hover {
  color: var(--white) !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: var(--white);
}

.footer-bottom .footer-wrapper .brand-logo li a:hover {
  color: var(--white) !important;
}

.contact-info-area {
  padding-top: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 50px;
}

@media (max-width: 1399px) {
  .contact-info-area {
      flex-wrap: wrap;
      gap: 40px;
      padding-top: 80px;
      justify-content: initial;
  }
}

@media (max-width: 575px) {
  .contact-info-area {
      gap: 30px;
  }
}

.contact-info-area .contact-info-items {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 1199px) {
  .contact-info-area .contact-info-items {
      flex-wrap: wrap;
  }
}

.contact-info-area .contact-info-items .icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  position: relative;
  border: 2px dotted var(--white);
  border-radius: 50%;
  font-size: 30px;
  color: var(--white);
}

.contact-info-area .contact-info-items .content p {
  color: var(--white);
  margin-bottom: 5px;
}

.contact-info-area .contact-info-items .content h3 {
  font-size: 24px;
  color: var(--white);
  text-transform: initial;
}

.contact-info-area .contact-info-items .content h3 a {
  color: var(--white);
}

.contact-wrapper.style1 {
  position: relative;
}

.contact-wrapper.style1 .shape {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.contact-wrapper.style1 .shape img {
  height: 100%;
}

.contact-wrapper.style1 .shape2 {
  position: absolute;
  top: 0px;
  right: -51rem;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.contact-wrapper.style1 .shape2 img {
  height: 100%;
}

.contact-wrapper.style1 .video-wrap {
  position: relative;
  z-index: 6;
}

.contact-wrapper.style2 {
  position: relative;
  background-image: url("../img/contact/contactThumb3_1.jpg");
}

.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: var(--white);
  font-family: var(--title-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  border: 1px solid var(--border-3);
}

.contact-wrapper.style2 .opening-details .schedule-wrapper .schedule .time {
  padding: 10px 30px;
  text-align: center;
  border: 1px solid var(--border-3);
}

.contact-wrapper.style2 .opening-details .number {
  text-align: center;
  color: var(--white);
  font-family: var(--title);
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 50px;
  text-transform: capitalize;
  margin-top: 40px;
}

.contact-form-section.style2 {
  position: relative;
  z-index: 5;
  margin-bottom: -30rem;
}

.map-wrapper {
  position: relative;
  z-index: 1;
}

.map-wrapper iframe {
  position: relative;
  z-index: -1;
}

.contact-form-wrapper.style2 .contact-form-thumb {
  margin-left: -265px;
}

.contact-form-wrapper.style2 .contact-form-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form.style1 {
  margin-top: 20px;
}

.contact-form.style1 label {
  color: var(--white);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-transform: capitalize;
}

.contact-form.style2 {
  padding: 46px 42px 46px 38px;
  border-radius: 16px;
  background: var(--white);
}

.contact-form.style2 h2 {
  color: var(--title);
  font-family: var(--title-font);
  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 rgb(212, 220, 255);
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.contact-form.style2 textarea.form-control {
  background-color: var(--white);
  border-radius: 8px;
  margin-bottom: 25px;
}

.contact-form.style2 .single-select {
  width: 100%;
  height: 60px;
  padding: 15px 20px;
  margin-bottom: 25px;
  border-radius: 8px;
  border: 1px solid rgb(212, 220, 255);
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

@media (max-width: 575px) {
  .contact-form.style2 {
      padding: 30px;
  }
}

.contact-section {
  position: relative;
}

.contact-section .contact-shape {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  z-index: 3;
}

@media (max-width: 1399px) {
  .contact-section .contact-shape {
      display: none;
  }
}

.contact-box.style1 {
  padding: 41px 35px 35px 30px;
  background-color: var(--white);
  border: 1px solid rgba(235, 0, 41, 0.25);
  border-radius: 8px;
}

.contact-box.style1 .contact-icon {
  margin-bottom: 25px;
}

.contact-box.style1 .contact-icon img {
  display: block;
  margin: 0px auto;
  justify-content: center;
  padding: 20px 15px 10px;
  border-radius: 8px;
  border: 1px solid rgba(235, 0, 41, 0.25);
  background: var(--bg2);
}

.contact-box.style1 .title {
  color: var(--title);
  text-align: center;
  font-family: var(--title-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.contact-box.style1 p {
  color: var(--text);
  text-align: center;
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.banner-wrapper.style1 {
  position: relative;
  background-image: url("../img/bg/bannerBG1_1.jpg");
}

.banner-wrapper.style1 .shape1_1 {
  position: absolute;
  top: 35px;
  left: 0px;
  z-index: 4;
}

.banner-wrapper.style1 .shape1_2 {
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 4;
}

.banner-wrapper.style1 .shape1_3 {
  position: absolute;
  bottom: 55px;
  left: 40%;
  z-index: 4;
}

.banner-wrapper.style1 .shape1_4 {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 4;
}

.banner-wrapper.style1 .shape1_5 {
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 4;
}

.banner-wrapper.style1 .shape1_6 {
  position: absolute;
  bottom: 196px;
  left: 40%;
  z-index: 4;
}

.banner-wrapper.style1 .overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background: var(--title);
  z-index: 3;
}

.banner-wrapper.style1 .banner-thumb-area {
  position: relative;
  z-index: 5;
  margin-top: 65px;
}

.banner-wrapper.style1 .banner-thumb-area .circle {
  position: absolute;
  top: 32%;
  right: 25%;
  z-index: 5;
}

.banner-wrapper.style1 .banner-thumb-area .circle a {
  position: absolute;
  top: 38%;
  left: 38%;
  transform: translate(-50%, 50%);
}

.banner-wrapper.style1 .banner-thumb-area .circle a .arrow-btn {
  background: var(--title);
  color: var(--white);
}

.banner-wrapper.style1 .banner-thumb-area .circle a .arrow-btn:hover {
  background: var(--theme);
  color: var(--white);
}

@media (max-width: 991px) {
  .banner-wrapper.style1 .banner-thumb-area .circle {
      right: 22%;
  }
}

@media (max-width: 767px) {
  .banner-wrapper.style1 .banner-thumb-area .circle {
      top: 18%;
      right: 24%;
  }
}

.banner-wrapper.style2 {
  position: relative;
  background-image: url("../img/bg/bannerBG2_1.jpg");
}

.banner-wrapper.style2 .shape1_1 {
  position: absolute;
  top: 35px;
  left: 0px;
  z-index: 4;
}

.banner-wrapper.style2 .shape1_2 {
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 4;
}

.banner-wrapper.style2 .shape1_3 {
  position: absolute;
  bottom: 0px;
  left: 40%;
  z-index: 4;
}

.banner-wrapper.style2 .shape1_4 {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 4;
}

.banner-wrapper.style2 .shape1_5 {
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 4;
}

.banner-wrapper.style2 .shape1_6 {
  position: absolute;
  bottom: 196px;
  left: 40%;
  z-index: 4;
}

.banner-wrapper.style2 .overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background: var(--title);
  z-index: 3;
}

.banner-wrapper.style2 .banner-thumb-area {
  position: relative;
  z-index: 5;
  margin-top: 95px;
}

.banner-wrapper.style2 .banner-thumb-area .circle {
  position: absolute;
  top: 32%;
  right: 25%;
  z-index: 5;
}

.banner-wrapper.style2 .banner-thumb-area .circle a {
  position: absolute;
  top: 38%;
  left: 38%;
  transform: translate(-50%, 50%);
}

.banner-wrapper.style2 .banner-thumb-area .circle a .arrow-btn {
  background: var(--title);
  color: var(--white);
}

.banner-wrapper.style2 .banner-thumb-area .circle a .arrow-btn:hover {
  background: var(--theme);
  color: var(--white);
}

@media (max-width: 991px) {
  .banner-wrapper.style2 .banner-thumb-area .circle {
      right: 22%;
  }
}

@media (max-width: 767px) {
  .banner-wrapper.style2 .banner-thumb-area .circle {
      top: 18%;
      right: 24%;
  }
}

.banner-wrapper.style3 {
  position: relative;
  background-image: url("../img/bg/bannerBG3_1.jpg");
}

.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%);
}

.banner-wrapper.style3 .overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(1, 15, 28) 0%, rgba(1, 15, 28, 0.75) 100%);
  z-index: 1;
}

.banner-title-area {
  position: relative;
  z-index: 9999999;
}

.banner-style1 {
  position: relative;
  padding: 190px 0px 245px;
  max-width: 718px;
  z-index: 99999;
}

.banner-style1 .section-title {
  position: relative;
}

.banner-style1 .section-title .sub-title {
  position: relative;
  z-index: 9999999;
}

.banner-style1 .section-title .title {
  position: relative;
  z-index: 99999999;
}

.banner-style1 .section-title .theme-btn {
  position: relative;
  z-index: 99999999;
}

@media (max-width: 767px) {
  .banner-style1 {
      padding: 20px 0px 75px;
  }
}

.banner-style3 {
  position: relative;
  padding: 200px 0px 235px;
  z-index: 3;
}

@media (max-width: 767px) {
  .banner-style3 {
      padding: 150px 0px 80px;
  }
}

.banner-style3 .subtitle {
  position: relative;
  -webkit-text-stroke: 2px var(--theme2);
  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: var(--white);
  text-align: center;
  font-family: var(--title-font);
  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: var(--white);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  max-width: 477px;
}

.banner-slider {
  position: relative;
}

.banner-slider .arrow-prev {
  position: absolute;
  top: 58%;
  left: 4%;
  z-index: 99;
}

@media (max-width: 1600px) {
  .banner-slider .arrow-prev {
      display: none;
  }
}

.banner-slider .arrow-next {
  position: absolute;
  top: 45%;
  left: 4%;
  z-index: 99;
}

@media (max-width: 1600px) {
  .banner-slider .arrow-next {
      display: none;
  }
}

.banner-slider .swiper-pagination {
  position: absolute;
  top: 10%;
  left: 21%;
  z-index: 1;
  transform: rotate(-90deg);
}

.banner-slider .swiper-pagination-bullet {
  color: var(--white);
  font-family: var(--title-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin: 20px;
  opacity: 0.3;
}

.banner-slider .swiper-pagination-bullet-active {
  color: var(--white);
  font-family: var(--title-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  background: transparent;
  opacity: 1;
}

.banner2-slider {
  position: relative;
}

.banner2-slider .arrow-prev2 {
  position: absolute;
  top: 58%;
  left: 4%;
  z-index: 99;
}

@media (max-width: 1600px) {
  .banner2-slider .arrow-prev2 {
      display: none;
  }
}

.banner2-slider .arrow-next2 {
  position: absolute;
  top: 45%;
  left: 4%;
  z-index: 99;
}

@media (max-width: 1600px) {
  .banner2-slider .arrow-next2 {
      display: none;
  }
}

.banner2-slider .swiper-pagination {
  position: absolute;
  top: 10%;
  left: 21%;
  z-index: 1;
  transform: rotate(-90deg);
}

.banner2-slider .swiper-pagination-bullet {
  color: var(--white);
  font-family: var(--title-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin: 20px;
  opacity: 0.3;
}

.banner2-slider .swiper-pagination-bullet-active {
  color: var(--white);
  font-family: var(--title-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  background: transparent;
  opacity: 1;
}

.banner3-slider {
  position: relative;
}

.banner3-slider .arrow-prev3 {
  position: absolute;
  top: 93%;
  left: 45%;
  z-index: 99;
  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);
}

@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;
  }
}

.banner3-slider .swiper-pagination-bullet {
  color: var(--white);
  font-family: var(--title-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  opacity: 0.3;
  margin: 0px 10px !important;
}

.banner3-slider .swiper-pagination-bullet-active {
  color: var(--theme);
  font-family: var(--title-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  background: transparent;
  opacity: 1;
}

.banner3-slider .swiper-horizontal > .swiper-pagination-bullets, .banner3-slider .swiper-pagination-bullets.swiper-pagination-horizontal, .banner3-slider .swiper-pagination-custom, .banner3-slider .swiper-pagination-fraction {
  width: 50%;
}

.banner-bottom {
  padding: 30px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  width: 3%;
}

.breadcumb-wrapper {
  background-image: url("../img/bg/breadcumb.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.breadcumb-wrapper .breadcumb-content {
  padding: 160px 0px;
  text-align: center;
}

.breadcumb-wrapper .breadcumb-content .breadcumb-title {
  color: var(--white);
  font-family: var(--title-font);
  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;
  }
}

.breadcumb-wrapper .breadcumb-content .breadcumb-menu {
  display: flex;
  justify-content: center;
  gap: 15px;
}

@media (max-width: 575px) {
  .breadcumb-wrapper .breadcumb-content .breadcumb-menu {
      gap: 5px;
  }
}

.breadcumb-wrapper .breadcumb-content .breadcumb-menu li a {
  color: var(--white);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}

.breadcumb-wrapper .breadcumb-content .breadcumb-menu li.active {
  color: var(--theme);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}

.error-wrapper h2 {
  color: var(--title);
  text-align: center;
  font-family: var(--title-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
  line-height: 50px;
  text-transform: capitalize;
  margin-top: 70px;
  margin-bottom: 35px;
}

.account-wrapper {
  border-radius: 30px;
}

.account-card {
  border-radius: 30px;
}

.account-card .logo {
  margin-bottom: 60px;
}

.account-card h3 {
  color: var(--title);
  text-align: center;
  font-family: var(--title-font);
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 50px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.account-card p {
  color: var(--title);
  text-align: center;
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 50px;
}

.account-card h6 {
  color: var(--title);
  text-align: center;
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-top: 50px;
}

.account-card .form-ctl {
  position: relative;
}

.account-card .form-ctl .icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.account-thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.account-thumb img {
  width: 100%;
  height: auto;
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  background-color: var(--theme);
  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;
}

.marquee-wrapper.style-2 {
  background-color: transparent;
  line-height: 55px;
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .marquee-wrapper.style-2 {
      margin-bottom: 30px;
  }
}

.text-slider {
  font-size: 50px;
  height: 100px;
  line-height: 90px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--white);
}

.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-list {
  float: left;
  width: 50%;
}

.marquee-item {
  float: left;
  transition: animation 0.2s ease-out;
}

.marquee-item.style1 .text-style {
  transition: 0.4s ease-in-out;
  background-image: linear-gradient(var(--theme), var(--theme));
  background-position: 0px 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  color: rgb(188, 184, 177);
  font-family: var(--title-font);
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.marquee-item.style1 .text-style:hover {
  color: var(--theme);
  background-size: 100% 3px;
  opacity: 1;
}

.marquee-item.style-2 .text-slider {
  margin-right: 40px;
  color: var(--white);
  font-family: var(--title-font);
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  opacity: 0.06;
}

@media (max-width: 767px) {
  .marquee-item.style-2 .text-slider {
      font-size: 70px;
  }
}

.marquee-item.style-2 .text-style {
  transition: 0.4s ease-in-out;
  background-image: linear-gradient(var(--theme), var(--theme));
  background-position: 0px 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
}

.marquee-item.style-2 .text-style:hover {
  color: var(--theme);
  background-size: 100% 3px;
  opacity: 1;
}

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

@keyframes marqueeLeft {
  0% {
      left: 0px;
  }

  100% {
      left: -100%;
  }
}

.marquee-inner.to-right {
  animation: 25s linear 0s infinite normal none running marqueeRight;
}

@keyframes marqueeRight {
  0% {
      right: 0px;
  }

  100% {
      right: -100%;
  }
}

.marque-section-2 {
  position: relative;
}

.gallery-wrapper {
  overflow: hidden;
}

.gallery-wrapper.style1 .swiper {
  overflow: visible;
}

.gallery-thumb {
  position: relative;
  transition: 0.4s;
}

.gallery-thumb img {
  position: relative;
  width: 100%;
  z-index: 2;
  transition: 0.4s;
}

.gallery-thumb .icon {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  transition: 0.4s;
  transform: translate(-50%, -50%);
}

.gallery-thumb::before {
  visibility: hidden;
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background: var(--title);
  z-index: 3;
  transition: 0.4s;
  transform: translateY(100%);
}

.gallery-thumb:hover img {
  transform: scale(1.1);
}

.gallery-thumb:hover .icon {
  opacity: 1;
  visibility: visible;
}

.gallery-thumb:hover::before {
  opacity: 0.6;
  visibility: visible;
  transform: translateY(0%);
}

.gallery-thumb.style2 {
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}

.gallery-thumb.style2 img {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: 0.4s;
}

.gallery-thumb.style2 .icon {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--theme);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: 4;
  transition: 0.4s;
  transform: translate(-50%, -50%);
}

.gallery-thumb.style2 .icon img {
  width: 1.3rem;
  height: 1.3rem;
}

.gallery-thumb.style2::before {
  visibility: hidden;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 95%;
  height: 95%;
  opacity: 0.6;
  background: rgba(1, 15, 28, 0.6);
  z-index: 3;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}

.gallery-thumb.style2:hover img {
  transform: scale(1.1);
}

.gallery-thumb.style2:hover .icon {
  opacity: 1;
  visibility: visible;
}

.gallery-thumb.style2:hover::before {
  opacity: 0.6;
  visibility: visible;
}

.testimonial-wrapper.style1 {
  position: relative;
}

.testimonial-wrapper.style1 .shape {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}

.testimonial-wrapper.style1 .shape2 {
  position: absolute;
  top: 228px;
  right: 0px;
  z-index: 1;
}

.testimonial-wrapper.style1 .video-wrap {
  position: relative;
  z-index: 6;
}

@media (max-width: 1199px) {
  .testimonial-wrapper.style1 .video-wrap {
      margin-bottom: 30px;
  }
}

.testimonial-wrapper.style1 .btn-wrap {
  position: absolute;
  bottom: 5%;
  left: 65%;
  display: flex;
  z-index: 5;
  gap: 20px;
  transform: translateX(-65%);
}

@media (max-width: 1399px) {
  .testimonial-wrapper.style1 .btn-wrap {
      bottom: 0px;
      left: 50%;
      transform: translateX(-50%);
  }
}

.testimonial-wrapper.style1 .arrow-prev i {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background: transparent;
  color: var(--theme);
  border: 1px solid var(--theme);
  transition: 0.4s;
  border-radius: 50%;
}

.testimonial-wrapper.style1 .arrow-prev i:hover {
  background: var(--white);
  color: var(--title);
  border: 1px solid var(--white);
}

.testimonial-wrapper.style1 .arrow-next i {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
  transition: 0.4s;
  border-radius: 50%;
}

.testimonial-wrapper.style1 .arrow-next i:hover {
  background: var(--white);
  color: var(--title);
  border: 1px solid var(--white);
}

.testimonial-wrapper.style3 {
  position: relative;
}

.testimonial-wrapper.style3 .btn-wrap .arrow-prev {
  position: absolute;
  top: 70%;
  left: 12%;
  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: var(--theme);
  border: 1px solid var(--theme);
  transition: 0.4s;
  border-radius: 50%;
}

.testimonial-wrapper.style3 .btn-wrap .arrow-prev i:hover {
  background: var(--title);
  color: var(--white);
  border: 1px solid var(--title);
}

@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%);
}

.testimonial-wrapper.style3 .btn-wrap .arrow-next i {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
  transition: 0.4s;
  border-radius: 50%;
}

.testimonial-wrapper.style3 .btn-wrap .arrow-next i:hover {
  background: var(--white);
  color: var(--title);
  border: 1px solid var(--white);
}

@media (max-width: 1600px) {
  .testimonial-wrapper.style3 .btn-wrap .arrow-next {
      display: none;
  }
}

.testimonial-card.style1 {
  padding: 50px;
  margin-top: 40px;
  max-width: 757px;
  border-radius: 16px;
  border-top: 4px solid var(--theme2);
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 25px 0px;
}

.testimonial-card.style1 .testimonial-header {
  position: relative;
  margin-bottom: 22px;
}

.testimonial-card.style1 .testimonial-header .quote {
  position: absolute;
  top: 0px;
  right: -20px;
}

@media (max-width: 1199px) {
  .testimonial-card.style1 .testimonial-header .quote {
      right: -45px;
  }

  .testimonial-card.style1 .testimonial-header .quote img {
      width: 40px;
  }
}

.testimonial-card.style1 .testimonial-header .fancy-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-card.style1 .testimonial-header .fancy-box .item1 img {
  border-radius: 50%;
}

.testimonial-card.style1 .testimonial-header .fancy-box .item2 h6 {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.44px;
}

.testimonial-card.style1 .testimonial-header .fancy-box .item2 p {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.testimonial-card.style1 p {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
}

@media (max-width: 1199px) {
  .testimonial-card.style1 p {
      font-size: 18px;
      line-height: 30px;
  }
}

.testimonial-card.style2 .quote {
  margin-top: 30px;
  margin-bottom: 20px;
}

.testimonial-card.style2 p {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  line-height: 35px;
  text-transform: capitalize;
  margin-bottom: 38px;
}

.testimonial-card.style2 .profile-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
}

.testimonial-card.style2 .profile-box::before {
  position: absolute;
  content: "";
  top: 50px;
  right: 220px;
  width: 270px;
  height: 1px;
  background: rgb(210, 210, 209);
  z-index: 1;
}

@media (max-width: 1399px) {
  .testimonial-card.style2 .profile-box::before {
      width: 100px;
  }
}

@media (max-width: 767px) {
  .testimonial-card.style2 .profile-box::before {
      width: 0px;
  }
}

.testimonial-card.style2 .testimonial-thumb img {
  width: 100%;
}

.testimonial-card.style3 {
  display: flex;
  gap: 30px;
  padding: 30px;
  margin-top: 40px;
  border-top: 5px solid var(--theme);
  border-right: 1px solid var(--theme);
  border-bottom: 1px solid var(--theme);
  border-left: 1px solid var(--theme);
  background: var(--white);
  box-shadow: rgba(52, 55, 170, 0.15) 0px 10px 30px 0px;
  border-radius: 15px;
}

@media (max-width: 991px) {
  .testimonial-card.style3 {
      flex-direction: column;
  }
}

.testimonial-card.style3 .testimonial-thumb {
  width: 100%;
  height: 100%;
}

.testimonial-card.style3 .testimonial-thumb img {
  width: 100%;
  height: 100%;
}

.testimonial-card.style3 .testimonial-body {
  position: relative;
}

.testimonial-card.style3 .testimonial-body .quote {
  position: absolute;
  bottom: 0px;
  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 .item1 img {
  border-radius: 50%;
}

.testimonial-card.style3 .testimonial-body .fancy-box .item2 h6 {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.44px;
}

.testimonial-card.style3 .testimonial-body .fancy-box .item2 p {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 0px;
}

.testimonial-wrap.style2 .title-area {
  padding-bottom: 30px;
  border-bottom: 1px solid rgb(210, 210, 209);
  max-width: 678px;
}

.testimonial-wrap.style2 .testimonialSliderTwo {
  position: relative;
}

.testimonial-wrap.style2 .testimonialSliderTwo .btn-wrap {
  position: absolute;
  bottom: 24px;
  right: 100px;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.testimonial-wrap.style2 .testimonialSliderTwo .btn-wrap .arrow-next, .testimonial-wrap.style2 .testimonialSliderTwo .btn-wrap .arrow-prev {
  color: var(--title);
  transition: 0.4s;
}

.testimonial-wrap.style2 .testimonialSliderTwo .btn-wrap .arrow-next:hover, .testimonial-wrap.style2 .testimonialSliderTwo .btn-wrap .arrow-prev:hover {
  color: var(--theme);
}

@media (max-width: 575px) {
  .testimonial-wrap.style2 .testimonialSliderTwo .btn-wrap .arrow-next, .testimonial-wrap.style2 .testimonialSliderTwo .btn-wrap .arrow-prev {
      display: none;
  }
}

@media (max-width: 1199px) {
  .testimonial-wrap.style2 .testimonial-thumb img {
      width: 100%;
      height: 100%;
  }
}

.testimonial-section {
  position: relative;
  margin: 35px 0 0 0;
}

.testimonial-section .vagetable-shape {
  position: absolute;
  bottom: 0px;
  left: 0px;
}

@media (max-width: 1199px) {
  .testimonial-section .vagetable-shape {
      display: none;
  }
}

.testimonial-section .chili-shape {
  position: absolute;
  top: 0px;
  right: 0px;
}

@media (max-width: 1199px) {
  .testimonial-section .chili-shape {
      display: none;
  }
}

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

.chefe-wrapper.style1 {
  position: relative;
}

.chefe-wrapper.style1 .shape1 {
  position: absolute;
  top: 0px;
  left: 0px;
}

.chefe-wrapper.style1 .shape2 {
  position: absolute;
  bottom: 0px;
  right: 0px;
}

.chefe-card.style1 {
  position: relative;
  padding: 125px 88px 33px;
  margin-top: 215px;
  background: var(--white);
  border-radius: 100px 100px 0px 0px;
}

.chefe-card.style1 .chefe-thumb {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
}

.chefe-card.style1 .chefe-thumb img {
  width: 310px;
  height: 297px;
}

.chefe-card.style1 .icon {
  position: relative;
  text-align: center;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.chefe-card.style1 .icon a i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--theme2);
  color: var(--white);
  border-radius: 50%;
  transition: 0.4s;
}

.chefe-card.style1 .icon a i:hover {
  background: var(--theme);
  color: var(--white);
}

.chefe-card.style1 .icon .hovered-icon {
  position: relative;
  opacity: 0;
  visibility: hidden;
}

.chefe-card.style1 .icon .hovered-icon i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--white);
  border-radius: 50%;
  transition: 0.4s;
  color: var(--title) !important;
}

.chefe-card.style1 .icon .hovered-icon i:hover {
  background: var(--theme);
  color: var(--white);
}

.chefe-card.style1 .icon:hover a i {
  background: var(--theme);
}

.chefe-card.style1 .icon:hover .hovered-icon {
  opacity: 1;
  visibility: visible;
}

.chefe-card.style1 .icon:hover .hovered-icon i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--white);
  box-shadow: rgba(19, 76, 179, 0.15) 0px 4px 10px;
  border-radius: 50%;
  transition: 0.4s;
  color: var(--title) !important;
}

.chefe-card.style1 .icon:hover .hovered-icon i:hover {
  background: var(--theme);
  box-shadow: rgba(19, 76, 179, 0.15) 0px 4px 10px;
  color: var(--white) !important;
}

.chefe-card.style1 .chefe-content {
  text-align: center;
}

.chefe-card.style1 .chefe-content a h3 {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 10px;
}

.chefe-card.style1 .chefe-content a h3:hover {
  color: var(--theme);
}

.chefe-card.style1 .chefe-content p {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.chefe-card.style2 {
  margin-top: 40px;
  position: relative;
}

.chefe-card.style2 .chefe-thumb {
  position: relative;
}

.chefe-card.style2 .chefe-thumb img {
  width: 100%;
  border-radius: 16px;
}

.chefe-card.style2 .icon {
  opacity: 0;
  visibility: hidden;
  border-radius: 30px 0px;
  background: var(--theme);
  padding: 16px 16px 16px 40px;
  position: absolute;
  top: 200px;
  right: -125px;
  transition: 0.4s;
  transform: rotate(-90deg);
}

.chefe-card.style2 .icon a i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--white);
  color: var(--theme);
  margin-right: 5px;
  transform: rotate(90deg);
  border-radius: 50%;
  transition: 0.4s;
}

.chefe-card.style2 .icon a i:hover {
  background: var(--title);
  color: var(--white);
}

.chefe-card.style2 .icon span {
  margin-right: 10px;
  position: relative;
  color: var(--white);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}

.chefe-card.style2 .icon span::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  background: var(--white);
  top: 8px;
  right: 50px;
}

@media (max-width: 1600px) {
  .chefe-card.style2 .icon {
      right: -105px;
  }
}

.chefe-card.style2 .chefe-content {
  position: absolute;
  bottom: -45px;
  left: 24px;
  right: 24px;
  text-align: center;
  padding: 30px 46px;
  border-radius: 30px 0px;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 30px 0px;
  transition: 0.4s;
}

@media (max-width: 1399px) {
  .chefe-card.style2 .chefe-content {
      bottom: -53px;
  }
}

@media (max-width: 1199px) {
  .chefe-card.style2 .chefe-content {
      bottom: -35px;
  }
}

@media (max-width: 575px) {
  .chefe-card.style2 .chefe-content {
      padding: 13px 20px;
  }
}

.chefe-card.style2 .chefe-content a h3 {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 10px;
}

.chefe-card.style2 .chefe-content a h3:hover {
  color: var(--theme);
}

@media (max-width: 575px) {
  .chefe-card.style2 .chefe-content a h3 {
      margin-bottom: 2px;
  }
}

.chefe-card.style2 .chefe-content p {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.chefe-card.style2:hover .chefe-content {
  border-top: 5px solid var(--theme);
}

.chefe-card.style2:hover .icon {
  opacity: 1;
  visibility: visible;
  top: 130px;
}

.chefe-thumb {
  height: 100%;
}

.chefe-thumb img {
  width: 100%;
  height: 100%;
}

.chefe-details-wrapper.style1 h2 {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 50px;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.chefe-details-wrapper.style1 h6 {
  color: var(--text);
  font-family: var(--title-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 20px;
}

.chefe-details-wrapper.style1 p {
  color: var(--text);
  font-family: var(--title-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.chefe-details-wrapper.style1 h5 {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
  margin: 30px 0px;
}

.chefe-details-wrapper.style1 .follow-area {
  margin-top: 40px;
}

.chefe-details-wrapper.style2 .star-wrapper {
  margin-bottom: 10px;
}

.chefe-details-wrapper.style2 h2 {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 50px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.chefe-details-wrapper.style2 h6 {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 20px;
}

.chefe-details-wrapper.style2 p {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.chefe-details-wrapper.style2 .follow-area {
  margin: 20px 0px;
}

.progress-wrap {
  margin-bottom: 30px;
}

.progress-wrap:last-child {
  margin-bottom: 0px;
}

.progress-wrap .progress-meta {
  display: flex;
  gap: 250px;
  margin-bottom: 15px;
}

.progress-wrap .progress-meta .title {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.progress-wrap .progress-meta .percentage {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 575px) {
  .progress-wrap .progress-meta {
      gap: 210px;
  }
}

@media (max-width: 470px) {
  .progress-wrap .progress-meta {
      gap: 150px;
  }
}

.progress-wrap .progress-container {
  position: relative;
  width: 100%;
  height: 5px;
  background-color: rgb(217, 221, 255);
  overflow: visible;
  border-radius: 10px;
}

.progress-wrap .progress-container .progress-bar {
  height: 5px;
  background-color: var(--theme);
  opacity: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .progress-wrap .progress-container {
      width: 85%;
  }
}

.progress-wrap .progress-container {
  height: 12px;
}

.progress-wrap .progress-container::before {
  content: "";
  display: none !important;
}

.progress-wrap .progress-container::after {
  content: "";
  display: none !important;
}

.progress-wrap .progress-container .progress-bar {
  height: 12px;
}

.skills-desc h2 {
  color: var(--white);
  font-family: var(--title);
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: 50px;
  text-transform: capitalize;
}

.reservation-wrapper .get-in-touch h2 {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 64px;
  font-style: normal;
  font-weight: 900;
  line-height: 105px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .reservation-wrapper .get-in-touch h2 {
      font-size: 35px;
      line-height: 55px;
  }
}

.reservation-wrapper .get-in-touch .desc {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 50px;
}

.reservation-wrapper .get-in-touch .contact-info-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
}

.reservation-wrapper .get-in-touch .contact-info-wrapper .contact-info {
  margin-bottom: 40px;
}

.reservation-wrapper .get-in-touch .contact-info-wrapper .contact-info h5 {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.reservation-wrapper .get-in-touch .contact-info-wrapper .contact-info p {
  color: var(--title);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

@media (max-width: 575px) {
  .reservation-wrapper .get-in-touch .contact-info-wrapper {
      display: flex;
      flex-direction: column;
      gap: 5px;
      justify-content: start;
      align-items: start;
  }
}

.history-wrapper.style1 .history-thumb {
  position: relative;
  margin-left: -320px;
  margin-bottom: -300px;
  height: 100%;
}

@media (max-width: 991px) {
  .history-wrapper.style1 .history-thumb {
      margin-left: 0px;
      margin-bottom: 0px;
  }
}

.history-wrapper.style1 .history-thumb .thumb {
  position: relative;
  width: 100%;
  height: 100%;
}

.history-wrapper.style1 .history-thumb .video-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  animation: 6s linear 0s infinite normal none running rippleOne;
}

.history-wrapper.style1 .history-content .theme-btn {
  margin-top: 50px;
}

.history-section {
  position: relative;
}

.history-section .tree-shape {
  position: absolute;
  bottom: 0px;
  right: 0px;
}

@media (max-width: 1199px) {
  .history-section .tree-shape {
      display: none;
  }
}

.timer-wrap.style1 {
  position: relative;
  background-image: url("../../assets/img/bg/timerBg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.timer-wrap.style1 .shape1 {
  position: absolute;
  top: 68px;
  left: 34px;
}

.timer-wrap.style1 .shape2 {
  position: absolute;
  top: 0px;
  right: 0px;
}

.timer-wrap.style1 .shape3 {
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 1;
}

.timer-wrap.style1 .timer-thumb {
  text-align: center;
  margin-bottom: -120px;
  margin-top: 30px;
}

.timer-wrap.style1 .timer-thumb img {
  width: 100%;
  height: 633px;
}

@media (max-width: 1399px) {
  .timer-wrap.style1 .timer-thumb img {
      height: 515px;
  }
}

@media (max-width: 1199px) {
  .timer-wrap.style1 .timer-thumb img {
      height: auto;
  }
}

.timer-wrap.style1 .timer-card.style1 {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 45px 20px 51px;
  margin: 120px auto;
  background: rgba(255, 255, 255, 0.15);
}

.timer-wrap.style1 .timer-card.style1 .title {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 30px;
}

.timer-wrap.style1 .timer-card.style1 .clock-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

@media (max-width: 470px) {
  .timer-wrap.style1 .timer-card.style1 .clock-wrapper {
      display: list-item;
  }
}

.timer-wrap.style1 .timer-card.style1 .clock-wrapper .clock {
  padding: 13px 23px;
  background: var(--theme2);
}

.timer-wrap.style1 .timer-card.style1 .clock-wrapper .clock .number {
  padding-bottom: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border-2);
  color: var(--white);
  text-align: center;
  font-family: var(--title-font);
  font-size: 33px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.timer-wrap.style1 .timer-card.style1 .clock-wrapper .clock .text {
  color: var(--white);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .timer-wrap.style1 .timer-card.style1 .clock-wrapper .clock {
      padding: 13px 4px;
  }
}

.timer-wrap.style1 .timer-card.style1 .btn-wrap {
  display: block;
  margin: 0px auto;
}

@media (max-width: 991px) {
  .timer-wrap.style1 .timer-card.style1 {
      margin: 120px auto 30px;
  }
}

@media (max-width: 575px) {
  .timer-wrap.style1 .timer-card.style1 {
      padding: 35px 2px 41px;
  }
}

.food-menu-wrapper.style2 {
  background-color: var(--white);
}

.food-menu-section {
  position: relative;
}

.food-menu-section .burger-shape {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}

@media (max-width: 1199px) {
  .food-menu-section .burger-shape {
      display: none;
  }
}

.food-menu-section .fry-shape {
  position: absolute;
  top: 45%;
  right: 0px;
  transform: translateY(-50%);
}

@media (max-width: 1199px) {
  .food-menu-section .fry-shape {
      display: none;
  }
}

.food-menu-tab-wrapper.style-bg {
  background-color: var(--white);
  border-radius: 20px;
  padding: 75px 130px;
}

@media (max-width: 991px) {
  .food-menu-tab-wrapper.style-bg {
      padding: 60px 30px;
  }
}

.food-menu-tab .nav-pills {
  justify-content: center;
  border-bottom: 1px solid var(--border-2);
  padding-bottom: 30px;
  margin-top: 30px;
}

.food-menu-tab .nav-pills .nav-link {
  padding: 5px 24px 0px 0px;
  margin: 10px 24px 10px 0px;
  color: var(--title);
  font-family: var(--title-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  border-right: 1px dashed var(--border-2);
  border-radius: 0px;
}

.food-menu-tab .nav-pills .nav-link img {
  margin-right: 10px;
}

.food-menu-tab .nav-pills .nav-link.active {
  color: var(--theme);
  background-color: transparent;
}

@media (max-width: 767px) {
  .food-menu-tab .nav-pills .nav-link {
      border: 0px;
  }
}

.food-menu-tab .tab-content {
  margin-top: 36px;
}

.food-menu-tab.style2 {
  padding: 0px 120px;
}

@media (max-width: 1600px) {
  .food-menu-tab.style2 {
      padding: 0px 70px;
  }
}

@media (max-width: 1199px) {
  .food-menu-tab.style2 {
      padding: 0px 50px;
  }
}

@media (max-width: 767px) {
  .food-menu-tab.style2 {
      padding: 0px 40px;
  }
}

.food-menu-tab.style2 .nav-pills {
  justify-content: center;
  border-bottom: 0px;
  padding-bottom: 0px;
  margin-top: 30px;
}

.food-menu-tab.style2 .nav-pills .nav-link {
  padding: 5px 24px 0px 0px;
  margin: 10px 24px 10px 0px;
  color: var(--title);
  font-family: var(--title-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  border-right: 0px;
  border-radius: 0px;
}

.food-menu-tab.style2 .nav-pills .nav-link img {
  margin-right: 10px;
}

.food-menu-tab.style2 .nav-pills .nav-link.active {
  color: var(--theme2);
  background-color: transparent;
}

@media (max-width: 767px) {
  .food-menu-tab.style2 .nav-pills .nav-link {
      border: 0px;
  }
}

.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 var(--border-2);
}

.food-menu-tab.style2 .single-menu-items .details .menu-content h3 {
  color: var(--title);
  font-family: var(--title-font);
  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: var(--theme2) !important;
}

.food-menu-tab.style2 .single-menu-items .details .menu-content p {
  color: var(--text);
  font-family: var(--body-font);
  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: var(--title);
  font-family: var(--title-font);
  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: var(--theme) !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: var(--title);
  font-family: var(--title-font);
  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: var(--text);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: -0.3em;
}

.single-menu-items h6 {
  color: var(--title);
  text-align: right;
  font-family: var(--title-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}

.food-menu-tab-wrapper.style2 {
  background-color: var(--white);
  margin-top: 40px;
}

.food-menu-tab-wrapper.style2 .nav-item {
  width: 100%;
}

.food-menu-tab-wrapper.style2 .nav-item .single-menu-items {
  margin-top: 10px;
}

.food-menu-tab-wrapper.style2 .nav-item .single-menu-items .details .menu-content {
  text-align: left;
}

.food-menu-tab-wrapper.style2 .nav-pills .nav-link {
  width: 100%;
}

.food-menu-tab-wrapper.style2 .nav-pills .nav-link.active, .food-menu-tab-wrapper.style2 .nav-pills .show > .nav-link {
  color: var(--theme);
  background-color: transparent;
}

.food-menu-tab-wrapper.style2 .nav-pills .nav-link.active .menu-content h3, .food-menu-tab-wrapper.style2 .nav-pills .show > .nav-link .menu-content h3 {
  color: var(--theme);
}

.food-menu-tab-wrapper.style2 .menuthumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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;
}

.cta-wrapper.style1 {
  position: relative;
  background-image: url("../../assets/img/bg/ctaBG1_1.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cta-wrapper.style1 .shape1 {
  position: absolute;
  top: 0px;
  left: 0px;
}

.cta-wrapper.style1 .shape2 {
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.cta-wrapper.style1 .shape3 {
  position: absolute;
  bottom: 0px;
  right: 0px;
}

.cta-wrapper.style2 {
  position: relative;
  background-image: url("../../assets/img/bg/ctaBG2_1.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cta-wrapper.style2 .shape1 {
  position: absolute;
  top: 0px;
  left: 0px;
}

.cta-wrapper.style2 .shape2 {
  position: absolute;
  bottom: -54px;
  left: 0px;
}

.cta-wrapper.style2 .shape3 {
  position: absolute;
  bottom: 0px;
  right: 0px;
}

.cta-wrapper.style2 .shape4 {
  position: absolute;
  top: 0px;
  right: 0px;
}

.cta-wrapper.style2 .shape5 {
  position: absolute;
  bottom: 0px;
  left: 40%;
}

.cta-wrapper.style2 .shape6 {
  position: absolute;
  bottom: 25%;
  left: 40%;
}

.cta-wrapper.style2 .shape7 {
  position: absolute;
  bottom: 136px;
  left: 50%;
  z-index: 4;
}

.cta-wrap.style1 .cta-content h6 {
  color: var(--theme);
  font-family: var(--title-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 105px;
  text-transform: uppercase;
}

.cta-wrap.style1 .cta-content h3 {
  color: var(--white);
  font-family: var(--title);
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 32px;
  text-transform: uppercase;
}

@media (max-width: 1399px) {
  .cta-wrap.style1 .cta-content h3 {
      line-height: 65px;
  }
}

@media (max-width: 1199px) {
  .cta-wrap.style1 .cta-content h3 {
      line-height: 35px;
  }
}

@media (max-width: 767px) {
  .cta-wrap.style1 .cta-content h3 {
      line-height: 65px;
  }
}

.cta-wrap.style1 .cta-content p {
  color: var(--theme2);
  font-family: var(--title-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 105px;
  text-transform: capitalize;
}

.cta-wrap.style2 .cta-content h6 {
  color: var(--theme);
  font-family: var(--title-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 80px;
  text-transform: uppercase;
}

.cta-wrap.style2 .cta-content h3 {
  color: var(--white);
  font-family: var(--title);
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 25px;
  text-transform: uppercase;
}

@media (max-width: 1399px) {
  .cta-wrap.style2 .cta-content h3 {
      line-height: 65px;
  }
}

@media (max-width: 1199px) {
  .cta-wrap.style2 .cta-content h3 {
      line-height: 35px;
  }
}

@media (max-width: 767px) {
  .cta-wrap.style2 .cta-content h3 {
      line-height: 65px;
  }
}

.cta-wrap.style2 .cta-content p {
  color: var(--theme2);
  font-family: var(--title-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 105px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.cta-wrap.style3 {
  position: relative;
  overflow: hidden;
  background-image: url("../../assets/img/bg/ctaBG3_1.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50px 0px;
}

.cta-wrap.style3 .shape1 {
  position: absolute;
  top: 0px;
  left: 0px;
}

.cta-wrap.style3 .shape2 {
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.cta-wrap.style3 .shape3 {
  position: absolute;
  bottom: -30px;
  right: 0px;
}

.cta-wrap.style3 .shape4 {
  position: absolute;
  top: 0px;
  right: 0px;
}

.cta-wrap.style3 .shape5 {
  position: absolute;
  bottom: 0px;
  left: 40%;
}

.cta-wrap.style3 .shape6 {
  position: absolute;
  bottom: 186px;
  left: 48%;
  z-index: 4;
}

.cta-wrap.style3 .shape7 {
  position: absolute;
  top: 20px;
  left: 39%;
  z-index: 4;
}

.cta-wrap.style3 .cta-content {
  padding-top: 96px;
  padding-bottom: 76px;
  max-width: 496px;
}

@media (max-width: 1399px) {
  .cta-wrap.style3 .cta-content {
      padding-top: 0px;
      padding-bottom: 0px;
  }
}

@media (max-width: 767px) {
  .cta-wrap.style3 .cta-content {
      padding-left: 30px;
  }
}

.cta-wrap.style3 .cta-content h6 {
  color: var(--theme);
  font-family: var(--title-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta-wrap.style3 .cta-content h3 {
  color: var(--white);
  font-family: var(--title-font);
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 50px;
  text-transform: capitalize;
  margin-bottom: 40px;
}

.cta-wrap.style3 .cta-content .btn-wrapper {
  max-width: 496px;
}

.cta-wrap.style3 .cta-content .btn-wrapper .apple-btn {
  display: inline-block;
  position: relative;
  padding: 8px 25px;
  background-color: var(--theme);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  z-index: 1;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 5000px;
  transition: 0.3s ease-in-out;
}

.cta-wrap.style3 .cta-content .btn-wrapper .apple-btn span {
  color: var(--white);
  font-family: var(--title-font);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.cta-wrap.style3 .cta-content .btn-wrapper .apple-btn h6 {
  color: var(--white);
  font-family: var(--title-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0px;
}

.cta-wrap.style3 .cta-content .btn-wrapper .apple-btn:hover {
  background-color: transparent;
  border: 1px solid var(--white);
}

.cta-wrap.style3 .cta-content .btn-wrapper .apple-btn:hover span {
  color: var(--white);
}

.cta-wrap.style3 .cta-content .btn-wrapper .apple-btn:hover h6 {
  color: var(--white);
}

.cta-wrap.style3 .cta-content .btn-wrapper .google-btn {
  display: inline-block;
  position: relative;
  padding: 8px 25px;
  background-color: transparent;
  border: 1px solid var(--white);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  z-index: 1;
  overflow: hidden;
  border-radius: 5000px;
  transition: 0.3s ease-in-out;
}

.cta-wrap.style3 .cta-content .btn-wrapper .google-btn span {
  color: var(--white);
  font-family: var(--title-font);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.cta-wrap.style3 .cta-content .btn-wrapper .google-btn h6 {
  color: var(--white);
  font-family: var(--title-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0px;
}

.cta-wrap.style3 .cta-content .btn-wrapper .google-btn:hover {
  background-color: var(--theme);
  border: 1px solid transparent;
}

.cta-wrap.style3 .cta-content .btn-wrapper .google-btn:hover span {
  color: var(--white);
}

.cta-wrap.style3 .cta-content .btn-wrapper .google-btn:hover h6 {
  color: var(--white);
}

.cta-wrap.style3 .cta-thumb {
  margin-bottom: -50px;
}

@media (max-width: 1199px) {
  .cta-wrap.style3 .cta-thumb {
      display: none;
  }
}

.cta-section {
  position: relative;
}

.cta-section.style-white::before {
  position: absolute;
  inset: 50% 0px 0px;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
}

.popular-dishes-wrapper.style1 {
  position: relative;
}

.popular-dishes-wrapper.style1 .btn-wrapper {
  display: block;
  margin: 60px auto 0px;
}

.popular-dishes-wrapper.style1 .shape1 {
  position: absolute;
  bottom: -120px;
  left: 0px;
  z-index: 1;
}

.popular-dishes-wrapper.style1 .shape2 {
  position: absolute;
  top: -50px;
  right: 0px;
  z-index: 1;
}

.popular-dishes-wrapper.style2 {
  position: relative;
}

.popular-dishes-wrapper.style2 .shape1 {
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 1;
}

.popular-dishes-wrapper.style2 .shape2 {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
}

.popular-dishes-wrapper.style2 .btn-wrapper {
  max-width: 195px;
  margin: 0px auto;
}

.popular-dishes-wrapper.style3 {
  position: relative;
}

.popular-dishes-wrapper.style3 .swiper {
  overflow: visible;
}

.popular-dishes-wrapper.style3 .shape1 {
  position: absolute;
  top: -60px;
  left: 0px;
}

.popular-dishes-wrapper.style3 .shape2 {
  position: absolute;
  top: -30px;
  right: 0px;
}

.popular-dishes-wrapper.style4 {
  position: relative;
}

.popular-dishes-wrapper.style4 .shape1 {
  position: absolute;
  top: 0px;
  left: 0px;
  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.style2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 1399px) {
  .dishes-card-wrap.style2 {
      grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1199px) {
  .dishes-card-wrap.style2 {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .dishes-card-wrap.style2 {
      grid-template-columns: repeat(1, 1fr);
  }
}

.dishes-card-wrap.style3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

.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: var(--white);
  text-align: center;
  transition: 0.4s;
}

.dishes-card.style1 .dishes-thumb {
  margin-bottom: 30px;
  margin-top: 20px;
}

.dishes-card.style1 h3 {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 18px;
}

.dishes-card.style1 p {
  color: var(--text);
  text-align: center;
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 16px;
}

.dishes-card.style1 h6 {
  color: var(--theme);
  text-align: center;
  font-family: var(--title-font);
  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 center;
  background-repeat: no-repeat;
  z-index: 1;
}

.dishes-card.style1:hover h3 {
  color: var(--white);
}

.dishes-card.style1:hover p {
  color: var(--white);
}

.dishes-card.style1:hover h6 {
  color: var(--white);
}

.dishes-card.style1:hover .social-profile ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(10%);
}

.dishes-card.style2 {
  padding: 26px 25px;
  margin-top: 140px;
  text-align: center;
  border-radius: 16px;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 54px 0px;
}

.dishes-card.style2 .dishes-thumb {
  position: relative;
  margin-top: -120px;
  border-radius: 50%;
}

.dishes-card.style2 .dishes-thumb img {
  position: relative;
  z-index: 2;
  border-radius: 50%;
}

.dishes-card.style2 .dishes-thumb .circle-shape {
  position: absolute;
  top: -7px;
  left: 50%;
  width: 100%;
  z-index: 1;
  transform: translateX(-50%);
}

.dishes-card.style2 .dishes-content {
  margin-top: 24px;
}

.dishes-card.style2 .dishes-content h3 {
  color: var(--title);
  font-family: var(--title);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 1px;
  transition: 0.4s;
}

.dishes-card.style2 .dishes-content h3:hover {
  color: var(--theme);
}

.dishes-card.style2 .dishes-content .text {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 16px;
  margin-top: 3px;
}

.dishes-card.style2 .dishes-content h6 {
  color: var(--theme);
  font-family: var(--title-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 24px;
}

.dishes-card.style3 {
  margin-top: 40px;
}

.dishes-card.style3 .dishes-thumb {
  position: relative;
  transition: 0.4s;
}

.dishes-card.style3 .dishes-thumb img {
  position: relative;
  width: 100%;
  transition: 0.4s;
}

.dishes-card.style3 .dishes-thumb .view-more {
  opacity: 0;
  visibility: hidden;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}

.dishes-card.style3 .dishes-thumb .view-more a {
  display: inline-block;
}

.dishes-card.style3 .dishes-thumb .view-more a h3 {
  padding: 35px 15px;
  text-align: center;
  background: var(--theme2);
  color: var(--white);
  font-family: var(--title-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
  border-radius: 50%;
}

.dishes-card.style3 .dishes-content {
  text-align: center;
}

.dishes-card.style3 .dishes-content a h3 {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
  margin-top: 30px;
  margin-bottom: -0.3em;
}

.dishes-card.style3 .dishes-content p {
  color: var(--text);
  text-align: center;
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  text-transform: capitalize;
}

.dishes-card.style3:hover .dishes-thumb {
  overflow: hidden;
  border-radius: 100px;
}

.dishes-card.style3:hover .dishes-thumb img {
  border-radius: 100px;
}

.dishes-card.style3:hover .dishes-thumb .view-more {
  position: absolute;
  opacity: 1;
  visibility: visible;
  z-index: 9;
}

.dishes-card.style4 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 5px 30px 20px 35px;
  text-align: left;
  border-radius: 16px;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 54px 0px;
}

.dishes-card.style4 .dishes-thumb {
  position: relative;
}

.dishes-card.style4 .dishes-thumb img {
  position: relative;
  z-index: 2;
}

.dishes-card.style4 .dishes-thumb .circle-shape {
  position: absolute;
  top: -7px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}

.dishes-card.style4 .dishes-content {
  margin-top: 24px;
}

.dishes-card.style4 .dishes-content a h3 {
  color: var(--title);
  font-family: var(--title);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 5px;
  transition: 0.4s;
}

.dishes-card.style4 .dishes-content a h3:hover {
  color: var(--theme);
}

.dishes-card.style4 .dishes-content .icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
}

.dishes-card.style4 .dishes-content .icon a {
  transition: 0.4s;
}

.dishes-card.style4 .dishes-content .icon a i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: var(--theme2);
  color: var(--white);
  margin-bottom: 5px;
  border-radius: 50%;
}

.dishes-card.style4 .dishes-content .icon a:hover i {
  background: var(--theme);
}

.dishes-card.style4 .dishes-content .text {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.dishes-card.style4 .dishes-content h6 {
  color: var(--theme);
  font-family: var(--title-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .dishes-card.style4 {
      display: flex;
      flex-direction: column;
      padding: 35px 30px 20px 35px;
  }
}

.dishes-card.style5 {
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
  border-radius: 16px;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 54px 0px;
  margin-bottom: 40px;
}

@media (max-width: 1199px) {
  .dishes-card.style5 {
      margin-bottom: 0px;
  }
}

.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: var(--title);
  font-family: var(--title);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 10px;
  transition: 0.4s;
}

.dishes-card.style5 .dishes-content a h3:hover {
  color: var(--theme);
}

.dishes-card.style5 .dishes-content .icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
}

.dishes-card.style5 .dishes-content .icon a {
  transition: 0.4s;
}

.dishes-card.style5 .dishes-content .icon a i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: var(--theme2);
  color: var(--white);
  margin-bottom: 5px;
  border-radius: 50%;
}

.dishes-card.style5 .dishes-content .icon a:hover i {
  background: var(--theme);
}

.dishes-card.style5 .dishes-content .text {
  color: var(--text);
  font-family: var(--body-font);
  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: var(--theme);
  font-family: var(--title-font);
  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;
  }

  .dishes-card.style5 .dishes-thumb img {
      height: 300px;
      width: 100%;
      border-radius: 10px;
  }

  .dishes-card.style5 .dishes-content {
      text-align: center;
      padding: 25px 15px 0px;
  }

  .dishes-card.style5 .dishes-content a h3 {
      font-size: 25px;
  }

  .dishes-card.style5 .dishes-content .icon {
      position: absolute;
      top: 15px;
      right: 15px;
      width: 35px;
  }

  .dishes-card.style5 .dishes-content .icon a {
      transition: 0.4s;
  }

  .dishes-card.style5 .dishes-content .icon a i {
      width: 30px;
      height: 30px;
      line-height: 30px;
      text-align: center;
      background: var(--theme2);
      color: var(--white);
      margin-bottom: 5px;
      border-radius: 50%;
  }

  .dishes-card.style5 .dishes-content .icon a:hover i {
      background: var(--theme);
  }

  .dishes-card.style5 .dishes-content .text {
      color: var(--text);
      font-family: var(--body-font);
      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: var(--theme);
      font-family: var(--title-font);
      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%;
  }
}

.dishes-thumb .circle-shape {
  position: absolute;
  top: -5px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}

.about-wrapper.style1 {
  position: relative;
}

.about-wrapper.style1 .shape1 {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}

.about-wrapper.style1 .shape2 {
  position: absolute;
  top: 0px;
  left: 334px;
  z-index: 1;
}

.about-wrapper.style1 .shape3 {
  position: absolute;
  top: 95px;
  left: 187px;
  z-index: 2;
}

@media (max-width: 1899px) {
  .about-wrapper.style1 .shape3 {
      left: 75px;
  }
}

.about-wrapper.style1 .shape4 {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
}

.about-wrapper.style1 .shape5 {
  position: absolute;
  bottom: 0px;
  right: 334px;
  z-index: 1;
}

.about-wrapper.style1 .shape6 {
  position: absolute;
  top: 95px;
  right: 187px;
  z-index: 2;
}

@media (max-width: 1899px) {
  .about-wrapper.style1 .shape6 {
      right: 75px;
  }
}

.about-wrapper.style1 .title-area {
  max-width: 825px;
  margin: 0px auto;
}

.about-wrapper.style1 .title-area .btn-wrapper {
  max-width: 200px;
  margin: 0px auto;
}

.about-wrapper.style1 .about-us {
  background: var(--white);
}

.about-wrapper.style2 {
  position: relative;
}

.about-wrapper.style2 .shape1 {
  position: absolute;
  top: 50%;
  right: 0px;
  z-index: 1;
  transform: translateY(-50%);
}

.about-wrapper.style2 .about-us .about-thumb {
  position: relative;
  margin-left: -400px;
}

.about-wrapper.style2 .about-us .video-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
}

@media (max-width: 1199px) {
  .about-wrapper.style2 .about-us .video-wrap {
      left: 75%;
      transform: translate(-75%, -50%);
  }
}

.about-wrapper.style2 .about-us .title-area .text {
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border-2);
}

.about-wrapper.style2 .about-us .fancy-box-wrapper {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-2);
}

.about-wrapper.style2 .about-us .fancy-box-wrapper .fancy-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0px 30px 30px 0px;
  margin-right: 35px;
  border-right: 1px solid var(--border-2);
}

.about-wrapper.style2 .about-us .fancy-box-wrapper .fancy-box:last-child {
  border: none;
}

.about-wrapper.style2 .about-us .fancy-box-wrapper .fancy-box .item img {
  width: 100%;
}

.about-wrapper.style2 .about-us .fancy-box-wrapper .fancy-box .item h6 {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
}

@media (max-width: 1399px) {
  .about-wrapper.style2 .about-us .fancy-box-wrapper .fancy-box .item h6 {
      font-size: 17px;
      line-height: 27px;
  }
}

.about-wrapper.style2 .about-us .fancy-box-wrapper .fancy-box .item p {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width: 767px) {
  .about-wrapper.style2 .about-us .fancy-box-wrapper {
      display: grid;
  }

  .about-wrapper.style2 .about-us .fancy-box-wrapper .fancy-box {
      padding: 0px 30px 30px 0px;
      margin-bottom: 30px;
      border-bottom: 1px solid var(--border-2);
      border-right: 0px;
  }

  .about-wrapper.style2 .about-us .fancy-box-wrapper .fancy-box:last-child {
      border: none;
  }
}

.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: 0px;
  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: 0px 10px 30px 0px;
  margin-right: 35px;
}

.about-wrapper.style-padding {
  margin: 0px 46px;
}

@media (max-width: 1199px) {
  .about-wrapper.style-padding {
      padding: 0px 30px;
  }
}

.services-wrapper.style1 .servicesThumb {
  position: relative;
  width: 100%;
  height: 100%;
}

.services-wrapper.style1 .servicesThumb::before {
  visibility: hidden;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 95%;
  height: 93%;
  opacity: 0.6;
  background: rgba(143, 143, 143, 0.6);
  z-index: 3;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}

.services-wrapper.style1 .servicesThumb img {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.services-wrapper.style1 .servicesThumb .services-content {
  opacity: 0;
  visibility: hidden;
  background: var(--white);
  padding: 20px 10px 15px 20px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 5;
  border-radius: 30px 0px 100px;
  transition: 0.4s;
}

.services-wrapper.style1 .servicesThumb .services-content h3 {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 5px;
}

.services-wrapper.style1 .servicesThumb .services-content p {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 15px;
}

.services-wrapper.style1 .servicesThumb:hover::before {
  opacity: 1;
  visibility: visible;
}

.services-wrapper.style1 .servicesThumb:hover .services-content {
  opacity: 1;
  visibility: visible;
}

.services-card.style2 {
  position: relative;
  background-color: var(--white);
  padding: 50px 30px;
  z-index: 1;
  transition: 0.4s;
  border-radius: 15px;
}

.services-card.style2 .shape1 {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 5;
}

.services-card.style2 .shape2 {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 5;
}

.services-card.style2 .shape3 {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 5;
  transition: 1s;
}

.services-card.style2 .shape4 {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 5;
  transition: 1.5s;
}

.services-card.style2 .services-card_icon {
  position: relative;
  padding: 37px 40px;
  margin-bottom: 25px;
  display: inline-block;
  z-index: 3;
  transition: 0.5s;
}

.services-card.style2 .services-card_icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.services-card.style2 .services-card_icon::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80.638px;
  background-color: var(--theme);
  opacity: 0.1;
  clip-path: polygon(43px 80.5px, 43px 80.5px, 39.5336px 80.6139px, 35.9372px 80.195px, 32.2723px 79.3019px, 28.6005px 77.9933px, 24.9833px 76.3275px, 21.4825px 74.3633px, 18.1595px 72.1591px, 15.0759px 69.7737px, 12.2933px 67.2654px, 9.87334px 64.6929px, 9.87334px 64.6929px, 7.93671px 62.2495px, 6.21049px 59.6854px, 4.69499px 57.012px, 3.39053px 54.2405px, 2.29742px 51.3821px, 1.41597px 48.4481px, 0.746509px 45.4496px, 0.289344px 42.3981px, 0.0447923px 39.3046px, 0.0131683px 36.1804px, 0.0131683px 36.1804px, 0.185714px 33.1333px, 0.559567px 30.1137px, 1.13812px 27.1389px, 1.92476px 24.2258px, 2.92288px 21.3915px, 4.13587px 18.6532px, 5.56713px 16.0278px, 7.22004px 13.5325px, 9.098px 11.1843px, 11.2044px 9.00031px, 11.2044px 9.00031px, 13.4497px 7.09728px, 15.8465px 5.46032px, 18.3771px 4.07327px, 21.0238px 2.91995px, 23.7691px 1.98419px, 26.5954px 1.24984px, 29.485px 0.700718px, 32.4204px 0.32066px, 35.3838px 0.093499px, 38.3577px 0.00306702px, 38.3577px 0.00306702px, 41.364px 0.0404445px, 44.3577px 0.218135px, 47.3237px 0.551166px, 50.2464px 1.05456px, 53.1106px 1.74335px, 55.901px 2.63257px, 58.6021px 3.73722px, 61.1986px 5.07236px, 63.6752px 6.65299px, 66.0166px 8.49415px, 66.0166px 8.49415px, 68.3999px 10.6933px, 70.6703px 13.0543px, 72.7871px 15.564px, 74.7095px 18.2091px, 76.3969px 20.9763px, 77.8085px 23.8525px, 78.9036px 26.8242px, 79.6416px 29.8783px, 79.9816px 33.0014px, 79.883px 36.1804px, 79.883px 36.1804px, 79.5104px 39.0454px, 79.0147px 41.5826px, 78.3825px 43.8539px, 77.6002px 45.9211px, 76.6544px 47.8461px, 75.5316px 49.6905px, 74.2183px 51.5163px, 72.7009px 53.3853px, 70.9659px 55.3593px, 69px 57.5px, 69px 57.5px, 66.7549px 60.0575px, 64.478px 62.8474px, 62.1516px 65.7609px, 59.7581px 68.6896px, 57.2799px 71.5248px, 54.6993px 74.1581px, 51.9986px 76.4808px, 49.1603px 78.3844px, 46.1666px 79.7603px, 43px 80.5px);
}

.services-card.style2 .services-card_title a {
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-align: left;
  margin-bottom: 10px;
}

.services-card.style2 .services-card_text {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.services-card.style2:hover {
  background-color: var(--title);
  margin-top: -5px;
}

.services-card.style2:hover .services-card_icon {
  transform: rotate(360deg);
}

.services-card.style2:hover .services-card_icon::before {
  background-color: var(--white);
  opacity: 1;
}

.services-card.style2:hover .services-card_text {
  color: var(--white);
}

.services-card.style2:hover .shape3 {
  opacity: 1;
  visibility: visible;
  top: 30px;
  right: 30px;
}

.services-card.style2:hover .shape4 {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
  right: 30px;
}

.services-card.style2:hover .services-card_title a {
  color: var(--white);
}

.services-card.style2:hover .services-card_text {
  color: var(--white);
}

.service-details-area .service-post-details .single-service-post .post-featured-thumb {
  height: 400px;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .service-details-area .service-post-details .single-service-post .post-featured-thumb {
      height: 400px;
  }
}

.service-details-area .service-post-details .single-service-post .post-content {
  margin-top: 35px;
}

.service-details-area .service-post-details .single-service-post .post-content .title1 {
  margin-bottom: 10px;
  color: var(--title);
  font-family: var(--title-font);
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: 50px;
  text-transform: capitalize;
}

.service-details-area .service-post-details .single-service-post .post-content .title2 {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 50px;
  text-transform: capitalize;
  margin-top: 55px;
  margin-bottom: 10px;
}

.service-details-area .service-post-details .single-service-post .service-details-thumb img {
  width: 100%;
  border-radius: 20px;
}

.service-details-area .service-post-details .single-service-post .checklist {
  margin-bottom: 14px;
}

.offer-card.style1 {
  padding: 0px 0px 18px 30px;
  display: flex;
  gap: 0px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.offer-card.style1 .offer-content h6 {
  color: var(--theme);
  font-family: var(--title-font);
  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: var(--white);
  font-family: var(--title-font);
  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: var(--theme2);
  font-family: var(--title-font);
  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: 0px;
  left: -30px;
}

@media (max-width: 991px) {
  .offer-card.style1 {
      justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .offer-card.style1 {
      flex-direction: column-reverse;
  }
}

.offer-section {
  position: relative;
}

.offer-section .offer-shape {
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.best-food-wrapper {
  position: relative;
}

.best-food-wrapper .shape1 {
  position: absolute;
  bottom: 10px;
  left: 0px;
  z-index: 1;
}

.best-food-wrapper .shape2 {
  position: absolute;
  top: 36px;
  right: 44px;
  z-index: 1;
}

.single-food-items {
  padding: 24px 25px 30px;
  margin-top: 140px;
  border-radius: 16px;
  background: linear-gradient(rgba(255, 255, 255, 0.3) 0%, rgb(255, 255, 255) 63.33%);
  text-align: center;
}

.single-food-items .item-thumb {
  position: relative;
  margin-top: -120px;
}

.single-food-items .item-thumb img {
  position: relative;
  z-index: 2;
}

.single-food-items .item-thumb .circle-shape {
  position: absolute;
  top: -5px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}

.single-food-items .item-content {
  margin-top: 24px;
}

.single-food-items .item-content h3 {
  color: var(--title);
  font-family: var(--title);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.single-food-items .item-content .text {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 0px;
}

.single-food-items .item-content h6 {
  color: var(--theme);
  font-family: var(--title-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
}

.bestFoodItems-pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.bestFoodItems-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgb(204, 204, 204);
  border-radius: 50%;
  margin: 0px 5px;
  opacity: 1;
  transition: background-color 0.3s;
}

.bestFoodItems-pagination .swiper-pagination-bullet-active {
  width: 28px;
  height: 12px;
  background-color: var(--theme);
  border-radius: 100px;
}

@media (max-width: 1199px) {
  .faq-content {
      margin-top: 40px;
  }
}

.faq-content .accordion-item {
  border: 0px;
  background-color: var(--white);
}

.faq-content .accordion-item .accordion-header .accordion-button {
  font-weight: 600;
  color: var(--title);
  letter-spacing: -0.2px;
  border: none;
  box-shadow: none;
  background-color: var(--bg2);
  padding: 17px 20px;
  text-transform: capitalize;
  font-size: 20px;
  border-radius: 12px 12px 0px 0px;
}

@media (max-width: 767px) {
  .faq-content .accordion-item .accordion-header .accordion-button {
      font-size: 16px;
  }
}

.faq-content .accordion-item .accordion-header .accordion-button::after {
  display: inline-block;
  background-image: url("../../assets/img/icon/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: center center;
  color: var(--white);
  font-weight: 500;
  padding: 20px;
  background-color: var(--white);
  text-align: center;
  border-radius: 50%;
  transition: 0.3s ease-in-out !important;
}

.faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url("../../assets/img/icon/chevron-up.svg");
  font-weight: 500;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: var(--title);
  color: var(--white);
  border-radius: 50%;
  transform: rotate(0deg);
}

.faq-content .accordion-item .accordion-header .accordion-button.collapsed {
  background-color: transparent;
  border: 1px solid var(--border);
  padding: 17px 20px;
  color: var(--title);
}

.faq-content .accordion-item .accordion-collapse {
  border: none;
}

.faq-content .accordion-item .accordion-collapse .accordion-body {
  padding-right: 150px;
  padding-left: 30px;
  padding-top: 15px;
  color: var(--text);
  background-color: var(--theme);
}

@media (max-width: 1399px) {
  .faq-content .accordion-item .accordion-collapse .accordion-body {
      padding-right: 50px;
  }
}

@media (max-width: 991px) {
  .faq-content .accordion-item .accordion-collapse .accordion-body {
      padding-right: 30px;
  }
}

.faq-content.style-1 .accordion-item {
  background-color: var(--bg2);
  box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 25px 0px;
  border-radius: 12px;
}

.faq-content.style-1 .accordion-item .accordion-header .accordion-button {
  background-color: var(--theme);
  color: var(--white);
}

.faq-content.style-1 .accordion-item .accordion-header .accordion-button.collapsed {
  color: var(--title);
  font-family: inherit;
  text-align: left;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: inherit;
  background-color: var(--white);
  border: none;
  border-radius: 12px;
}

@media (max-width: 767px) {
  .faq-content.style-1 .accordion-item .accordion-header .accordion-button.collapsed {
      font-size: 16px;
  }
}

.faq-content.style-1 .accordion-item .accordion-collapse .accordion-body {
  border: none;
  padding-bottom: 30px;
  background-color: var(--white);
  border-radius: 0px 0px 12px 12px;
}

@media (max-width: 767px) {
  .faq-content.style-1 .accordion-item .accordion-collapse .accordion-body {
      font-size: 16px;
  }
}

.faq-box {
  padding: 20px;
  margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.faq-wrapper {
  position: relative;
}

.faq-wrapper .shape1 {
  position: absolute;
  top: 60%;
  left: 10%;
  z-index: 1;
}

.faq-wrapper .shape2 {
  position: absolute;
  top: 10%;
  right: 8%;
  z-index: 1;
}

.faq-wrapper .faq-items h1 {
  color: var(--title);
  text-align: center;
  font-family: var(--title-font);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-top: 15px;
  margin-bottom: 15px;
}

.faq-wrapper .faq-items p {
  color: var(--text);
  text-align: center;
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 30px;
}

.faq-wrapper .faq-items .btn-wrapper {
  text-align: center;
  max-width: 160px;
  margin: 0px auto;
}

.faq-content-3 .accordion-item {
  margin-top: 20px;
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid rgba(92, 101, 116, 0.25);
  padding: 5px 10px;
}

.faq-content-3 .accordion-item .accordion-header .accordion-button {
  font-weight: 500;
  color: var(--title);
  letter-spacing: -0.2px;
  border: 0px;
  border-radius: 0px;
  box-shadow: none;
  background-color: transparent;
  text-transform: capitalize;
  font-size: 18px;
}

.faq-content-3 .accordion-item .accordion-header .accordion-button::after {
  content: "";
  background: transparent;
  font-family: var(--icon-font);
  font-weight: 300;
  color: var(--theme);
  transition: 0.3s ease-in-out !important;
}

.faq-content-3 .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "";
  background: transparent;
  font-family: var(--icon-font);
  font-weight: 300;
}

.faq-content-3 .accordion-item .accordion-collapse .accordion-body {
  padding-right: 30px;
  padding-top: 5px;
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
}

.faq-wrapper-4 .faq-image-area {
  position: relative;
}

.faq-wrapper-4 .faq-image-area .faq-slider {
  position: relative;
}

.faq-wrapper-4 .faq-image-area .faq-slider .btn-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50px;
  right: 50px;
  transform: translateY(-50%);
  z-index: 9;
}

.faq-wrapper-4 .faq-image-area .faq-slider .btn-wrap .arrow-prev, .faq-wrapper-4 .faq-image-area .faq-slider .btn-wrap .arrow-next {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
}

.faq-wrapper-4 .faq-image-area .faq-slider .btn-wrap .arrow-prev {
  background-color: var(--white);
  color: var(--theme);
}

.faq-wrapper-4 .faq-image-area .faq-slider .btn-wrap .arrow-next {
  background-color: var(--theme);
  color: var(--white);
}

.faq-wrapper-4 .faq-image-area::before {
  position: absolute;
  inset: 0px;
  width: 100%;
  content: "";
  border-radius: 20px;
  border: 1px solid rgba(92, 101, 116, 0.25);
  height: 82%;
  z-index: -1;
}

.faq-wrapper-4 .faq-image-area .faq-img {
  padding: 25px;
}

.faq-wrapper-4 .faq-image-area .faq-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.faq-wrapper-4 .clock-wrapper-area {
  text-align: center;
  background-color: var(--white);
  border-radius: 15px;
  padding: 30px;
  margin: 0px 30px;
}

.faq-wrapper-4 .clock-wrapper-area h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}

.faq-wrapper-4 .clock-wrapper-area .clock-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

@media (max-width: 767px) {
  .faq-wrapper-4 .clock-wrapper-area .clock-wrapper {
      flex-wrap: wrap;
  }
}

.faq-wrapper-4 .clock-wrapper-area .clock {
  background-color: var(--theme);
  border-radius: 6px;
  width: 100px;
  text-align: center;
}

.faq-wrapper-4 .clock-wrapper-area .clock .number {
  color: var(--white);
  font-size: 33px;
  font-weight: 700;
  border-bottom: 1px solid rgba(230, 247, 252, 0.2);
  padding: 20px 25px;
  line-height: 1;
}

.faq-wrapper-4 .clock-wrapper-area .clock .text {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
  text-align: center;
  padding: 5px;
}

.wcu-wrapper.style1 {
  position: relative;
}

.wcu-wrapper.style1 .shape1 {
  position: absolute;
  bottom: -100px;
  left: 40px;
  z-index: 1;
}

.wcu-wrapper.style1 .shape2 {
  position: absolute;
  top: -40px;
  right: 0px;
  z-index: 1;
}

@media (max-width: 1199px) {
  .wcu-wrapper.style1 .wcu-thumb img {
      width: 100%;
      height: 100%;
  }
}

.blog-wrapper.style1 {
  position: relative;
}

.blog-wrapper.style1 .btn-wrap .arrow-prev {
  position: absolute;
  top: 55%;
  left: 12%;
  transform: translate(-12%, -55%);
}

.blog-wrapper.style1 .btn-wrap .arrow-prev i {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background: transparent;
  color: var(--theme);
  border: 1px solid var(--theme);
  transition: 0.4s;
  border-radius: 50%;
}

.blog-wrapper.style1 .btn-wrap .arrow-prev i:hover {
  background: var(--title);
  color: var(--white);
  border: 1px solid var(--title);
}

@media (max-width: 1600px) {
  .blog-wrapper.style1 .btn-wrap .arrow-prev {
      display: none;
  }
}

.blog-wrapper.style1 .btn-wrap .arrow-next {
  position: absolute;
  top: 55%;
  right: 12%;
  transform: translate(-12%, -55%);
}

.blog-wrapper.style1 .btn-wrap .arrow-next i {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
  transition: 0.4s;
  border-radius: 50%;
}

.blog-wrapper.style1 .btn-wrap .arrow-next i:hover {
  background: var(--white);
  color: var(--title);
  border: 1px solid var(--white);
}

@media (max-width: 1600px) {
  .blog-wrapper.style1 .btn-wrap .arrow-next {
      display: none;
  }
}

.blog-wrapper.style2 {
  position: relative;
}

.blog-wrapper.style2 .shape1 {
  position: absolute;
  bottom: -100px;
  left: 40px;
  z-index: 1;
}

@media (max-width: 1399px) {
  .blog-wrapper.style2 .shape1 {
      display: none;
  }
}

.blog-card-wrap.style3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card-wrap.style3 .blog-card.style1 {
  margin-top: 0px;
}

@media (max-width: 1199px) {
  .blog-card-wrap.style3 {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .blog-card-wrap.style3 {
      grid-template-columns: repeat(1, 1fr);
  }
}

.blog-card.style1 {
  background: var(--white);
  margin-top: 40px;
}

.blog-card.style1 .blog-thumb {
  overflow: hidden;
}

.blog-card.style1 .blog-thumb img {
  width: 100%;
  transition: 0.4s;
}

.blog-card.style1 .blog-content {
  padding: 30px;
}

.blog-card.style1 .blog-content .blog-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .blog-card.style1 .blog-content .blog-meta {
      gap: 16px;
  }
}

.blog-card.style1 .blog-content .blog-meta .item1 {
  padding: 12px 20px;
  background: var(--theme);
}

.blog-card.style1 .blog-content .blog-meta .item1 h6 {
  color: var(--white);
  text-align: center;
  font-family: var(--title-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
}

.blog-card.style1 .blog-content .blog-meta .item1 p {
  color: var(--white);
  text-align: center;
  font-family: var(--body-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.blog-card.style1 .blog-content .blog-meta .item2 .icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-card.style1 .blog-content .blog-meta .item2 .icon i {
  width: 20px;
  height: 20px;
  color: var(--theme);
}

.blog-card.style1 .blog-content .blog-meta .item2 .icon span {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}

.blog-card.style1 .blog-content .blog-meta .item3 .icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-card.style1 .blog-content .blog-meta .item3 .icon i {
  width: 20px;
  height: 20px;
  color: var(--theme);
  transform: rotate(85deg);
}

.blog-card.style1 .blog-content .blog-meta .item3 .icon span {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}

.blog-card.style1 .blog-content a h3 {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 10px;
  transition: 0.4s;
}

.blog-card.style1 .blog-content a h3:hover {
  color: var(--theme);
}

.blog-card.style1 .blog-content a span {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  text-transform: capitalize;
}

.blog-card.style1 .blog-content a span i {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  text-transform: capitalize;
}

.blog-card.style1 .blog-content a:hover span {
  color: var(--theme);
}

@media (max-width: 767px) {
  .blog-card.style1 .blog-content {
      padding: 25px;
  }
}

.blog-card.style1:hover .blog-thumb img {
  transform: scale(1.1);
}

.blog-card.style2 {
  position: relative;
  z-index: 5;
  background: var(--bg2);
  margin-top: 40px;
  border: 1px solid var(--border-2);
  overflow: hidden;
  border-radius: 10px;
}

.blog-card.style2 .blog-thumb {
  overflow: hidden;
}

.blog-card.style2 .blog-thumb img {
  width: 100%;
  transition: 0.4s;
}

.blog-card.style2 .blog-content {
  padding: 0px 0px 20px 20px;
}

.blog-card.style2 .blog-content .blog-meta {
  position: relative;
  margin-bottom: 24px;
  z-index: 5;
  width: 100%;
}

.blog-card.style2 .blog-content .blog-meta .item1 {
  position: absolute;
  top: -20px;
  left: 0px;
  padding: 12px;
  background: var(--white);
  border: 5px solid var(--theme2);
  border-radius: 10px;
}

@media (max-width: 1199px) {
  .blog-card.style2 .blog-content .blog-meta .item1 {
      left: -20px;
  }
}

@media (max-width: 767px) {
  .blog-card.style2 .blog-content .blog-meta .item1 {
      left: -10px;
  }
}

.blog-card.style2 .blog-content .blog-meta .item1 h6 {
  color: var(--title);
  text-align: center;
  font-family: var(--title-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
}

.blog-card.style2 .blog-content .blog-meta .item1 p {
  color: var(--title);
  text-align: center;
  font-family: var(--body-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 0px;
}

.blog-card.style2 .blog-content .blog-meta .items-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 10px 15px 75px;
  border-bottom: 1px solid var(--border-2);
}

@media (max-width: 1199px) {
  .blog-card.style2 .blog-content .blog-meta .items-wrap {
      padding: 15px 10px 15px 35px;
  }
}

@media (max-width: 767px) {
  .blog-card.style2 .blog-content .blog-meta .items-wrap {
      padding: 15px 10px 15px 75px;
  }
}

.blog-card.style2 .blog-content .blog-meta .item2 {
  margin-left: 20px;
}

@media (max-width: 500px) {
  .blog-card.style2 .blog-content .blog-meta .item2 {
      margin-left: 0px;
  }
}

.blog-card.style2 .blog-content .blog-meta .item2 .icon {
  display: flex;
  align-items: center;
  gap: 3px;
}

.blog-card.style2 .blog-content .blog-meta .item2 .icon i {
  width: 20px;
  height: 20px;
  color: var(--theme);
}

.blog-card.style2 .blog-content .blog-meta .item2 .icon span {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}

@media (max-width: 1199px) {
  .blog-card.style2 .blog-content .blog-meta .item2 .icon span {
      font-size: 11px;
  }
}

.blog-card.style2 .blog-content .blog-meta .item3 .icon {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-card.style2 .blog-content .blog-meta .item3 .icon i {
  width: 20px;
  height: 20px;
  color: var(--theme);
  transform: rotate(85deg);
}

.blog-card.style2 .blog-content .blog-meta .item3 .icon span {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}

@media (max-width: 1199px) {
  .blog-card.style2 .blog-content .blog-meta .item3 .icon span {
      font-size: 11px;
  }
}

.blog-card.style2 .blog-content a h3 {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 10px;
  transition: 0.4s;
}

.blog-card.style2 .blog-content a h3:hover {
  color: var(--theme);
}

.blog-card.style2 .blog-content a span {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  text-transform: capitalize;
}

.blog-card.style2 .blog-content a span i {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  text-transform: capitalize;
}

.blog-card.style2 .blog-content a:hover span {
  color: var(--theme);
}

.blog-card.style2 .blog-content p {
  margin-bottom: 0px;
}

.blog-card.style2 .blog-content .link-btn {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 10px;
}

@media (max-width: 767px) {
  .blog-card.style2 .blog-content {
      padding: 0px 25px 25px;
  }
}

@media (max-width: 500px) {
  .blog-card.style2 .blog-content {
      padding: 0px 5px 25px 15px;
  }
}

.blog-card.style2:hover {
  background: var(--title);
}

.blog-card.style2:hover .blog-content a h3 {
  color: var(--white);
}

.blog-card.style2:hover .blog-thumb img {
  transform: scale(1.1);
}

.blog-card.style2:hover .blog-content .blog-meta .item1 {
  background: var(--theme2);
  border: 5px dashed var(--white);
}

.blog-card.style2:hover .blog-content .blog-meta .item1 h6 {
  color: var(--white);
}

.blog-card.style2:hover .blog-content .blog-meta .item1 p {
  color: var(--white);
}

.blog-card.style2:hover .blog-content .blog-meta .items-wrap {
  background: var(--white);
}

.blog-card.style2:hover .blog-content p {
  margin-bottom: 30px;
  color: var(--text2);
}

.blog-card.style2:hover .link-btn {
  opacity: 1;
  visibility: visible;
}

.blog-section {
  position: relative;
}

.blog-section .burger-shape {
  position: absolute;
  bottom: 20%;
  left: 0px;
}

.blog-section .pizza-shape {
  position: absolute;
  top: 10%;
  right: 0px;
}

.news-wrapper {
  padding: 0px 75px;
}

@media (max-width: 1399px) {
  .news-wrapper {
      padding: 0px;
  }
}

.single-news-items {
  margin-top: 30px;
  padding: 40px 20px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1399px) {
  .single-news-items {
      flex-wrap: wrap;
  }
}

@media (max-width: 991px) {
  .single-news-items {
      flex-wrap: initial;
  }
}

@media (max-width: 767px) {
  .single-news-items {
      flex-wrap: wrap;
  }
}

.single-news-items .news-image {
  height: 220px;
  width: 220px;
  flex-basis: 100%;
  position: relative;
}

.single-news-items .news-image .post-date {
  position: absolute;
  top: 25px;
  left: 25px;
  background-color: var(--white);
  padding: 7px 10px;
}

.single-news-items .news-image .post-date span {
  color: var(--title);
  font-weight: 600;
}

.single-news-items .news-content h3 {
  margin-bottom: 10px;
}

.single-news-items .news-content h3 a:hover {
  color: var(--theme);
}

.single-news-items .news-content .theme-btn-2 {
  color: var(--theme);
}

.news-section-3 {
  margin-bottom: -50px;
}

.news-card-items {
  margin-top: 30px;
}

.news-card-items .news-image {
  position: relative;
}

.news-card-items .news-image .post-date {
  padding: 12px 24px;
  background-color: var(--theme);
  position: absolute;
  bottom: 40px;
  left: 0px;
}

.news-card-items .news-image .post-date h3 {
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
}

.news-card-items .news-image .post-date h3 span {
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}

.news-card-items .news-content {
  padding: 30px;
  background-color: var(--white);
  position: relative;
  z-index: 9;
  margin-right: 40px;
  margin-top: -40px;
}

.news-card-items .news-content ul {
  display: flex;
  gap: 50px;
  margin-bottom: 15px;
}

@media (max-width: 1399px) {
  .news-card-items .news-content ul {
      gap: 20px;
  }
}

.news-card-items .news-content ul li {
  font-size: 14px;
  font-weight: 500;
}

.news-card-items .news-content ul li i {
  color: var(--theme);
  margin-right: 5px;
}

.news-card-items .news-content h3 {
  font-weight: bold;
  margin-bottom: 5px;
}

.news-card-items .news-content h3 a:hover {
  color: var(--theme);
}

.news-card-items.style-2 {
  padding-bottom: 50px;
}

.news-card-items.style-2 .news-image {
  position: relative;
}

.news-card-items.style-2 .news-image .post-date {
  position: absolute;
  top: 20px;
  left: 20px;
  bottom: initial;
}

.news-card-items.style-2 .news-content {
  margin: 0px;
}

.news-card-items.style-2 .news-content ul li {
  font-size: 16px;
}

.news-card-items.style-3 {
  padding-bottom: 0px;
  background-color: var(--white);
  box-shadow: none;
}

.news-card-items.style-3 .news-image {
  padding: 15px 15px 0px;
}

.news-card-items.style-3 .news-image .post-date {
  left: 30px;
  top: 30px;
}

.news-card-items.style-3 .content {
  box-shadow: none;
}

.news-standard-wrapper .news-standard-items {
  border: 1px solid rgb(227, 227, 227);
  padding: 30px;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .news-standard-wrapper .news-standard-items {
      padding: 18px;
  }
}

.news-standard-wrapper .news-standard-items:not(:last-child) {
  margin-bottom: 30px;
}

.news-standard-wrapper .news-standard-items .news-thumb {
  position: relative;
}

.news-standard-wrapper .news-standard-items .news-thumb img {
  width: 100%;
}

.news-standard-wrapper .news-standard-items .news-thumb .post-date {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  width: 59px;
  padding: 12px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: var(--theme);
  border-radius: 8px;
}

.news-standard-wrapper .news-standard-items .news-thumb .post-date h3 {
  color: var(--white);
  font-family: var(--title-font);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 0px;
}

.news-standard-wrapper .news-standard-items .news-thumb .post-date h3 span {
  color: var(--white);
  font-family: var(--title-font);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.news-standard-wrapper .news-standard-items .news-content {
  margin-top: 20px;
  position: relative;
  z-index: 9;
}

.news-standard-wrapper .news-standard-items .news-content ul {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 17px;
  list-style-type: none;
  padding-left: 0px;
}

@media (max-width: 1399px) {
  .news-standard-wrapper .news-standard-items .news-content ul {
      gap: 20px;
  }
}

.news-standard-wrapper .news-standard-items .news-content ul li {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.news-standard-wrapper .news-standard-items .news-content ul li i {
  color: var(--theme);
  margin-right: 5px;
}

.news-standard-wrapper .news-standard-items .news-content h3 {
  margin-bottom: 15px;
}

.news-standard-wrapper .news-standard-items .news-content h3 a {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}

.news-standard-wrapper .news-standard-items .news-content h3 a:hover {
  color: var(--theme2);
}

@media (max-width: 767px) {
  .news-standard-wrapper .news-standard-items .news-content h3 a {
      font-size: 25px;
      line-height: 30px;
  }
}

.news-standard-wrapper .news-standard-items .news-content p {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

@media (max-width: 767px) {
  .news-standard-wrapper .news-standard-items .news-content p {
      font-size: 15px;
      line-height: 25px;
  }
}

.news-standard-wrapper .news-standard-items .news-content a i {
  margin-left: 5px;
}

.blog-details-area .blog-post-details .single-blog-post .post-featured-thumb {
  height: 400px;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .blog-details-area .blog-post-details .single-blog-post .post-featured-thumb {
      height: 400px;
  }
}

.blog-details-area .blog-post-details .single-blog-post .post-content {
  margin-top: 30px;
}

.blog-details-area .blog-post-details .single-blog-post .post-content .post-list {
  gap: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-2);
  padding-bottom: 20px;
  padding-left: 0px;
  list-style-type: none;
}

@media (max-width: 330px) {
  .blog-details-area .blog-post-details .single-blog-post .post-content .post-list {
      gap: 4px;
  }
}

.blog-details-area .blog-post-details .single-blog-post .post-content .post-list li {
  font-size: 14px;
  font-weight: 500;
}

.blog-details-area .blog-post-details .single-blog-post .post-content .post-list li i, .blog-details-area .blog-post-details .single-blog-post .post-content .post-list li img {
  color: var(--theme);
  margin-right: 5px;
}

@media (max-width: 767px) {
  .blog-details-area .blog-post-details .single-blog-post .post-content .post-list li {
      font-size: 12px;
  }
}

.blog-details-area .blog-post-details .single-blog-post .post-content h3 {
  margin-bottom: 20px;
  font-size: 32px;
}

@media (max-width: 767px) {
  .blog-details-area .blog-post-details .single-blog-post .post-content h3 {
      font-size: 24px;
  }
}

.blog-details-area .blog-post-details .single-blog-post .post-content h3 a:hover {
  color: var(--theme);
}

.blog-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
  border-left: 4px solid var(--theme);
  padding: 40px;
  border-radius: 10px;
  background: var(--white);
}

.blog-details-area .blog-post-details .single-blog-post .post-content .hilight-text p {
  max-width: 650px;
  font-weight: 500;
  text-transform: capitalize;
  font-style: italic;
  line-height: 26px;
}

.blog-details-area .blog-post-details .single-blog-post .post-content .hilight-text svg {
  float: right;
  margin-top: -30px;
}

.blog-details-area .blog-post-details .single-blog-post .post-content .details-image img {
  width: 100%;
  border-radius: 10px;
}

.blog-details-area .blog-post-details .tag-share-wrap {
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  padding: 20px 0px;
  margin-top: 40px;
}

.blog-details-area .blog-post-details .tag-share-wrap .tagcloud a {
  display: inline-flex;
  padding: 10px 16px;
  color: var(--title);
  font-family: var(--title-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  text-transform: capitalize;
  background: var(--white);
  margin-right: 5px;
  border: 1px solid rgb(230, 229, 229);
  transition: 0.3s;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .blog-details-area .blog-post-details .tag-share-wrap .tagcloud a {
      margin-bottom: 5px;
  }
}

.blog-details-area .blog-post-details .tag-share-wrap .tagcloud a:hover {
  background: var(--theme);
  color: var(--white) !important;
}

.blog-details-area .blog-post-details .tag-share-wrap .social-share span {
  font-size: 18px;
  color: var(--title);
  font-weight: 600;
}

.blog-details-area .blog-post-details .tag-share-wrap .social-share a {
  font-size: 18px;
  color: var(--text);
}

.blog-details-area .blog-post-details .tag-share-wrap .social-share a:not(:last-child) {
  margin-right: 10px;
}

.blog-details-area .blog-post-details .tag-share-wrap .social-share a:hover {
  color: var(--theme);
}

.blog-details-area .blog-post-details .comments-area {
  margin-top: 40px;
}

.blog-details-area .blog-post-details .comments-area .comments-heading {
  margin-bottom: 0px;
}

@media (max-width: 767px) {
  .blog-details-area .blog-post-details .comments-area .comments-heading {
      margin-bottom: 20px;
  }
}

.blog-details-area .blog-post-details .comments-area .comments-heading h3 {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 37px;
  margin-bottom: 0px;
}

@media (max-width: 767px) {
  .blog-details-area .blog-post-details .comments-area .comments-heading h3 {
      font-size: 28px;
  }
}

.blog-details-area .blog-post-details .comments-area .blog-single-comment {
  border-bottom: 1px solid var(--border-2);
}

@media (max-width: 767px) {
  .blog-details-area .blog-post-details .comments-area .blog-single-comment {
      flex-wrap: wrap;
      gap: 20px;
  }
}

.blog-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h5 {
  margin-bottom: 0px;
}

.blog-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h5 a {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  text-transform: capitalize;
  transition: 0.4s ease-in-out;
}

.blog-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h5 a:hover {
  color: var(--theme2);
}

.blog-details-area .blog-post-details .comments-area .blog-single-comment .content .head .btn a {
  display: inline-flex;
  padding: 5px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: var(--theme);
  color: var(--white);
}

.blog-details-area .blog-post-details .comments-area .blog-single-comment .content .head .btn a:hover {
  background: var(--title);
  color: var(--white) !important;
}

.blog-details-area .blog-post-details .comments-area .blog-single-comment .content .reply {
  border-radius: 30px;
  padding: 5px 15px;
  font-weight: 400;
  background-color: var(--white);
  color: var(--theme);
}

.blog-details-area .blog-post-details .comment-form-wrap h3 {
  font-size: 32px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .blog-details-area .blog-post-details .comment-form-wrap h3 {
      font-size: 28px;
      margin-bottom: 20px;
  }
}

.blog-details-area .blog-post-details .comment-form-wrap .form-clt input, .blog-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  background-color: transparent;
  border: 1px solid var(--border-2);
  padding: 16px 20px;
  font-weight: 500;
}

.blog-details-area .blog-post-details .comment-form-wrap .form-clt input::placeholder, .blog-details-area .blog-post-details .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--text);
}

.blog-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
  padding-bottom: 100px;
}

.main-sidebar .single-sidebar-widget {
  padding: 40px 30px;
  background-color: var(--white);
  margin-bottom: 30px;
  border-radius: 16px;
}

.widget-title {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 5px;
  color: var(--title);
  font-family: var(--title);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
}

.widget-title::before {
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 2px;
  width: 83px;
  content: "";
  background-color: var(--theme);
}

.search-widget form {
  width: 100%;
  position: relative;
}

.search-widget form input {
  background: var(--bg2);
  font-size: 15px;
  padding: 12px 20px;
  width: 100%;
  border: none;
  color: var(--text);
  border-radius: 8px;
}

.search-widget form button {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background: transparent;
  border: none;
  color: var(--title);
  text-align: center;
  transition: background 0.3s;
  border-radius: 0px;
}

.search-widget form button:hover {
  background: var(--theme);
  color: var(--white);
}

.tagcloud {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.tagcloud h6 {
  font-size: 20px;
}

.tagcloud a.active {
  background: var(--theme) !important;
  color: var(--white) !important;
}

.tagcloud li {
  margin-right: 5px;
}

.tagcloud li a {
  display: inline-flex;
  padding: 10px 16px;
  background: var(--bg2);
  color: var(--title);
  font-family: var(--title-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  text-transform: capitalize;
  margin-bottom: 10px;
  border: none;
  transition: 0.4s ease-in-out;
  border-radius: 4px;
}

.tagcloud li a:last-child {
  margin-right: 0px;
}

.tagcloud li a:hover {
  background: var(--theme) !important;
  color: var(--white) !important;
}

.range__barcustom .price-input {
  margin-top: 10px;
  position: relative;
}

@media (max-width: 1600px) {
  .range__barcustom .price-input {
      flex-wrap: wrap;
  }
}

.range__barcustom .price-input .field {
  display: flex;
  align-items: center;
  font-size: 18px;
  width: 16%;
}

.range__barcustom .price-input .field span {
  font-size: 18px;
  font-weight: 500;
  color: var(--title);
}

.range__barcustom .separators {
  margin-left: -12px;
  padding-right: 12px;
  font-size: 24px;
  line-height: 42px;
  font-weight: 500;
}

.range__barcustom .field input {
  height: 100%;
  outline: none;
  background: transparent;
  border: unset;
  font-size: 16px;
  font-weight: 500;
  color: var(--title);
  padding: 0px;
}

.range__barcustom .field input span {
  font-weight: 500;
  color: var(--title);
  font-size: 16px;
}

.range__barcustom input[type="number"]::-webkit-outer-spin-button, .range__barcustom input[type="number"]::-webkit-inner-spin-button {
  appearance: none;
}

.range__barcustom .price-input .separator {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
}

.range__barcustom .slider {
  height: 6.75px;
  position: relative;
  background: var(--title);
  border-radius: 5px;
}

.range__barcustom .slider .progress {
  height: 100%;
  left: 25%;
  right: 25%;
  position: absolute;
  border-radius: 5px;
  background: var(--theme);
}

.range__barcustom .range-input {
  position: relative;
  display: flex;
  justify-content: center;
}

.range__barcustom .range-input input {
  position: absolute;
  width: 100%;
  height: 6.75px;
  top: -7px;
  background: none;
  pointer-events: none;
  appearance: none;
  padding: 0px;
  outline: none;
}

.range__barcustom input[type="range"]::-webkit-slider-thumb {
  height: 17px;
  width: 7px;
  border-radius: 5px;
  background: var(--theme);
  border: 1.125px solid var(--theme);
  pointer-events: auto;
  appearance: none;
}

.range__barcustom .price-input .filter-btn {
  padding: 8px 30px;
  margin-left: 15px;
  background-color: transparent;
  color: var(--title);
  font-family: var(--title-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.range__barcustom .price-input .filter-btn:hover {
  background-color: var(--theme);
  color: var(--white) !important;
}

.filter-size .input-save:not(:last-child) {
  margin-bottom: 20px;
}

.filter-size .input-save input {
  width: 20px;
  height: 19px;
  background-color: var(--theme);
  outline: none;
  color: var(--theme);
  padding: 5px;
  border-radius: 4px;
}

.filter-size .input-save label {
  margin-left: 20px;
  color: var(--title);
  font-weight: 600;
  text-transform: capitalize;
}

.recent-box {
  padding: 20px 30px;
  border: 1px solid rgb(224, 224, 224);
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
  transition: 0.4s;
  border-radius: 10px;
}

.recent-box .recent-thumb img {
  border-radius: 50%;
}

.recent-box .recent-content .star {
  margin-bottom: 10px;
  margin-top: 5px;
}

.recent-box .recent-content .price {
  display: flex;
  gap: 10px;
}

.recent-box .recent-content .price .regular-price {
  color: var(--theme);
  font-family: var(--title-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.recent-box .recent-content .price .offer-price {
  color: var(--text);
  font-family: var(--title-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.recent-box a {
  color: var(--title);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.recent-box a:hover {
  color: var(--theme);
}

.recent-box:hover {
  border: 1px solid var(--theme);
}

.recent-box:hover a {
  color: var(--theme);
}

.recent-box:last-child {
  margin-bottom: 0px;
}

.page-nav-wrap {
  margin-top: 50px;
}

@media (max-width: 575px) {
  .page-nav-wrap {
      margin-bottom: 30px;
  }
}

.page-nav-wrap ul {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}

@media (max-width: 1199px) {
  .page-nav-wrap ul {
      flex-wrap: wrap;
  }
}

.page-nav-wrap ul li .previous {
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  margin-right: 10px;
  background-color: var(--white);
  border: 1px solid transparent;
  color: var(--title);
  border-radius: 30px;
  transition: 0.4s ease-in-out;
}

.page-nav-wrap ul li .previous:hover {
  background-color: var(--theme);
  border: 1px solid transparent;
  color: var(--white) !important;
}

@media (max-width: 575px) {
  .page-nav-wrap ul li .previous {
      width: 35px;
  }
}

.page-nav-wrap ul li .next {
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  margin-right: 10px;
  background-color: var(--white);
  color: var(--title);
  border: 1px solid transparent;
  border-radius: 30px;
  transition: 0.4s ease-in-out;
}

.page-nav-wrap ul li .next:hover {
  background-color: var(--theme);
  border: 1px solid transparent;
  color: var(--white) !important;
}

@media (max-width: 575px) {
  .page-nav-wrap ul li .next {
      width: 35px;
  }
}

.page-nav-wrap ul li .page-numbers {
  display: block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  margin-right: 10px;
  background-color: var(--white);
  color: var(--title);
  border-radius: 30px;
}

.page-nav-wrap ul li .page-numbers:hover, .page-nav-wrap ul li .page-numbers.active {
  background-color: var(--theme);
  border: 1px solid transparent;
  color: var(--white) !important;
}

@media (max-width: 575px) {
  .page-nav-wrap ul li .page-numbers {
      width: 36px;
      height: 36px;
      line-height: 36px;
      text-align: center;
  }
}

.sort-bar {
  padding: 0px;
  margin: 0px 0px 10px;
  border-radius: 5px;
}

.sort-bar .woocommerce-result-count {
  margin-bottom: 0px;
}

.sort-bar .single-select {
  height: 46px;
  line-height: 46px;
  border: 1px solid rgb(232, 232, 232);
  width: fit-content;
  min-width: 209px;
  font-size: 16px;
  margin: 0px;
  padding: 0px 40px 0px 20px;
}

.sort-bar .nav-pills {
  margin-left: 10px;
}

.sort-bar .nav-pills .nav-link.active, .sort-bar .nav-pills .nav-pills .show > .nav-link {
  color: var(--theme);
  background-color: transparent;
}

.sort-bar .nav-link {
  color: var(--text);
  padding: 5px;
  margin-left: 5px;
}

.sort-bar .nav a.active, .sort-bar .nav a:hover {
  color: var(--theme) !important;
}

.categories-list .checkbox-single {
  position: relative;
  padding-left: 18px;
  cursor: pointer;
}

.categories-list .checkbox-single input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0px;
  width: 0px;
}

.categories-list .checkbox-single:not(:last-child) {
  margin-bottom: 10px;
}

.categories-list .checkbox-single .checkbox-area .checkmark {
  position: absolute;
  left: 0px;
  height: 20px;
  width: 20px;
  border: 1px solid rgb(229, 229, 229);
  top: 5px;
}

.categories-list .checkbox-single .checkbox-area .checkmark::after {
  content: "";
}

.categories-list .checkbox-single .checkbox-area input:checked ~ .checkmark {
  background-color: var(--theme);
}

.categories-list .checkbox-single .checkbox-area input:checked ~ .checkmark::after {
  content: "";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  top: -5px;
  left: 5px;
  color: var(--theme);
  font-size: 11px;
}

.categories-list .checkbox-single .checkbox-area input:checked ~ .checkmark::after {
  display: block;
  color: var(--white);
}

.categories-list .checkbox-single .text-color {
  font-weight: 600;
  color: var(--title);
}

.categories-list .checkbox-single .text-color .star {
  color: var(--theme);
  margin-right: 5px;
}

.main-sidebar2 .single-sidebar-widget {
  padding: 40px 30px;
  background-color: var(--white);
  margin-bottom: 30px;
  border-radius: 10px;
}

.main-sidebar2 .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
}

.main-sidebar2 .single-sidebar-widget .wid-title h3 {
  position: relative;
  padding-bottom: 15px;
  color: var(--title);
  font-family: var(--title-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
}

.main-sidebar2 .single-sidebar-widget .wid-title h3::before {
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 2px;
  width: 83px;
  content: "";
  background-color: var(--theme);
}

.main-sidebar2 .single-sidebar-widget .search-widget form {
  width: 100%;
  position: relative;
}

.main-sidebar2 .single-sidebar-widget .search-widget form input {
  background-color: var(--bg2);
  font-size: 15px;
  padding: 20px;
  width: 100%;
  border: none;
  color: var(--text);
}

.main-sidebar2 .single-sidebar-widget .search-widget form button {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background: var(--theme);
  border: none;
  color: var(--white);
  text-align: center;
  transition: background 0.3s;
}

.main-sidebar2 .single-sidebar-widget .search-widget form button:hover {
  background: var(--title);
}

.main-sidebar2 .single-sidebar-widget .news-widget-categories ul {
  padding-left: 0px;
  list-style-type: none;
}

.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li {
  background-color: var(--bg2);
  font-weight: 500;
  transition: 0.4s ease-in-out;
  border-radius: 8px;
}

.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  color: var(--title);
}

.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li a span {
  transition: 0.4s ease-in-out;
  color: var(--title);
}

.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li:not(:last-child) {
  margin-bottom: 12px;
  border-radius: 8px;
}

.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li:hover {
  background: var(--theme);
  color: var(--white);
}

.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li:hover a {
  color: var(--white) !important;
}

.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li:hover span {
  color: var(--white);
}

.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li.active {
  background: var(--theme);
}

.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li.active a {
  color: var(--white);
}

.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li.active span {
  color: var(--white);
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgb(230, 229, 229);
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-thumb img {
  width: 78px;
  height: 79px;
  object-fit: cover;
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content ul {
  list-style-type: none;
  padding-left: 0px;
  margin-bottom: 8px;
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li {
  color: var(--theme);
  font-family: var(--title-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li i {
  color: var(--theme2);
  margin-right: 5px;
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 {
  font-weight: 700;
  margin-bottom: 0px;
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a:hover {
  color: var(--theme2);
}

.main-sidebar2 .single-sidebar-widget .tagcloud a {
  display: inline-flex;
  padding: 10px 16px;
  color: var(--title);
  font-family: var(--title-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  text-transform: capitalize;
  background: var(--bg2);
  margin-right: 10px;
  margin-bottom: 20px;
  border: none;
  transition: 0.4s ease-in-out;
  border-radius: 4px;
}

.main-sidebar2 .single-sidebar-widget .tagcloud a:last-child {
  margin-right: 0px;
}

.main-sidebar2 .single-sidebar-widget .tagcloud a.active, .main-sidebar2 .single-sidebar-widget .tagcloud a:hover {
  background: var(--theme);
  color: var(--white) !important;
}

@media (max-width: 1199px) {
  .widget_title {
      font-size: 22px;
      margin: -0.12em 0px 24px;
  }
}

@media (max-width: 330px) {
  .recent-post .post-title {
      font-size: 16px;
      line-height: 24px;
  }

  .recent-post .recent-post-meta a {
      font-size: 12px;
  }
}

.shop-details {
  padding: 60px 0px;
}

.product-big-img {
  padding: 75px 125px;
  border-radius: 10px;
}

.product-big-img .dishes-thumb .circle-shape {
  position: absolute;
  top: -10px;
}

@media (min-width: 576px) {
  .product-big-img .dishes-thumb .circle-shape {
      display: none;
  }
}

@media (min-width: 1400px) {
  .product-big-img .dishes-thumb .circle-shape {
      display: block;
  }
}

@media (max-width: 767px) {
  .product-big-img {
      padding: 30px;
  }

  .product-big-img .dishes-thumb .circle-shape {
      position: absolute;
      top: -10px;
  }

  .product-big-img .dishes-thumb .circle-shape img {
      max-width: 283px;
  }
}

@media (max-width: 400px) {
  .product-big-img .dishes-thumb .circle-shape img {
      max-width: 229px;
  }
}

@media (max-width: 330px) {
  .product-big-img .dishes-thumb .circle-shape img {
      max-width: 177px;
  }
}

.product-about .title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-about .product-title {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  text-transform: capitalize;
}

.product-about .price {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
}

.product-about .product-rating {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-2);
}

.product-about .text {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 35px;
}

.product-about .share {
  display: flex;
  align-items: center;
  gap: 20px;
}

.actions {
  margin-bottom: 15px;
}

.actions .quantity {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.actions .quantity p {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.actions .quantity input {
  padding: 0px 5px;
  text-align: center;
  border: 1px solid var(--border-2);
  background: var(--white);
  border-radius: 5px;
}

.actions .quantity .btn-wrapper {
  display: flex;
  flex-direction: column;
}

.actions .quantity .qty-btn {
  width: 34px;
  height: 30px;
  border: 1px solid var(--border-2);
  background: var(--white);
  color: var(--text);
  border-radius: 0px 5px 0px 0px;
}

.social-media {
  display: flex;
  align-items: center;
}

.social-media li a {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 13px;
  text-align: center;
  margin-right: 10px;
  background-color: var(--white);
  color: var(--title);
  border: 1px solid var(--border-2);
  border-radius: 30px;
}

.social-media li a:hover {
  background-color: var(--theme);
  color: var(--white) !important;
}

.product-description {
  padding: 50px 0px;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--border-2);
}

.product-description h3 {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
  line-height: 50px;
  text-transform: capitalize;
}

.product-description .desc p {
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.product-review h3 {
  color: var(--title);
  font-family: var(--title-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
  line-height: 50px;
  text-transform: capitalize;
  margin-bottom: 40px;
}

.woocommerce-cart-form {
  text-align: center;
}

.cart_table {
  border: 1px solid var(--border-2);
  margin-bottom: 45px;
  width: 100%;
}

.cart_table thead {
  background-color: rgb(236, 240, 241);
}

.cart_table thead th {
  border: none !important;
}

.cart_table td::before, .cart_table th {
  font-family: var(--title-font);
  color: var(--title);
  font-weight: 800;
  border: none;
  padding: 27px 15px;
}

.cart_table td::before {
  content: attr(data-title);
  position: absolute;
  left: 15px;
  top: 50%;
  vertical-align: top;
  padding: 0px;
  transform: translateY(-50%);
  display: none;
}

.cart_table td {
  border: none;
  font-family: var(--title-font);
  color: var(--title);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  padding: 20px 10px;
  position: relative;
  vertical-align: middle;
}

.cart_table .product-quantity {
  color: var(--title);
}

.cart_table .product-quantity input {
  position: relative;
  top: -2px;
}

.cart_table .cart-productname {
  font-family: var(--title-font);
  color: var(--title);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  text-transform: capitalize;
}

.cart_table .cart-productimage {
  display: inline-block;
}

.cart_table .remove {
  color: var(--theme);
  font-size: 18px;
}

.cart_table .quantity {
  display: inline-flex;
  align-items: center;
}

.cart_table .qty-btn {
  background-color: transparent;
  color: rgb(184, 198, 208);
  padding: 0px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid var(--border-2) !important;
}

.cart_table .qty-btn:hover {
  background-color: var(--theme);
  color: var(--white);
  border-color: var(--theme) !important;
}

.cart_table .qty-input {
  vertical-align: middle;
  border: 1px solid var(--border-2);
  width: 70px;
  height: 30px;
  font-size: 14px;
  text-align: center;
  color: var(--theme);
  font-weight: 700;
  margin: 0px 10px;
  border-radius: 4px;
  padding: 0px;
}

.cart_table .qty-input::placeholder {
  color: var(--title);
}

.cart_table .qty-input::-webkit-outer-spin-button, .cart_table .qty-input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0px;
}

.cart_table .qty-input[type="number"] {
}

.cart_table .actions {
  text-align: right;
  vertical-align: middle;
}

.cart_table .actions > .th-btn {
  font-size: 16px;
  padding: 20px 28px;
  margin-right: 15px;
}

.cart_table .actions > .th-btn:last-child {
  margin-right: 0px;
}

.cart_table .th-cart-coupon {
  float: left;
  margin: 0px;
  width: 455px;
  max-width: 100%;
  display: flex;
}

.cart_table .th-cart-coupon input {
  width: calc(100% - 200px);
  margin-right: 10px;
}

.cart_table .th-cart-coupon .th-btn {
  font-size: 16px;
  padding: 20px 25px;
  width: max-content;
}

.cart_totals {
  border: 1px solid var(--border-2);
}

.cart_totals th, .cart_totals td {
  vertical-align: top;
  padding: 20px;
  border: none;
  font-size: 14px;
  color: var(--title);
  width: 55%;
}

.cart_totals th:first-child, .cart_totals td:first-child {
  width: 45%;
  background-color: rgb(249, 251, 251);
  font-weight: 700;
  font-size: 14px;
  color: rgb(51, 51, 51);
}

.cart_totals .shipping-calculator-button {
  display: inline-block;
  border-bottom: 1px solid;
  color: var(--title);
  font-weight: 700;
}

.cart_totals .shipping-calculator-button:hover {
  color: var(--theme);
}

.cart_totals .woocommerce-shipping-destination {
  margin-bottom: 10px;
}

.cart_totals .woocommerce-shipping-methods {
  margin-bottom: 0px;
}

.cart_totals .shipping-calculator-form {
  display: none;
  margin-top: 20px;
}

.cart_totals .shipping-calculator-form .form-control, .cart_totals .shipping-calculator-form .single-select {
  margin-bottom: 20px;
}

.cart_totals .shipping-calculator-form .th-btn {
  padding: 5px 30px;
}

.cart_totals .amount {
  font-weight: 700;
}

.cart_totals .order-total .amount {
  color: var(--theme);
}

@media (max-width: 991px) {
  .cart_table th {
      padding: 23px 8px;
      font-size: 14px;
  }

  .cart_table .cart-productname {
      font-size: 14px;
  }

  .cart_table .th-cart-coupon {
      width: 100%;
      margin-bottom: 20px;
      justify-content: center;
  }

  .cart_table .actions {
      text-align: center;
  }
}

@media (max-width: 767px) {
  .cart_table {
      text-align: left;
      min-width: auto;
      border-collapse: separate;
      border-spacing: 0px 20px;
      border: none;
  }

  .cart_table thead {
      display: none;
  }

  .cart_table td {
      padding: 15px 15px 15px 25%;
      display: block;
      width: 100%;
      text-align: right;
      border-top: 1px solid rgb(243, 243, 243);
      border-right: 1px solid rgb(243, 243, 243);
      border-left: 1px solid rgb(243, 243, 243);
      border-image: initial;
      border-bottom: none;
  }

  .cart_table td::before {
      display: block;
  }

  .cart_table td:last-child {
      border-bottom: 1px solid rgb(243, 243, 243);
  }

  .cart_table td.actions {
      padding-left: 15px;
      text-align: center;
  }

  .cart_table td.actions > .th-btn {
      margin-top: 10px;
      display: block;
      width: max-content;
      margin-left: auto;
      margin-right: auto;
  }

  .cart_table td.actions > .th-btn:last-child {
      margin-right: auto;
  }

  .cart_table .th-cart-coupon {
      width: 100%;
      text-align: center;
      float: none;
      justify-content: center;
      display: block;
      padding-bottom: 10px;
  }

  .cart_table .th-cart-coupon input {
      width: 100%;
      margin-bottom: 10px;
  }

  .cart_totals th, .cart_totals td {
      padding: 15px 10px;
  }

  .cart_totals th:first-child, .cart_totals td:first-child {
      width: 17%;
      line-height: 1.4;
  }
}

.woocommerce-checkout .form-group, .woocommerce-checkout .form-row {
  margin-bottom: 0px;
}

.woocommerce-checkout .form-select, .woocommerce-checkout .select2-container, .woocommerce-checkout .form-control {
  margin-bottom: 0px;
}

.woocommerce-checkout .select2-container--open .select2-dropdown--below {
  margin-top: -35px;
}

.woocommerce-checkout .select2-container--open .select2-dropdown--above {
  position: relative;
  bottom: -30px;
}

.woocommerce-checkout .select2-dropdown {
  border-right: 1px solid rgb(227, 230, 233);
  border-bottom: 1px solid rgb(227, 230, 233);
  border-left: 1px solid rgb(227, 230, 233);
  border-image: initial;
  border-top: none;
}

.woocommerce-checkout .select2-container--default .select2-selection--single {
  border-radius: 0px;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered, .woocommerce-checkout .select2-container--default .select2-selection--single .form-control:focus {
  color: var(--text);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid rgb(238, 238, 238);
  padding: 0px;
}

.woocommerce-form-login select, .woocommerce-form-login .form-select, .woocommerce-form-login .form-control, .woocommerce-form-login .select2, .woocommerce-form-login .select2-container, .woocommerce-form-coupon select, .woocommerce-form-coupon .form-select, .woocommerce-form-coupon .form-control, .woocommerce-form-coupon .select2, .woocommerce-form-coupon .select2-container, .woocommerce-checkout select, .woocommerce-checkout .form-select, .woocommerce-checkout .form-control, .woocommerce-checkout .select2, .woocommerce-checkout .select2-container {
  margin-bottom: var(--bs-gutter-x);
}

#ship-to-different-address {
  margin-top: 15px;
}

.woocommerce-checkout .nice-select:active, .woocommerce-checkout .nice-select.open, .woocommerce-checkout .nice-select:focus {
}

.woocommerce-checkout .nice-select {
  font-size: 16px;
  border: none !important;
}

.checkout-ordertable th, .checkout-ordertable td {
  border: 1px solid var(--border-2);
}

.select2-container--default .select2-selection--single {
  height: 60px;
  border: 1px solid rgb(227, 230, 233);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 60px;
  padding-left: 30px;
  padding-right: 25px;
}

.woocommerce-billing-fields .form-row {
  margin-bottom: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  margin: 0px;
  border: none;
  top: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 60px;
  line-height: 60px;
  margin-right: 30px;
}

span.select2-selection.select2-selection--single:focus {
  outline: none;
}

.shipping-calculator-form .form-select, .shipping-calculator-form .form-control {
  height: 40px;
  padding-left: 15px;
  font-size: 16px;
  line-height: 40px;
  border-radius: 0px;
  background-position: right 13px center;
}

.shipping-calculator-form .as-btn {
  font-size: 14px;
  padding: 0px 20px;
  width: max-content;
  height: 40px;
}

.checkout-ordertable th, .checkout-ordertable td {
  text-align: right;
  padding: 5px 20px;
  vertical-align: top;
  font-size: 14px;
  font-weight: 600;
  color: rgb(44, 62, 80);
}

.checkout-ordertable th {
  font-weight: 800;
  text-align: left;
}

.checkout-ordertable ul {
  margin: 0px;
  padding: 0px;
}

.checkout-ordertable .order-total .amount {
  color: var(--theme);
}

.checkout-ordertable input[type="hidden"] ~ label {
  color: var(--theme);
}

.woocommerce-checkout .form-group input:not(:last-child) {
  margin-bottom: var(--bs-gutter-x);
}

.woocommerce-checkout-payment {
  text-align: left;
}

.woocommerce-checkout-payment ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

.woocommerce-checkout-payment ul li {
  padding-top: 12px;
  border-bottom: 1px solid rgb(216, 216, 216);
  border-radius: 4px;
  font-size: 16px;
}

.woocommerce-checkout-payment ul input[type="radio"] ~ label {
  margin-bottom: 17px;
  color: var(--text);
}

.woocommerce-checkout-payment ul input[type="radio"] ~ label img {
  margin-bottom: -2px;
  margin-left: 10px;
}

.woocommerce-checkout-payment .place-order {
  padding-top: 30px;
}

.woocommerce-checkout-payment .payment_box {
  color: rgb(161, 177, 188);
  background-color: rgb(236, 240, 241);
  border-top: 1px solid rgb(216, 216, 216);
  border-right: 1px solid rgb(216, 216, 216);
  border-left: 1px solid rgb(216, 216, 216);
  border-image: initial;
  border-bottom: none;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 4px;
  display: none;
}

.woocommerce-checkout-payment .payment_box p {
  margin: 0px;
}

.as-checkout-wrapper form.woocommerce-form {
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  tfoot.checkout-ordertable th {
      display: none;
  }

  .woocommerce-checkout-payment ul input[type="radio"] ~ label img {
      max-width: 150px;
  }

  .checkout-ordertable th, .checkout-ordertable td {
      padding: 5px 20px 5px 60px;
  }
}

.tinv-wishlist input[type="checkbox"] {
  display: inline-block;
  opacity: 1;
  visibility: visible;
  vertical-align: middle;
  width: auto;
  height: auto;
}

.tinv-wishlist .tinv-header {
  color: var(--title);
  margin-bottom: 25px;
}

.tinv-wishlist .cart-empty {
  padding: 12px 25px;
  background-color: rgb(238, 238, 238);
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
}

.tinv-wishlist p.return-to-shop .button {
  display: inline-block;
  background-color: var(--theme);
  color: rgb(255, 255, 255);
  font-size: 14px;
  padding: 10px 25px;
  margin-top: 10px;
  font-weight: 700;
}

.tinv-wishlist p.return-to-shop .button:hover {
  background-color: var(--title);
  color: var(--white);
}

.tinv-wishlist table {
  border: 1px solid var(--white);
}

.tinv-wishlist table th {
  color: var(--title);
}

.tinv-wishlist table td, .tinv-wishlist table th {
  padding: 15.3px 10px;
  text-align: center;
  border: 1px solid rgb(221, 221, 221);
}

.tinv-wishlist table td span bdi, .tinv-wishlist table th span bdi {
  color: var(--theme2);
}

.tinv-wishlist table thead {
  background-color: var(--white);
}

.tinv-wishlist .product-cb, .tinv-wishlist .product-remove {
  width: 40px;
  text-align: center;
}

.tinv-wishlist .product-thumbnail {
  width: 110px;
}

.tinv-wishlist .stock.in-stock {
  margin-bottom: 0px;
}

.tinv-wishlist ins {
  text-decoration: none;
}

.tinv-wishlist .product-remove button {
  border: none;
  height: 22px;
  width: 22px;
  text-align: center;
  font-size: 12px;
  line-height: 22px;
  border-radius: 0px;
  padding-top: 0px;
}

.tinv-wishlist .product-remove button i {
  line-height: 22px;
  font-size: 16px;
}

.tinv-wishlist .tinvwl-mobile {
  display: none;
}

.tinv-wishlist .social-buttons {
  display: flex;
  max-width: 295px;
  margin-left: auto;
  align-items: center;
  margin-top: 30px;
}

.tinv-wishlist .social-buttons ul {
  padding-left: 0px;
  margin-bottom: 0px;
  margin-left: auto;
  display: flex;
  gap: 6px;
}

.tinv-wishlist table.tinvwl-table-manage-list {
  font-size: 16px;
  width: 100%;
  background: var(--white);
}

.tinv-wishlist .product-stock .stock {
  display: block;
}

.tinv-wishlist .product-stock span {
  display: inline;
}

.tinv-wishlist .product-stock i {
  margin-right: 5px;
}

.tinv-wishlist .tinv-modal .icon_big_times {
  margin-bottom: 5px;
  color: var(--theme);
}

.tinv-wishlist button.button {
  border: none;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  font-weight: 600;
  background-color: var(--theme);
  padding: 1px 15px;
  min-width: 140px;
}

.tinv-wishlist button.button.mask-btn {
  padding: 0px;
}

.tinv-wishlist button.button .btn-text-mask {
  padding: 0.5px 21px;
}

.tinv-wishlist button.button {
  color: var(--white);
}

.tinv-wishlist button.button:hover {
  background-color: var(--title);
  color: rgb(255, 255, 255);
}

.tinv-wishlist button.button i {
  font-size: 14px !important;
  margin-right: 3px !important;
}

.tinv-wishlist th, .tinv-wishlist td.product-name {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--title-font);
}

.tinv-wishlist td.product-name a {
  color: var(--text);
}

.tinv-wishlist td.product-name a:hover {
  color: var(--theme);
}

.tinv-wishlist td.product-price del {
  margin-left: 8px;
  font-size: 0.9em;
}

.tinv-wishlist .social-buttons > span {
  font-weight: 700;
  margin-right: 10px;
  font-family: var(--title-font);
  color: var(--title);
}

.tinv-wishlist .social-buttons li {
  display: inline-block;
  margin-right: 0px;
}

.tinv-wishlist .social-buttons li a.social {
  background-color: var(--theme);
  color: var(--title);
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  display: inline-block;
  text-align: center;
  border-radius: 50px;
  margin-left: 3px;
}

.tinv-wishlist .social-buttons li a.social:first-child {
  margin-left: 0px;
}

.tinv-wishlist .social-buttons li a.social i {
  line-height: inherit;
  color: var(--white);
}

.tinv-wishlist .social-buttons li a.social:hover {
  background-color: var(--title);
  color: var(--white);
}

@media (max-width: 991px) {
  .tinvwl-full {
      display: none;
  }

  .tinv-wishlist .tinvwl-mobile {
      display: block;
  }

  .tinvwl-txt {
      display: none !important;
  }

  .product-stock {
      width: 40px;
      text-align: center;
  }
}

@media (max-width: 767px) {
  .tinv-wishlist table {
      table-layout: fixed;
      border-bottom: 1px solid var(--border-2);
  }

  .tinv-wishlist table.tinvwl-table-manage-list tbody td.product-remove, .tinv-wishlist table.tinvwl-table-manage-list thead th:not(.product-name) {
      display: none;
  }

  .tinv-wishlist table td, .tinv-wishlist table th {
      border: 1px solid var(--border-2);
  }

  .tinv-wishlist table.tinvwl-table-manage-list tbody td {
      display: block;
      text-align: center;
      width: 100% !important;
  }

  .product-name {
      text-align: center;
  }

  .tinv-wishlist table td, .tinv-wishlist table th {
      border-bottom: none;
  }

  .tinv-wishlist table tfoot {
      border-bottom: 1px solid var(--border-2);
  }

  .tinv-wishlist .social-buttons {
      max-width: 100%;
      margin-left: unset;
      flex-direction: column;
  }

  .tinv-wishlist .social-buttons ul {
      margin-left: unset;
      margin-top: 5px;
  }

  .tinvwl-txt {
      display: inline-block !important;
  }
}

.woocommerce-table th, .woocommerce-table td {
  border: 1px solid var(--border-2);
}

.woocommerce-message, .woocommerce-info {
  position: relative;
  padding: 11px 20px 11px 50px;
  background-color: var(--theme);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  border-radius: 0px;
}

.woocommerce-message a, .woocommerce-info a {
  color: var(--white);
  text-decoration: underline;
}

.woocommerce-message a:hover, .woocommerce-info a:hover {
  color: var(--title);
}

.woocommerce-message::before, .woocommerce-info::before {
  content: "";
  font-weight: 400;
  font-family: "Font Awesome 6 Pro";
  margin-right: 10px;
  font-size: 18px;
  position: absolute;
  left: 20px;
  top: 11px;
}

.woocommerce-notices-wrapper .woocommerce-message {
  background-color: var(--theme);
  color: var(--white);
}

.woocommerce-notices-wrapper .woocommerce-message::before {
  content: "";
  font-weight: 300;
}

.woocommerce-form-login-toggle .woocommerce-info {
  background-color: var(--theme);
  color: var(--white);
}

.woocommerce-form-login-toggle .woocommerce-info a {
  color: var(--white);
}

.woocommerce-form-login-toggle .woocommerce-info a:hover {
  color: var(--bg);
}

.woocommerce-form-register, .woocommerce-form-coupon, .woocommerce-form-login {
  padding: 35px 40px;
  background-color: var(--white);
  box-shadow: rgba(1, 15, 28, 0.1) 0px 6px 30px;
  margin-bottom: 0px;
}

@media (max-width: 575px) {
  .woocommerce-form-register, .woocommerce-form-coupon, .woocommerce-form-login {
      padding: 40px 20px;
  }
}

.woocommerce-form-register .form-group, .woocommerce-form-coupon .form-group, .woocommerce-form-login .form-group {
  margin-bottom: 20px;
}

.woocommerce-form-register .form-group:last-child, .woocommerce-form-coupon .form-group:last-child, .woocommerce-form-login .form-group:last-child {
  margin-bottom: 0px;
}

.woocommerce-form-login {
  margin-bottom: 30px;
}

.woocommerce-error {
  background-color: var(--theme);
  color: rgb(255, 255, 255);
  list-style: none;
  padding: 10px 26px;
  margin: 0px 0px 30px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
}

nav.woocommerce-MyAccount-navigation li {
  border-right: 1px solid rgb(221, 221, 221);
  border-bottom: 1px solid rgb(221, 221, 221);
  border-left: 1px solid rgb(221, 221, 221);
  border-image: initial;
  margin: 0px;
  border-top: none;
}

nav.woocommerce-MyAccount-navigation li:first-child {
  border-top: 1px solid rgb(221, 221, 221);
}

nav.woocommerce-MyAccount-navigation li a {
  color: var(--title);
  font-weight: 700;
  padding: 7px 17px;
  display: block;
}

nav.woocommerce-MyAccount-navigation li.is-active a, nav.woocommerce-MyAccount-navigation li a:hover {
  color: var(--white);
  background-color: var(--theme);
}

.woocommerce-MyAccount-content h3 {
  margin-top: -0.3em;
}

.woocommerce-MyAccount-content .btn {
  background-color: var(--theme);
  color: var(--white);
  font-size: 14px;
  padding: 10px 25px;
  font-weight: 700;
}

.woocommerce-MyAccount-content .btn:hover {
  background-color: var(--title);
  color: var(--white);
}

table.variations, .woocommerce-grouped-product-list-item {
  border-collapse: separate;
  border-spacing: 0px 15px;
  margin-bottom: 5px;
  align-items: center;
  border: none;
}

table.variations td, .woocommerce-grouped-product-list-item td {
  border: none;
  vertical-align: middle;
  padding: 0px 5px;
}

table.variations td:first-child, .woocommerce-grouped-product-list-item td:first-child {
  padding: 0px;
}

table.variations label, .woocommerce-grouped-product-list-item label {
  margin: 0px;
  font-size: 14px;
  text-transform: capitalize;
}

table.variations label a, .woocommerce-grouped-product-list-item label a {
  color: var(--title);
}

table.variations label a:hover, .woocommerce-grouped-product-list-item label a:hover {
  color: var(--theme);
}

table.variations .label, .woocommerce-grouped-product-list-item .label {
  border: none;
}

table.variations__label, .woocommerce-grouped-product-list-item__label {
  font-weight: 600;
  border: none !important;
}

table.variations__price, .woocommerce-grouped-product-list-item__price {
  border: none !important;
}

table.variations__price .price, table.variations__price .amount, .woocommerce-grouped-product-list-item__price .price, .woocommerce-grouped-product-list-item__price .amount {
  font-size: 18px !important;
}

table.variations del, .woocommerce-grouped-product-list-item del {
  margin-left: 12px;
}

.woocommerce-product-attributes th, .woocommerce-product-attributes td {
  border: 1px solid var(--border-color);
}

.woocommerce-product-attributes th p:last-child, .woocommerce-product-attributes td p:last-child {
  margin-bottom: 0px;
}

.woocommerce-grouped-product-list.group_table {
  border-collapse: collapse;
  margin-bottom: 15px;
}

.woocommerce-grouped-product-list.group_table .woocommerce-Price-amount.amount {
  font-size: 16px;
  color: var(--title);
}

.woocommerce-grouped-product-list.group_table label {
  margin: 0px 0px 0px 10px;
  font-family: var(--title-font);
  font-size: 18px;
}

.woocommerce-grouped-product-list.group_table .qty-input {
  border-color: rgb(227, 230, 233);
}

.woocommerce-grouped-product-list.group_table tr {
  border-bottom: 1px solid rgb(227, 230, 233);
}

.woocommerce-grouped-product-list.group_table tr:last-child {
  border-bottom: none;
}

.woocommerce-grouped-product-list.group_table td {
  padding: 30px 5px;
}

table.variations {
  width: max-content;
  position: relative;
}

table.variations td {
  padding: 0px;
}

table.variations td.label {
  padding-right: 10px;
  width: max-content;
}

table.variations select {
  width: max-content;
  font-weight: 400;
  line-height: 1.5;
  vertical-align: middle;
  margin: 0px;
  padding-right: 54px;
  padding-left: 20px;
  height: 50px;
}

table.variations .reset_variations {
  margin-left: 16px;
  display: inline-block;
  position: absolute;
  left: 100%;
  bottom: 25px;
}

.woosq-product .product .woocommerce-grouped-product-list-item__quantity, .woosq-product .product .woocommerce-grouped-product-list-item__label, .woosq-product .product .woocommerce-grouped-product-list-item__price {
  width: auto !important;
}

.woocommerce-variation.single_variation {
  margin-bottom: 30px;
}

.woocommerce-variation.single_variation .price {
  color: var(--title);
  font-weight: 700;
}

.wooscp-table-items td.woocommerce-product-attributes-item__value {
  padding-left: 15px !important;
}

.wooscp-table-items a.added_to_cart.wc-forward {
  margin-left: 15px;
  text-decoration: underline;
}

.tinvwl_added_to_wishlist.tinv-modal.tinv-modal-open {
  z-index: 1111;
}

table.woocommerce-product-attributes {
  margin-bottom: 30px;
}

#woosq-popup .product_meta {
  margin-top: 20px;
}

#woosq-popup .product_title {
  font-size: 24px;
  margin-bottom: 5px;
}

#woosq-popup .single-product .product .actions {
  align-items: center;
  display: flex;
  gap: 20px;
}

#woosq-popup .single-product .product .actions > div {
  height: auto;
  overflow: visible;
  width: max-content;
}

#woosq-popup .single-product .product .actions > div .quantity.style2.woocommerce-grouped-product-list-item__quantity {
  width: max-content;
}

.login-tab {
  margin-bottom: 30px;
  justify-content: center;
}

.login-tab button.nav-link {
  background-color: var(--bg);
  color: var(--title);
  padding: 11px 39px;
  font-size: 18px;
  font-weight: 500;
}

.login-tab button.nav-link.active {
  background-color: var(--theme);
  color: var(--white);
}

.star-rating {
  overflow: hidden;
  position: relative;
  width: 100px;
  height: 1.2em;
  line-height: 1.2em;
  display: block;
  font-weight: 700;
  font-size: 12px;
}

.star-rating::before {
  content: "";
  color: rgb(225, 225, 225);
  float: left;
  top: 0px;
  left: 0px;
  position: absolute;
  letter-spacing: 3px;
}

.star-rating span {
  overflow: hidden;
  float: left;
  top: 0px;
  left: 0px;
  position: absolute;
  padding-top: 1.5em;
}

.star-rating span::before {
  content: "";
  top: 0px;
  font-family: var(--icon-font);
  position: absolute;
  left: 0px;
  color: rgb(254, 182, 42);
  letter-spacing: 3px;
}

.rating-select label {
  margin: 0px 10px 0px 0px;
}

.rating-select p.stars {
  margin-bottom: 0px;
  line-height: 1;
}

.rating-select p.stars a {
  position: relative;
  height: 14px;
  width: 18px;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
}

.rating-select p.stars a::before {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 18px;
  height: 14px;
  line-height: 1;
  content: "";
  font-weight: 400;
  text-indent: 0px;
  color: var(--theme2);
}

.rating-select p.stars a:hover ~ a::before {
  content: "";
  font-weight: 400;
}

.rating-select p.stars:hover a::before {
  content: "";
  font-weight: 700;
}

.rating-select p.stars.selected a.active::before {
  content: "";
  font-weight: 700;
}

.rating-select p.stars.selected a.active ~ a::before {
  content: "";
  font-weight: 400;
}

.rating-select p.stars.selected a:not(.active)::before {
  content: "";
  font-weight: 700;
}

@media (max-width: 767px) {
  .woocommerce-message, .woocommerce-info {
      font-size: 14px;
      line-height: 22px;
      padding: 10px 15px 10px 37px;
  }

  .woocommerce-message::before, .woocommerce-info::before {
      font-size: 16px;
      top: 10px;
      left: 15px;
  }
}

.title-area {
  padding: 41px 0px 24px;
}

section.about-us-section.fix.pb-0 {
  padding: 35px 0px 0px;
}

section.about-us-section.fix {
  padding: 40px 0px;
  background: rgb(255, 255, 255);
}

div#logo img {
  width: 85%;
}
