@charset "UTF-8";
/*-----------------------------------------------------------------
Theme Name: Fodis
Author: Gramentheme
Author URI: https://themeforest.net/user/gramentheme 
Version: 1.0.0 
Description: Fodis food & Restaurant  WP Theme

-------------------------------------------------------------------
 CSS TABLE OF CONTENTS
-------------------------------------------------------------------

01.Mixins
02.Variables
03.Typography
04.Buttons 
05.Gutter 
06.Container 
07.Animation 
08.Helping 
09.MeanMenu 
10.Preloader
11.Title 
12.Common 
13.Header 
14.Footer 
15.Contact 
16.Banner 
17.Breadcumb
18.Marquee
19.Gallery
20.Testimonial
21.Chefe
22.History 
23.Timer
24.Menu
25.Cta
26.Popular Dishes
27.About
28.Services
29.Offer
30.Food Items
31.Faq
32.Wcu
33.Blog
34.Blog Extra
35.Sidebar
36.Shop
37.Cart
38.Checkout
39.Wishlist
40.Woocommerce

------------------------------------------------------------------*/
/* 01.Mixins */
/* 02.Variables */

: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";
}

/* 03.Typography */
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

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

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

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: 0;
  color: var(--title);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* 05.Gutter */
@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;
}

/* 06.Container */
@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: 0 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;
  }
}
/* 07.Animation */
@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
.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%;
  -webkit-box-shadow: 0 0 0 0 rgb(255, 255, 255);
  box-shadow: 0 0 0 0 rgb(255, 255, 255);
  animation: rippleOne 2s infinite;
}
.ripple-effect .playerImg {
  width: 28px;
  height: 25.972px;
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    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: cir36 20s linear infinite;
  -webkit-animation: cir36 20s linear infinite;
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

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

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@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(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
  100% {
    width: var(--progress-width);
  }
}
.reveal {
  position: relative;
  display: -ms-inline-flexbox;
  visibility: hidden;
  overflow: hidden;
}

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

.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: all 600ms linear;
  background-color: transparent;
}

@keyframes slideDown {
  from {
    top: 370px;
  }
  to {
    top: 0px;
  }
}
/* 08.Helping */
::-webkit-scrollbar {
  width: 12px;
  height: 4px;
}

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

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme2);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-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;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(56, 75, 255, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}
.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.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 {
  top: 0;
  right: 51%;
  bottom: 0;
  left: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mega-hover:after {
  top: 50%;
  right: 0;
  bottom: 50%;
  left: 0;
  background: rgba(245, 255, 255, 0.3);
}

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

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

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

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

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

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

.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: 0;
  }
}

.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: 0 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: var(--bg2) !important;
}

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

.dark-mood {
  background-color: #181818;
}

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

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

.text-dark2 {
  color: #838387 !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;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

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

/* 09.MeanMenu */
.mean-container a.meanmenu-reveal {
  display: none;
}

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

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

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  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: 0 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: all 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;
  color: var(--white) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0;
}
.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: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 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: 0;
}
.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 0;
  color: var(--title) !important;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border) !important;
  border: none;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

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

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

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !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: 0;
}

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

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

/* 10.Preloader */
.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: bold 5em 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: letters-loading 4s infinite;
  color: var(--title);
  content: attr(data-text-preloader);
  left: 0;
  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: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: var(--bg);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 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: 0;
  transition: 0.7s;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -ms-transition: 0.7s;
  -o-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: all 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(0);
}

/* 11.Title */
.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 0 90px 0;
    z-index: 9;
  }
}
@media (max-width: 767px) {
  .section-title {
    padding: 110px 0 110px 0;
  }
}

.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: 16px;
  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: 45px;
}

/* 12.Common */
.fancy-box.style1 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.fancy-box.style1 .item .icon {
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-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%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-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%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-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%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.fancy-box.style4 .item p {
  color: #1E2023;
  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: #0E1317;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.fancy-box.style5 .item p {
  color: #1E2023;
  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(--title);
  font-family: var(--body-font);
  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: "";
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: inline-block;
  z-index: 9;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
.social-profile ul {
  max-width: 50px;
  margin: 0 auto;
  transform: translateY(100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
  border-radius: 144px;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  -webkit-border-radius: 144px;
  -moz-border-radius: 144px;
  -ms-border-radius: 144px;
  -o-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);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
.social-profile 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);
  color: var(--white) !important;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}
.social-profile .plus-btn a {
  background-color: var(--theme);
  color: var(--white) !important;
}
.social-profile:hover ul {
  transform: translateY(10%);
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(10%);
  -moz-transform: translateY(10%);
  -ms-transform: translateY(10%);
  -o-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 #E5E5E5;
}
.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;
  background-color: #D9DDFF !important;
  border-radius: 10px;
  overflow: visible;
}
.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: 0;
}
.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: all 0.4s ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 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: all 0.4s ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 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: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--theme2);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.cursor-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);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  -o-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}
.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 0 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;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: var(--bg2);
  border: 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-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;
}

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

input[type=checkbox] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  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;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
  z-index: 9;
}

input[type=checkbox].style2 ~ label {
  color: #8B929C;
  padding-left: 23px;
  margin-bottom: -0.5em;
}

input[type=checkbox].style2 ~ label:before {
  background-color: white;
  border: 1px solid #f7ccd7;
  height: 14px;
  width: 14px;
  line-height: 14px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  top: 6px;
}

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

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

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

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

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: 0;
  left: 0;
  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: slideInUp 0.3s;
}

@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: 0;
  padding: 0 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: 0 0;
    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 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 90px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

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

.section-padding2 {
  padding: 110px 0 270px;
}
@media (max-width: 1199px) {
  .section-padding2 {
    padding: 90px 0 240px;
  }
}
@media (max-width: 991px) {
  .section-padding2 {
    padding: 80px 0 230px;
  }
}
@media (max-width: 767px) {
  .section-padding2 {
    padding: 80px 0 190px;
  }
}

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

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

.modal {
  display: none;
  position: fixed;
  z-index: 2050;
  left: 0;
  top: 0;
  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%;
  border-radius: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-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(180deg, rgba(72, 67, 67, 0.3) 0%, #222 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);
}

/* 13.Header */
.header-top-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 50px;
  background-image: url(../img/headerTopBg.png);
  background-repeat: no-repeat;
  background-position: center;
  clip-path: polygon(1110px 0px, 100% 0px, 100% 50px, 100% calc(100% - 49px), 100% 100%, 199px 100%, 27px 100%, 38px 0px);
}
@media (max-width: 1600px) {
  .header-top-wrapper {
    background-color: var(--theme);
    background-image: none;
    clip-path: none;
  }
}
@media (max-width: 1199px) {
  .header-top-wrapper {
    display: none;
  }
}
@media (min-width: 2000px) {
  .header-top-wrapper {
    clip-path: none;
    background-image: none;
    background-color: var(--theme);
  }
}
.header-top-wrapper span {
  color: rgba(255, 255, 255, 0.8);
}
.header-top-wrapper span i {
  color: var(--white);
  margin-right: 5px;
}
.header-top-wrapper .social-icon {
  gap: 17px;
}
.header-top-wrapper .social-icon a {
  color: var(--white);
}
.header-top-wrapper .social-icon a:hover {
  color: var(--theme);
}

.header-top-wrapper-2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 50px;
}
@media (max-width: 1899px) {
  .header-top-wrapper-2 {
    background-color: var(--theme);
    background-image: none;
    clip-path: none;
  }
  .header-top-wrapper-2 .top-text {
    font-size: 0.7rem;
  }
}
@media (max-width: 1199px) {
  .header-top-wrapper-2 {
    display: none;
  }
}
.header-top-wrapper-2 span {
  color: rgba(255, 255, 255, 0.8);
}
.header-top-wrapper-2 span i {
  color: var(--white);
  margin-right: 5px;
}
.header-top-wrapper-2 .social-icon {
  gap: 17px;
}
.header-top-wrapper-2 .social-icon a {
  color: var(--white);
}
.header-top-wrapper-2 .social-icon a:hover {
  color: var(--theme);
}

.header-top-section {
  position: relative;
  z-index: 9;
}
@media (max-width: 575px) {
  .header-top-section {
    display: none;
  }
}
.header-top-section .container-fluid {
  padding: 0 150px;
}
@media (max-width: 1899px) {
  .header-top-section .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1600px) {
  .header-top-section .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-top-section .container-fluid {
    padding: 0 20px;
  }
}

.header-section {
  position: relative;
  background-color: var(--white);
  z-index: 99;
}
.header-section .black-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 146px;
  background-color: var(--title);
  z-index: 9;
}
@media (max-width: 1760px) {
  .header-section .black-bg {
    width: 85px;
  }
}
@media (max-width: 1600px) {
  .header-section .black-bg {
    width: 50px;
  }
}
@media (max-width: 1199px) {
  .header-section .black-bg {
    display: none;
  }
}
.header-section .red-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 48px;
  background-color: var(--theme);
  z-index: 99;
}
@media (max-width: 1760px) {
  .header-section .red-bg {
    width: 85px;
  }
}
@media (max-width: 1600px) {
  .header-section .red-bg {
    width: 51px;
  }
}
@media (max-width: 1199px) {
  .header-section .red-bg {
    display: none;
  }
}
.header-section .container-fluid {
  padding: 0 150px;
}
@media (max-width: 1899px) {
  .header-section .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1600px) {
  .header-section .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-section .container-fluid {
    padding: 0 30px;
  }
}

.header-section-2 {
  position: relative;
  background-color: var(--title);
  z-index: 99;
  background-image: url(../img/header2Bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 2200px) {
  .header-section-2 {
    background-image: none !important;
  }
  .header-section-2 .header-top-wrapper-2 {
    background: var(--theme);
  }
  .header-section-2 .header-top-wrapper-2 span {
    color: var(--white) !important;
  }
  .header-section-2 .header-2 .header-main .main-menu ul li a {
    color: var(--white);
  }
  .header-section-2 .sticky.header-2 .header-main .main-menu ul li a {
    color: var(--title);
  }
}
@media (max-width: 1899px) {
  .header-section-2 {
    background-image: none;
  }
}
.header-section-2 .container-fluid {
  padding: 0 136px;
}
@media (max-width: 1899px) {
  .header-section-2 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1600px) {
  .header-section-2 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-section-2 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .header-section-2 .container-fluid {
    padding: 0 15px;
  }
}

.header-section-3 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: transparent;
  z-index: 99;
}
.header-section-3 .main-header-wrapper .logo-image {
  padding: 0 100px 0 120px;
  background-color: transparent;
}
@media (max-width: 1399px) {
  .header-section-3 .main-header-wrapper .logo-image {
    padding: 0 30px 0 50px;
  }
}
.header-section-3 .header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 40px;
  color: var(--text);
}
.header-section-3 .black-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 146px;
  background-color: var(--title);
  z-index: 9;
}
@media (max-width: 1600px) {
  .header-section-3 .black-bg {
    width: 50px;
  }
}
@media (max-width: 1199px) {
  .header-section-3 .black-bg {
    display: none;
  }
}
.header-section-3 .red-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 48px;
  background-color: var(--theme);
  z-index: 99;
}
@media (max-width: 1600px) {
  .header-section-3 .red-bg {
    width: 51px;
  }
}
@media (max-width: 1199px) {
  .header-section-3 .red-bg {
    display: none;
  }
}
.header-section-3 .container-fluid {
  padding: 0 100px 0 120px;
}
@media (max-width: 1899px) {
  .header-section-3 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1600px) {
  .header-section-3 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-section-3 .container-fluid {
    padding: 0 30px;
  }
}

.main-header-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 1899px) {
  .main-header-wrapper {
    gap: 70px;
  }
}
@media (max-width: 1600px) {
  .main-header-wrapper {
    gap: 40px;
  }
}
@media (max-width: 1399px) {
  .main-header-wrapper {
    gap: 30px;
  }
}
@media (max-width: 1199px) {
  .main-header-wrapper {
    padding: 15px 0;
  }
}
@media (max-width: 767px) {
  .main-header-wrapper {
    gap: 10px;
  }
}
.main-header-wrapper .logo-image {
  padding: 35px 30px 43px 50px;
  background-color: var(--white);
}
@media (max-width: 1600px) {
  .main-header-wrapper .logo-image {
    padding: 35px 30px 43px 30px;
  }
}
@media (max-width: 1399px) {
  .main-header-wrapper .logo-image {
    padding: 35px 0px;
  }
}
@media (max-width: 1199px) {
  .main-header-wrapper .logo-image {
    padding: 0px;
  }
}
.main-header-wrapper .main-header-items {
  width: 100%;
}
.main-header-wrapper .main-header-items .header-contact-info-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  border: 1px solid #D4DCED;
}
@media (max-width: 1600px) {
  .main-header-wrapper .main-header-items .header-contact-info-area {
    padding: 0 30px;
  }
}
@media (max-width: 1199px) {
  .main-header-wrapper .main-header-items .header-contact-info-area {
    display: none;
  }
}
@media (max-width: 575px) {
  .main-header-wrapper .main-header-items .header-contact-info-area {
    gap: 30px;
  }
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  position: relative;
  padding: 30px 0;
  border-right: 1px solid #D4DCED;
  padding-right: 50px;
}
@media (max-width: 1399px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items {
    border-right: none;
    padding-right: 0;
  }
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: relative;
  background-color: var(--white);
  border-radius: 50%;
  color: var(--theme);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  position: relative;
}
@media (max-width: 1399px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  content: "";
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid rgba(30, 32, 35, 0.1);
  transform: translate(-50%, -50%);
}
@media (max-width: 1399px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon::before {
    width: 54px;
    height: 54px;
  }
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content p {
  color: var(--text);
  margin-bottom: 5px;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content h3 {
  font-size: 20px;
  color: var(--title);
  text-transform: initial;
}
@media (max-width: 1600px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content h3 {
    font-size: 18px;
  }
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content h3 a {
  color: var(--title);
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items.style-2 {
  border: none;
  padding-right: 0;
}
@media (max-width: 1600px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .header-button .theme-btn {
    font-size: 14px;
    padding: 24px 27px;
  }
}

.main-header-wrapper-2 {
  display: flex;
  align-items: center;
}
@media (max-width: 1899px) {
  .main-header-wrapper-2 {
    gap: 70px;
  }
}
@media (max-width: 1600px) {
  .main-header-wrapper-2 {
    gap: 40px;
  }
}
@media (max-width: 1399px) {
  .main-header-wrapper-2 {
    gap: 30px;
  }
}
@media (max-width: 1199px) {
  .main-header-wrapper-2 {
    padding: 15px 0;
  }
}
@media (max-width: 767px) {
  .main-header-wrapper-2 {
    gap: 10px;
  }
}
.main-header-wrapper-2 .logo-image {
  padding: 35px 30px 43px 50px;
}
@media (max-width: 1600px) {
  .main-header-wrapper-2 .logo-image {
    padding: 35px 30px 43px 30px;
  }
}
@media (max-width: 1399px) {
  .main-header-wrapper-2 .logo-image {
    padding: 35px 0px;
  }
}
@media (max-width: 1199px) {
  .main-header-wrapper-2 .logo-image {
    padding: 0px;
  }
}
.main-header-wrapper-2 .main-header-items {
  width: 100%;
}
.main-header-wrapper-2 .main-header-items .header-contact-info-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  border: 1px solid #D4DCED;
}
@media (max-width: 1600px) {
  .main-header-wrapper-2 .main-header-items .header-contact-info-area {
    padding: 0 30px;
  }
}
@media (max-width: 1199px) {
  .main-header-wrapper-2 .main-header-items .header-contact-info-area {
    display: none;
  }
}
@media (max-width: 575px) {
  .main-header-wrapper-2 .main-header-items .header-contact-info-area {
    gap: 30px;
  }
}
.main-header-wrapper-2 .main-header-items .header-contact-info-area .contact-info-items {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  position: relative;
  padding: 30px 0;
  border-right: 1px solid #D4DCED;
  padding-right: 50px;
}
@media (max-width: 1399px) {
  .main-header-wrapper-2 .main-header-items .header-contact-info-area .contact-info-items {
    border-right: none;
    padding-right: 0;
  }
}
.main-header-wrapper-2 .main-header-items .header-contact-info-area .contact-info-items .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: relative;
  background-color: var(--white);
  border-radius: 50%;
  color: var(--theme);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  position: relative;
}
@media (max-width: 1399px) {
  .main-header-wrapper-2 .main-header-items .header-contact-info-area .contact-info-items .icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.main-header-wrapper-2 .main-header-items .header-contact-info-area .contact-info-items .icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  content: "";
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid rgba(30, 32, 35, 0.1);
  transform: translate(-50%, -50%);
}
@media (max-width: 1399px) {
  .main-header-wrapper-2 .main-header-items .header-contact-info-area .contact-info-items .icon::before {
    width: 54px;
    height: 54px;
  }
}
.main-header-wrapper-2 .main-header-items .header-contact-info-area .contact-info-items .content p {
  color: var(--text);
  margin-bottom: 5px;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
}
.main-header-wrapper-2 .main-header-items .header-contact-info-area .contact-info-items .content h3 {
  font-size: 20px;
  color: var(--title);
  text-transform: initial;
}
@media (max-width: 1600px) {
  .main-header-wrapper-2 .main-header-items .header-contact-info-area .contact-info-items .content h3 {
    font-size: 18px;
  }
}
.main-header-wrapper-2 .main-header-items .header-contact-info-area .contact-info-items .content h3 a {
  color: var(--title);
}
.main-header-wrapper-2 .main-header-items .header-contact-info-area .contact-info-items.style-2 {
  border: none;
  padding-right: 0;
}
@media (max-width: 1600px) {
  .main-header-wrapper-2 .main-header-items .header-contact-info-area .header-button .theme-btn {
    font-size: 14px;
    padding: 24px 27px;
  }
}

.header-1 .mega-menu-wrapper {
  padding: 0 50px;
  position: relative;
  z-index: 1;
  background-image: url(../img/headerBg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1600px) {
  .header-1 .mega-menu-wrapper {
    background-color: var(--title);
    background-image: none;
  }
}
@media (max-width: 1199px) {
  .header-1 .mega-menu-wrapper {
    background-color: var(--white);
    background-image: none;
  }
}
@media (max-width: 767px) {
  .header-1 .mega-menu-wrapper {
    padding: 0 8px;
  }
}
@media (min-width: 2000px) {
  .header-1 .mega-menu-wrapper {
    background-image: none;
    background-color: var(--title);
  }
}
.header-1 .logo {
  display: none;
}
@media (max-width: 1399px) {
  .header-1 .header-main .main-menu ul li,
  .header-1 .header-main .main-menu-2 ul li {
    margin-inline-end: 10px;
  }
}
@media (max-width: 1899px) {
  .header-1 .header-main .main-menu ul li .has-homemenu,
  .header-1 .header-main .main-menu-2 ul li .has-homemenu {
    left: -50px;
  }
}
.header-1.sticky .mega-menu-wrapper {
  padding: 0 50px;
  position: relative;
  z-index: 1;
  background-image: url(../img/headerBg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1600px) {
  .header-1.sticky .mega-menu-wrapper {
    background-color: var(--title);
    background-image: none;
  }
}
@media (min-width: 2000px) {
  .header-1.sticky .mega-menu-wrapper {
    background-image: none;
    background-color: var(--white);
  }
}
@media (max-width: 1600px) {
  .header-1 .theme-btn {
    display: none;
  }
}

.header-2 .mega-menu-wrapper {
  padding: 0 50px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1600px) {
  .header-2 .mega-menu-wrapper {
    background-color: var(--title);
    background-image: none;
  }
}
@media (max-width: 1199px) {
  .header-2 .mega-menu-wrapper {
    background-image: none;
  }
}
@media (max-width: 991px) {
  .header-2 .mega-menu-wrapper {
    padding: 0 13px;
  }
}
.header-2 .logo {
  display: none;
}
.header-2 .header-main {
  padding: 10px 0 0 50px;
}
@media (max-width: 1399px) {
  .header-2 .header-main .main-menu ul li,
  .header-2 .header-main .main-menu-2 ul li {
    margin-inline-end: 10px;
  }
}
@media (max-width: 1899px) {
  .header-2 .header-main .main-menu ul li .has-homemenu,
  .header-2 .header-main .main-menu-2 ul li .has-homemenu {
    left: -50px;
  }
}
.header-2 .header-main .main-menu ul li a,
.header-2 .header-main .main-menu-2 ul li a {
  color: var(--title);
}
@media (max-width: 1899px) {
  .header-2 .header-main .main-menu ul li a,
  .header-2 .header-main .main-menu-2 ul li a {
    color: var(--white);
  }
}
@media (max-width: 1399px) {
  .header-2 .header-main {
    padding: 10px 0;
  }
}
@media (max-width: 1600px) {
  .header-2 .theme-btn {
    display: none;
  }
}

.header-3.sticky {
  right: 0;
}
.header-3 .mega-menu-wrapper {
  padding: 0 50px;
  position: relative;
  z-index: 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1600px) {
  .header-3 .mega-menu-wrapper {
    background-color: transparent;
    background-image: none;
  }
}
@media (max-width: 1199px) {
  .header-3 .mega-menu-wrapper {
    background-color: transparent;
    background-image: none;
  }
}
@media (max-width: 767px) {
  .header-3 .mega-menu-wrapper {
    padding: 0 13px;
  }
}
.header-3 .logo {
  display: none;
}
@media (max-width: 1399px) {
  .header-3 .header-main .main-menu ul li,
  .header-3 .header-main .main-menu-2 ul li {
    margin-inline-end: 10px;
  }
}
@media (max-width: 1899px) {
  .header-3 .header-main .main-menu ul li .has-homemenu,
  .header-3 .header-main .main-menu-2 ul li .has-homemenu {
    left: -50px;
  }
}

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

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header-main .main-menu ul,
.header-main .main-menu-2 ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li,
.header-main .main-menu-2 ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 40px;
}
@media (max-width: 1600px) {
  .header-main .main-menu ul li,
  .header-main .main-menu-2 ul li {
    margin-inline-end: 25px;
  }
}
.header-main .main-menu ul li:last-child,
.header-main .main-menu-2 ul li:last-child {
  margin-inline-end: 15px;
}
.header-main .main-menu ul li a,
.header-main .main-menu-2 ul li a {
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a i,
.header-main .main-menu-2 ul li a i {
  margin-left: 7px;
}
.header-main .main-menu ul li a:hover,
.header-main .main-menu-2 ul li a:hover {
  color: var(--theme) !important;
}
@media (max-width: 1899px) {
  .header-main .main-menu ul li a,
  .header-main .main-menu-2 ul li a {
    color: var(--white);
  }
}
.header-main .main-menu ul li .sub-menu,
.header-main .main-menu-2 ul li .sub-menu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 240px;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--title);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  transform: translateY(10px);
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .sub-menu li,
.header-main .main-menu-2 ul li .sub-menu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.header-main .main-menu ul li .sub-menu li a,
.header-main .main-menu-2 ul li .sub-menu li a {
  position: relative;
  z-index: 11;
  font-size: 17px;
  font-weight: 600;
  color: var(--title);
  padding: 0 25px;
  padding-bottom: 11px;
  padding-top: 11px;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}
.header-main .main-menu ul li .sub-menu li a:hover,
.header-main .main-menu-2 ul li .sub-menu li a:hover {
  color: var(--white) !important;
}
.header-main .main-menu ul li .sub-menu li:last-child a,
.header-main .main-menu-2 ul li .sub-menu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .sub-menu li .sub-menu,
.header-main .main-menu-2 ul li .sub-menu li .sub-menu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .sub-menu li:hover > a,
.header-main .main-menu-2 ul li .sub-menu li:hover > a {
  background: var(--theme);
  color: var(--white) !important;
}
.header-main .main-menu ul li .sub-menu li:hover > a::after,
.header-main .main-menu-2 ul li .sub-menu li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li .sub-menu li:hover > .sub-menu,
.header-main .main-menu-2 ul li .sub-menu li:hover > .sub-menu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .sub-menu li.has-dropdown > a::after,
.header-main .main-menu-2 ul li .sub-menu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu,
.header-main .main-menu-2 ul li .has-homemenu {
  width: 710px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items,
.header-main .main-menu-2 ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items,
  .header-main .main-menu-2 ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu,
.header-main .main-menu-2 ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb,
.header-main .main-menu-2 ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button,
.header-main .main-menu-2 ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn,
.header-main .main-menu-2 ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 10px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
  border-radius: 0px !important;
  background-color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover,
.header-main .main-menu-2 ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
  background-color: var(--title);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover::before,
.header-main .main-menu-2 ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover::before {
  background-color: var(--theme2);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover::after,
.header-main .main-menu-2 ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover::after {
  background-color: var(--theme2);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before,
.header-main .main-menu-2 ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before,
.header-main .main-menu-2 ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button,
.header-main .main-menu-2 ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn,
.header-main .main-menu-2 ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img,
.header-main .main-menu-2 ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title,
.header-main .main-menu-2 ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}
.header-main .main-menu ul li:hover > a,
.header-main .main-menu-2 ul li:hover > a {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after,
.header-main .main-menu-2 ul li:hover > a::after {
  color: var(--title);
}
.header-main .main-menu ul li:hover > .sub-menu,
.header-main .main-menu-2 ul li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-main .header-right {
  gap: 30px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .header-main .header-right {
    gap: 5px;
  }
  .header-main .header-right .theme-btn {
    display: none;
  }
}
.header-main .header-right .search-icon {
  color: var(--text);
  font-size: 18px;
}
.header-main .header-right .header__cart {
  padding: 0 8px;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 991px) {
  .header-main .header-right .header__cart {
    padding: 0px 10px;
  }
}
.header-main .header-right .header__cart:hover > a {
  color: var(--theme2);
}
.header-main .header-right .header__cart:hover .header__right__dropdown__wrapper {
  visibility: visible;
  opacity: 1;
  top: 100%;
  transition: 0.3s;
}
.header-main .header-right .header__cart > a {
  font-size: 18px;
  color: var(--text);
  padding: 15px 0;
  position: relative;
}
.header-main .header-right .header__cart > a::before {
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
  position: absolute;
  top: 0;
  right: -10px;
  width: 15px;
  height: 15px;
  padding: 0 4px;
  content: "3";
  text-align: center;
  border-radius: 100%;
  background: var(--theme2);
  color: var(--white);
}
@media (max-width: 991px) {
  .header-main .header-right .header__cart > a::before {
    top: 7px;
    right: 11px;
  }
}
.header-main .header-right .header__cart .header__right__dropdown__wrapper {
  position: absolute;
  width: 300px;
  max-height: 700px;
  padding: 20px;
  border-bottom: 3px solid var(--border);
  background-color: var(--white);
  box-shadow: 0 0 50px 10px rgba(95, 45, 237, 0.15);
  top: 100%;
  left: -235px;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
@media (max-width: 767px) {
  .header-main .header-right .header__cart .header__right__dropdown__wrapper {
    left: -220px;
  }
}
.header-main .header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__close {
  position: absolute;
  right: 0;
  top: -10px;
}
.header-main .header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__close a :hover {
  color: var(--theme2);
}
.header-main .header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner {
  border-bottom: 1px solid var(--border-2);
  margin-bottom: 30px;
}
.header-main .header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}
.header-main .header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__img {
  width: 30%;
}
.header-main .header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__img a {
  border: 1px solid var(--border);
  display: inline-block;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
.header-main .header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__img img {
  width: 100%;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
.header-main .header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content {
  text-align: left;
  width: 70%;
  margin-left: 15px;
}
.header-main .header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content a {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--title);
}
.header-main .header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content a:hover {
  color: var(--theme2);
}
.header-main .header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content p {
  color: var(--title);
  font-size: 14px;
}
.header-main .header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content p span {
  color: var(--theme2);
}
.header-main .header-right .header__cart .header__right__dropdown__wrapper .dropdown__price {
  text-align: left;
  font-size: 17px;
  margin-bottom: 20px;
}
.header-main .header-right .header__cart .header__right__dropdown__wrapper .dropdown__price span {
  float: right;
  color: var(--theme2);
  font-weight: 700;
}
.header-main .header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  width: 100%;
  padding: 10px 0px;
}
.header-main .header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.white__color {
  border: 1px solid var(--theme2);
  margin-bottom: 20px;
}
.header-main .header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.white__color:hover {
  background: var(--theme2);
  color: var(--white);
}
.header-main .header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.blue__color {
  background: var(--title);
  color: var(--white);
}
.header-main .header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.blue__color:hover {
  background: var(--theme2);
}
.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--text);
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.9s;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.sticky .logo-image img {
  width: 70%;
}
.sticky.header-1 {
  padding: 0 40px;
}
.sticky.header-1 .mega-menu-wrapper {
  padding: 0 50px;
  position: relative;
  z-index: 1;
  background-image: none;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1600px) {
  .sticky.header-1 .mega-menu-wrapper {
    padding: 0 20px;
    background-color: var(--white);
    background-image: none;
  }
}
.sticky.header-1 .logo {
  display: block;
}
@media (max-width: 575px) {
  .sticky.header-1 {
    padding: 0;
  }
}
.sticky.header-2 {
  padding: 0 40px;
}
.sticky.header-2 .mega-menu-wrapper {
  padding: 0 50px;
  position: relative;
  z-index: 1;
  background-image: none;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1600px) {
  .sticky.header-2 .mega-menu-wrapper {
    padding: 0 20px;
    background-color: var(--white);
    background-image: none;
  }
}
@media (max-width: 1199px) {
  .sticky.header-2 .mega-menu-wrapper {
    padding: 0 5px;
  }
}
.sticky.header-2 .header-main {
  padding: 15px 0;
}
.sticky.header-2 .logo {
  display: block;
}
@media (max-width: 575px) {
  .sticky.header-2 {
    padding: 0;
  }
}
.sticky .header-main .main-menu ul li a,
.sticky .header-main .main-menu-2 ul li a {
  color: var(--title);
}

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

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__logo a img {
  width: 150px;
}

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

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

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.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: 0;
  }
}
.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  opacity: 0.85;
  background: var(--title);
}
.breadcrumb-wrapper .shape-image {
  position: absolute;
  right: 0;
  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: all 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: 0;
  }
  .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: 0;
  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: 0 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;
}

/* 14.Footer */
.footer-top {
  padding: 50px 50px;
  background: var(--theme2);
  margin-bottom: 40px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.footer-top .fancy-box {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-top .fancy-box .item1 i {
  width: 39px;
  height: 39px;
  line-height: 39px;
  text-align: center;
  background: var(--white);
  color: var(--theme2);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.footer-top .fancy-box .item2 h6 {
  color: 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 0 120px;
  position: relative;
  z-index: 9;
}
.footer-widgets-wrapper .shape1 {
  position: absolute;
  bottom: 56px;
  left: 0;
  z-index: -1;
}
.footer-widgets-wrapper .shape2 {
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: -1;
}
.footer-widgets-wrapper .shape3 {
  position: absolute;
  top: -40%;
  right: 0;
  z-index: -1;
}
.footer-widgets-wrapper .shape4 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .footer-widgets-wrapper {
    padding: 70px 0 100px;
  }
}
@media (max-width: 991px) {
  .footer-widgets-wrapper {
    padding: 50px 0 70px;
  }
}
.footer-widgets-wrapper .single-footer-widget {
  margin-top: 30px;
}
.footer-widgets-wrapper .single-footer-widget 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: 0;
  justify-content: start;
  gap: 10px;
}
.footer-widgets-wrapper .single-footer-widget form .form-control.style2 label {
  color: #FFF;
  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: #FFF;
  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: 0;
  left: 0;
  content: "";
  width: 25px;
  height: 2px;
  background-color: var(--theme2);
}
.footer-widgets-wrapper .single-footer-widget .widget-head h3::after {
  position: absolute;
  bottom: 0;
  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: none;
  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: 0;
  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;
  border: none;
  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: all 0.4s ease-in-out;
  font-weight: 500;
}
.footer-widgets-wrapper .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 20px;
}
.footer-widgets-wrapper .single-footer-widget .list-area li a {
  color: 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 0;
}
@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);
}

/* 15.Contact */
.contact-wrapper.style1 {
  position: relative;
}
.contact-wrapper.style1 .shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.contact-wrapper.style1 .shape img {
  height: 100%;
}
.contact-wrapper.style1 .shape2 {
  position: absolute;
  top: 0;
  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;
}
.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 #D4DCFF;
  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 #D4DCFF;
  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: 0;
  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: 0 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;
}

/* 16.Banner */
.banner-wrapper.style1 {
  position: relative;
  background-image: url(../img/bannerBG1_1.jpg);
}
.banner-wrapper.style1 .shape1_1 {
  position: absolute;
  top: 35px;
  left: 0;
  z-index: 4;
}
.banner-wrapper.style1 .shape1_2 {
  position: absolute;
  bottom: 0;
  left: 0;
  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: 0;
  right: 0;
  z-index: 4;
}
.banner-wrapper.style1 .shape1_5 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 4;
}
.banner-wrapper.style1 .shape1_6 {
  position: absolute;
  bottom: 196px;
  left: 40%;
  z-index: 4;
}
.banner-wrapper.style1 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  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%);
  -webkit-transform: translate(-50%, 50%);
  -moz-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  -o-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/bannerBG2_1.jpg);
}
.banner-wrapper.style2 .shape1_1 {
  position: absolute;
  top: 35px;
  left: 0;
  z-index: 4;
}
.banner-wrapper.style2 .shape1_2 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;
}
.banner-wrapper.style2 .shape1_3 {
  position: absolute;
  bottom: 0;
  left: 40%;
  z-index: 4;
}
.banner-wrapper.style2 .shape1_4 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
}
.banner-wrapper.style2 .shape1_5 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 4;
}
.banner-wrapper.style2 .shape1_6 {
  position: absolute;
  bottom: 196px;
  left: 40%;
  z-index: 4;
}
.banner-wrapper.style2 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  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%);
  -webkit-transform: translate(-50%, 50%);
  -moz-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  -o-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/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%);
  -webkit-transform: translateX(-40%);
  -moz-transform: translateX(-40%);
  -ms-transform: translateX(-40%);
  -o-transform: translateX(-40%);
}
.banner-wrapper.style3 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #010F1C 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 0 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 0 75px;
  }
}

.banner-style3 {
  position: relative;
  padding: 200px 0 235px;
  z-index: 3;
}
@media (max-width: 767px) {
  .banner-style3 {
    padding: 150px 0 80px;
  }
}
.banner-style3 .subtitle {
  position: relative;
  -webkit-text-stroke: 2px 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% !important;
  left: 21% !important;
  z-index: 1;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-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);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-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);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
@media (max-width: 1600px) {
  .banner3-slider .arrow-prev3 {
    display: none;
  }
}
.banner3-slider .arrow-next3 {
  position: absolute;
  top: 93%;
  left: 55%;
  z-index: 99;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
@media (max-width: 1600px) {
  .banner3-slider .arrow-next3 {
    display: none;
  }
}
.banner3-slider .swiper-pagination {
  position: absolute;
  top: 94%;
  left: 26%;
  z-index: 1;
}
@media (max-width: 1600px) {
  .banner3-slider .swiper-pagination {
    display: none;
  }
}
.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;
  margin: 0px 10px !important;
  opacity: 0.3;
}
.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 0;
  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%;
}

/* 17.Breadcumb */
.breadcumb-wrapper {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.breadcumb-wrapper .breadcumb-content {
  padding: 160px 0;
  text-align: center;
}
.breadcumb-wrapper .breadcumb-content .breadcumb-title {
  color: 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;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.account-card {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-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;
}

/* 18.Marquee */
.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: all 0.4s ease-in-out;
  background-image: linear-gradient(var(--theme), var(--theme));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  color: #bcb8b1;
  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: all 0.4s ease-in-out;
  background-image: linear-gradient(var(--theme), var(--theme));
  background-position: 0 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: marqueeLeft 25s linear infinite;
}

@keyframes marqueeLeft {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
.marquee-inner.to-right {
  animation: marqueeRight 25s linear infinite;
}

@keyframes marqueeRight {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}
.marque-section-2 {
  position: relative;
}

/* 19.Gallery */
.gallery-wrapper {
  overflow: hidden;
}
.gallery-wrapper.style1 .swiper {
  overflow: visible;
}

.gallery-thumb {
  position: relative;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.gallery-thumb img {
  position: relative;
  width: 100%;
  z-index: 2;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.gallery-thumb .icon {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.gallery-thumb:before {
  opacity: 0;
  visibility: hidden;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background: var(--title);
  z-index: 3;
  transform: translateY(100%);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
}
.gallery-thumb:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.gallery-thumb:hover .icon {
  opacity: 1;
  visibility: visible;
}
.gallery-thumb:hover:before {
  opacity: 0.6;
  visibility: visible;
  transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
}
.gallery-thumb.style2 {
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.gallery-thumb.style2 img {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 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%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.gallery-thumb.style2 .icon img {
  width: 1.3rem;
  height: 1.3rem;
}
.gallery-thumb.style2:before {
  opacity: 0;
  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%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.gallery-thumb.style2:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.gallery-thumb.style2:hover .icon {
  opacity: 1;
  visibility: visible;
}
.gallery-thumb.style2:hover:before {
  opacity: 0.6;
  visibility: visible;
}

/* 20.Testimonial */
.testimonial-wrapper.style1 {
  position: relative;
}
.testimonial-wrapper.style1 .shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.testimonial-wrapper.style1 .shape2 {
  position: absolute;
  top: 228px;
  right: 0;
  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%);
  -webkit-transform: translateX(-65%);
  -moz-transform: translateX(-65%);
  -ms-transform: translateX(-65%);
  -o-transform: translateX(-65%);
}
@media (max-width: 1399px) {
  .testimonial-wrapper.style1 .btn-wrap {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-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);
  border-radius: 50%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.testimonial-wrapper.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);
  border-radius: 50%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.testimonial-wrapper.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%);
  -webkit-transform: translate(-12%, -70%);
  -moz-transform: translate(-12%, -70%);
  -ms-transform: translate(-12%, -70%);
  -o-transform: translate(-12%, -70%);
}
.testimonial-wrapper.style3 .btn-wrap .arrow-prev i {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background: transparent;
  color: var(--theme);
  border: 1px solid var(--theme);
  border-radius: 50%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.testimonial-wrapper.style3 .btn-wrap .arrow-prev i:hover {
  background: 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%);
  -webkit-transform: translate(-12%, -70%);
  -moz-transform: translate(-12%, -70%);
  -ms-transform: translate(-12%, -70%);
  -o-transform: translate(-12%, -70%);
}
.testimonial-wrapper.style3 .btn-wrap .arrow-next i {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
  border-radius: 50%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.testimonial-wrapper.style3 .btn-wrap .arrow-next i:hover {
  background: 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: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}
.testimonial-card.style1 .testimonial-header {
  position: relative;
  margin-bottom: 22px;
}
.testimonial-card.style1 .testimonial-header .quote {
  position: absolute;
  top: 0;
  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%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-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: #D2D2D1;
  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-radius: 15px;
  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: 0px 10px 30px 0px rgba(52, 55, 170, 0.15);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
@media (max-width: 991px) {
  .testimonial-card.style3 {
    flex-direction: column;
  }
}
.testimonial-card.style3 .testimonial-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: 0;
  right: -20px;
}
@media (max-width: 767px) {
  .testimonial-card.style3 .testimonial-body .quote {
    right: 0px;
  }
}
.testimonial-card.style3 .testimonial-body .icon {
  margin-bottom: 10px;
}
.testimonial-card.style3 .testimonial-body p {
  margin-bottom: 10px;
}
.testimonial-card.style3 .testimonial-body .fancy-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonial-card.style3 .testimonial-body .fancy-box .item1 img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-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: 0;
}

.testimonial-wrap.style2 .title-area {
  padding-bottom: 30px;
  border-bottom: 1px solid #D2D2D1;
  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: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 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;
}
.testimonial-section .vagetable-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1199px) {
  .testimonial-section .vagetable-shape {
    display: none;
  }
}
.testimonial-section .chili-shape {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1199px) {
  .testimonial-section .chili-shape {
    display: none;
  }
}
.testimonial-section .testi-shape {
  position: absolute;
  top: 0;
  left: 0;
}

/* 21.Chefe */
.chefe-wrapper.style1 {
  position: relative;
}
.chefe-wrapper.style1 .shape1 {
  position: absolute;
  top: 0;
  left: 0;
}
.chefe-wrapper.style1 .shape2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.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%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.chefe-card.style1 .chefe-thumb img {
  width: 310px;
  height: 297px;
  max-width: inherit;
}
.chefe-card.style1 .icon {
  position: relative;
  text-align: center;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-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: all 0.4s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 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);
  color: var(--title) !important;
  border-radius: 50%;
  transition: all 0.4s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.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);
  color: var(--title) !important;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(19, 76, 179, 0.15);
  transition: all 0.4s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.chefe-card.style1 .icon:hover .hovered-icon i:hover {
  background: var(--theme);
  color: var(--white) !important;
  box-shadow: 0px 4px 10px rgba(19, 76, 179, 0.15);
}
.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;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-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: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-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;
  border-radius: 50%;
  transform: rotate(90deg);
  transition: all 0.4s;
  transform: rotate(-90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 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: 0px 4px 30px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 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 0;
}
.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 0;
}

.progress-wrap {
  margin-bottom: 30px;
}
.progress-wrap:last-child {
  margin-bottom: 0;
}
.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: #D9DDFF;
  border-radius: 10px;
  overflow: visible;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.progress-wrap .progress-container .progress-bar {
  height: 5px;
  background-color: var(--theme);
  border-radius: 10px;
  opacity: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-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;
  }
}

/* 22.History */
.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: 0;
    margin-bottom: 0;
  }
}
.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%;
  transform: translate(-50%, -50%);
  z-index: 5;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  animation: 6s rippleOne linear infinite;
}
.history-wrapper.style1 .history-content .theme-btn {
  margin-top: 50px;
}

.history-section {
  position: relative;
}
.history-section .tree-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1199px) {
  .history-section .tree-shape {
    display: none;
  }
}

/* 23.Timer */
.timer-wrap.style1 {
  position: relative;
  background-position: 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: 0;
  right: 0;
}
.timer-wrap.style1 .shape3 {
  position: absolute;
  bottom: 0;
  right: 0;
  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: 0 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;
  }
}

/* 24.Menu */
.food-menu-wrapper.style2 {
  background-color: var(--white);
}

.food-menu-section {
  position: relative;
}
.food-menu-section .burger-shape {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 1199px) {
  .food-menu-section .burger-shape {
    display: none;
  }
}
.food-menu-section .fry-shape {
  position: absolute;
  top: 45%;
  right: 0;
  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 0;
  color: var(--title);
  font-family: var(--title-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  margin-right: 24px;
  border-right: 1px dashed var(--border-2);
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-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: 0;
  }
}
.food-menu-tab .tab-content {
  margin-top: 36px;
}
.food-menu-tab.style2 {
  padding: 0 120px;
}
@media (max-width: 1600px) {
  .food-menu-tab.style2 {
    padding: 0 70px;
  }
}
@media (max-width: 1199px) {
  .food-menu-tab.style2 {
    padding: 0 50px;
  }
}
@media (max-width: 767px) {
  .food-menu-tab.style2 {
    padding: 0 40px;
  }
}
.food-menu-tab.style2 .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 0;
  color: var(--title);
  font-family: var(--title-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  margin-right: 24px;
  border-right: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-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: 0;
  }
}
.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;
}

/* 25.Cta */
.cta-wrapper.style1 {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.cta-wrapper.style1 .shape1 {
  position: absolute;
  top: 0;
  left: 0;
}
.cta-wrapper.style1 .shape2 {
  position: absolute;
  bottom: 0;
  left: 0;
}
.cta-wrapper.style1 .shape3 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cta-wrapper.style2 {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.cta-wrapper.style2 .shape1 {
  position: absolute;
  top: 0;
  left: 0;
}
.cta-wrapper.style2 .shape2 {
  position: absolute;
  bottom: -54px;
  left: 0;
}
.cta-wrapper.style2 .shape3 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cta-wrapper.style2 .shape4 {
  position: absolute;
  top: 0;
  right: 0;
}
.cta-wrapper.style2 .shape5 {
  position: absolute;
  bottom: 0;
  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-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50px 0px 50px 0px;
  -webkit-border-radius: 50px 0px 50px 0px;
  -moz-border-radius: 50px 0px 50px 0px;
  -ms-border-radius: 50px 0px 50px 0px;
  -o-border-radius: 50px 0px 50px 0px;
}
.cta-wrap.style3 .shape1 {
  position: absolute;
  top: 0;
  left: 0;
}
.cta-wrap.style3 .shape2 {
  position: absolute;
  bottom: 0;
  left: 0;
}
.cta-wrap.style3 .shape3 {
  position: absolute;
  bottom: -30px;
  right: 0;
}
.cta-wrap.style3 .shape4 {
  position: absolute;
  top: 0;
  right: 0;
}
.cta-wrap.style3 .shape5 {
  position: absolute;
  bottom: 0;
  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: 0;
    padding-bottom: 0;
  }
}
@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-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;
  transition: all 0.3s ease-in-out;
  border-radius: 5000px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.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: 0;
}
.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;
  transition: all 0.3s ease-in-out;
  border-radius: 5000px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.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: 0;
}
.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;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  top: 50%;
}

/* 26.Popular Dishes */
.popular-dishes-wrapper.style1 {
  position: relative;
}
.popular-dishes-wrapper.style1 .btn-wrapper {
  display: block;
  margin: 60px auto 0;
}
.popular-dishes-wrapper.style1 .shape1 {
  position: absolute;
  bottom: -120px;
  left: 0;
  z-index: 1;
}
.popular-dishes-wrapper.style1 .shape2 {
  position: absolute;
  top: -50px;
  right: 0;
  z-index: 1;
}
.popular-dishes-wrapper.style2 {
  position: relative;
}
.popular-dishes-wrapper.style2 .shape1 {
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: 1;
}
.popular-dishes-wrapper.style2 .shape2 {
  position: absolute;
  top: 0px;
  right: 0;
  z-index: 1;
}
.popular-dishes-wrapper.style2 .btn-wrapper {
  max-width: 195px;
  margin: 0 auto;
}
.popular-dishes-wrapper.style3 {
  position: relative;
}
.popular-dishes-wrapper.style3 .swiper {
  overflow: visible;
}
.popular-dishes-wrapper.style3 .shape1 {
  position: absolute;
  top: -60px;
  left: 0;
}
.popular-dishes-wrapper.style3 .shape2 {
  position: absolute;
  top: -30px;
  right: 0;
}
.popular-dishes-wrapper.style4 {
  position: relative;
}
.popular-dishes-wrapper.style4 .shape1 {
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 1;
}

.dishes-card-wrap.style1 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
@media (max-width: 1399px) {
  .dishes-card-wrap.style1 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .dishes-card-wrap.style1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .dishes-card-wrap.style1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.dishes-card-wrap.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: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.dishes-card.style1 .dishes-thumb {
  margin-bottom: 30px;
  margin-top: 20px;
}
.dishes-card.style1 h3 {
  color: 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(../img/dishesThumbBG.png);
  background-size: cover;
  background-position: 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 {
  transform: translateY(10%);
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(10%);
  -moz-transform: translateY(10%);
  -ms-transform: translateY(10%);
  -o-transform: translateY(10%);
}
.dishes-card.style2 {
  padding: 26px 25px;
  margin-top: 140px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, #FFF 63.33%);
  text-align: center;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.08);
}
.dishes-card.style2 .dishes-thumb {
  position: relative;
  margin-top: -120px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.dishes-card.style2 .dishes-thumb img {
  position: relative;
  z-index: 2;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.dishes-card.style2 .dishes-thumb .circle-shape {
  position: absolute;
  top: -7px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 1;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-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: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.dishes-card.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: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.dishes-card.style3 .dishes-thumb img {
  position: relative;
  width: 100%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.dishes-card.style3 .dishes-thumb .view-more {
  opacity: 0;
  visibility: hidden;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.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%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-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;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}
.dishes-card.style3:hover .dishes-thumb img {
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-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;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, #FFF 63.33%);
  text-align: left;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.08);
}
.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%;
  transform: translateX(-50%);
  z-index: 1;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-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: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.dishes-card.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: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.dishes-card.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%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-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;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, #FFF 63.33%);
  text-align: left;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .dishes-card.style5 {
    margin-bottom: 0;
  }
}
.dishes-card.style5 .dishes-thumb {
  position: relative;
  margin-bottom: -200px;
  margin-top: -165px;
  margin-left: -2px;
  border-radius: 20px 0px 20px 20px;
}
@media (max-width: 1199px) {
  .dishes-card.style5 .dishes-thumb {
    margin-bottom: 0px;
    margin-top: 0px;
    height: 100%;
  }
}
.dishes-card.style5 .dishes-thumb img {
  position: relative;
  z-index: 2;
  height: 100%;
  border-radius: 20px 0px 20px 20px;
}
.dishes-card.style5 .dishes-content {
  padding: 25px 15px;
}
@media (max-width: 1899px) {
  .dishes-card.style5 .dishes-content {
    padding: 25px 8px;
  }
}
@media (max-width: 1199px) {
  .dishes-card.style5 .dishes-content {
    padding: 15px 3px 15px 25px;
  }
}
@media (max-width: 991px) {
  .dishes-card.style5 .dishes-content {
    padding: 15px 3px 15px 7px;
  }
}
@media (max-width: 767px) {
  .dishes-card.style5 .dishes-content {
    padding: 15px 15px 15px 20px;
  }
}
.dishes-card.style5 .dishes-content a h3 {
  color: 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: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.dishes-card.style5 .dishes-content a h3:hover {
  color: var(--theme);
}
.dishes-card.style5 .dishes-content .icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
}
.dishes-card.style5 .dishes-content .icon a {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.dishes-card.style5 .dishes-content .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%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-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;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .dishes-card.style5 .dishes-thumb img {
    height: 300px;
    width: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .dishes-card.style5 .dishes-content {
    text-align: center;
    padding: 25px 15px 0;
  }
  .dishes-card.style5 .dishes-content a h3 {
    font-size: 25px;
  }
  .dishes-card.style5 .dishes-content .icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
  }
  .dishes-card.style5 .dishes-content .icon a {
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
  }
  .dishes-card.style5 .dishes-content .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%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-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%;
  transform: translateX(-50%);
  z-index: 1;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

/* 27.About */
.about-wrapper.style1 {
  position: relative;
}
.about-wrapper.style1 .shape1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.about-wrapper.style1 .shape2 {
  position: absolute;
  top: 0;
  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: 0;
  right: 0;
  z-index: 1;
}
.about-wrapper.style1 .shape5 {
  position: absolute;
  bottom: 0;
  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: 575px;
  margin: 0 auto;
}
.about-wrapper.style1 .title-area .btn-wrapper {
  max-width: 200px;
  margin: 0 auto;
}
.about-wrapper.style1 .about-us {
  background: var(--white);
}
.about-wrapper.style2 {
  position: relative;
}
.about-wrapper.style2 .shape1 {
  position: absolute;
  top: 50%;
  right: 0;
  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%;
  transform: translate(-50%, -50%);
  z-index: 5;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
@media (max-width: 1199px) {
  .about-wrapper.style2 .about-us .video-wrap {
    left: 75%;
    transform: translate(-75%, -50%);
    -webkit-transform: translate(-75%, -50%);
    -moz-transform: translate(-75%, -50%);
    -ms-transform: translate(-75%, -50%);
    -o-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: 0 30px 30px 0;
  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: 0 30px 30px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-2);
    border-right: 0;
  }
  .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: 0;
  transform: translateY(-50%);
}
@media (max-width: 1199px) {
  .about-wrapper.style3 .orange-shape {
    display: none;
  }
}
.about-wrapper.style3 .about-thumb-img img {
  width: 100%;
}
.about-wrapper.style3 .about-content .fancy-box-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .about-wrapper.style3 .about-content .fancy-box-wrapper {
    flex-direction: column;
  }
}
.about-wrapper.style3 .about-content .fancy-box-wrapper .fancy-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 10px 30px 0;
  margin-right: 35px;
}
.about-wrapper.style-padding {
  margin: 0px 46px;
}
@media (max-width: 1199px) {
  .about-wrapper.style-padding {
    padding: 0 30px;
  }
}

/* 28.Services */
.services-wrapper.style1 .servicesThumb {
  position: relative;
  width: 100%;
  height: 100%;
}
.services-wrapper.style1 .servicesThumb:before {
  opacity: 0;
  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%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.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 0px;
  -webkit-border-radius: 30px 0px 100px 0px;
  -moz-border-radius: 30px 0px 100px 0px;
  -ms-border-radius: 30px 0px 100px 0px;
  -o-border-radius: 30px 0px 100px 0px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 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: 10px;
  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: all 0.4s;
  border-radius: 15px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-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: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
}
.services-card.style2 .shape4 {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 5;
  transition: all 1.5s;
  -webkit-transition: all 1.5s;
  -moz-transition: all 1.5s;
  -ms-transition: all 1.5s;
  -o-transition: all 1.5s;
}
.services-card.style2 .services-card_icon {
  position: relative;
  padding: 37px 40px;
  margin-bottom: 25px;
  display: inline-block;
  z-index: 3;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.services-card.style2 .services-card_icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.services-card.style2 .services-card_icon:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-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.53360194px 80.6138793px, 35.93715952px 80.1950024px, 32.27225038px 79.3019371px, 28.60045216px 77.9932512px, 24.9833425px 76.3275125px, 21.48249904px 74.3632888px, 18.15949942px 72.1591479px, 15.07592128px 69.7736576px, 12.29334226px 67.2653857px, 9.87334px 64.6929px, 9.87334px 64.6929px, 7.9367128753px 62.2494616px, 6.2104916824px 59.6854208px, 4.6949916931px 57.0120192px, 3.3905281792px 54.2404984px, 2.2974164125px 51.3821px, 1.4159716648px 48.4480656px, 0.7465092079px 45.4496368px, 0.2893443136px 42.3980552px, 0.0447922537px 39.3045624px, 0.0131683px 36.1804px, 0.0131683px 36.1804px, 0.1857139617px 33.13325371px, 0.5595666176px 30.11371768px, 1.1381176039px 27.13886617px, 1.9247582568px 24.22577344px, 2.9228799125px 21.39151375px, 4.1358739072px 18.65316136px, 5.5671315771px 16.02779053px, 7.2200442584px 13.53247552px, 9.0980032873px 11.18429059px, 11.2044px 9.00031px, 11.2044px 9.00031px, 13.4497356px 7.0972821754px, 15.8464968px 5.4603242994px, 18.3770652px 4.0732687683px, 21.0238224px 2.9199479789px, 23.76915px 1.9841943275px, 26.5954296px 1.2498402107px, 29.4850428px 0.7007180251px, 32.4203712px 0.320660167px, 35.3837964px 0.0934990332px, 38.3577px 0.00306702px, 38.3577px 0.00306702px, 41.363953px 0.0404444904px, 44.35772px 0.2181352006px, 47.323653px 0.5511659215px, 50.246404px 1.0545634235px, 53.110625px 1.7433544775px, 55.900968px 2.6325658541px, 58.602085px 3.7372243239px, 61.198628px 5.0723566578px, 63.675249px 6.6529896262px, 66.0166px 8.49415px, 66.0166px 8.49415px, 68.3999054px 10.69325995px, 70.6702992px 13.0542976px, 72.7870678px 15.56399965px, 74.7094976px 18.2091028px, 76.396875px 20.97634375px, 77.8084864px 23.8524592px, 78.9036182px 26.82418585px, 79.6415568px 29.8782604px, 79.9815886px 33.00141955px, 79.883px 36.1804px, 79.883px 36.1804px, 79.5103764px 39.0453677px, 79.0147072px 41.5826016px, 78.3824948px 43.8539179px, 77.6002416px 45.9211328px, 76.65445px 47.8460625px, 75.5316224px 49.6905232px, 74.2182612px 51.5163311px, 72.7008688px 53.3853024px, 70.9659476px 55.3592533px, 69px 57.5px, 69px 57.5px, 66.7549105px 60.0575467px, 64.478px 62.8473696px, 62.1516255px 65.7609029px, 59.758144px 68.6895808px, 57.2799125px 71.5248375px, 54.699288px 74.1581072px, 51.9986275px 76.4808241px, 49.160288px 78.3844224px, 46.1666265px 79.7603363px, 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);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-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;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-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;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.service-details-area .service-post-details .single-service-post .checklist {
  margin-bottom: 14px;
}

/* 29.Offer */
.offer-card.style1 {
  padding: 0px 0px 18px 30px;
  display: flex;
  gap: 0px;
  background-position: 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: 0;
  left: -30px;
}
@media (max-width: 991px) {
  .offer-card.style1 {
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .offer-card.style1 {
    flex-direction: column-reverse;
  }
}

.offer-section {
  position: relative;
}
.offer-section .offer-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}

/* 30.Food Items */
.best-food-wrapper {
  position: relative;
}
.best-food-wrapper .shape1 {
  position: absolute;
  bottom: 10px;
  left: 0;
  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(180deg, rgba(255, 255, 255, 0.3) 0%, #FFF 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%;
  transform: translateX(-50%);
  z-index: 1;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-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: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 16px;
}
.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: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  opacity: 1;
  transition: background-color 0.3s ease;
}

.bestFoodItems-pagination .swiper-pagination-bullet-active {
  width: 28px;
  height: 12px;
  background-color: var(--theme);
  border-radius: 100px;
}

/* 31.Faq */
/*----------------------------------------------
    # Faq style here
----------------------------------------------*/
@media (max-width: 1199px) {
  .faq-content {
    margin-top: 40px;
  }
}
.faq-content .accordion-item {
  border: 0;
  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 0 0;
  -webkit-border-radius: 12px 12px 0 0;
  -moz-border-radius: 12px 12px 0 0;
  -ms-border-radius: 12px 12px 0 0;
  -o-border-radius: 12px 12px 0 0;
}
@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(../img/chevron-down.svg);
  background-repeat: no-repeat;
  background-position: center;
  color: var(--white);
  font-weight: 500;
  padding: 20px;
  background-color: var(--white);
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.3s ease-in-out !important;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -ms-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
}
.faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed):after {
  background-image: url(../img/chevron-up.svg);
  font-weight: 500;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--title);
  color: var(--white);
  transform: rotate(0);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
}
.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: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-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;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-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: 0 0 12px 12px;
  -webkit-border-radius: 0 0 12px 12px;
  -moz-border-radius: 0 0 12px 12px;
  -ms-border-radius: 0 0 12px 12px;
  -o-border-radius: 0 0 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-radius: 12px;
  border: 1px solid var(--border);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-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: 0 auto;
}

.faq-content-3 .accordion-item {
  border: 0;
  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: 0;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
  text-transform: capitalize;
  font-size: 18px;
}
.faq-content-3 .accordion-item .accordion-header .accordion-button::after {
  content: "\f067";
  background: transparent;
  font-family: var(--icon-font);
  font-weight: 300;
  transition: all 0.3s ease-in-out !important;
  color: var(--theme);
}
.faq-content-3 .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f068";
  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;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 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: 30px;
  margin-top: 0;
  margin-bottom: 0;
}
.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;
}

/* 32.Wcu */
.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%;
  }
}

/* 33.Blog */
.blog-wrapper.style1 {
  position: relative;
}
.blog-wrapper.style1 .btn-wrap .arrow-prev {
  position: absolute;
  top: 55%;
  left: -7%;
  transform: translate(-12%, -55%);
  -webkit-transform: translate(-12%, -55%);
  -moz-transform: translate(-12%, -55%);
  -ms-transform: translate(-12%, -55%);
  -o-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);
  border-radius: 50%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.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: -7%;
  transform: translate(-12%, -55%);
  -webkit-transform: translate(-12%, -55%);
  -moz-transform: translate(-12%, -55%);
  -ms-transform: translate(-12%, -55%);
  -o-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);
  border-radius: 50%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.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: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 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);
  -webkit-transform: rotate(85deg);
  -moz-transform: rotate(85deg);
  -ms-transform: rotate(85deg);
  -o-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: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 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);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-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;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.blog-card.style2 .blog-thumb {
  overflow: hidden;
}
.blog-card.style2 .blog-thumb img {
  width: 100%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 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;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-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: 0;
}
.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: 0;
  }
}
.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);
  -webkit-transform: rotate(85deg);
  -moz-transform: rotate(85deg);
  -ms-transform: rotate(85deg);
  -o-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: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 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: 0 25px 25px;
  }
}
@media (max-width: 500px) {
  .blog-card.style2 .blog-content {
    padding: 0 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);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-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: 0;
}
.blog-section .pizza-shape {
  position: absolute;
  top: 10%;
  right: 0;
}

/* 34.Blog Extra */
/*----------------------------------------------
    # Blog Extra style here
----------------------------------------------*/
.news-wrapper {
  padding: 0 75px;
}
@media (max-width: 1399px) {
  .news-wrapper {
    padding: 0;
  }
}

.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: 0;
}
.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: 0;
}
.news-card-items.style-2 .news-content ul li {
  font-size: 16px;
}
.news-card-items.style-3 {
  padding-bottom: 0;
  background-color: var(--white);
  box-shadow: none;
}
.news-card-items.style-3 .news-image {
  padding: 15px 15px 0 15px;
}
.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 #E3E3E3;
  padding: 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-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;
  border-radius: 8px;
  background: var(--theme);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-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: 0;
}
.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: 0;
}
@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;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-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: 0;
  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;
  background-color: var(--bg2);
  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;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-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 0;
  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: none;
  border: 1px solid #E6E5E5;
  border-radius: 4px;
  transition: all 0.3s ease 0s;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-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 {
  font-size: 32px;
  font-weight: 500;
  color: var(--title);
  font-family: var(--title-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 37px;
  margin-bottom: 0;
}
@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: 0;
}
.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: all 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;
  border: 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;
}

/* 35.Sidebar */
/*----------------------------------------------
    # Widget Sidebar style here
----------------------------------------------*/
.main-sidebar .single-sidebar-widget {
  padding: 40px 30px;
  background-color: var(--white);
  margin-bottom: 30px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-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: 0;
  left: 0;
  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;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.search-widget form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background: transparent;
  border: none;
  color: var(--title);
  text-align: center;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-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;
  border-radius: 4px;
  transition: all 0.4s ease-in-out;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.tagcloud li a:last-child {
  margin-right: 0;
}
.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: 0;
}
.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 {
  -webkit-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;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0;
  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;
  -webkit-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);
  text-transform: capitalize;
  font-weight: 600;
  text-transform: capitalize;
}

.recent-box {
  padding: 20px 30px;
  border: 1px solid #E0E0E0;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
  border-radius: 10px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.recent-box .recent-thumb img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-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: 0;
}

.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;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  transition: all 0.4s ease-in-out;
}
.page-nav-wrap ul li .previous:hover {
  background-color: var(--theme);
  color: var(--white) !important;
  border: 1px solid transparent;
}
@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;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  transition: all 0.4s ease-in-out;
}
.page-nav-wrap ul li .next:hover {
  background-color: var(--theme);
  color: var(--white) !important;
  border: 1px solid transparent;
}
@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;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.page-nav-wrap ul li .page-numbers:hover, .page-nav-wrap ul li .page-numbers.active {
  background-color: var(--theme);
  color: var(--white) !important;
  border: 1px solid transparent;
}
@media (max-width: 575px) {
  .page-nav-wrap ul li .page-numbers {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
  }
}

.sort-bar {
  padding: 0;
  margin: 0 0 10px 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.sort-bar .woocommerce-result-count {
  margin-bottom: 0;
}

.sort-bar .single-select {
  height: 46px;
  line-height: 46px;
  border: 1px solid #E8E8E8;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 209px;
  font-size: 16px;
  margin: 0;
  padding: 0 40px 0 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: 0;
  width: 0;
}
.categories-list .checkbox-single:not(:last-child) {
  margin-bottom: 10px;
}
.categories-list .checkbox-single .checkbox-area .checkmark {
  position: absolute;
  left: 0;
  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: "\f00c";
  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;
}

/*----------------------------------------------
    # Widget Sidebar style2 here
----------------------------------------------*/
.main-sidebar2 .single-sidebar-widget {
  padding: 40px 30px;
  background-color: var(--white);
  margin-bottom: 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-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: 0;
  left: 0;
  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: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background: var(--theme);
  border: none;
  color: var(--white);
  text-align: center;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
}
.main-sidebar2 .single-sidebar-widget .search-widget form button:hover {
  background: var(--title);
}
.main-sidebar2 .single-sidebar-widget .news-widget-categories ul {
  padding-left: 0;
  list-style-type: none;
}
.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li {
  background-color: var(--bg2);
  font-weight: 500;
  transition: all 0.4s ease-in-out;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-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: all 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;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-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 #E6E5E5;
}
.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: 0;
  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: 0;
}
.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;
  border-radius: 4px;
  transition: all 0.4s ease-in-out;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.main-sidebar2 .single-sidebar-widget .tagcloud a:last-child {
  margin-right: 0;
}
.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 0 24px 0;
  }
}
@media (max-width: 330px) {
  .recent-post .post-title {
    font-size: 16px;
    line-height: 24px;
  }
  .recent-post .recent-post-meta a {
    font-size: 12px;
  }
}
/* 36.Shop */
.shop-details {
  padding: 60px 0;
}

.product-big-img {
  padding: 75px 125px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-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 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: 0 5px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid var(--border-2);
  background: var(--white);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.actions .quantity .btn-wrapper {
  display: flex;
  flex-direction: column;
}
.actions .quantity .qty-btn {
  width: 34px;
  height: 30px;
  border-radius: 0px 5px 0px 0px;
  border: 1px solid var(--border-2);
  background: var(--white);
  color: var(--text);
  -webkit-border-radius: 0px 5px 0px 0px;
  -moz-border-radius: 0px 5px 0px 0px;
  -ms-border-radius: 0px 5px 0px 0px;
  -o-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;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.social-media li a:hover {
  background-color: var(--theme);
  color: var(--white) !important;
}

.product-description {
  padding: 50px 0;
  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;
}

/* 37.Cart */
.woocommerce-cart-form {
  text-align: center;
}

.cart_table {
  border: 1px solid var(--border-2);
  margin-bottom: 45px;
  width: 100%;
}
.cart_table thead {
  background-color: #ecf0f1;
}
.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: 0;
  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 {
  border: 1px solid var(--border-2) !important;
  background-color: transparent;
  color: #b8c6d0;
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  border-radius: 4px;
}
.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: 0 10px;
  border-radius: 4px;
  padding: 0;
  /* Firefox */
}
.cart_table .qty-input::placeholder {
  color: var(--title);
}
.cart_table .qty-input::-webkit-outer-spin-button, .cart_table .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart_table .qty-input[type=number] {
  -moz-appearance: textfield;
}
.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: 0;
}
.cart_table .th-cart-coupon {
  float: left;
  margin: 0;
  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 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: #f9fbfb;
  font-weight: 700;
  font-size: 14px;
  color: #333333;
}
.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: 0;
}
.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: 0 20px;
    border: none;
  }
  .cart_table thead {
    display: none;
  }
  .cart_table td {
    padding: 15px;
    display: block;
    width: 100%;
    padding-left: 25%;
    text-align: right;
    border: 1px solid #f3f3f3;
    border-bottom: none;
  }
  .cart_table td::before {
    display: block;
  }
  .cart_table td:last-child {
    border-bottom: 1px solid #f3f3f3;
  }
  .cart_table td.actions {
    padding-left: 15px;
    text-align: center;
  }
  .cart_table td.actions > .th-btn {
    margin-top: 10px;
    margin-right: 0;
    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;
  }
}
/* 38.Checkout */
.woocommerce-checkout .form-group,
.woocommerce-checkout .form-row {
  margin-bottom: 0;
}
.woocommerce-checkout .form-select,
.woocommerce-checkout .select2-container,
.woocommerce-checkout .form-control {
  margin-bottom: 0;
}
.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: 1px solid #e3e6e9;
  border-top: none;
}
.woocommerce-checkout .select2-container--default .select2-selection--single {
  border-radius: 0;
}
.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 #eee;
  padding: 0;
}

.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 {
  border-color: none !important;
}
.woocommerce-checkout .nice-select {
  border: none !important;
  font-size: 16px;
}

.checkout-ordertable th,
.checkout-ordertable td {
  border: 1px solid var(--border-2);
}

.select2-container--default .select2-selection--single {
  height: 60px;
  border: 1px solid #e3e6e9;
}

.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: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  margin: 0;
  border: none;
  top: 0;
}

.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: 0;
  background-position: right 13px center;
}
.shipping-calculator-form .as-btn {
  font-size: 14px;
  padding: 0 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: #2c3e50;
}
.checkout-ordertable th {
  font-weight: 800;
  text-align: left;
}
.checkout-ordertable ul {
  margin: 0;
  padding: 0;
}
.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: 0;
  padding: 0;
  list-style-type: none;
}
.woocommerce-checkout-payment ul li {
  padding-top: 12px;
  border-bottom: 1px solid #d8d8d8;
  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: #a1b1bc;
  background-color: #ecf0f1;
  border: 1px solid #d8d8d8;
  border-bottom: none;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 4px;
  display: none;
}
.woocommerce-checkout-payment .payment_box p {
  margin: 0;
}

.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;
  }
}
/* 39.Wishlist */
.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: #eee;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
}
.tinv-wishlist p.return-to-shop .button {
  display: inline-block;
  background-color: var(--theme);
  color: #fff;
  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 #dddddd;
}
.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: 0;
}
.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: 0;
  padding-top: 0;
}
.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: 0;
  margin-bottom: 0;
  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: 0;
}
.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: #fff;
}
.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: 0;
}
.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: 0;
}
.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;
    width: 100% !important;
    text-align: center;
  }
  .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;
  }
}
/* 40.Woocommerce */
.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: 0;
}
.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: "\f06a";
  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: "\f14a";
  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 35px 40px;
  background-color: var(--white);
  box-shadow: 0px 6px 30px rgba(1, 15, 28, 0.1);
  margin-bottom: 0;
}
@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: 0;
}

.woocommerce-form-login {
  margin-bottom: 30px;
}

.woocommerce-error {
  background-color: var(--theme);
  color: #fff;
  list-style: none;
  padding: 10px 26px;
  margin: 0 0 30px 0;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
}

nav.woocommerce-MyAccount-navigation li {
  border: 1px solid #ddd;
  margin: 0;
  border-top: none;
}
nav.woocommerce-MyAccount-navigation li:first-child {
  border-top: 1px solid #ddd;
}
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: 0 15px;
  margin-bottom: 5px;
  align-items: center;
  border: none;
}
table.variations td,
.woocommerce-grouped-product-list-item td {
  border: none;
  vertical-align: middle;
  padding: 0 5px;
}
table.variations td:first-child,
.woocommerce-grouped-product-list-item td:first-child {
  padding: 0;
}
table.variations label,
.woocommerce-grouped-product-list-item label {
  margin: 0;
  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 {
  border: none !important;
  font-weight: 600;
}
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: 0;
}

.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: 0 0 0 10px;
  margin: 0 0 0 10px;
  font-family: var(--title-font);
  font-size: 18px;
}
.woocommerce-grouped-product-list.group_table .qty-input {
  border-color: #e3e6e9;
}
.woocommerce-grouped-product-list.group_table tr {
  border-bottom: 1px solid #e3e6e9;
}
.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: 0;
}
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: 0;
  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;
  border-radius: 15px ​15px 0;
}
.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: "\f005\f005\f005\f005\f005";
  color: #e1e1e1;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  letter-spacing: 3px;
}
.star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}
.star-rating span:before {
  content: "\f005\f005\f005\f005\f005";
  top: 0;
  font-family: var(--icon-font);
  position: absolute;
  left: 0;
  color: #feb62a;
  letter-spacing: 3px;
}

.rating-select label {
  margin: 0;
  margin-right: 10px;
}
.rating-select p.stars {
  margin-bottom: 0;
  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: 0;
  left: 0;
  width: 18px;
  height: 14px;
  line-height: 1;
  content: "\f005";
  font-weight: 400;
  text-indent: 0;
  color: var(--theme2);
}
.rating-select p.stars a:hover ~ a::before {
  content: "\f005";
  font-weight: 400;
}
.rating-select p.stars:hover a::before {
  content: "\f005";
  font-weight: 700;
}
.rating-select p.stars.selected a.active::before {
  content: "\f005";
  font-weight: 700;
}
.rating-select p.stars.selected a.active ~ a::before {
  content: "\f005";
  font-weight: 400;
}
.rating-select p.stars.selected a:not(.active)::before {
  content: "\f005";
  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;
  }
}/*# sourceMappingURL=main.css.map */