@charset "UTF-8";
/*======================================================================================
Theme Name: Foodies
Author: wowtheme7
Author URI: https://themeforest.net/user/wowtheme7/portfolio
Description: Foodies – Multipurpose Restaurant & Fast Food HTML Template 
Version: 1.0.0
=======================================================================================*/
/*======================================================================================
  >> TABLE OF CONTENTS <<
========================================================================================
01. Mixins & Variables
02. Base
03. Components
04. Layouts
05. Sections
======================================================================================*/
/*---------------------------------------
01. Mixins & Variables
---------------------------------------*/
@import url("../../../../css2");
@import url("../../../../css2-1");
@import url("../../../../css/bylast");
:root {
  --body: #F4F1EA;
  --black: #000;
  --white: #fff;
  --theme: #FFC222;
  --theme2: #00833E;
  --theme3: #ED1C27;
  --theme4: #C9AB81;
  --theme5: #D96B1A;
  --header: #1E1D23;
  --text: #76756D;
  --border: #FCFCFC;
  --bg: #F8FAFC;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
  --cube-1: cubic-bezier(0.55, 0.085, 0, 0.99);
  --cube-2: all .25s cubic-bezier(.645,.045,.355,1);
  --cube-3: cubic-bezier(0.25, 1, 0.5, 1);
}

/*---------------------------------------
02. Base
---------------------------------------*/
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: var(--text);
  background-color: var(--body);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}
@media (max-width: 1399px) {
  body {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  body {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  body {
    font-size: 16px;
  }
}

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

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

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

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Signika", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 130px;
  font-weight: 700;
  line-height: 95%;
}
@media (max-width: 1899px) {
  h1 {
    font-size: 110px;
  }
}
@media (max-width: 1600px) {
  h1 {
    font-size: 90px;
  }
}
@media (max-width: 1399px) {
  h1 {
    font-size: 70px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 80px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 60px;
    line-height: 110% !important;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 48px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 45px;
  }
}
@media (max-width: 470px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.03em;
}
@media (max-width: 1399px) {
  h2 {
    font-size: 50px;
  }
}
@media (max-width: 1199px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 470px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.02em;
}
@media (max-width: 575px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 20px;
  font-weight: 600;
}

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

h6 {
  font-size: 16px;
  font-weight: 600;
}

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

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

span {
  margin: 0px;
}

.theme-btn {
  font-size: 17px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-weight: 700;
  text-transform: capitalize;
  height: 56px;
  line-height: 56px;
  background-color: var(--theme);
  overflow: hidden;
  display: inline-block;
  padding: 0 32px;
  color: var(--header);
  border-radius: 8px;
  letter-spacing: -2%;
}
@media (max-width: 575px) {
  .theme-btn {
    padding: 0 22px;
    font-size: 15px;
  }
}
.theme-btn i {
  margin-left: 10px;
}
.theme-btn::before {
  content: "";
  position: absolute;
  width: 0;
  top: -10px;
  height: 0;
  background-color: var(--theme2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.8s ease;
  z-index: -1;
}
.theme-btn:hover {
  color: var(--white);
  border-color: var(--theme);
}
.theme-btn:hover::before {
  width: 800px;
  height: 800px;
  display: inline-block;
}
.theme-btn.small-btn {
  height: 53px;
  line-height: 53px;
  padding: 0 30px;
}
.theme-btn.theme-bg-2 {
  background-color: var(--theme2);
  color: var(--white);
}
.theme-btn.theme-bg-2::before {
  background-color: var(--theme);
}
.theme-btn.theme-bg-2:hover {
  color: var(--header);
}

/*---------------------------------------
03. Components
---------------------------------------*/
.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;
  background: none;
}

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

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

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: #fff;
  font-size: 16px;
  line-height: 2;
  font-weight: 600;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(193, 210, 206, 0.0705882353) !important;
  border: none;
  font-family: "Signika", sans-serif;
}
.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(--theme);
}

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

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

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  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;
}

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

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.loader {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.loader:before {
  content: "MADRAS";
  display: block;
  font-size: 100px;
  line-height: 1.1;
  font-family: "Signika", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 1px var(--theme);
  background: radial-gradient(1.13em at 50% 1.6em, var(--theme) 99%, rgba(0, 0, 0, 0) 101%) calc(50% - 1.6em) 0/3.2em 100% text, radial-gradient(1.13em at 50% -0.8em, rgba(0, 0, 0, 0) 99%, var(--theme) 101%) 50% 0.8em/3.2em 100% repeat-x text;
  animation: l9 2s linear infinite;
}

.loader:after {
  content: "spices";
  display: block;
  font-size: 32px;
  line-height: 1.2;
  font-family: "Signika", sans-serif;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 6px;
  margin-top: 4px;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 1px var(--theme2);
  background: radial-gradient(1.13em at 50% 1.6em, var(--theme2) 99%, rgba(0, 0, 0, 0) 101%) calc(50% - 1.6em) 0/3.2em 100% text, radial-gradient(1.13em at 50% -0.8em, rgba(0, 0, 0, 0) 99%, var(--theme2) 101%) 50% 0.8em/3.2em 100% repeat-x text;
  animation: l9 2s linear infinite;
}

@media (max-width: 575px) {
  .loader:before {
    font-size: 56px;
    letter-spacing: 2px;
  }
  .loader:after {
    font-size: 20px;
    letter-spacing: 4px;
  }
}

@keyframes l9 {
  to {
    background-position: calc(50% + 1.6em) 0, calc(50% + 3.2em) 0.8em;
  }
}
.cursor-outer {
  margin-inline-start: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  background-color: var(--theme);
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.34;
  transition: all 0.4s ease-out 0s;
}

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

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

.mouseCursor {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}

.mouseCursor.cursor-big {
  width: 20px;
  height: 20px;
  margin-inline-start: -12px;
  margin-top: -12px;
}

.cursor-inner {
  margin-inline-start: -3px;
  margin-top: -3px;
  width: 10px;
  height: 10px;
  z-index: 10000001;
  background-color: var(--theme);
  opacity: 1;
  transition: all 0.24s ease-out 0s;
}

.cursor-inner span {
  color: var(--white);
  line-height: 60px;
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.cursor-inner.cursor-big span {
  opacity: 1;
}

.cursor-inner.cursor-hover {
  margin-inline-start: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--theme);
  border: 1px solid #686363;
  opacity: 0;
}

@-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);
  }
}
@keyframes gelatine {
  from, to {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.7, 1.1);
  }
  50% {
    transform: scale(1.1, 0.7);
  }
  75% {
    transform: scale(0.95, 1.05);
  }
}
@keyframes scale-up-two {
  0% {
    -webkit-transform: scale(0.2);
    transform: scale(0.5);
  }
  40% {
    -webkit-transform: scale(0.4);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.15);
    transform: scale(0.15);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@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);
  }
}
@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 zoom {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes moving {
  0% {
    transform: translatey(0px);
  }
  20% {
    transform: translateX(-50px);
  }
  50% {
    transform: translatey(-40px);
  }
  100% {
    transform: translatey(0px);
  }
}
/*img-animation**********************/
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
}
@keyframes scale {
  0% {
    top: -1000px;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animation-infinite {
  animation: ShapeAnim 50s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

@keyframes ShapeAnim {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top left 3000px;
  }
}
.splt-txt .whitespace {
  width: 8px;
}

.splt-txt.animated .char {
  -webkit-animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

.splt-txt-bounce .whitespace {
  width: 20px;
}

@media (max-width: 991px) {
  .splt-txt-bounce .whitespace {
    width: 10px;
  }
}
.splt-txt-bounce.animated .char {
  -webkit-animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

@keyframes wobblew {
  0% {
    transform: translateZ(0);
  }
  15% {
    transform: translate3d(-10%, 0, 0) rotate(-2deg);
  }
  30% {
    transform: translate3d(8%, 0, 0) rotate(1.5deg);
  }
  45% {
    transform: translate3d(-6%, 0, 0) rotate(-1deg);
  }
  60% {
    transform: translate3d(4%, 0, 0) rotate(0.8deg);
  }
  75% {
    transform: translate3d(-2%, 0, 0) rotate(-0.5deg);
  }
  100% {
    transform: translateZ(0);
  }
}
.wobblew {
  -webkit-animation-name: wobblew;
  animation-name: wobblew;
}

@keyframes scrolls {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*---------------------------------------
04. Layouts
---------------------------------------*/
@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  position: relative;
}
.header-main .logo img,
.header-main .logo-1 img,
.header-main .logo-2 img,
.header-left .logo-1 img,
.header-left .logo-2 img,
.header-left .logo img,
.header-section .header-middle-sec .header-middle-wrap .main-logo img,
.header-1 .logo-1 img,
.header-2 .logo img,
.header-3 .logo-1 img,
.header-3 .logo-2 img,
.header-4 .logo img,
.header-5 .logo img,
.header-6 .logo img,
.header-7 .logo img,
.header-8 .logo img {
  max-width: 100px;
  width: auto;
  height: auto;
}
@media (max-width: 575px) {
  .header-main .logo img,
  .header-main .logo-1 img,
  .header-main .logo-2 img,
  .header-left .logo-1 img,
  .header-left .logo-2 img,
  .header-left .logo img,
  .header-3 .logo-1 img,
  .header-3 .logo-2 img {
    max-width: 100px;
    width: auto;
    height: auto;
  }
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul .menu-thumb {
  position: inherit;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 35px;
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
  font-family: "Signika", sans-serif;
  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 {
  margin-left: 4px;
  font-size: 10px;
  position: relative;
  top: -3px;
}
.header-main .main-menu ul li a:hover {
  color: var(--theme2) !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 250px;
  background: var(--white);
  padding: 20px 0;
  border-radius: 10px;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  border-top: 4px solid var(--theme2);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transform: scaleY(0);
  transform-origin: top;
  visibility: hidden;
  gap: 0;
  padding: 10px 0;
  transition: 0.4s;
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
  line-height: 38px;
  padding: 0px 0px 0px 32px;
  padding-right: 22px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-main .main-menu ul li .submenu li a::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  background: var(--theme2);
  left: 14px;
  bottom: 18px;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme2) !important;
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  color: var(--theme2) !important;
  margin-left: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::before {
  width: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme2);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  -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 .submenu 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(--theme2);
}
.header-main .main-menu ul li .has-homemenu {
  padding: 20px 20px 10px 20px !important;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
  padding: 0;
  width: 100%;
  z-index: 999;
  overflow: hidden;
  margin: auto;
  max-height: 580px;
  overflow-y: auto;
  overflow-x: hidden;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
  border-radius: 10px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
  left: 25px;
  right: 25px;
}
@media (max-width: 1399px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn {
    font-size: 14px;
    min-width: 140px;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  justify-content: center;
  line-height: 1;
  background-color: var(--theme);
  color: var(--header);
  border-radius: 30px;
  max-width: 180px;
  margin: 0 auto;
  height: 55px;
  line-height: 55px;
  padding: 0 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn i {
  font-size: 16px;
  margin-left: 10px;
  margin-right: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--header) !important;
  background-color: var(--white);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: linear-gradient(to bottom, rgba(16, 85, 31, 0) 0%, #10551F 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: "";
  border-radius: 10px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
  border-radius: 10px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb a {
  padding: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  font-family: "Signika", sans-serif;
  padding-bottom: 0;
  margin-bottom: 7px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title a {
  color: var(--header);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu:hover .homemenu-thumb::before {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main .main-menu ul li:hover > a {
  color: var(--theme2);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme2);
}
.header-main .main-menu ul li:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  transition: all 0.5s ease;
}
.header-main .header-right {
  gap: 30px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}
.header-main .header__hamburger {
  line-height: 1;
}
.header-main .sidebar__toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  width: 25px;
  height: 25px;
  position: relative;
  top: 0;
  inset-inline-start: 0;
  -webkit-margin-start: 5px;
  margin-inline-start: 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.header-main .sidebar__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--header);
  border-radius: 10px;
  margin-inline-end: auto;
  backface-visibility: hidden;
  transition: all 0.3s;
}
.header-main .sidebar__toggle span:last-child, .header-main .sidebar__toggle span:first-child {
  width: 25px;
}
.header-main .sidebar__toggle.mobile_menu_bar {
  width: 50px;
  height: 50px;
  padding: 12px;
  background: var(--header);
  border-radius: 7px;
}
.header-main .sidebar__toggle.mobile_menu_bar span {
  background-color: var(--header);
}
.header-main .sidebar__toggle:hover span {
  width: 100%;
}
.header-main .main-menu ul li .has-homemenu::-webkit-scrollbar {
  display: none;
}
.header-main .main-menu ul li .has-homemenu {
  scrollbar-width: none;
}
.header-main .main-menu ul li .has-homemenu {
  -ms-overflow-style: none;
}

.header-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
}
.header-section .container {
  max-width: 1480px;
}
.header-section .container-fluid {
  padding-right: 11%;
}
@media (max-width: 1899px) {
  .header-section .container-fluid {
    padding-right: 1%;
  }
}
@media (max-width: 1399px) {
  .header-section .container-fluid {
    padding-right: 2%;
  }
}
.header-section .header-one-top-wrap {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-right: 10px;
  margin-left: 10px;
}
@media (max-width: 1199px) {
  .header-section .header-one-top-wrap {
    margin-left: 0;
    margin-right: 0;
    display: block;
  }
}
.header-section .header-one-top-wrap .logo-hides {
  width: 185px;
}
@media (max-width: 1199px) {
  .header-section .header-one-top-wrap .logo-hides {
    display: none;
  }
}
.header-section .head-top-slider {
  height: 20px;
  overflow: hidden;
}
@media (max-width: 575px) {
  .header-section .head-top-slider {
    display: none;
  }
}
.header-section .head-top-slider .swiper-slide {
  height: auto;
}
.header-section .header-top-sec {
  background-color: var(--theme);
  padding: 10px 0;
}
@media (max-width: 575px) {
  .header-section .header-top-sec {
    display: none;
  }
}
.header-section .header-top-sec .header-top-wrap {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header-section .header-top-sec .header-top-wrap p {
  color: var(--header);
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .header-section .header-top-sec .header-top-wrap a {
    display: none;
  }
}
.header-section .header-middle-sec {
  background-color: var(--theme2);
  padding: 11px 11px;
  overflow: hidden;
  position: relative;
}
.header-section .header-middle-sec .head-line {
  width: 100%;
  height: 1px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  position: absolute;
  top: 37%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
.header-section .header-middle-sec .header-middle-wrap {
  display: flex;
  align-items: center;
  gap: 33px;
}
.header-section .header-middle-sec .header-middle-wrap .main-logo {
  border-radius: 14px;
  position: relative;
  z-index: 1;
}
.header-section .header-middle-sec .header-middle-wrap .main-logo img {
  border-radius: 14px;
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items {
  width: 100%;
  padding-right: 11%;
}
@media (max-width: 1899px) {
  .header-section .header-middle-sec .header-middle-wrap .header-middle-items {
    padding-right: 1%;
  }
}
@media (max-width: 1399px) {
  .header-section .header-middle-sec .header-middle-wrap .header-middle-items {
    padding-right: 2%;
  }
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .middle-list-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .middle-list-items .middle-list {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .middle-list-items .middle-list li a {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .middle-list-items .middle-list li a:hover {
  color: var(--theme);
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .middle-list-items .middle-list li span {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .middle-list-items .middle-right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .middle-list-items .middle-right .link-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .middle-list-items .middle-right .link-text:hover {
  color: var(--theme);
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .middle-list-items .middle-right .flag-wrap {
  position: relative;
  max-width: 80px;
  margin: 0 auto;
}
@media (max-width: 1399px) {
  .header-section .header-middle-sec .header-middle-wrap .header-middle-items .middle-list-items .middle-right .flag-wrap {
    display: none;
  }
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .middle-list-items .middle-right .flag-wrap .flag {
  position: absolute;
  top: -3px;
  left: 15px;
  z-index: 1;
}
@media (max-width: 767px) {
  .header-section .header-middle-sec .header-middle-wrap .header-middle-items .middle-list-items .middle-right .flag-wrap .flag {
    display: none;
  }
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .middle-list-items .middle-right .flag-wrap .flag img {
  width: 100%;
  height: 100%;
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .middle-list-items .middle-right .flag-wrap .nice-select {
  padding: 0 0 0 45px;
  background: transparent;
  border: none;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 9999;
  border: none !important;
  padding-bottom: 0 !important;
  font-weight: 400 !important;
  line-height: initial;
  height: initial;
  padding-right: 20px;
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .middle-list-items .middle-right .flag-wrap .nice-select span {
  font-weight: 400;
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .middle-list-items .middle-right .flag-wrap .nice-select .list {
  width: 100px;
  left: 0;
  background-color: var(--white);
  border-radius: 0;
  top: 100%;
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .middle-list-items .middle-right .flag-wrap .nice-select .option {
  border: none;
  background-color: #fff;
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .middle-list-items .middle-right .flag-wrap .nice-select .option.selected.focus {
  background-color: #fff;
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .middle-list-items .middle-right .flag-wrap .nice-select::after {
  right: 0;
  border-bottom: 1px solid transparent;
  border-right: 1px solid transparent;
  width: 6px;
  height: 6px;
  top: -2px;
  top: 10px;
  border-bottom: 1px solid transparent;
  border-color: var(--white);
  border-right: 1px solid var(--white);
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .middle-list-items .middle-right .flag-wrap .nice-select span {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .middle-list-items .middle-right .flag-wrap .option {
  line-height: 30px;
  min-height: 15px;
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .middle-list-items .middle-right .price-list {
  background: transparent;
  height: initial;
  line-height: initial;
  border: none;
  color: var(--white);
  padding: 0;
  padding-right: 15px;
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .middle-list-items .middle-right .price-list::after {
  right: 0;
  border-bottom: 1px solid transparent;
  border-right: 1px solid transparent;
  width: 6px;
  height: 6px;
  top: -2px;
  top: 10px;
  border-bottom: 1px solid transparent;
  border-color: var(--white);
  border-right: 1px solid var(--white);
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .middle-list-items .middle-right .price-list .list {
  color: var(--header);
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .middle-list-items .middle-right .price-list .option {
  line-height: 30px;
  min-height: 15px;
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .head-form-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 29px;
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .head-form-items form {
  max-width: 985px;
  width: 100%;
  position: relative;
}
@media (max-width: 1600px) {
  .header-section .header-middle-sec .header-middle-wrap .header-middle-items .head-form-items form {
    max-width: 660px;
  }
}
@media (max-width: 1399px) {
  .header-section .header-middle-sec .header-middle-wrap .header-middle-items .head-form-items form {
    max-width: 450px;
  }
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .head-form-items form input {
  height: 60px;
  line-height: 60px;
  padding: 0 30px;
  border-radius: 44px;
  border: none;
  outline: none;
  background: var(--white);
  width: 100%;
  font-size: 16px;
  padding-left: 60px;
  color: #5B5B6D;
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .head-form-items form button {
  position: absolute;
  color: var(--text);
  top: 14px;
  left: 30px;
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .head-form-items form::placeholder {
  color: #5B5B6D;
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .head-form-items .shop-icon-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .head-form-items .shop-icon-right .shop-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  color: var(--white);
  position: relative;
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .head-form-items .shop-icon-right .shop-icon span {
  width: 19px;
  height: 19px;
  line-height: 19px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--header);
  display: inline-block;
  font-size: 15px;
  position: absolute;
  top: -6px;
  right: -9px;
  font-family: "Signika", sans-serif;
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .head-form-items .shop-icon-right .shop-icon:hover {
  background: var(--theme);
  color: var(--header);
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .head-form-items .order-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 10px;
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .head-form-items .order-info .info-cont p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.81);
  line-height: 1.2;
}
.header-section .header-middle-sec .header-middle-wrap .header-middle-items .head-form-items .order-info .info-cont a {
  font-size: 18px;
  font-weight: 700;
  font-family: "Signika", sans-serif;
  color: var(--white);
}

.header-1 .logo-1 {
  display: none;
}
@media (max-width: 1199px) {
  .header-1 .logo-1 {
    display: block;
  }
}
.header-1 .logo-itemsss {
  display: flex;
  align-items: center;
  gap: 35px;
}
@media (max-width: 1199px) {
  .header-1 .logo-itemsss {
    gap: 0;
  }
}
.header-1 .logo-itemsss .logo-hides {
  width: 177px;
}
@media (max-width: 1199px) {
  .header-1 .logo-itemsss .logo-hides {
    display: none;
  }
}
.header-1 .header-main ul li {
  margin-inline-end: 50px;
}
.header-1 .seller-text {
  font-size: 15px;
  font-weight: 600;
  font-family: "Signika", sans-serif;
  color: var(--header);
}
@media (max-width: 470px) {
  .header-1 .seller-text {
    display: none;
  }
}
.header-1 .seller-text b {
  font-size: 12px;
  font-weight: 600;
  font-family: "Nunito", sans-serif;
  color: var(--white);
  background: #FF5700;
  display: inline-block;
  width: 42px;
  height: 23px;
  line-height: 23px;
  text-align: center;
  border-radius: 4px 11.5px 11.5px 4px;
}
.header-1 .category-wrapper {
  position: relative;
  display: inline-block;
}
@media (max-width: 1199px) {
  .header-1 .category-wrapper {
    display: none;
  }
}
.header-1 .category-wrapper .dis-text {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: #76756D;
  background: #FFFFFF;
  border: 1px solid #D5D5D5;
  box-shadow: 5px 4px 129.6px 6px rgba(0, 0, 0, 0.03);
  border-radius: 74px;
  padding: 4px 21px;
  position: absolute;
  top: 9px;
  right: -130px;
}
.header-1 .category-wrapper:hover .arrow i {
  transform: rotate(180deg);
}
.header-1 .category-wrapper:hover .category-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-1 .category-btn {
  padding: 14px 20px;
  border-radius: 85px;
  background-color: var(--theme2);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  padding-right: 65px;
  font-weight: 600;
  font-family: "Signika", sans-serif;
  text-transform: uppercase;
}
.header-1 .category-btn .icon i {
  color: var(--white);
  font-size: 18px;
  position: relative;
  top: 1px;
}
.header-1 .category-btn .arrow {
  margin-left: 15px;
}
.header-1 .category-btn .arrow i {
  font-size: 14px;
  transition: 0.3s;
}
.header-1 .category-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.35s ease;
  z-index: 99;
}
.header-1 .category-dropdown ul {
  list-style: none;
  padding: 10px;
  margin: 0;
}
.header-1 .category-dropdown ul li {
  padding: 0 15px;
  cursor: pointer;
  border-radius: 6px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 700;
}
.header-1 .category-dropdown ul li:not(:last-child) {
  margin-bottom: 5px;
}
.header-1 .category-dropdown ul li a {
  color: var(--header);
}
.header-1 .category-dropdown ul li:hover a {
  color: var(--theme2);
}
.header-1 .category-dropdown ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.header-1 {
  /* Sub menu */
}
.header-1 .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  width: 220px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(15px);
  transition: 0.3s ease;
}
.header-1 .sub-menu li {
  padding: 12px 15px;
}
@media (max-width: 1399px) {
  .header-1.header-2 .header-main ul li {
    margin-inline-end: 30px;
  }
}

.header-section-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
}
.header-section-2 .header-top-sec {
  background-color: var(--theme);
  padding: 10px 0 15px;
}
@media (max-width: 575px) {
  .header-section-2 .header-top-sec {
    display: none;
  }
}
.header-section-2 .header-top-sec .header-top-wrap {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-section-2 .header-top-sec .header-top-wrap p {
  color: var(--header);
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .header-section-2 .header-top-sec .header-top-wrap a {
    display: none;
  }
}
.header-section-2 .header-top-sec-5 {
  background-color: var(--theme3);
  padding: 10px 0;
}
@media (max-width: 575px) {
  .header-section-2 .header-top-sec-5 {
    display: none;
  }
}
.header-section-2 .header-top-sec-5 .header-top-wrap {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-section-2 .header-top-sec-5 .header-top-wrap p {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}
.header-section-2 .header-top-sec-5 .header-top-wrap button {
  color: var(--white);
}
@media (max-width: 575px) {
  .header-section-2 .header-top-sec-5 .header-top-wrap button {
    display: none;
  }
}
.header-section-2 .head-top-slider {
  height: 20px;
  overflow: hidden;
}
@media (max-width: 575px) {
  .header-section-2 .head-top-slider {
    display: none;
  }
}
.header-section-2 .head-top-slider .swiper-slide {
  height: auto;
}
.header-section-2 .top-menu-area {
  background: #F4F1EA;
  padding: 8px 0;
}
@media (max-width: 1199px) {
  .header-section-2 .top-menu-area {
    display: none;
  }
}
.header-section-2 .top-menu-area .middle-list-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header-section-2 .top-menu-area .middle-list-items .middle-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-section-2 .top-menu-area .middle-list-items .middle-list li a {
  font-size: 14px;
  font-weight: 700;
  color: #575756;
}
.header-section-2 .top-menu-area .middle-list-items .middle-list li a:hover {
  color: var(--theme);
}
.header-section-2 .top-menu-area .middle-list-items .middle-list li span {
  font-size: 14px;
  font-weight: 600;
  color: #ED0B08;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-section-2 .top-menu-area .middle-list-items .middle-right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-section-2 .top-menu-area .middle-list-items .middle-right .number {
  font-size: 14px;
  font-weight: 700;
  color: #575756;
}
.header-section-2 .top-menu-area .middle-list-items .middle-right .number a {
  color: var(--theme2);
}
.header-section-2 .top-menu-area .middle-list-items .middle-right .link-text {
  font-size: 14px;
  font-weight: 600;
  color: #575756;
}
.header-section-2 .top-menu-area .middle-list-items .middle-right .link-text:hover {
  color: var(--theme);
}
.header-section-2 .top-menu-area .middle-list-items .middle-right .flag-wrap {
  position: relative;
  max-width: 80px;
  margin: 0 auto;
}
@media (max-width: 1399px) {
  .header-section-2 .top-menu-area .middle-list-items .middle-right .flag-wrap {
    display: none;
  }
}
.header-section-2 .top-menu-area .middle-list-items .middle-right .flag-wrap .flag {
  position: absolute;
  top: -3px;
  left: 15px;
  z-index: 1;
}
@media (max-width: 767px) {
  .header-section-2 .top-menu-area .middle-list-items .middle-right .flag-wrap .flag {
    display: none;
  }
}
.header-section-2 .top-menu-area .middle-list-items .middle-right .flag-wrap .flag img {
  width: 100%;
  height: 100%;
}
.header-section-2 .top-menu-area .middle-list-items .middle-right .flag-wrap .nice-select {
  padding: 0 0 0 45px;
  background: transparent;
  border: none;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 9999;
  border: none !important;
  padding-bottom: 0 !important;
  font-weight: 400 !important;
  line-height: initial;
  height: initial;
  padding-right: 20px;
}
.header-section-2 .top-menu-area .middle-list-items .middle-right .flag-wrap .nice-select span {
  font-weight: 400;
}
.header-section-2 .top-menu-area .middle-list-items .middle-right .flag-wrap .nice-select .list {
  width: 100px;
  left: 0;
  background-color: var(--white);
  border-radius: 0;
  top: 100%;
}
.header-section-2 .top-menu-area .middle-list-items .middle-right .flag-wrap .nice-select .option {
  border: none;
  background-color: #fff;
}
.header-section-2 .top-menu-area .middle-list-items .middle-right .flag-wrap .nice-select .option.selected.focus {
  background-color: #fff;
}
.header-section-2 .top-menu-area .middle-list-items .middle-right .flag-wrap .nice-select::after {
  right: 0;
  border-bottom: 1px solid transparent;
  border-right: 1px solid transparent;
  width: 6px;
  height: 6px;
  top: -2px;
  top: 10px;
  border-bottom: 1px solid transparent;
  border-color: #575756;
  border-right: 1px solid #575756;
}
.header-section-2 .top-menu-area .middle-list-items .middle-right .flag-wrap .nice-select span {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: #575756;
}
.header-section-2 .top-menu-area .middle-list-items .middle-right .flag-wrap .option {
  line-height: 30px;
  min-height: 15px;
}
.header-section-2 .top-menu-area .middle-list-items .middle-right .price-list {
  background: transparent;
  height: initial;
  line-height: initial;
  border: none;
  color: #575756;
  padding: 0;
  padding-right: 15px;
}
.header-section-2 .top-menu-area .middle-list-items .middle-right .price-list::after {
  right: 0;
  border-bottom: 1px solid transparent;
  border-right: 1px solid transparent;
  width: 6px;
  height: 6px;
  top: -2px;
  top: 10px;
  border-bottom: 1px solid transparent;
  border-color: #575756;
  border-right: 1px solid #575756;
}
.header-section-2 .top-menu-area .middle-list-items .middle-right .price-list .list {
  color: var(--header);
}
.header-section-2 .top-menu-area .middle-list-items .middle-right .price-list .option {
  line-height: 30px;
  min-height: 15px;
}
.header-section-2 .top-menu-area-2 {
  background: #1E1D23;
  padding: 12px 0;
}
@media (max-width: 1199px) {
  .header-section-2 .top-menu-area-2 {
    display: none;
  }
}
.header-section-2 .top-menu-area-2 .middle-list-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header-section-2 .top-menu-area-2 .middle-list-items .middle-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-section-2 .top-menu-area-2 .middle-list-items .middle-list li a {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.header-section-2 .top-menu-area-2 .middle-list-items .middle-list li a:hover {
  color: var(--theme);
}
.header-section-2 .top-menu-area-2 .middle-list-items .middle-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-section-2 .top-menu-area-2 .middle-list-items .middle-right .head-line {
  width: 1px;
  height: 15px;
  background: rgba(255, 255, 255, 0.24);
}
.header-section-2 .top-menu-area-2 .middle-list-items .middle-right .number {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.header-section-2 .top-menu-area-2 .middle-list-items .middle-right .number a {
  color: var(--theme);
}
.header-section-2 .top-menu-area-2 .middle-list-items .middle-right a {
  color: var(--white);
}
.header-section-2 .top-menu-area-2 .middle-list-items .middle-right a:hover {
  color: var(--theme);
}
.header-section-2 .middle-header-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
@media (max-width: 1199px) {
  .header-section-2 .middle-header-items {
    display: none;
  }
}
.header-section-2 .middle-header-items .form-clt {
  border: 1px solid #D5D5D5;
  border-radius: 8px;
  padding: 10px 15px;
}
.header-section-2 .middle-header-items .form-clt p {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}
.header-section-2 .middle-header-items .form-clt .single-select {
  height: initial;
  line-height: initial;
  border: none;
  padding: 0;
  float: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  font-family: "Signika", sans-serif;
  padding-right: 30px;
}
.header-section-2 .middle-header-items .form-clt .single-select::after {
  right: 0;
}
.header-section-2 .middle-header-items form {
  max-width: 630px;
  width: 100%;
  position: relative;
}
@media (max-width: 1600px) {
  .header-section-2 .middle-header-items form {
    max-width: 660px;
  }
}
@media (max-width: 1399px) {
  .header-section-2 .middle-header-items form {
    max-width: 450px;
  }
}
.header-section-2 .middle-header-items form input {
  height: 60px;
  line-height: 60px;
  padding: 0 30px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: var(--white);
  width: 100%;
  font-size: 16px;
  padding-left: 60px;
  color: #5B5B6D;
  border: 1px solid var(--theme2);
}
.header-section-2 .middle-header-items form button {
  position: absolute;
  color: var(--text);
  top: 14px;
  left: 30px;
}
.header-section-2 .middle-header-items form::placeholder {
  color: #5B5B6D;
}
.header-section-2 .middle-header-items .shop-icon-right {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 250px;
  width: 100%;
}
.header-section-2 .middle-header-items .shop-icon-right .shop-icon {
  display: inline-block;
  max-width: 40px;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #F4F1EA;
  border-radius: 50%;
  color: var(--header);
  position: relative;
}
.header-section-2 .middle-header-items .shop-icon-right .shop-icon span {
  width: 19px;
  height: 19px;
  line-height: 19px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--header);
  display: inline-block;
  font-size: 15px;
  position: absolute;
  top: -6px;
  right: -9px;
  font-family: "Signika", sans-serif;
}
.header-section-2 .middle-header-items .shop-icon-right .shop-icon:hover {
  background: var(--theme);
  color: var(--header);
}
.header-section-2 .middle-header-items .shop-icon-right .seller-text {
  font-size: 15px;
  font-weight: 600;
  font-family: "Signika", sans-serif;
  color: var(--header);
}
.header-section-2 .middle-header-items .shop-icon-right .seller-text b {
  font-size: 12px;
  font-weight: 600;
  font-family: "Nunito", sans-serif;
  color: var(--white);
  background: #FF5700;
  display: inline-block;
  width: 42px;
  height: 23px;
  line-height: 23px;
  text-align: center;
  border-radius: 4px 11.5px 11.5px 4px;
}
.header-section-2 .middle-header-2 {
  background: #F4F1EA;
  padding: 12px 0;
}
@media (max-width: 1199px) {
  .header-section-2 .middle-header-2 {
    display: none;
  }
}
.header-section-2 .middle-header-2 .middle-header-items-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-section-2 .middle-header-2 .middle-header-items-2 .location-items {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-section-2 .middle-header-2 .middle-header-items-2 .form-clt p {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}
.header-section-2 .middle-header-2 .middle-header-items-2 .form-clt .single-select {
  height: initial;
  line-height: initial;
  border: none;
  padding: 0;
  float: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  font-family: "Signika", sans-serif;
  padding-right: 30px;
  background: transparent;
}
.header-section-2 .middle-header-2 .middle-header-items-2 .form-clt .single-select::after {
  right: 0;
}
.header-section-2 .middle-header-2 .middle-header-items-2 form {
  max-width: 630px;
  width: 100%;
  position: relative;
}
@media (max-width: 1600px) {
  .header-section-2 .middle-header-2 .middle-header-items-2 form {
    max-width: 660px;
  }
}
@media (max-width: 1399px) {
  .header-section-2 .middle-header-2 .middle-header-items-2 form {
    max-width: 450px;
  }
}
.header-section-2 .middle-header-2 .middle-header-items-2 form input {
  height: 60px;
  line-height: 60px;
  padding: 0 30px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: var(--white);
  width: 100%;
  font-size: 16px;
  padding-left: 60px;
  color: #5B5B6D;
  border: 1px solid var(--theme2);
}
.header-section-2 .middle-header-2 .middle-header-items-2 form button {
  position: absolute;
  color: var(--text);
  top: 14px;
  left: 30px;
}
.header-section-2 .middle-header-2 .middle-header-items-2 form::placeholder {
  color: #5B5B6D;
}
.header-section-2 .middle-header-2 .middle-header-items-2 .middle-right {
  display: flex;
  align-items: center;
  gap: 35px;
}
.header-section-2 .middle-header-2 .middle-header-items-2 .shop-icon-right {
  display: flex;
  align-items: center;
  gap: 13px;
}
.header-section-2 .middle-header-2 .middle-header-items-2 .shop-icon-right .shop-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  color: var(--header);
  position: relative;
}
.header-section-2 .middle-header-2 .middle-header-items-2 .shop-icon-right .shop-icon span {
  width: 19px;
  height: 19px;
  line-height: 19px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--header);
  display: inline-block;
  font-size: 15px;
  position: absolute;
  top: -6px;
  right: -9px;
  font-family: "Signika", sans-serif;
}
.header-section-2 .middle-header-2 .middle-header-items-2 .shop-icon-right .shop-icon:hover {
  background: var(--theme);
  color: var(--header);
}

.header-3 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
}
.header-3 .header-left {
  display: flex;
  align-items: center;
  gap: 55px;
}
@media (max-width: 1399px) {
  .header-3 .header-right .theme-btn {
    display: none;
  }
}
.header-3 .shop-icon-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1199px) {
  .header-3 .shop-icon-right {
    display: none;
  }
}
.header-3 .shop-icon-right .shop-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: var(--header);
  border: 1.4px solid #373102;
  position: relative;
}
.header-3 .shop-icon-right .shop-icon span {
  width: 19px;
  height: 19px;
  line-height: 19px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--header);
  display: inline-block;
  font-size: 15px;
  position: absolute;
  top: -6px;
  right: -9px;
  font-family: "Signika", sans-serif;
}
.header-3 .shop-icon-right .shop-icon:hover {
  background: var(--theme);
  color: var(--header);
  border-color: var(--theme);
}
.header-3.header-5 {
  position: initial;
}
.header-3.header-5 .header-right .theme-btn {
  background-color: var(--theme3);
  color: var(--white);
}
.header-3.header-5 .header-right .theme-btn::before {
  background: var(--header);
}
.header-3.header-5 .header-right .shop-icon-right .shop-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: var(--header);
  border: 1.4px solid #373102;
  position: relative;
}
.header-3.header-5 .header-right .shop-icon-right .shop-icon span {
  background-color: var(--theme3);
  color: var(--white);
  display: inline-bl;
}
.header-3.header-5 .header-right .shop-icon-right .shop-icon:hover {
  background: var(--theme3);
  color: var(--white);
  border-color: var(--theme3);
}
.header-3.header-5 .header-main ul li {
  margin-inline-end: 36px;
}
.header-3.header-5 .header-main .main-menu ul li a {
  color: var(--header);
}
.header-3.header-5 .header-main .main-menu ul li a:hover {
  color: var(--theme3) !important;
}
.header-3.header-5 .header-main .main-menu ul li .submenu {
  border-top: 4px solid var(--theme3);
}
.header-3.header-5 .header-main .main-menu ul li .submenu li a {
  color: var(--header);
}
.header-3.header-5 .header-main .main-menu ul li .submenu li a::before {
  background: var(--theme3);
}
.header-3.header-5 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme3) !important;
}
.header-3.header-5 .header-main .main-menu ul li .submenu li:hover > a {
  color: var(--theme3) !important;
}
.header-3.header-5 .header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme3);
}
.header-3.header-5 .header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  color: var(--theme3);
}
.header-3.header-5 .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  background-color: var(--theme3);
  color: var(--white);
}
.header-3.header-5 .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--header) !important;
  background-color: var(--white);
}
.header-3.header-5 .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: linear-gradient(to bottom, rgba(16, 85, 31, 0) 0%, var(--theme3) 100%);
}
.header-3.header-5 .header-main .main-menu ul li:hover > a {
  color: var(--theme3);
}
.header-3.header-5 .header-main .main-menu ul li:hover > a::after {
  color: var(--theme3);
}
.header-3.header-6 form {
  max-width: 430px;
  width: 100%;
  position: relative;
}
@media (max-width: 1399px) {
  .header-3.header-6 form {
    display: none;
  }
}
.header-3.header-6 form input {
  height: 54px;
  line-height: 54px;
  padding: 0 30px;
  border-radius: 60px;
  border: none;
  outline: none;
  background: var(--white);
  width: 100%;
  font-size: 16px;
  padding-left: 60px;
  color: #5B5B6D;
  border: 1px solid #585858;
}
.header-3.header-6 form button {
  position: absolute;
  color: var(--text);
  top: 14px;
  left: 30px;
}
.header-3.header-6 form::placeholder {
  color: #5B5B6D;
}
.header-3.header-7 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
}
.header-3.header-7 .logo-1 {
  display: none;
}
@media (max-width: 1399px) {
  .header-3.header-7 .logo-1 {
    display: block;
  }
}
@media (max-width: 1399px) {
  .header-3.header-7 .logo-2 {
    display: none;
  }
}
.header-3.header-7 .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1600px) {
  .header-3.header-7 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-3.header-7 .container-fluid {
    padding: 0 30px;
  }
}
.header-3.header-7 .header-main .main-menu ul li a {
  color: var(--white);
}
.header-3.header-7 .header-main .main-menu ul li a:hover {
  color: #C9AB81 !important;
}
.header-3.header-7 .header-main .main-menu ul li .submenu {
  border-top: 4px solid #C9AB81;
}
.header-3.header-7 .header-main .main-menu ul li .submenu li a {
  color: var(--header);
}
.header-3.header-7 .header-main .main-menu ul li .submenu li a::before {
  background: #C9AB81;
}
.header-3.header-7 .header-main .main-menu ul li .submenu li a:hover {
  color: #C9AB81 !important;
}
.header-3.header-7 .header-main .main-menu ul li .submenu li:hover > a {
  color: #C9AB81 !important;
}
.header-3.header-7 .header-main .main-menu ul li .submenu li:hover > a::after {
  color: #C9AB81;
}
.header-3.header-7 .header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  color: #C9AB81;
}
.header-3.header-7 .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  background-color: #C9AB81;
  color: var(--white);
}
.header-3.header-7 .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--header) !important;
  background-color: var(--white);
}
.header-3.header-7 .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: linear-gradient(to bottom, rgba(16, 85, 31, 0) 0%, #C9AB81 100%);
}
.header-3.header-7 .header-main .main-menu ul li:hover > a {
  color: #C9AB81;
}
.header-3.header-7 .header-main .main-menu ul li:hover > a::after {
  color: #C9AB81;
}
.header-3.header-7 .sidebar__toggle span {
  background-color: #fff;
}
.header-3.header-7 .sidebar__toggle.mobile_menu_bar {
  background-color: #fff;
}
.header-3.header-7 .sidebar__toggle.mobile_menu_bar span {
  background-color: #fff;
}
.header-3.header-7 .header-infos {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1199px) {
  .header-3.header-7 .header-infos {
    display: none;
  }
}
.header-3.header-7 .header-infos .contents p {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}
.header-3.header-7 .header-infos .contents .number {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  font-family: "Signika", sans-serif;
}
.header-3.header-7 .header-right .theme-btn {
  background: transparent !important;
  border: 1px solid rgb(201, 171, 129);
  color: var(--white);
  border-radius: 0;
}
.header-3.header-7 .header-right .theme-btn::before {
  background-color: #C9AB81 !important;
}
.header-3.header-8 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
}
.header-3.header-8 .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1600px) {
  .header-3.header-8 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-3.header-8 .container-fluid {
    padding: 0 30px;
  }
}
.header-3.header-8 .header-infos {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1199px) {
  .header-3.header-8 .header-infos {
    display: none;
  }
}
.header-3.header-8 .header-infos .contents p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.header-3.header-8 .header-infos .contents .number {
  font-size: 18px;
  font-weight: 700;
  color: var(--header);
  font-family: "Signika", sans-serif;
}
.header-3.header-8 .header-main .main-menu ul li a {
  color: var(--header);
}
.header-3.header-8 .header-main .main-menu ul li a:hover {
  color: #D96B1A !important;
}
.header-3.header-8 .header-main .main-menu ul li .submenu {
  border-top: 4px solid #D96B1A;
}
.header-3.header-8 .header-main .main-menu ul li .submenu li a {
  color: var(--header);
}
.header-3.header-8 .header-main .main-menu ul li .submenu li a::before {
  background: #D96B1A;
}
.header-3.header-8 .header-main .main-menu ul li .submenu li a:hover {
  color: #D96B1A !important;
}
.header-3.header-8 .header-main .main-menu ul li .submenu li:hover > a {
  color: #D96B1A !important;
}
.header-3.header-8 .header-main .main-menu ul li .submenu li:hover > a::after {
  color: #D96B1A;
}
.header-3.header-8 .header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  color: #D96B1A;
}
.header-3.header-8 .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  background-color: #D96B1A;
  color: var(--white);
}
.header-3.header-8 .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--header) !important;
  background-color: var(--white);
}
.header-3.header-8 .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: linear-gradient(to bottom, rgba(16, 85, 31, 0) 0%, #D96B1A 100%);
}
.header-3.header-8 .header-main .main-menu ul li:hover > a {
  color: #D96B1A;
}
.header-3.header-8 .header-main .main-menu ul li:hover > a::after {
  color: #D96B1A;
}
.header-3.header-8 .shop-icon-right .shop-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: var(--header);
  border: 1.4px solid #373102;
  position: relative;
}
.header-3.header-8 .shop-icon-right .shop-icon span {
  background-color: #D96B1A !important;
  color: var(--white);
  display: inline-block;
}
.header-3.header-8 .shop-icon-right .shop-icon:hover {
  background: #D96B1A !important;
  color: var(--white);
  border-color: #D96B1A !important;
}

.header-4 .category-btn {
  padding: 14px 20px;
  border-radius: 85px;
  background-color: var(--theme);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #111;
  padding-right: 20px;
}
.header-4 .category-btn .icon i {
  color: #111;
}
.header-4 .order-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (max-width: 1199px) {
  .header-4 .order-info {
    display: none;
  }
}
.header-4 .order-info .info-cont p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
}
.header-4 .order-info .info-cont a {
  font-size: 18px;
  font-weight: 700;
  font-family: "Signika", sans-serif;
  color: var(--header);
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.9s;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  background-color: var(--white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.sticky.header-1 .logo-1 {
  display: block;
}
.sticky.header-1 .category-wrapper {
  display: none;
}
@media (min-width: 1200px) {
  .sticky.header-1-sticky .container-fluid {
    padding-left: 5%;
  }
}
.sticky.header-1-sticky .logo-itemsss .logo-hides {
  display: none;
}
.sticky.header-7 {
  background: #1F3634;
}

.offcanvas__info {
  background: var(--header) none repeat scroll 0 0;
  position: fixed;
  right: 0;
  top: 0;
  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: 9999999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  top: 15px;
  width: 470px;
  height: calc(100% - 30px);
  -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -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);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
  border-start-start-radius: 12px;
  border-end-start-radius: 12px;
  border-radius: 12px;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  transform: translateX(-15px);
}

.offcanvas__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  padding: 40px;
  overflow: auto;
  height: 100%;
}
.offcanvas__wrapper .offcanvas__top {
  margin-bottom: 30px;
}
.offcanvas__wrapper .offcanvas__logo img {
  max-width: 100px;
  width: auto;
  height: auto;
}
@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__logo img {
    max-width: 100px;
    width: auto;
    height: auto;
  }
}
.offcanvas__wrapper .offcanvas__close {
  color: var(--theme);
  display: inline-block;
  font-size: 35px;
  line-height: 1;
  transition: all 0.4s ease-in-out;
}
.offcanvas__wrapper .offcanvas__close i {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__close:hover {
  transform: rotate(90deg);
}
.offcanvas__wrapper .offcanvas__close:hover i {
  color: var(--theme2);
}
.offcanvas__wrapper .text {
  color: #C1D2CE;
  font-size: 15px;
}
.offcanvas__wrapper .shop-icon-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}
.offcanvas__wrapper .shop-icon-right .shop-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  color: var(--white);
  position: relative;
}
.offcanvas__wrapper .shop-icon-right .shop-icon span {
  width: 19px;
  height: 19px;
  line-height: 19px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--header);
  display: inline-block;
  font-size: 15px;
  position: absolute;
  top: -6px;
  right: -9px;
  font-family: "Signika", sans-serif;
}
.offcanvas__wrapper .shop-icon-right .shop-icon:hover {
  background: var(--theme);
  color: var(--header);
}
.offcanvas__wrapper form {
  margin-top: 25px;
  position: relative;
}
.offcanvas__wrapper form input {
  height: 60px;
  line-height: 60px;
  padding: 0 30px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: var(--white);
  width: 100%;
  font-size: 16px;
  padding-left: 60px;
  color: #5B5B6D;
}
.offcanvas__wrapper form button {
  position: absolute;
  color: var(--text);
  top: 14px;
  left: 30px;
}
.offcanvas__wrapper form::placeholder {
  color: #5B5B6D;
}
.offcanvas__wrapper .off-contact-info {
  margin-top: 30px;
}
.offcanvas__wrapper .off-contact-info .info-title {
  font-size: 24px;
  color: var(--white);
  font-family: "Signika", sans-serif;
  font-weight: 700;
}
@media (max-width: 575px) {
  .offcanvas__wrapper .off-contact-info .info-title {
    font-size: 20px;
  }
}
.offcanvas__wrapper .off-contact-info .contact-details {
  margin-top: 14px;
}
.offcanvas__wrapper .off-contact-info .contact-details .sub-info {
  color: #C1D2CE;
}
@media (max-width: 575px) {
  .offcanvas__wrapper .off-contact-info .contact-details .sub-info {
    font-size: 14px;
  }
}
.offcanvas__wrapper .off-contact-info .contact-details p {
  color: var(--white);
  font-family: "Signika", sans-serif;
  font-size: 17px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .offcanvas__wrapper .off-contact-info .contact-details p {
    font-size: 15px;
  }
}
.offcanvas__wrapper .off-contact-info .contact-details p a {
  color: var(--white);
}
.offcanvas__wrapper .social-icon-list {
  margin-top: 30px;
}
.offcanvas__wrapper .social-icon-list .follow-title {
  font-size: 24px;
  color: var(--white);
  font-family: "Signika", sans-serif;
  font-weight: 700;
}
@media (max-width: 575px) {
  .offcanvas__wrapper .social-icon-list .follow-title {
    font-size: 20px;
  }
}
.offcanvas__wrapper .social-icon-list .social-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}
.offcanvas__wrapper .social-icon-list .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background: rgba(193, 210, 206, 0.0705882353);
  color: var(--white);
  font-size: 14px;
}
.offcanvas__wrapper .social-icon-list .social-icon a:hover {
  background-color: var(--theme2);
  color: var(--header);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  backdrop-filter: blur(10px);
  z-index: 99999;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

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

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
  .offcanvas__info {
    width: 390px;
  }
}
@media (max-width: 450px) {
  .offcanvas__info {
    width: 340px;
  }
}
.header-section-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: var(--white);
}

.header-top-bar {
  background-color: var(--theme);
  padding: 10px 0;
}
@media (max-width: 991px) {
  .header-top-bar {
    display: none;
  }
}
.header-top-bar .top-head-items {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.header-top-bar .top-head-items .theme-btn {
  border-radius: 4px;
  height: 27px;
  line-height: 27px;
  font-size: 13px;
  line-height: 27px;
  padding: 0 10px;
}
.header-top-bar .top-head-items .theme-btn::before {
  background-color: var(--white);
}
.header-top-bar .top-head-items p {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}
.header-top-bar .top-head-items p a {
  text-decoration: underline;
  display: inline-block;
  margin-left: 5px;
}

.breadcrumb-wrapper {
  position: relative;
  z-index: 9;
  margin-top: 120px;
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper {
    margin-top: 100px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper {
    margin-top: 90px;
  }
}
.breadcrumb-wrapper .bottom-shape {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  z-index: 11;
}
.breadcrumb-wrapper .shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1600px) {
  .breadcrumb-wrapper .shape-1 {
    max-width: 340px;
  }
  .breadcrumb-wrapper .shape-1 img {
    width: 100%;
  }
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper .shape-1 {
    max-width: 280px;
  }
}
.breadcrumb-wrapper .girl-shape {
  position: absolute;
  bottom: 0;
  left: 397px;
}
.breadcrumb-wrapper .girl-shape img {
  width: 288px;
}
@media (max-width: 1600px) {
  .breadcrumb-wrapper .girl-shape {
    left: 200px;
  }
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper .girl-shape {
    left: 150px;
  }
}
.breadcrumb-wrapper .page-heading {
  padding: 135px 0 135px;
  position: relative;
  text-align: center;
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading {
    text-align: center;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  justify-content: center;
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    justify-content: center;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  font-family: "Nunito", sans-serif;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  font-size: 12px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  font-family: "Nunito", sans-serif;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
}
.breadcrumb-wrapper .page-heading .breadcrumb-title {
  font-size: 60px;
  font-weight: 600;
  color: var(--white);
  font-family: "Signika", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-title {
    font-size: 48px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-title {
    font-size: 40px;
  }
}
@media (max-width: 470px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-title {
    font-size: 36px;
  }
}

.error-items {
  text-align: center;
}
.error-items .thumb {
  max-width: 711px;
  margin: 0 auto;
}
.error-items .thumb img {
  width: 100%;
  height: 100%;
}
.error-items .content {
  max-width: 760px;
  margin: 40px auto 0;
  text-align: center;
}
.error-items .content h2 {
  font-size: 60px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .error-items .content h2 {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .error-items .content h2 {
    font-size: 40px;
  }
}
.error-items .content p {
  font-size: 16px;
}
.error-items .content .theme-btn {
  margin-top: 40px;
}

.error-section {
  position: relative;
}
.error-section .shape-1 {
  position: absolute;
  top: 50px;
  left: 0;
}
.error-section .shape-2 {
  position: absolute;
  top: 45%;
  left: 80px;
}
.error-section .shape-3 {
  position: absolute;
  bottom: 50px;
  left: 20%;
}
.error-section .shape-4 {
  position: absolute;
  top: 10%;
  right: 0;
}
.error-section .shape-5 {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.footer-section {
  padding: 110px 0 0;
  position: relative;
  margin-bottom: 0 !important;
}
.footer-section.style-3 {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
.page-wrapper,
#smooth-wrapper,
#smooth-content {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.footer-logo img,
.footer-widget-wrapper .footer-logo img,
.footer-widgets-wrapper .footer-logo img,
.footer-widget-items .footer-logo img,
.single-footer-widget .footer-logo img,
.footer-section .footer-logo img,
.footer-content .footer-logo img {
  max-width: 120px !important;
  width: auto;
  height: auto;
  display: inline-block;
}
@media (max-width: 1199px) {
  .footer-section {
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
  .footer-section {
    padding-top: 80px;
  }
}
.footer-section .shape-1 {
  position: absolute;
  bottom: 47%;
  left: 0;
}
@media (max-width: 1600px) {
  .footer-section .shape-1 {
    opacity: 0.3;
  }
}
.footer-section .shape-2 {
  position: absolute;
  top: 17%;
  left: 30%;
}
@media (max-width: 1600px) {
  .footer-section .shape-2 {
    opacity: 0.3;
  }
}
.footer-section .shape-3 {
  position: absolute;
  bottom: 40%;
  left: 24%;
}
@media (max-width: 1600px) {
  .footer-section .shape-3 {
    opacity: 0.3;
  }
}
.footer-section .shape-4 {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1600px) {
  .footer-section .shape-4 {
    opacity: 0.3;
  }
}
.footer-section .shape-5 {
  position: absolute;
  right: 0;
  bottom: 40%;
}
@media (max-width: 1600px) {
  .footer-section .shape-5 {
    opacity: 0.3;
  }
}
.footer-section .footer-top-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.footer-section .footer-top-shape img {
  width: 100%;
}
.footer-section .footer-top-wrapper {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 6px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 40px;
  position: relative;
}
@media (max-width: 1199px) {
  .footer-section .footer-top-wrapper {
    display: block;
    text-align: center;
    padding: 35px 30px;
  }
}
.footer-section .footer-top-wrapper .content span {
  display: inline-block;
  font-size: 28px;
  font-weight: 600;
  font-family: "Signika", sans-serif;
  color: #00833E;
  margin-bottom: 6px;
}
.footer-section .footer-top-wrapper .content p {
  font-size: 16px;
  font-weight: 600;
  color: #00833E;
}
@media (max-width: 1399px) {
  .footer-section .footer-top-wrapper .content {
    max-width: 400px;
  }
}
@media (max-width: 1199px) {
  .footer-section .footer-top-wrapper .content {
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.footer-section .footer-top-wrapper form {
  max-width: 460px;
  width: 100%;
  position: relative;
}
@media (max-width: 1199px) {
  .footer-section .footer-top-wrapper form {
    max-width: initial;
  }
}
.footer-section .footer-top-wrapper form input {
  display: inline-block;
  border: none;
  width: 100%;
  border: 2px solid #FFC222;
  border-radius: 27.5px;
  font-size: 16px;
  height: 55px;
  line-height: 55px;
  padding-left: 25px;
  padding-right: 118px;
  color: var(--text);
}
.footer-section .footer-top-wrapper form button {
  height: 55px;
  line-height: 55px;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  padding: 0 20px;
  border-radius: 0px 27.5px 27.5px 0px;
  background-color: var(--theme);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.footer-section.style-3 {
  position: relative;
}
.footer-section.style-3 .top-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media (max-width: 1399px) {
  .footer-section.style-3 .top-shape {
    display: none;
  }
}
.footer-section.style-3 .top-shape img {
  width: 100%;
  height: 100%;
}
.footer-section.style-3 .chili-shape {
  position: absolute;
  left: 0;
  top: 400px;
}
@media (max-width: 1600px) {
  .footer-section.style-3 .chili-shape {
    display: none;
  }
}
.footer-section.style-3 .tomato-shape {
  position: absolute;
  right: 0;
  top: 150px;
}
@media (max-width: 1600px) {
  .footer-section.style-3 .tomato-shape {
    display: none;
  }
}
.footer-section.style-3 .bottom-shape {
  position: absolute;
  right: 0;
  bottom: 40px;
}
@media (max-width: 1600px) {
  .footer-section.style-3 .bottom-shape {
    display: none;
  }
}
.footer-section.style-3 .left-shape {
  position: absolute;
  left: 0;
  top: 150px;
}
@media (max-width: 1600px) {
  .footer-section.style-3 .left-shape {
    display: none;
  }
}
.footer-section.style-3 .right-shape {
  position: absolute;
  right: 0;
  top: 450px;
}
@media (max-width: 1600px) {
  .footer-section.style-3 .right-shape {
    display: none;
  }
}
.footer-section.style-3 .leaf-shape {
  position: absolute;
  top: 100px;
  left: 46%;
}
@media (max-width: 1600px) {
  .footer-section.style-3 .leaf-shape {
    display: none;
  }
}
.footer-section.style-3 .footer-top-items-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 100px;
  position: relative;
}
@media (max-width: 1399px) {
  .footer-section.style-3 .footer-top-items-3 {
    margin-top: 0;
  }
}
@media (max-width: 1199px) {
  .footer-section.style-3 .footer-top-items-3 {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.footer-section.style-3 .footer-top-items-3 .footer-left {
  display: flex;
  gap: 78px;
}
@media (max-width: 1399px) {
  .footer-section.style-3 .footer-top-items-3 .footer-left {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 1199px) {
  .footer-section.style-3 .footer-top-items-3 .footer-left {
    display: grid;
  }
}
.footer-section.style-3 .footer-top-items-3 .footer-left .footer-contentt {
  width: 485px;
}
@media (max-width: 575px) {
  .footer-section.style-3 .footer-top-items-3 .footer-left .footer-contentt {
    width: 100%;
  }
}
.footer-section.style-3 .footer-top-items-3 .footer-left .footer-contentt h2 {
  color: var(--white);
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 500;
}
@media (max-width: 1399px) {
  .footer-section.style-3 .footer-top-items-3 .footer-left .footer-contentt h2 {
    font-size: 21px;
  }
}
@media (max-width: 991px) {
  .footer-section.style-3 .footer-top-items-3 .footer-left .footer-contentt h2 {
    font-size: 23px;
  }
}
.footer-section.style-3 .footer-top-items-3 .footer-left .footer-contentt form {
  max-width: 485px;
  width: 100%;
}
.footer-section.style-3 .footer-top-items-3 .footer-left .footer-contentt form .form-clt {
  position: relative;
}
.footer-section.style-3 .footer-top-items-3 .footer-left .footer-contentt form .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  color: var(--white);
  background: transparent;
  line-height: 1;
  position: relative;
  z-index: 9999;
  padding: 16px 0;
  max-width: 485px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}
.footer-section.style-3 .footer-top-items-3 .footer-left .footer-contentt form .form-clt input::placeholder {
  color: var(--white);
}
.footer-section.style-3 .footer-top-items-3 .footer-left .footer-contentt form .form-clt .theme-btn {
  position: absolute;
  right: 2px;
  bottom: 5px;
  color: var(--header);
  z-index: 99999;
}
.footer-section.style-3 .footer-top-items-3 .footer-left .footer-contentt form .form-clt .theme-btn::before {
  background-color: var(--white);
}
.footer-section.style-3 .footer-top-items-3 .footer-left .footer-contentt form .form-clt .theme-btn:hover {
  color: var(--header);
}
@media (max-width: 470px) {
  .footer-section.style-3 .footer-top-items-3 .footer-left .footer-contentt form .form-clt .theme-btn {
    position: static;
    margin-top: 20px;
  }
}
.footer-section.style-3 .footer-top-items-3 .footer-right {
  position: relative;
}
.footer-section.style-3 .footer-top-items-3 .footer-right h2 {
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
}
@media (max-width: 1399px) {
  .footer-section.style-3 .footer-top-items-3 .footer-right h2 {
    font-size: 21px;
  }
}
@media (max-width: 991px) {
  .footer-section.style-3 .footer-top-items-3 .footer-right h2 {
    font-size: 23px;
  }
}
.footer-section.style-3 .footer-top-items-3 .footer-right p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 500;
}
.footer-section.style-3 .footer-top-items-3 .footer-right .app-item {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .footer-section.style-3 .footer-top-items-3 .footer-right .app-item {
    gap: 18px;
  }
}
@media (max-width: 991px) {
  .footer-section.style-3 .footer-top-items-3 .footer-right .app-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.footer-widget-wrapper {
  padding: 90px 0 120px;
}
@media (max-width: 1199px) {
  .footer-widget-wrapper {
    padding: 70px 0 100px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper {
    padding: 50px 0 80px;
  }
}
.footer-widget-wrapper .footer-widget-items {
  margin-top: 30px;
}
.footer-widget-wrapper .footer-widget-items .widget-head {
  margin-bottom: 30px;
  position: relative;
}
.footer-widget-wrapper .footer-widget-items .widget-head .widget-title {
  display: inline-block;
  font-size: 28px;
  font-weight: 500;
  font-family: "Signika", sans-serif;
  color: var(--white);
}
.footer-widget-wrapper .footer-widget-items .widget-head .dashed {
  display: block;
  border-bottom: 4px dashed rgb(255, 194, 34);
  width: 64px;
  margin-top: 15px;
}
.footer-widget-wrapper .footer-widget-items .opening-hours-list li {
  color: var(--white);
  position: relative;
}
.footer-widget-wrapper .footer-widget-items .opening-hours-list li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget-wrapper .footer-widget-items .opening-hours-list li span {
  color: var(--theme);
}
.footer-widget-wrapper .footer-widget-items .list-items li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1%;
  position: relative;
}
.footer-widget-wrapper .footer-widget-items .list-items li a i {
  margin-right: 6px;
}
.footer-widget-wrapper .footer-widget-items .list-items li a:hover {
  color: var(--theme);
}
.footer-widget-wrapper .footer-widget-items .list-items li:not(:last-child) {
  margin-bottom: 11px;
}
.footer-widget-wrapper .footer-widget-items .recent-items li {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-widget-wrapper .footer-widget-items .recent-items li:not(:last-child) {
  margin-bottom: 12px;
}
.footer-widget-wrapper .footer-widget-items .recent-items li .thumb {
  border-radius: 4px;
  position: relative;
}
.footer-widget-wrapper .footer-widget-items .recent-items li .thumb img {
  border-radius: 4px;
}
.footer-widget-wrapper .footer-widget-items .recent-items li .content span {
  font-size: 14px;
  font-weight: 500;
  color: var(--theme);
  display: inline-block;
  position: relative;
}
.footer-widget-wrapper .footer-widget-items .recent-items li .content .recent-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 160%;
  position: relative;
  display: block;
  max-width: 180px;
}
.footer-widget-wrapper .footer-widget-items .recent-items li .content .recent-title:hover {
  color: var(--theme);
}
.footer-widget-wrapper .footer-widget-items .footer-content .text {
  color: var(--white);
  position: relative;
  font-size: 16px;
  max-width: 246px;
  margin-bottom: 25px;
}
.footer-widget-wrapper .footer-widget-items .footer-content .contact-items {
  position: relative;
}
.footer-widget-wrapper .footer-widget-items .footer-content .contact-items a {
  font-size: 16px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-widget-wrapper .footer-widget-items .footer-content .contact-items a i {
  color: var(--theme);
}
.footer-widget-wrapper .footer-widget-items .footer-content .contact-items p {
  font-size: 16px;
  color: var(--white);
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.footer-widget-wrapper .footer-widget-items .footer-content .contact-items p i {
  color: var(--theme);
}
.footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .widget-head .widget-title {
  color: #032532;
}
@media (max-width: 575px) {
  .footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .widget-head .widget-title {
    font-size: 18px;
  }
}
.footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .widget-head .dashed {
  border-bottom: 4px dashed #00833E;
}
.footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .opening-hours-list li {
  color: rgba(3, 37, 50, 0.54);
}
.footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .opening-hours-list li span {
  color: #032532;
}
.footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .opening-hours-list li.style-4 {
  color: var(--theme);
}
.footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .social-icon {
  gap: 10px;
  margin-top: 45px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .social-icon {
    margin-top: 30px;
  }
}
.footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .social-icon a {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(30, 29, 35, 0.12);
  color: var(--header);
  font-size: 14px;
}
.footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .social-icon a:hover {
  border: 1px solid var(--theme);
  background-color: var(--theme);
}
.footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .list-items li a {
  color: #5D5D5D;
}
.footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .list-items li:not(:last-child) {
  margin-bottom: 16px;
}
.footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .list-items li i {
  color: #D7D7D7;
  transition: all 0.4s ease-in-out;
}
.footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .list-items li:hover a {
  color: var(--theme);
  margin-left: 3px;
}
.footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .list-items li:hover a i {
  color: var(--theme);
}
.footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .footer-content {
  text-align: center;
}
@media (max-width: 767px) {
  .footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .footer-content {
    text-align: left;
  }
}
.footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .footer-content .footer-logo {
  margin-bottom: 15px;
}
.footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .footer-content .text {
  color: #76756D;
  position: relative;
  font-size: 16px;
  max-width: 275px;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .footer-content .text {
    text-align: left;
    margin: initial;
  }
}
.footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .footer-content h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 147%;
  margin-top: 10px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .footer-content h2 {
    font-size: 25px;
  }
}
.footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .footer-content h2 a {
  color: #032532;
}
.footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .footer-content .contact-items {
  position: relative;
  margin-top: 5px;
  text-align: center;
}
@media (max-width: 767px) {
  .footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .footer-content .contact-items {
    text-align: left;
  }
}
.footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .footer-content .contact-items a {
  font-size: 16px;
  color: #5D5D5D;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media (max-width: 767px) {
  .footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .footer-content .contact-items a {
    justify-content: start;
  }
}
.footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .footer-content .contact-items a i {
  color: var(--theme);
}
.footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .footer-content .contact-items p {
  font-size: 16px;
  color: #5D5D5D;
  display: flex;
  gap: 15px;
  margin-top: 15px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .footer-content .contact-items p {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .footer-content .contact-items p {
    font-size: 16px;
  }
}
.footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .footer-content .contact-items p i {
  color: var(--theme);
  transform: rotate(45deg);
}
@media (max-width: 767px) {
  .footer-widget-wrapper.style-widget-wrapper-4 .footer-widget-items .footer-content .contact-items p i {
    transform: rotate(0);
  }
}

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 25px 0 15px;
}
.footer-bottom .footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer-bottom .footer-bottom-wrapper {
    display: grid;
    justify-content: center;
    gap: 14px;
  }
}
.footer-bottom .footer-bottom-wrapper p {
  color: var(--white);
  font-size: 16px;
}
.footer-bottom .footer-bottom-wrapper .social-icon {
  gap: 10px;
}
@media (max-width: 575px) {
  .footer-bottom .footer-bottom-wrapper .social-icon {
    justify-content: center;
  }
}
.footer-bottom .footer-bottom-wrapper .social-icon a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 14px;
}
.footer-bottom .footer-bottom-wrapper .social-icon a:hover {
  background-color: var(--theme2);
}
.footer-bottom.style-3 {
  background-color: #00833E;
  border: none;
}
.footer-bottom.style-five .social-icon a {
  background: rgba(255, 255, 255, 0.12);
}
.footer-bottom.style-five .social-icon a:hover {
  background-color: var(--theme3);
}
.footer-bottom.style-six {
  background: #3B3B3B;
  border-top: none;
}
.footer-bottom.style-7 {
  background: #1F3634;
  border-top: none;
}
.footer-bottom.style-8 {
  background: rgba(255, 255, 255, 0.09);
  border-top: none;
}
@media (max-width: 767px) {
  .footer-bottom.style-8 .footer-bottom-wrapper {
    display: grid;
    justify-content: center;
    gap: 14px;
  }
}

.footer-widget-wrapper-5 {
  padding: 130px 0 60px;
  position: relative;
}
.footer-widget-wrapper-5 .footer-shape {
  position: absolute;
  left: 5%;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .footer-widget-wrapper-5 {
    padding: 70px 0 100px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper-5 {
    padding: 50px 0 80px;
  }
}
.footer-widget-wrapper-5 .single-footer-widget-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-5 .single-footer-widget-area {
    justify-content: start;
    gap: 100px;
  }
}
.footer-widget-wrapper-5 .single-footer-widget {
  margin-top: 30px;
  padding-top: 50px;
}
@media (max-width: 1199px) {
  .footer-widget-wrapper-5 .single-footer-widget {
    padding-top: 0;
  }
}
.footer-widget-wrapper-5 .single-footer-widget.style-bg-white {
  position: relative;
  z-index: 99;
  padding: 30px 25px;
}
.footer-widget-wrapper-5 .single-footer-widget.style-bg-white .footer-logo {
  text-align: center;
  display: block;
}
.footer-widget-wrapper-5 .single-footer-widget.style-bg-white p {
  font-size: 15px;
  font-weight: 600;
  color: #76756D;
}
.footer-widget-wrapper-5 .single-footer-widget.style-bg-white ul {
  margin-top: 15px;
}
.footer-widget-wrapper-5 .single-footer-widget.style-bg-white ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  color: #4B5563;
}
.footer-widget-wrapper-5 .single-footer-widget.style-bg-white ul li:not(:last-child) {
  margin-bottom: 5px;
}
.footer-widget-wrapper-5 .single-footer-widget.style-bg-white .icon {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}
.footer-widget-wrapper-5 .single-footer-widget.style-bg-white .icon p {
  font-size: 16px;
  font-family: "Signika", sans-serif;
}
.footer-widget-wrapper-5 .single-footer-widget.style-bg-white .icon a {
  font-weight: 500;
  font-size: 24px;
  font-family: "Signika", sans-serif;
  text-decoration: underline;
  color: #1F1F1F;
}
.footer-widget-wrapper-5 .single-footer-widget.style-bg-white .icon .arrow-icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  display: inline-block;
  box-shadow: 14px 18px 84px 82px rgba(6, 3, 48, 0.04);
  color: var(--theme);
}
.footer-widget-wrapper-5 .single-footer-widget.style-bg-white .icon .arrow-icon:hover {
  background-color: var(--theme);
  color: var(--white);
}
.footer-widget-wrapper-5 .single-footer-widget.style-bg-white::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  z-index: -1;
  border-radius: 12px;
}
.footer-widget-wrapper-5 .single-footer-widget.style-bg-white .widget-head {
  padding-bottom: 0;
  margin-bottom: 15px;
}
.footer-widget-wrapper-5 .single-footer-widget.style-bg-white .widget-head::before {
  display: none;
}
.footer-widget-wrapper-5 .single-footer-widget .widget-head {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}
.footer-widget-wrapper-5 .single-footer-widget .widget-head::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background-color: var(--theme3);
  height: 3px;
  width: 57px;
}
.footer-widget-wrapper-5 .single-footer-widget .widget-head h3 {
  font-size: 22px;
  color: var(--white);
  font-weight: 500;
}
.footer-widget-wrapper-5 .single-footer-widget .list-area li {
  font-weight: 500;
  font-size: 16px;
}
.footer-widget-wrapper-5 .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 27px;
}
.footer-widget-wrapper-5 .single-footer-widget .list-area li a {
  color: var(--white);
  position: relative;
}
.footer-widget-wrapper-5 .single-footer-widget .list-area li a:hover {
  color: var(--theme3);
}
.footer-widget-wrapper-5 .single-footer-widget .list-area li a:hover::before {
  background-color: var(--theme3);
}
.footer-widget-wrapper-5 .single-footer-widget .recent-post li {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-widget-wrapper-5 .single-footer-widget .recent-post li:not(:last-child) {
  margin-bottom: 11px;
}
.footer-widget-wrapper-5 .single-footer-widget .recent-post li .thumb img {
  border-radius: 5px;
}
.footer-widget-wrapper-5 .single-footer-widget .recent-post li .content {
  max-width: 155px;
  width: 100%;
}
.footer-widget-wrapper-5 .single-footer-widget .recent-post li .content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 400;
}
.footer-widget-wrapper-5 .single-footer-widget .recent-post li .content a {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.footer-widget-wrapper-5 .single-footer-widget .recent-post li .content a:hover {
  color: var(--theme3);
}
.footer-widget-wrapper-5 .single-footer-widget .footer-contect {
  margin-top: 30px;
}
.footer-widget-wrapper-5 .single-footer-widget .footer-contect li {
  display: flex;
  gap: 15px;
  font-size: 16px;
}
.footer-widget-wrapper-5 .single-footer-widget .footer-contect li i {
  font-size: 20px;
  color: var(--theme3);
}
.footer-widget-wrapper-5 .single-footer-widget .footer-contect li .content p {
  color: rgb(255, 255, 255);
}
.footer-widget-wrapper-5 .single-footer-widget .footer-contect li .content p a {
  color: rgb(255, 255, 255);
}
.footer-widget-wrapper-5 .single-footer-widget .footer-contect li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget-wrapper-5 .single-footer-widget .footer-content .foot-title {
  font-size: 24px;
  color: var(--white);
  line-height: 162%;
  font-weight: 500;
}
@media (max-width: 767px) {
  .footer-widget-wrapper-5 .single-footer-widget .footer-content .foot-title {
    font-size: 18px;
  }
}
.footer-widget-wrapper-5 .single-footer-widget .footer-content .social-icon {
  gap: 16px;
  margin-top: 30px;
}
.footer-widget-wrapper-5 .single-footer-widget .footer-content .social-icon a {
  background-color: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  display: inline-block;
}
.footer-widget-wrapper-5 .single-footer-widget .footer-content .social-icon a:hover {
  background-color: var(--theme);
}
.footer-widget-wrapper-5 .single-footer-widget .list-hour li {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-widget-wrapper-5 .single-footer-widget .list-hour li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.21);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.footer-section-5 {
  position: relative;
  z-index: 1;
}
.footer-section-5 .footer-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.footer-section-5 .footer-top img {
  width: 100%;
}
.footer-section-5 .shape-1 {
  position: absolute;
  top: 0;
  left: 49%;
}
.footer-section-5 .shape-2 {
  position: absolute;
  top: -60px;
  right: 74px;
  z-index: 1;
}
.footer-section-5 .shape-3 {
  position: absolute;
  bottom: 24%;
  left: 0;
  z-index: -1;
}
.footer-section-5 .shape-4 {
  position: absolute;
  right: 74px;
  bottom: 28%;
  z-index: -1;
}
@media (max-width: 1600px) {
  .footer-section-5 .shape-4 {
    bottom: 20%;
    right: 30px;
  }
}

.footer-form-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .footer-form-top-wrapper {
    gap: 30px;
    flex-wrap: wrap;
  }
}
.footer-form-top-wrapper .left-items {
  max-width: 645px;
}
.footer-form-top-wrapper .left-items .title {
  color: var(--white);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 40px;
}
.footer-form-top-wrapper .left-items form {
  position: relative;
}
.footer-form-top-wrapper .left-items form input {
  border: none;
  outline: none;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding-bottom: 18px;
  padding-right: 150px;
}
.footer-form-top-wrapper .left-items form input::placeholder {
  color: #fff;
}
.footer-form-top-wrapper .left-items form .theme-btn {
  background-color: var(--theme3);
  position: absolute;
  bottom: 5px;
  right: 0;
  color: #fff;
}
.footer-form-top-wrapper .left-items form .theme-btn::before {
  background-color: var(--white);
}
.footer-form-top-wrapper .left-items form .theme-btn:hover {
  color: var(--header);
}
.footer-form-top-wrapper .download-app .title {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
}
.footer-form-top-wrapper .download-app p {
  font-size: 16px;
  color: var(--white);
  margin-top: 8px;
}
.footer-form-top-wrapper .download-app .app-items {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
@media (max-width: 575px) {
  .footer-form-top-wrapper .download-app .app-items {
    gap: 15px;
  }
  .footer-form-top-wrapper .download-app .app-items img {
    width: 100%;
  }
}

.footer-widget-wrapper-six {
  padding: 90px 0 120px;
}
@media (max-width: 1199px) {
  .footer-widget-wrapper-six {
    padding: 70px 0 100px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper-six {
    padding: 50px 0 80px;
  }
}
.footer-widget-wrapper-six .footer-widget-items {
  margin-top: 30px;
}
.footer-widget-wrapper-six .footer-widget-items .social-icon {
  gap: 10px;
  margin-top: 120px;
}
@media (max-width: 575px) {
  .footer-widget-wrapper-six .footer-widget-items .social-icon {
    margin-top: 50px;
  }
}
.footer-widget-wrapper-six .footer-widget-items .social-icon a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 14px;
}
.footer-widget-wrapper-six .footer-widget-items .social-icon a:hover {
  background-color: var(--theme3);
}
.footer-widget-wrapper-six .footer-widget-items .widget-head {
  padding-bottom: 20px;
  margin-bottom: 30px;
  position: relative;
}
.footer-widget-wrapper-six .footer-widget-items .widget-head::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 2px;
  width: 58px;
  border: 2px dashed var(--theme3);
}
.footer-widget-wrapper-six .footer-widget-items .widget-head .widget-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  font-family: "Signika", sans-serif;
}
.footer-widget-wrapper-six .footer-widget-items .opening-hours-list li {
  color: var(--white);
  position: relative;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-six .footer-widget-items .opening-hours-list li {
    font-size: 16px;
  }
}
.footer-widget-wrapper-six .footer-widget-items .opening-hours-list li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget-wrapper-six .footer-widget-items .opening-hours-list li span {
  color: var(--theme3);
}
.footer-widget-wrapper-six .footer-widget-items .list-items li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1%;
  position: relative;
}
.footer-widget-wrapper-six .footer-widget-items .list-items li a i {
  margin-right: 6px;
}
.footer-widget-wrapper-six .footer-widget-items .list-items li a:hover {
  color: var(--theme3);
}
.footer-widget-wrapper-six .footer-widget-items .list-items li:not(:last-child) {
  margin-bottom: 11px;
}
.footer-widget-wrapper-six .footer-widget-items .footer-content .text {
  color: var(--white);
  position: relative;
  font-size: 16px;
  max-width: 246px;
  margin-bottom: 25px;
}
.footer-widget-wrapper-six .footer-widget-items .footer-content .contact-items {
  position: relative;
}
.footer-widget-wrapper-six .footer-widget-items .footer-content .contact-items a {
  font-size: 16px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-widget-wrapper-six .footer-widget-items .footer-content .contact-items a i {
  color: var(--theme3);
}
.footer-widget-wrapper-six .footer-widget-items .footer-content .contact-items p {
  font-size: 16px;
  color: var(--white);
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.footer-widget-wrapper-six .footer-widget-items .footer-content .contact-items p i {
  color: var(--theme3);
}
.footer-widget-wrapper-six .footer-widget-items.style-margin {
  margin-left: 80px;
}
@media (max-width: 1199px) {
  .footer-widget-wrapper-six .footer-widget-items.style-margin {
    margin-left: 0;
  }
}

.footer-section-8 {
  background: #2F1812;
}
.footer-section-8.footer-section-7 {
  background: transparent;
  position: relative;
  z-index: 1;
}
.footer-section-8.footer-section-7 .left-shape {
  position: absolute;
  top: 100px;
  left: 0;
  z-index: -1;
}

.footer-widget-wrapper-8 {
  padding: 90px 0 120px;
}
@media (max-width: 1199px) {
  .footer-widget-wrapper-8 {
    padding: 70px 0 100px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper-8 {
    padding: 50px 0 80px;
  }
}
.footer-widget-wrapper-8 .footer-widget-items {
  margin-top: 30px;
}
.footer-widget-wrapper-8 .footer-widget-items .widget-head {
  margin-bottom: 30px;
  position: relative;
}
.footer-widget-wrapper-8 .footer-widget-items .widget-head .widget-title {
  position: relative;
  padding-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  font-family: "Signika", sans-serif;
  text-transform: uppercase;
}
.footer-widget-wrapper-8 .footer-widget-items .widget-head .widget-title::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 2px;
  width: 87px;
  border: 2px solid #C9AB81;
}
.footer-widget-wrapper-8 .footer-widget-items .footer-content p {
  font-size: 15px;
  color: var(--white);
  font-weight: 600;
}
.footer-widget-wrapper-8 .footer-widget-items .opening-hours-list {
  padding-top: 15px;
}
.footer-widget-wrapper-8 .footer-widget-items .opening-hours-list li {
  color: var(--white);
  position: relative;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-widget-wrapper-8 .footer-widget-items .opening-hours-list li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget-wrapper-8 .footer-widget-items .contact-items {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  padding-top: 15px;
  gap: 7px;
}
.footer-widget-wrapper-8 .footer-widget-items .contact-items a {
  color: var(--white);
}
.footer-widget-wrapper-8 .footer-widget-items .contact-items p {
  color: var(--white);
}
.footer-widget-wrapper-8 .footer-widget-items .footer-form-items {
  padding-top: 15px;
}
.footer-widget-wrapper-8 .footer-widget-items .footer-form-items .subscribe-text {
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--white);
}
.footer-widget-wrapper-8 .footer-widget-items .footer-form-items p {
  margin-bottom: 30px;
}
.footer-widget-wrapper-8 .footer-widget-items .footer-form-items form {
  max-width: 591px;
  width: 100%;
  position: relative;
}
.footer-widget-wrapper-8 .footer-widget-items .footer-form-items form input {
  width: 100%;
  outline: none;
  border: none;
  background: transparent;
  line-height: 1;
  padding-right: 30px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.44);
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  padding-bottom: 12px;
}
.footer-widget-wrapper-8 .footer-widget-items .footer-form-items form input::placeholder {
  color: rgba(255, 255, 255, 0.44);
  font-size: 15px;
  font-weight: 400;
}
.footer-widget-wrapper-8 .footer-widget-items .footer-form-items form .icon-btn {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--white);
}
.footer-widget-wrapper-8 .footer-widget-items .footer-form-items .form-check {
  margin-top: 15px;
}
.footer-widget-wrapper-8 .footer-widget-items .footer-form-items .form-check .form-check-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.footer-widget-wrapper-8 .footer-widget-items .footer-form-items .form-check .form-check-label a {
  font-weight: 500;
  color: var(--white);
}
.footer-widget-wrapper-8 .footer-widget-items .footer-form-items .form-check .form-check-label a:hover {
  color: var(--theme);
}
.footer-widget-wrapper-8 .footer-widget-items .footer-form-items .form-check .form-check-input {
  background-color: transparent;
  border-color: #fff !important;
}
.footer-widget-wrapper-8 .footer-widget-items .footer-form-items .social-icon {
  font-size: 20px;
  gap: 30px;
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.footer-widget-wrapper-8 .footer-widget-items .footer-form-items .social-icon a {
  color: #fff;
}
.footer-widget-wrapper-8 .footer-widget-items .footer-form-items .social-icon a:hover {
  color: var(--theme5);
}

.footer-fix-padding {
  padding-bottom: 117px !important;
}

.footer-fix-padding-2 {
  padding-bottom: 277px !important;
}
@media (max-width: 1199px) {
  .footer-fix-padding-2 {
    padding-bottom: 180px !important;
  }
}
@media (max-width: 575px) {
  .footer-fix-padding-2 {
    padding-bottom: 135px !important;
  }
}

.footer-fix-padding-3 {
  padding-bottom: 120px !important;
}

.footer-fix-padding-4 {
  padding-bottom: 263px !important;
}
@media (max-width: 1199px) {
  .footer-fix-padding-4 {
    padding-bottom: 0 !important;
  }
}

.footer-fix-padding-5 {
  padding-bottom: 180px !important;
}
@media (max-width: 575px) {
  .footer-fix-padding-5 {
    padding-bottom: 135px !important;
  }
}

.footer-fix-padding-6 {
  padding-bottom: 100px !important;
}

.footer-fix-padding-7 {
  padding-bottom: 118px !important;
}
@media (max-width: 1199px) {
  .footer-fix-padding-7 {
    padding-bottom: 170px !important;
  }
}
@media (max-width: 575px) {
  .footer-fix-padding-7 {
    padding-bottom: 135px !important;
  }
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
  .section-title br {
    display: none;
  }
}
.section-title .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-family: "Bylast", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--theme2);
}
@media (max-width: 1199px) {
  .section-title .sub-title {
    font-size: 17px;
  }
}
.section-title .sub-title.style-2 {
  color: var(--theme3);
}
.section-title .sub-title.style-8 {
  color: #D96B1A;
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title-area {
    margin-bottom: 0;
  }
  .section-title-area br {
    display: none;
  }
}
.section-title-area .section-title {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.section-title-area .nav {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.section-title-area .nav .nav-item .nav-link {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  border: 1px solid rgba(30, 29, 35, 0.22);
  height: 51px;
  line-height: 51px;
  padding: 0 25px;
  border-radius: 4px;
}
.section-title-area .nav .nav-item .nav-link.active {
  background: var(--theme3);
  border-color: var(--theme3);
  color: var(--white);
}

.section-title-2 {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title-2 {
    margin-bottom: 0;
  }
  .section-title-2 br {
    display: none;
  }
}
.section-title-2 .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title-2 .title {
  font-size: 100px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 100%;
}
@media (max-width: 1399px) {
  .section-title-2 .title {
    font-size: 80px;
  }
}
@media (max-width: 1199px) {
  .section-title-2 .title {
    font-size: 65px;
  }
}
@media (max-width: 991px) {
  .section-title-2 .title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .section-title-2 .title {
    font-size: 42px;
  }
}
@media (max-width: 470px) {
  .section-title-2 .title {
    font-size: 38px;
  }
}
@media (max-width: 500px) {
  .section-title-2 .title {
    font-size: 32px;
  }
}

.bg-color-7 {
  background-color: #102B2A;
}

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

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

.section-bg-2 {
  background-color: #FBF3E6 !important;
}

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

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

.section-padding-2 {
  padding: 60px 0;
}

.sec-bg {
  background: #F4F1EA;
}

/*---------------------------------------
05. Sections
---------------------------------------*/
.hero-1 {
  padding: 150px 0;
  position: relative;
  margin: 20px;
  border-radius: 20px;
  margin-top: 270px;
}
@media (max-width: 1199px) {
  .hero-1 {
    margin-top: 170px;
  }
}
@media (max-width: 575px) {
  .hero-1 {
    margin-top: 130px;
  }
}
.hero-1 .swiper-dot {
  bottom: 35px;
  left: 24%;
  position: absolute;
  z-index: 99;
}
.hero-1 .shape-1 {
  position: absolute;
  top: 15px;
  left: 0;
}
@media (max-width: 991px) {
  .hero-1 .shape-1 {
    opacity: 0.3;
  }
}
.hero-1 .shape-2 {
  position: absolute;
  bottom: -2%;
  left: -8%;
}
@media (max-width: 991px) {
  .hero-1 .shape-2 {
    opacity: 0.3;
  }
}
@media (max-width: 767px) {
  .hero-1 .shape-2 {
    max-width: 180px;
  }
  .hero-1 .shape-2 img {
    width: 100%;
  }
}
.hero-1 .shape-3 {
  position: absolute;
  bottom: 0;
  left: 40%;
}
@media (max-width: 991px) {
  .hero-1 .shape-3 {
    opacity: 0.3;
  }
}
@media (max-width: 767px) {
  .hero-1 .shape-3 {
    max-width: 180px;
  }
  .hero-1 .shape-3 img {
    width: 100%;
  }
}
.hero-1 .shape-4 {
  position: absolute;
  top: 0;
  left: 45%;
}
@media (max-width: 991px) {
  .hero-1 .shape-4 {
    opacity: 0.3;
  }
}
@media (max-width: 767px) {
  .hero-1 .shape-4 {
    max-width: 180px;
  }
  .hero-1 .shape-4 img {
    width: 100%;
  }
}
.hero-1 .shape-5 {
  position: absolute;
  bottom: 20%;
  left: 50%;
  z-index: 11;
}
@media (max-width: 767px) {
  .hero-1 .shape-5 {
    max-width: 180px;
  }
  .hero-1 .shape-5 img {
    width: 60%;
  }
}
.hero-1 .container {
  max-width: 1600px;
}
.hero-1 .hero-content {
  text-align: center;
}
.hero-1 .hero-content .hero-sub {
  display: inline-block;
  font-size: 38px;
  font-weight: 400;
  color: #00BF57;
  font-family: "Bylast", sans-serif;
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
  -webkit-transition: 1.5s cubic-bezier(0.61, -0.63, 0.46, 1.48);
  transition: 1.5s cubic-bezier(0.61, -0.63, 0.46, 1.48);
}
@media (max-width: 991px) {
  .hero-1 .hero-content .hero-sub {
    font-size: 18px;
  }
}
.hero-1 .hero-content .hero-title {
  color: var(--white);
  line-height: 110%;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin-top: 25px;
}
.hero-1 .hero-content .hero-title span {
  color: var(--theme);
}
.hero-1 .hero-content p {
  font-weight: 600;
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 35px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: 800ms cubic-bezier(0.61, -0.63, 0.46, 1.48);
  transition: 800ms cubic-bezier(0.61, -0.63, 0.46, 1.48);
}
.hero-1 .hero-content .hero-btn {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: 800ms cubic-bezier(0.61, -0.63, 0.46, 1.48);
  transition: 800ms cubic-bezier(0.61, -0.63, 0.46, 1.48);
}
.hero-1 .hero-image {
  text-align: right;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  -webkit-transition: all 700ms ease-in-out;
  transition: all 700ms ease-in-out;
}
@media (max-width: 1199px) {
  .hero-1 .hero-image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-image {
    max-width: 600px;
    margin: 0 auto;
  }
}
.hero-1 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero-image {
  opacity: 1;
  visibility: visible;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition-delay: 800ms;
  transition-delay: 800ms;
}
.hero-1 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero-sub {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}
.hero-1 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .item-img img {
  -webkit-transform: scaleX(100%);
  transform: scaleX(100%);
  -webkit-filter: blur(0px);
  filter: blur(0px);
}
.hero-1 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .item-text .hero-slug {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}
.hero-1 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero-slug span {
  opacity: 1;
  visibility: visible;
}
.hero-1 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line {
  -webkit-transform: translateX(0%) scaleX(1);
  transform: translateX(0%) scaleX(1);
  opacity: 1;
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.hero-1 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line:nth-child(2) {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}
.hero-1 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line:nth-child(3) {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.hero-1 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .item-text .hero_title .split-line:nth-child(4) {
  -webkit-transition-delay: 1.1s;
  transition-delay: 1.1s;
}
.hero-1 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line:nth-child(5) {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
.hero-1 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line:nth-child(6) {
  -webkit-transition-delay: 1.3s;
  transition-delay: 1.3s;
}
.hero-1 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line:nth-child(7) {
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}
.hero-1 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line:nth-child(8) {
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}
.hero-1 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line:nth-child(9) {
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}
.hero-1 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line:nth-child(10) {
  -webkit-transition-delay: 1.7s;
  transition-delay: 1.7s;
}
.hero-1 .swiper-slide:is(.swiper-slide-active) .hero-slider-items p {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition-delay: 800ms;
  transition-delay: 800ms;
}
.hero-1 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero-btn {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-delay: 1200ms;
  transition-delay: 1200ms;
}
.hero-1 .split-line {
  display: inline-block;
  transform: translateX(-20%) scaleX(0.3);
  opacity: 0;
  transition: 1.2s var(--cube-1);
  vertical-align: top;
  line-height: 0.9;
}

.hero-2 {
  padding: 410px 0 0;
  position: relative;
}
@media (max-width: 1199px) {
  .hero-2 {
    padding-top: 250px;
  }
}
.hero-2 .hero-content {
  text-align: center;
  position: relative;
  z-index: 99;
}
.hero-2 .hero-content .s-1 {
  position: absolute;
  top: -5%;
  left: 19%;
  z-index: -1;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content .s-1 {
    display: none;
  }
}
.hero-2 .hero-content .s-2 {
  position: absolute;
  top: -11px;
  right: 5%;
  z-index: 1;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content .s-2 {
    display: none;
  }
}
.hero-2 .hero-content .hero-sub {
  display: inline-block;
  font-family: "Bylast", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #00BF57;
  margin-bottom: 15px;
}
.hero-2 .hero-content h1 {
  font-size: 130px;
  font-weight: 600;
  color: #ED0B08;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content h1 {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 470px) {
  .hero-2 .hero-content h1 {
    font-size: 45px;
  }
}
.hero-2 .hero-content p {
  margin-top: 5px;
  margin-bottom: 40px;
}
.hero-2 .hero-image {
  margin-top: 50px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-2 .hero-image .discount-box {
  position: absolute;
  top: -15px;
  left: 20%;
  z-index: 9;
}
@media (max-width: 1199px) {
  .hero-2 .hero-image .discount-box {
    display: none;
  }
  .hero-2 .hero-image .discount-box img {
    width: 100px;
  }
  .hero-2 .hero-image .discount-box .cont span {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-image .discount-box {
    bottom: 150px;
    top: initial;
  }
}
.hero-2 .hero-image .discount-box .cont {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-2 .hero-image .discount-box .cont p {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  font-family: "Signika", sans-serif;
}
.hero-2 .hero-image .discount-box .cont span {
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  font-family: "Signika", sans-serif;
}
.hero-2 .hero-image .discount-box img {
  animation: cir36 10s linear infinite;
}
.hero-2 .hero-image .text-shape {
  position: absolute;
  top: -18%;
  left: -12%;
  z-index: -1;
}
@media (max-width: 1199px) {
  .hero-2 .hero-image img {
    width: 100%;
    height: 100%;
  }
}
.hero-2 .hero-shape1 {
  position: absolute;
  left: 0;
  top: 310px;
}
@media (max-width: 1199px) {
  .hero-2 .hero-shape1 {
    display: none;
  }
}
.hero-2 .hero-shape2 {
  position: absolute;
  left: 0;
  top: 59%;
}
@media (max-width: 1199px) {
  .hero-2 .hero-shape2 {
    opacity: 0.4;
  }
}
.hero-2 .hero-shape3 {
  position: absolute;
  left: 60px;
  bottom: 0;
}
@media (max-width: 1199px) {
  .hero-2 .hero-shape3 {
    display: none;
  }
}
.hero-2 .hero-shape4 {
  position: absolute;
  bottom: -7%;
  right: 23%;
}
.hero-2 .hero-shape5 {
  position: absolute;
  right: 0;
  bottom: 15%;
}
@media (max-width: 1199px) {
  .hero-2 .hero-shape5 {
    display: none;
  }
}
.hero-2 .hero-shape6 {
  position: absolute;
  top: 470px;
  right: 130px;
}
@media (max-width: 1199px) {
  .hero-2 .hero-shape6 {
    opacity: 0.4;
  }
}
@media (max-width: 1199px) {
  .hero-2 .hero-shape6 {
    display: none;
  }
}
.hero-2 .hero-shape7 {
  position: absolute;
  top: 390px;
  right: 0;
}
@media (max-width: 767px) {
  .hero-2 .hero-shape7 {
    opacity: 0.2;
  }
}

.hero-3 {
  padding: 80px 0 0;
  position: relative;
  z-index: 9;
  margin-top: 120px;
}
@media (max-width: 991px) {
  .hero-3 {
    padding-top: 110px;
  }
}
.hero-3 .ratting-box {
  position: absolute;
  top: 70px;
  right: 15%;
}
@media (max-width: 1600px) {
  .hero-3 .ratting-box {
    right: 5%;
  }
}
.hero-3 .right-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1399px) {
  .hero-3 .right-shape {
    display: none;
  }
}
.hero-3 .right-shape img {
  width: 100%;
  height: 100%;
}
.hero-3 .left-shape {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 220px;
}
@media (max-width: 1600px) {
  .hero-3 .left-shape {
    max-width: 150px;
  }
}
@media (max-width: 1399px) {
  .hero-3 .left-shape {
    display: none;
  }
}
.hero-3 .left-shape img {
  width: 100%;
  height: 100%;
}
.hero-3 .bottom-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
}
@media (max-width: 1399px) {
  .hero-3 .bottom-shape {
    display: none;
  }
}
.hero-3 .bottom-shape img {
  width: 100%;
  height: 100%;
}
.hero-3 .chili-shape {
  position: absolute;
  right: 0;
  bottom: 80px;
}
@media (max-width: 1399px) {
  .hero-3 .chili-shape {
    display: none;
  }
}
.hero-3 .arrow-shape {
  position: absolute;
  right: 300px;
  top: 272px;
}
@media (max-width: 1600px) {
  .hero-3 .arrow-shape {
    right: 160px;
  }
}
@media (max-width: 1399px) {
  .hero-3 .arrow-shape {
    display: none;
  }
}
.hero-3 .tomato-shape {
  position: absolute;
  top: -15px;
  right: 43%;
}
@media (max-width: 1399px) {
  .hero-3 .tomato-shape {
    display: none;
  }
}
.hero-3 .shape {
  position: absolute;
  top: 33px;
  right: 550px;
}
@media (max-width: 1600px) {
  .hero-3 .shape {
    right: 300px;
  }
}
@media (max-width: 1399px) {
  .hero-3 .shape {
    display: none;
  }
}
.hero-3 .leaf {
  position: absolute;
  top: -10px;
  left: 34%;
}
@media (max-width: 1600px) {
  .hero-3 .leaf {
    left: 22%;
  }
}
@media (max-width: 1399px) {
  .hero-3 .leaf {
    display: none;
  }
}
.hero-3 .leaf-2 {
  position: absolute;
  left: 0;
  bottom: 50px;
}
@media (max-width: 1399px) {
  .hero-3 .leaf-2 {
    display: none;
  }
}
.hero-3 .leaf-3 {
  position: absolute;
  left: 44%;
  bottom: -55px;
}
@media (max-width: 1399px) {
  .hero-3 .leaf-3 {
    display: none;
  }
}
.hero-3 .hero-content {
  margin-top: -130px;
}
@media (max-width: 991px) {
  .hero-3 .hero-content {
    text-align: center;
    margin-top: 0;
  }
}
.hero-3 .hero-content span {
  font-size: 76px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  font-family: "Signika", sans-serif;
  line-height: 1;
}
@media (max-width: 1399px) {
  .hero-3 .hero-content span {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-content span {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-content span {
    font-size: 25px;
  }
}
.hero-3 .hero-content h1 {
  font-size: 144px;
  color: var(--theme);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: -7%;
}
@media (max-width: 1399px) {
  .hero-3 .hero-content h1 {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-content h1 {
    font-size: 70px;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-content h1 {
    font-size: 50px;
  }
}
.hero-3 .hero-content p {
  font-size: 66px;
  font-weight: 400;
  font-family: "Bylast", sans-serif;
  margin-top: 30px;
  color: var(--theme);
}
@media (max-width: 1399px) {
  .hero-3 .hero-content p {
    font-size: 60px;
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .hero-3 .hero-content p {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-content p {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-content p {
    font-size: 35px;
  }
}
.hero-3 .hero-content .icon-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .hero-3 .hero-content .icon-item {
    margin-top: 35px;
  }
}
@media (max-width: 991px) {
  .hero-3 .hero-content .icon-item {
    justify-content: center;
  }
}
.hero-3 .hero-content .icon-item .content span {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  text-transform: capitalize;
}
.hero-3 .hero-content .icon-item .content h2 {
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 1399px) {
  .hero-3 .hero-content .icon-item .content h2 {
    font-size: 25px;
  }
}
.hero-3 .hero-content .icon-item .content h2 a {
  color: #00BF57;
}
.hero-3 .hero-image {
  margin-left: 50px;
}
@media (max-width: 1399px) {
  .hero-3 .hero-image {
    margin-left: 0;
  }
}
.hero-3 .hero-image img {
  width: 100%;
  height: 100%;
}

.hero-4 {
  padding: 130px 0 260px;
  position: relative;
  margin-top: 264px;
}
@media (max-width: 1399px) {
  .hero-4 {
    padding-bottom: 130px;
  }
}
@media (max-width: 1199px) {
  .hero-4 {
    padding: 240px 0 100px;
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .hero-4 {
    padding: 220px 0 80px;
  }
}
.hero-4 .bg-shape {
  position: absolute;
  right: 0;
  left: 0;
  bottom: -1px;
}
@media (max-width: 1399px) {
  .hero-4 .bg-shape {
    bottom: -8px;
  }
}
.hero-4 .bg-shape img {
  width: 100%;
  height: 100%;
}
.hero-4 .arrow-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  left: 40px;
  right: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}
@media (max-width: 1600px) {
  .hero-4 .arrow-button {
    left: 20px;
    right: 20px;
  }
}
@media (max-width: 1399px) {
  .hero-4 .arrow-button {
    display: none;
  }
}
.hero-4 .arrow-button .array-prev, .hero-4 .arrow-button .array-next {
  width: 89px;
  height: 89px;
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(18.65px);
  line-height: 89px;
  text-align: center;
  border-radius: 100%;
}
@media (max-width: 1600px) {
  .hero-4 .arrow-button .array-prev, .hero-4 .arrow-button .array-next {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}
.hero-4 .arrow-button .array-prev img, .hero-4 .arrow-button .array-next img {
  transition: all 0.4s ease-in-out;
}
.hero-4 .arrow-button .array-prev:hover, .hero-4 .arrow-button .array-next:hover {
  background-color: var(--theme);
}
.hero-4 .arrow-button .array-prev:hover img, .hero-4 .arrow-button .array-next:hover img {
  filter: brightness(0);
}
.hero-4 .arrow {
  position: absolute;
  left: 120px;
  bottom: 320px;
}
@media (max-width: 1600px) {
  .hero-4 .arrow {
    bottom: 270px;
    left: 80px;
  }
}
@media (max-width: 1399px) {
  .hero-4 .arrow {
    display: none;
  }
}
.hero-4 .discount-box {
  position: absolute;
  top: 105px;
  left: 38%;
  z-index: 9;
}
@media (max-width: 1399px) {
  .hero-4 .discount-box {
    top: 200px;
  }
  .hero-4 .discount-box img {
    width: 100px;
  }
  .hero-4 .discount-box .cont span {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .hero-4 .discount-box {
    bottom: 150px;
    top: initial;
  }
}
.hero-4 .discount-box .cont {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-4 .discount-box .cont p {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  font-family: "Signika", sans-serif;
}
.hero-4 .discount-box .cont span {
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  font-family: "Signika", sans-serif;
}
.hero-4 .discount-box img {
  animation: cir36 10s linear infinite;
}
.hero-4 .text {
  font-size: 120px;
  font-weight: 400;
  font-family: "Bylast", sans-serif;
  transform: rotate(-23.96deg);
  color: var(--theme);
  position: absolute;
  left: 210px;
  top: 80px;
}
@media (max-width: 1600px) {
  .hero-4 .text {
    left: 80px;
    font-size: 100px;
  }
}
@media (max-width: 1399px) {
  .hero-4 .text {
    display: none;
  }
}
.hero-4 .container {
  max-width: 1432px;
}
.hero-4 .hero-content {
  text-align: center;
}
.hero-4 .hero-content .hero-sub {
  display: inline-block;
  font-size: 38px;
  font-weight: 400;
  color: #00BF57;
  font-family: "Bylast", sans-serif;
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
  -webkit-transition: 1.5s cubic-bezier(0.61, -0.63, 0.46, 1.48);
  transition: 1.5s cubic-bezier(0.61, -0.63, 0.46, 1.48);
}
.hero-4 .hero-content .hero-title {
  color: var(--white);
  line-height: 110%;
  text-transform: uppercase;
  letter-spacing: -7%;
  margin-top: 25px;
  font-size: 144px;
}
@media (max-width: 1899px) {
  .hero-4 .hero-content .hero-title {
    font-size: 115px;
  }
}
@media (max-width: 1399px) {
  .hero-4 .hero-content .hero-title {
    font-size: 70px;
  }
}
@media (max-width: 1199px) {
  .hero-4 .hero-content .hero-title {
    font-size: 80px;
  }
}
@media (max-width: 991px) {
  .hero-4 .hero-content .hero-title {
    font-size: 60px;
    line-height: 110% !important;
  }
}
@media (max-width: 767px) {
  .hero-4 .hero-content .hero-title {
    font-size: 48px;
  }
}
@media (max-width: 575px) {
  .hero-4 .hero-content .hero-title {
    font-size: 45px;
  }
}
@media (max-width: 470px) {
  .hero-4 .hero-content .hero-title {
    font-size: 40px;
  }
}
.hero-4 .hero-content p {
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 35px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: 800ms cubic-bezier(0.61, -0.63, 0.46, 1.48);
  transition: 800ms cubic-bezier(0.61, -0.63, 0.46, 1.48);
}
@media (max-width: 1399px) {
  .hero-4 .hero-content p br {
    display: none;
  }
}
.hero-4 .hero-content .hero-btn {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: 800ms cubic-bezier(0.61, -0.63, 0.46, 1.48);
  transition: 800ms cubic-bezier(0.61, -0.63, 0.46, 1.48);
}
.hero-4 .hero-image {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  -webkit-transition: all 700ms ease-in-out;
  transition: all 700ms ease-in-out;
}
.hero-4 .hero-image img {
  width: 100%;
  height: 100%;
}
.hero-4 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero-image {
  opacity: 1;
  visibility: visible;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition-delay: 800ms;
  transition-delay: 800ms;
}
.hero-4 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero-sub {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}
.hero-4 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .item-img img {
  -webkit-transform: scaleX(100%);
  transform: scaleX(100%);
  -webkit-filter: blur(0px);
  filter: blur(0px);
}
.hero-4 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .item-text .hero-slug {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}
.hero-4 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero-slug span {
  opacity: 1;
  visibility: visible;
}
.hero-4 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line {
  -webkit-transform: translateX(0%) scaleX(1);
  transform: translateX(0%) scaleX(1);
  opacity: 1;
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.hero-4 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line:nth-child(2) {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}
.hero-4 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line:nth-child(3) {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.hero-4 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .item-text .hero_title .split-line:nth-child(4) {
  -webkit-transition-delay: 1.1s;
  transition-delay: 1.1s;
}
.hero-4 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line:nth-child(5) {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
.hero-4 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line:nth-child(6) {
  -webkit-transition-delay: 1.3s;
  transition-delay: 1.3s;
}
.hero-4 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line:nth-child(7) {
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}
.hero-4 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line:nth-child(8) {
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}
.hero-4 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line:nth-child(9) {
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}
.hero-4 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line:nth-child(10) {
  -webkit-transition-delay: 1.7s;
  transition-delay: 1.7s;
}
.hero-4 .swiper-slide:is(.swiper-slide-active) .hero-slider-items p {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition-delay: 800ms;
  transition-delay: 800ms;
}
.hero-4 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero-btn {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-delay: 1200ms;
  transition-delay: 1200ms;
}
.hero-4 .split-line {
  display: inline-block;
  transform: translateX(-20%) scaleX(0.3);
  opacity: 0;
  transition: 1.2s var(--cube-1);
  vertical-align: top;
  line-height: 0.9;
}

.hero-5 {
  padding: 160px 0 0;
  overflow: hidden;
  position: relative;
  margin-bottom: 50px;
  margin-top: 170px;
}
@media (max-width: 575px) {
  .hero-5 {
    margin-top: 130px;
  }
}
.hero-5 .swiper-dot {
  bottom: 13%;
  left: 24%;
  position: absolute;
  z-index: 99;
}
@media (max-width: 991px) {
  .hero-5 .swiper-dot {
    display: none;
  }
}
.hero-5 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme3);
}
.hero-5 .hero-content {
  margin-top: 50px;
  position: relative;
  z-index: 99;
}
@media (max-width: 991px) {
  .hero-5 .hero-content {
    margin-top: 0;
  }
}
.hero-5 .hero-content .hero-sub {
  font-weight: 400;
  font-size: 52px;
  font-family: "Bylast", sans-serif;
  color: #ED1C27;
  text-align: center;
  transform: rotate(-8.37deg);
  margin-left: -60px;
  margin-bottom: -40px;
  position: relative;
  z-index: 9;
  line-height: 1;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
@media (max-width: 1399px) {
  .hero-5 .hero-content .hero-sub {
    transform: rotate(0deg);
    margin-left: 0;
    text-align: left;
    margin-bottom: 15px;
  }
}
@media (max-width: 1199px) {
  .hero-5 .hero-content .hero-sub {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  .hero-5 .hero-content .hero-sub {
    text-align: center;
  }
}
.hero-5 .hero-content h1 {
  font-size: 166px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: capitalize;
  background: linear-gradient(202.82deg, #FFA125 29.07%, #ED0B08 89.41%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: rotate(-8.37deg);
  -webkit-text-stroke: 2px #fff;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
@media (max-width: 1399px) {
  .hero-5 .hero-content h1 {
    transform: rotate(0deg);
    font-size: 120px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .hero-5 .hero-content h1 {
    font-size: 90px;
  }
}
@media (max-width: 991px) {
  .hero-5 .hero-content h1 {
    text-align: center;
  }
}
@media (max-width: 470px) {
  .hero-5 .hero-content h1 {
    font-size: 65px;
  }
}
.hero-5 .hero-content .text {
  text-align: center;
  color: #FFFFFF;
  transform: rotate(-8.37deg);
  font-weight: 400;
  font-size: 52px;
  font-family: "Bylast", sans-serif;
  margin-top: 5px;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  line-height: 1;
}
@media (max-width: 1399px) {
  .hero-5 .hero-content .text {
    transform: rotate(0deg);
    text-align: left;
  }
}
@media (max-width: 1199px) {
  .hero-5 .hero-content .text {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  .hero-5 .hero-content .text {
    text-align: center;
  }
}
.hero-5 .hero-content .hero-info {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  transform: rotate(-8.37deg);
  margin-top: 45px;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
@media (max-width: 1399px) {
  .hero-5 .hero-content .hero-info {
    transform: rotate(0deg);
    justify-content: start;
  }
}
@media (max-width: 991px) {
  .hero-5 .hero-content .hero-info {
    justify-content: center;
  }
}
.hero-5 .hero-content .hero-info .content p {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.hero-5 .hero-content .hero-info .content a {
  font-size: 32px;
  font-weight: 700;
  font-family: "Signika", sans-serif;
  color: #FFC222;
}
@media (max-width: 1199px) {
  .hero-5 .hero-content .hero-info .content a {
    font-size: 25px;
  }
}
.hero-5 .hero-image {
  margin-bottom: -200px;
  margin-left: -250px;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
@media (max-width: 1399px) {
  .hero-5 .hero-image {
    margin-bottom: -180px;
  }
  .hero-5 .hero-image img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .hero-5 .hero-image {
    margin-left: 0;
    text-align: center;
    margin-bottom: -250px;
    margin-top: 35px;
  }
}
@media (max-width: 767px) {
  .hero-5 .hero-image {
    margin-bottom: -150px;
  }
}
.hero-5 .hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 111;
}
@media (max-width: 991px) {
  .hero-5 .hero-line {
    display: none;
  }
}
.hero-5 .hero-line img {
  width: 100%;
}
.hero-5 .swiper-slide-active .hero-content .hero-sub {
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-5 .swiper-slide-active .hero-content h1 {
  -webkit-transition-delay: 800ms;
  -moz-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  transition-delay: 800ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-5 .swiper-slide-active .hero-content .text {
  -webkit-transition-delay: 1100ms;
  -moz-transition-delay: 1100ms;
  -ms-transition-delay: 1100ms;
  -o-transition-delay: 1100ms;
  transition-delay: 1100ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-5 .swiper-slide-active .hero-content .hero-info {
  -webkit-transition-delay: 1400ms;
  -moz-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  transition-delay: 1400ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-5 .swiper-slide-active .hero-image {
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-5 .hero-shape {
  position: absolute;
  left: 177px;
  bottom: 190px;
}
@media (max-width: 1399px) {
  .hero-5 .hero-shape {
    bottom: 100px;
  }
}
@media (max-width: 1199px) {
  .hero-5 .hero-shape {
    opacity: 0.3;
  }
}
.hero-5 .hero-shape2 {
  position: absolute;
  bottom: 170px;
  left: 45%;
}
@media (max-width: 1199px) {
  .hero-5 .hero-shape2 {
    opacity: 0.3;
  }
}
.hero-5 .hero-shape3 {
  position: absolute;
  top: 50px;
  left: 49%;
}
@media (max-width: 1199px) {
  .hero-5 .hero-shape3 {
    opacity: 0.3;
  }
}
.hero-5 .hero-shape4 {
  position: absolute;
  bottom: 0;
  right: 200px;
}
@media (max-width: 1399px) {
  .hero-5 .hero-shape4 {
    right: 50px;
  }
}
@media (max-width: 1199px) {
  .hero-5 .hero-shape4 {
    opacity: 0.3;
  }
}
.hero-5 .hero-shape5 {
  position: absolute;
  top: 7%;
  right: 15%;
}
@media (max-width: 1199px) {
  .hero-5 .hero-shape5 {
    opacity: 0.3;
  }
}
.hero-5 .hero-shape6 {
  position: absolute;
  top: 19%;
  right: 40px;
}
@media (max-width: 1199px) {
  .hero-5 .hero-shape6 {
    opacity: 0.3;
  }
}
.hero-5 .discount-shape {
  position: absolute;
  left: 50%;
  z-index: 11;
  bottom: 30%;
  animation: 6s linear 0s infinite normal none running scale-up-two;
}
@media (max-width: 991px) {
  .hero-5 .discount-shape {
    left: 30%;
  }
}
@media (max-width: 767px) {
  .hero-5 .discount-shape {
    left: 15%;
    bottom: 15%;
  }
}
.hero-5 .discount-box {
  position: absolute;
  top: 35%;
  right: 13%;
  z-index: 11;
}
@media (max-width: 1399px) {
  .hero-5 .discount-box {
    right: 5%;
  }
}
@media (max-width: 991px) {
  .hero-5 .discount-box {
    top: initial;
    bottom: 10%;
    right: 7%;
  }
}
@media (max-width: 767px) {
  .hero-5 .discount-box {
    bottom: 5%;
  }
}
.hero-5 .discount-box::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1.4px dashed #fff;
  content: "";
  width: 134px;
  height: 134px;
  border-radius: 50%;
  z-index: 1;
}
@media (max-width: 767px) {
  .hero-5 .discount-box::before {
    display: none;
  }
}
.hero-5 .discount-box .cont {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
}
.hero-5 .discount-box .cont p {
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  font-family: "Signika", sans-serif;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .hero-5 .discount-box .cont p {
    font-size: 17px;
    margin-bottom: 0;
  }
}
.hero-5 .discount-box .cont span {
  font-size: 51px;
  font-weight: 600;
  color: var(--white);
  font-family: "Signika", sans-serif;
}
@media (max-width: 767px) {
  .hero-5 .discount-box .cont span {
    font-size: 38px;
  }
}
.hero-5 .discount-box img {
  animation: cir36 10s linear infinite;
}
@media (max-width: 767px) {
  .hero-5 .discount-box img {
    width: 130px;
  }
}

.hero-7 {
  position: relative;
  overflow: hidden;
}
.hero-7 .hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 11;
}
@media (max-width: 1899px) {
  .hero-7 .hero-line {
    bottom: -10px;
  }
}
@media (max-width: 767px) {
  .hero-7 .hero-line {
    display: none;
  }
}
.hero-7 .hero-line img {
  width: 100%;
}
.hero-7 .hero-slider-items {
  position: relative;
  z-index: 1;
  overflow: hidden;
  position: relative;
  z-index: 9;
  padding: 470px 0 130px;
}
@media (max-width: 991px) {
  .hero-7 .hero-slider-items {
    padding: 300px 0 160px;
  }
}
.hero-7 .hero-slider-items .swiper-slide.swiper-slide-active .hero-shape {
  opacity: 1;
  transform: translateX(0px);
  transition: all 1500ms ease;
}
.hero-7 .hero-slider-items .swiper-slide.swiper-slide-active .hero-shape {
  opacity: 1;
  transform: translateX(0px);
  transition: all 1500ms ease;
}
.hero-7 .hero-slider-items .swiper-slide.swiper-slide-active .hero-shape2 {
  opacity: 1;
  transform: translateX(0px);
  transition: all 1500ms ease;
}
.hero-7 .hero-slider-items .item-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.hero-7 .hero-slider-items .item-img::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0) 24.64%, rgba(26, 26, 26, 0.53) 83.49%, #1A1A1A 100%);
  top: 0;
  right: 0;
  z-index: 1;
}
.hero-7 .hero-slider-items .item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-filter: blur(108px);
  filter: blur(108px);
  -webkit-transform: scaleX(150%);
  transform: scaleX(150%);
  -webkit-transition: -webkit-filter 2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 2s cubic-bezier(0.4, -0.2, 0.1, 0.48);
  transition: -webkit-filter 2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 2s cubic-bezier(0.4, -0.2, 0.1, 0.48);
  transition: filter 2s cubic-bezier(0.4, 0, 0.2, 1), transform 2s cubic-bezier(0.4, -0.2, 0.1, 0.48);
  transition: filter 2s cubic-bezier(0.4, 0, 0.2, 1), transform 2s cubic-bezier(0.4, -0.2, 0.1, 0.48), -webkit-filter 2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 2s cubic-bezier(0.4, -0.2, 0.1, 0.48);
}
.hero-7 .hero-slider-items .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1199px) {
  .hero-7 .hero-slider-items .container-fluid {
    padding: 0 50px;
  }
}
.hero-7 .hero-slider-items .hero-content {
  position: relative;
  max-width: 660px;
}
@media (max-width: 991px) {
  .hero-7 .hero-slider-items .hero-content {
    margin: 0 auto;
    text-align: center;
  }
}
.hero-7 .hero-slider-items .hero-content .circle-box {
  position: absolute;
  top: 15px;
  right: 24%;
}
@media (max-width: 1199px) {
  .hero-7 .hero-slider-items .hero-content .circle-box {
    display: none;
  }
}
.hero-7 .hero-slider-items .hero-content .vec-shape {
  position: absolute;
  top: 40%;
  right: 0%;
}
@media (max-width: 1199px) {
  .hero-7 .hero-slider-items .hero-content .vec-shape {
    display: none;
  }
}
.hero-7 .hero-slider-items .hero-title {
  font-weight: 600;
  font-size: 120px;
  line-height: 98%;
  color: var(--white);
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .hero-7 .hero-slider-items .hero-title {
    font-size: 80px;
  }
}
@media (max-width: 991px) {
  .hero-7 .hero-slider-items .hero-title {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .hero-7 .hero-slider-items .hero-title {
    font-size: 58px;
  }
}
@media (max-width: 575px) {
  .hero-7 .hero-slider-items .hero-title {
    font-size: 48px;
  }
}
@media (max-width: 470px) {
  .hero-7 .hero-slider-items .hero-title {
    font-size: 38px;
  }
}
.hero-7 .hero-slider-items .text {
  text-transform: uppercase;
  color: var(--white);
  font-size: 28px;
  font-weight: 500;
  font-family: "Signika", sans-serif;
  max-width: 320px;
  line-height: 1.4;
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: 800ms cubic-bezier(0.61, -0.63, 0.46, 1.48);
  transition: 800ms cubic-bezier(0.61, -0.63, 0.46, 1.48);
}
@media (max-width: 1199px) {
  .hero-7 .hero-slider-items .text {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .hero-7 .hero-slider-items .text {
    margin: 0 auto;
    text-align: center;
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .hero-7 .hero-slider-items .text {
    font-size: 18px;
  }
}
.hero-7 .swiper-dot {
  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
}
.hero-7 .swiper-dot .swiper-pagination-bullet {
  width: 37px;
  height: 8px;
  transition: 0.6s;
  background-color: rgba(255, 255, 255, 0.26);
  opacity: 1;
  border-radius: 10px;
}
.hero-7 .swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 5px;
}
.hero-7 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--white);
  transition: 0.6s;
  position: relative;
  width: 90px;
}
@media (max-width: 1199px) {
  .hero-7 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 60px;
  }
}
.hero-7 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero-mask {
  opacity: 1;
  visibility: visible;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition-delay: 800ms;
  transition-delay: 800ms;
}
.hero-7 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .item-img img {
  -webkit-transform: scaleX(100%);
  transform: scaleX(100%);
  -webkit-filter: blur(0px);
  filter: blur(0px);
}
.hero-7 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line {
  transform: translateX(0%) scaleX(1);
  opacity: 1;
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.hero-7 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line:nth-child(2) {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}
.hero-7 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line:nth-child(3) {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.hero-7 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .item-text .hero_title .split-line:nth-child(4) {
  -webkit-transition-delay: 1.1s;
  transition-delay: 1.1s;
}
.hero-7 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line:nth-child(5) {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
.hero-7 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line:nth-child(6) {
  -webkit-transition-delay: 1.3s;
  transition-delay: 1.3s;
}
.hero-7 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line:nth-child(7) {
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}
.hero-7 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line:nth-child(8) {
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}
.hero-7 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line:nth-child(9) {
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}
.hero-7 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .hero_title .split-line:nth-child(10) {
  -webkit-transition-delay: 1.7s;
  transition-delay: 1.7s;
}
.hero-7 .swiper-slide:is(.swiper-slide-active) .hero-slider-items .text {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition-delay: 800ms;
  transition-delay: 800ms;
}
.hero-7 .split-line {
  -webkit-transform: translateX(-20%) scaleX(-0.3);
  transform: translateX(-20%) scaleX(-0.3);
  opacity: 0;
  -webkit-transition: 1.2s var(--cube-1);
  transition: 1.2s var(--cube-1);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.hero-6 {
  padding: 100px 0 0;
  position: relative;
  z-index: 99;
  margin-top: 100px;
}
@media (max-width: 1199px) {
  .hero-6 {
    padding: 110px 0;
  }
}
@media (max-width: 991px) {
  .hero-6 {
    padding: 170px 0;
  }
}
.hero-6 .swiper-dot {
  bottom: 18%;
  left: 15%;
  position: absolute;
  z-index: 99;
}
@media (max-width: 991px) {
  .hero-6 .swiper-dot {
    display: none;
  }
}
.hero-6 .swiper-pagination-bullet {
  background: rgba(237, 28, 39, 0.26);
}
.hero-6 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme3);
}
.hero-6::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #FBDBDD;
  z-index: -1;
  height: 88%;
}
@media (max-width: 1600px) {
  .hero-6::before {
    height: 90%;
  }
}
@media (max-width: 1399px) {
  .hero-6::before {
    height: 92%;
  }
}
@media (max-width: 1199px) {
  .hero-6::before {
    height: 100%;
  }
}
.hero-6 .hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width: 1199px) {
  .hero-6 .hero-bottom {
    display: none;
  }
}
.hero-6 .hero-bottom img {
  width: 100%;
}
.hero-6 .hero-content {
  margin-top: -140px;
}
@media (max-width: 1199px) {
  .hero-6 .hero-content {
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .hero-6 .hero-content {
    text-align: center;
  }
}
.hero-6 .hero-content .hero-star {
  position: relative;
  z-index: 9;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
.hero-6 .hero-content h1 {
  font-size: 100px;
  font-weight: 600;
  line-height: 96%;
  letter-spacing: -0.03em;
  color: #1E1D23;
  margin-top: 18px;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
@media (max-width: 1399px) {
  .hero-6 .hero-content h1 {
    font-size: 70px;
  }
}
@media (max-width: 575px) {
  .hero-6 .hero-content h1 {
    font-size: 45px;
  }
}
.hero-6 .hero-content p {
  font-weight: 400;
  font-size: 38px;
  line-height: 1;
  color: #ED1C27;
  font-family: "Bylast", sans-serif;
  margin-top: 29px;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
@media (max-width: 1399px) {
  .hero-6 .hero-content p {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .hero-6 .hero-content p {
    font-size: 20px;
  }
}
.hero-6 .hero-content .theme-btn {
  background-color: var(--theme3);
  color: var(--white);
  margin-top: 35px;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
.hero-6 .hero-content .theme-btn::before {
  background-color: var(--header);
}
.hero-6 .hero-image {
  position: relative;
  z-index: 99;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
@media (max-width: 1399px) {
  .hero-6 .hero-image {
    margin-left: -60px;
  }
}
@media (max-width: 991px) {
  .hero-6 .hero-image {
    text-align: center;
    margin-left: 0;
  }
}
.hero-6 .heor-bg {
  position: absolute;
  top: 100px;
  right: 153px;
  bottom: 0;
}
@media (max-width: 1899px) {
  .hero-6 .heor-bg {
    right: 110px;
  }
}
@media (max-width: 1600px) {
  .hero-6 .heor-bg {
    right: 0;
  }
}
@media (max-width: 1399px) {
  .hero-6 .heor-bg {
    display: none;
  }
}
.hero-6 .heor-bg .shape-1 {
  position: absolute;
  bottom: 40%;
  left: -14%;
  z-index: 1;
}
.hero-6 .heor-bg .shape-2 {
  position: absolute;
  top: 5%;
  left: 0;
}
.hero-6 .heor-bg .shape-3 {
  position: absolute;
  bottom: 25%;
  right: -4%;
}
.hero-6 .swiper-slide-active .hero-content .hero-star {
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-6 .swiper-slide-active .hero-content h1 {
  -webkit-transition-delay: 800ms;
  -moz-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  transition-delay: 800ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-6 .swiper-slide-active .hero-content p {
  -webkit-transition-delay: 1100ms;
  -moz-transition-delay: 1100ms;
  -ms-transition-delay: 1100ms;
  -o-transition-delay: 1100ms;
  transition-delay: 1100ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-6 .swiper-slide-active .hero-content .theme-btn {
  -webkit-transition-delay: 1400ms;
  -moz-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  transition-delay: 1400ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-6 .swiper-slide-active .hero-image {
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-6 .hero-shape1 {
  position: absolute;
  left: 0;
  top: 120px;
}
@media (max-width: 1199px) {
  .hero-6 .hero-shape1 {
    opacity: 0.4;
  }
}
.hero-6 .hero-shape2 {
  position: absolute;
  top: 50%;
  left: 45%;
}
@media (max-width: 1199px) {
  .hero-6 .hero-shape2 {
    opacity: 0.4;
  }
}
.hero-6 .hero-shape3 {
  position: absolute;
  top: 140px;
  right: 0;
}
@media (max-width: 1199px) {
  .hero-6 .hero-shape3 {
    opacity: 0.4;
  }
}
.hero-6 .hero-shape4 {
  position: absolute;
  left: 27%;
  bottom: 0;
}
@media (max-width: 1199px) {
  .hero-6 .hero-shape4 {
    opacity: 0.4;
  }
}
.hero-6 .hero-shape5 {
  position: absolute;
  left: 50%;
  bottom: 15%;
}
@media (max-width: 1199px) {
  .hero-6 .hero-shape5 {
    height: 100%;
  }
}
.hero-6 .text {
  font-weight: 500;
  font-size: 22px;
  font-family: "Signika", sans-serif;
  color: var(--header);
  position: absolute;
  left: 40%;
  bottom: 25%;
}
@media (max-width: 1199px) {
  .hero-6 .text {
    display: none;
  }
}

@media (max-width: 1399px) {
  .rs-item-1 {
    order: 1;
  }
  .rs-item-3 {
    order: 3;
  }
  .rs-item-2 {
    order: 2;
  }
}
@media (max-width: 1199px) {
  .cols-item-1 {
    order: 1;
  }
  .cols-item-3 {
    order: 3;
  }
  .cols-item-2 {
    order: 2;
  }
}
.hero-8 {
  padding: 210px 125px;
  position: relative;
  margin-top: 116px;
}
@media (max-width: 1899px) {
  .hero-8 {
    padding: 200px 60px;
  }
}
@media (max-width: 1199px) {
  .hero-8 {
    padding: 150px 30px;
  }
}
.hero-8 .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.hero-8 .shape-2 {
  position: absolute;
  bottom: 0;
  left: 30px;
  z-index: 1;
}
.hero-8 .hero-content {
  text-align: center;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .hero-8 .hero-content {
    text-align: center;
  }
}
.hero-8 .hero-content span {
  font-weight: 400;
  font-size: 36px;
  line-height: 72%;
  font-family: "Bylast", sans-serif;
  color: rgb(217, 107, 26);
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .hero-8 .hero-content span {
    font-size: 25px;
  }
}
@media (max-width: 991px) {
  .hero-8 .hero-content span {
    font-size: 20px;
  }
}
.hero-8 .hero-content .title {
  font-size: 144px;
  font-weight: 600;
  color: var(--white);
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1600px) {
  .hero-8 .hero-content .title {
    font-size: 100px;
  }
}
@media (max-width: 1399px) {
  .hero-8 .hero-content .title {
    font-size: 80px;
  }
}
@media (max-width: 1199px) {
  .hero-8 .hero-content .title {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .hero-8 .hero-content .title {
    font-size: 52px;
  }
}
.hero-8 .hero-content .sec-line {
  margin-top: 20px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .hero-8 .hero-content .sec-line {
    max-width: 530px;
    margin: 20px auto 25px;
  }
  .hero-8 .hero-content .sec-line img {
    width: 100%;
  }
}
.hero-8 .hero-content p {
  font-size: 18px;
  max-width: 648px;
  margin: 0 auto;
  color: var(--white);
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .hero-8 .hero-content p {
    font-size: 16px;
  }
}
.hero-8 .hero-content .theme-btn {
  background-color: #D96B1A;
  border-radius: 0;
  color: var(--white);
  margin-top: 45px;
  position: relative;
  z-index: 1;
}
.hero-8 .hero-content .theme-btn::before {
  background-color: var(--white);
}
.hero-8 .hero-content .theme-btn:hover {
  color: var(--header);
}
.hero-8 .ripple-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #000;
  opacity: 0.5;
}

@media (max-width: 1199px) {
  .making-ice-cream-section-5 {
    padding-bottom: 0 !important;
  }
}

.making-ice-thumb-items-5 {
  position: relative;
  margin-top: 30px;
  height: 507px;
  max-width: 432px;
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .making-ice-thumb-items-5 {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .making-ice-thumb-items-5 {
    max-width: initial;
  }
}
.making-ice-thumb-items-5 img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}
.making-ice-thumb-items-5 .left-sm-thumb {
  position: absolute;
  top: 68%;
  left: -15%;
}
@media (max-width: 991px) {
  .making-ice-thumb-items-5 .left-sm-thumb {
    top: 20px;
    left: 20px;
  }
}
@media (max-width: 767px) {
  .making-ice-thumb-items-5 .left-sm-thumb {
    max-width: 150px;
  }
}
.making-ice-thumb-items-5 .left-sm-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
.making-ice-thumb-items-5 .right-sm-thumb {
  position: absolute;
  top: 54%;
  right: -37%;
}
@media (max-width: 1399px) {
  .making-ice-thumb-items-5 .right-sm-thumb {
    right: -20%;
  }
}
@media (max-width: 1199px) {
  .making-ice-thumb-items-5 .right-sm-thumb {
    right: -5%;
    max-width: 220px;
  }
  .making-ice-thumb-items-5 .right-sm-thumb img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .making-ice-thumb-items-5 .right-sm-thumb {
    top: initial;
    right: 20px;
    bottom: 20px;
  }
}
@media (max-width: 767px) {
  .making-ice-thumb-items-5 .right-sm-thumb {
    max-width: 150px;
  }
}
.making-ice-thumb-items-5 .right-sm-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.making-ice-content-5 {
  margin-top: 30px;
}
.making-ice-content-5 .counter-area {
  display: flex;
  align-items: center;
  gap: 30px;
  border: 1px dashed var(--theme3);
  border-radius: 15px;
  padding: 25px 60px;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .making-ice-content-5 .counter-area {
    padding: 22px 20px;
  }
}
@media (max-width: 991px) {
  .making-ice-content-5 .counter-area {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.making-ice-content-5 .counter-area .counter-title {
  font-size: 80px;
  font-weight: 400;
  color: var(--theme3);
  font-family: "Signika", sans-serif;
}
.making-ice-content-5 .counter-area p {
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #666666;
}
@media (max-width: 1399px) {
  .making-ice-content-5 .counter-area p {
    font-size: 17px;
  }
}
.making-ice-content-5 .icon-area {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .making-ice-content-5 .icon-area {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
  }
}
.making-ice-content-5 .icon-area .icon {
  max-width: 100px;
  width: 100%;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(237, 28, 39, 0.1);
}
.making-ice-content-5 .icon-area .icon img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}
.making-ice-content-5 .icon-area .content .title-2 {
  font-size: 22px;
  font-weight: 500;
}
.making-ice-content-5 .icon-area .content p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-top: 8px;
}
.making-ice-content-5 .icon-area:hover .icon img {
  animation: wobble 1.5s ease-in-out;
}

.feature-section {
  background-color: rgba(255, 194, 34, 0.12);
  margin: 0 20px;
  border-radius: 0px 0px 20px 20px;
}
@media (max-width: 1199px) {
  .feature-section {
    background: transparent;
  }
}

.feature-box-items {
  padding: 60px 50px;
  position: relative;
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1600px) {
  .feature-box-items {
    padding: 50px 30px;
  }
}
@media (max-width: 1199px) {
  .feature-box-items {
    background-color: var(--white);
    margin-top: 25px;
  }
}
.feature-box-items .number {
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  font-family: var(--header);
  color: var(--header);
  position: absolute;
  top: 50px;
  right: 70px;
}
.feature-box-items .icon {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.feature-box-items .icon::before {
  position: absolute;
  bottom: -20px;
  right: -20px;
  content: "";
  width: 53px;
  height: 53px;
  border-radius: 50%;
  background-color: var(--theme);
  z-index: -1;
}
.feature-box-items .content {
  margin-top: 80px;
}
.feature-box-items .content .title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 25px;
}
.feature-box-items .content .theme-btn {
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
}
.feature-box-items:hover .icon {
  animation: wobble 1.5s ease-in-out;
}
.feature-box-items.active {
  background-color: var(--white);
}
.feature-box-items.active .content .theme-btn {
  transform: translateY(25px);
  opacity: 1;
  visibility: visible;
}
.feature-box-items.style-two {
  background: #fff;
}
.feature-box-items.style-two.active {
  background: #F4F1EA;
}

.counter-box-two {
  text-align: center;
}
.counter-box-two .content {
  position: relative;
  z-index: 1;
  padding: 30px;
  padding-top: 0;
  padding-bottom: 15px;
}
.counter-box-two .content::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  border-radius: 100px;
  z-index: -1;
  top: 25%;
  height: initial;
  transition: all 0.4s ease-in-out;
}
.counter-box-two .content .icon {
  width: 95px;
  height: 95px;
  line-height: 95px;
  background: #FFC222;
  border-radius: 47.5px 47.5px 46.5px 0px;
  text-align: center;
  margin: 0 auto 15px;
  transition: all 0.4s ease-in-out;
}
.counter-box-two .content h2 {
  line-height: 1;
}
.counter-box-two .text {
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: var(--header);
  margin-top: 22px;
}
.counter-box-two:hover .content .icon {
  background-color: var(--theme2);
}
.counter-box-two:hover .content .icon svg path {
  fill: #fff;
}

.counter-wrapper-two {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
@media (max-width: 1199px) {
  .counter-wrapper-two {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .counter-wrapper-two {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .counter-wrapper-two {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .counter-wrapper-two {
    grid-template-columns: repeat(1, 1fr);
  }
}

.highlight-wrapper {
  position: relative;
}
.highlight-wrapper .ratting-box {
  position: absolute;
  top: 23%;
  right: 13%;
}
@media (max-width: 991px) {
  .highlight-wrapper .ratting-box {
    display: none;
  }
}
.highlight-wrapper .foodie-text {
  position: absolute;
  top: -13%;
  left: 0;
  right: 0;
  text-align: center;
}
.highlight-wrapper .foodie-text img {
  width: 100%;
}
.highlight-wrapper .shape {
  position: absolute;
  top: 0;
  right: 20%;
}
@media (max-width: 991px) {
  .highlight-wrapper .shape {
    display: none;
  }
}
.highlight-wrapper .women-image {
  max-width: 613px;
  margin: 0 auto;
  position: relative;
}
.highlight-wrapper .women-image img {
  width: 100%;
  height: 100%;
}
.highlight-wrapper .women-image .highlight-box-items {
  background: var(--theme);
  padding: 45px 35px;
  border-radius: 20px;
  max-width: 490px;
  position: relative;
  z-index: 1;
  position: absolute;
  top: 35%;
  left: -56%;
}
@media (max-width: 991px) {
  .highlight-wrapper .women-image .highlight-box-items {
    max-width: 400px;
    left: -50px;
  }
}
@media (max-width: 767px) {
  .highlight-wrapper .women-image .highlight-box-items {
    display: none;
  }
}
.highlight-wrapper .women-image .highlight-box-items .quote-icon {
  position: absolute;
  top: 40px;
  right: 28px;
  z-index: -1;
}
.highlight-wrapper .women-image .highlight-box-items p {
  color: var(--header);
}
.highlight-wrapper .women-image .highlight-box-items .info-items {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 80px;
}
.highlight-wrapper .women-image .highlight-box-items .info-items .content span {
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
  font-family: "Signika", sans-serif;
}
.highlight-wrapper .women-image .highlight-box-items .info-items .content p {
  color: #76756D;
}
.highlight-wrapper .women-image .highlight-box-items .info-items img {
  width: initial;
}
.highlight-wrapper .title-text {
  text-align: center;
  font-family: "Signika", sans-serif;
  font-weight: 600;
  letter-spacing: -5%;
  font-size: 130px;
  text-transform: uppercase;
  position: relative;
  z-index: 9;
  color: #ED0B08;
  margin-top: -80px;
  margin-bottom: 100px;
}
@media (max-width: 1199px) {
  .highlight-wrapper .title-text {
    font-size: 90px;
  }
}
@media (max-width: 991px) {
  .highlight-wrapper .title-text {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .highlight-wrapper .title-text {
    font-size: 50px;
    letter-spacing: initial;
    line-height: 1;
  }
}
.highlight-wrapper .vec-shape {
  position: absolute;
  bottom: 21%;
  right: 13%;
}
@media (max-width: 991px) {
  .highlight-wrapper .vec-shape {
    display: none;
  }
}

.delivery-box-two {
  display: flex;
  gap: 33px;
  align-items: start;
}
@media (max-width: 575px) {
  .delivery-box-two {
    flex-wrap: wrap;
  }
}
.delivery-box-two .icon {
  position: relative;
  display: inline-block;
}
.delivery-box-two .icon::before {
  position: absolute;
  bottom: -26px;
  left: 20px;
  content: "";
  width: 53px;
  height: 53px;
  content: "";
  line-height: 53px;
  background: var(--theme);
  border-radius: 50%;
  z-index: -1;
}
.delivery-box-two .content {
  max-width: 310px;
}
.delivery-box-two .content .title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 20px;
}
.delivery-box-two .content .link-btn {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  color: var(--header);
  margin-top: 35px;
}
.delivery-box-two .content .link-btn i {
  margin-left: 10px;
}
.delivery-box-two .content .link-btn:hover {
  color: var(--theme);
}
.delivery-box-two:hover .icon {
  animation: wobble 1.5s ease-in-out;
}

.award-box-items {
  background-color: var(--white);
  box-shadow: 8px 6px 51.3px 151px rgba(10, 3, 46, 0.03);
  border-radius: 10px;
  padding: 50px 20px 42px;
  max-width: 386px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.award-box-items::before {
  position: absolute;
  top: 59%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  content: "";
  height: 1px;
  width: 100%;
  border: 1px dashed #CDCDCD;
}
.award-box-items .title {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 145%;
}
.award-box-items .award-text {
  font-size: 16px;
  color: #A7AA99;
  border: 1px solid #00833E;
  background-color: #fff;
  padding: 12px 32px;
  display: inline-block;
  border-radius: 19px;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 25px;
  position: relative;
  z-index: 1;
}
.award-box-items .text {
  font-size: 16px;
  margin-top: 25px;
}
.award-box-items .text b {
  color: var(--header);
  font-weight: 400;
}

.highlight-section {
  position: relative;
}
.highlight-section .food-shape {
  position: absolute;
  bottom: 40%;
  left: 0;
}
.highlight-section .food-shape2 {
  position: absolute;
  right: 0;
  bottom: 48%;
}

.support-feature-section-two {
  position: relative;
  z-index: 1;
}
.support-feature-section-two .shape {
  position: absolute;
  left: 160px;
  bottom: 0;
  z-index: -1;
}

.ice-cream-banner-section-5 .container {
  max-width: 1587px;
}

.ice-banner-area-1 .banner-1 {
  position: relative;
  height: 340px;
  overflow: hidden;
  border-radius: 20px;
}
.ice-banner-area-1 .banner-1::before {
  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;
  pointer-events: none;
}
.ice-banner-area-1 .banner-1 img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  object-fit: cover;
  transition: all 1s;
}
.ice-banner-area-1 .banner-1 .content {
  position: absolute;
  top: 50px;
  left: 45px;
}
@media (max-width: 1199px) {
  .ice-banner-area-1 .banner-1 .content {
    left: 25px;
    top: 25px;
  }
}
.ice-banner-area-1 .banner-1 .content span {
  font-size: 15px;
  font-weight: 500;
  color: #083C52;
  font-family: "Nunito", sans-serif;
}
.ice-banner-area-1 .banner-1 .content .title {
  color: #083C52;
  font-family: "Signika", sans-serif;
  font-size: 42px;
  font-weight: 600;
  max-width: 214px;
  margin-top: 5px;
}
.ice-banner-area-1 .banner-1 .content .theme-btn {
  background-color: var(--theme3);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  font-family: "Nunito", sans-serif;
  margin-top: 20px;
}
.ice-banner-area-1 .banner-1 .content .theme-btn::before {
  background-color: #083C52;
}
.ice-banner-area-1 .banner-1:hover::before {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.ice-banner-area-1 .banner-1:hover img {
  transform: scale(1.2);
}
.ice-banner-area-1 .banner-2 {
  position: relative;
  margin-top: 15px;
  height: 340px;
  overflow: hidden;
  border-radius: 20px;
}
.ice-banner-area-1 .banner-2::before {
  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;
  pointer-events: none;
}
.ice-banner-area-1 .banner-2 img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  object-fit: cover;
  transition: all 1s;
}
.ice-banner-area-1 .banner-2 .content {
  position: absolute;
  top: 50px;
  left: 45px;
}
@media (max-width: 1199px) {
  .ice-banner-area-1 .banner-2 .content {
    left: 25px;
    top: 25px;
  }
}
.ice-banner-area-1 .banner-2 .content span {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  font-family: "Nunito", sans-serif;
}
.ice-banner-area-1 .banner-2 .content .title {
  color: var(--white);
  font-family: "Signika", sans-serif;
  font-size: 42px;
  font-weight: 600;
  max-width: 247px;
  margin-top: 5px;
}
.ice-banner-area-1 .banner-2 .content p {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}
.ice-banner-area-1 .banner-2 .content .theme-btn {
  background-color: var(--theme3);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  font-family: "Nunito", sans-serif;
  margin-top: 20px;
}
.ice-banner-area-1 .banner-2 .content .theme-btn::before {
  background-color: #083C52;
}
.ice-banner-area-1 .banner-2:hover::before {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.ice-banner-area-1 .banner-2:hover img {
  transform: scale(1.2);
}

.ice-banner-area-2 {
  position: relative;
  text-align: center;
  height: 700px;
  overflow: hidden;
  border-radius: 20px;
}
.ice-banner-area-2::before {
  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;
  pointer-events: none;
}
.ice-banner-area-2 img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  object-fit: cover;
  transition: all 1s;
}
.ice-banner-area-2 .content {
  position: absolute;
  top: 50px;
  left: 60px;
  right: 60px;
}
.ice-banner-area-2 .content span {
  font-family: "Bylast", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
}
.ice-banner-area-2 .content .title {
  font-size: 42px;
  font-weight: 600;
  color: var(--white);
  margin-top: 5px;
}
.ice-banner-area-2 .content p {
  color: var(--white);
  margin-top: 10px;
}
.ice-banner-area-2 .content .theme-btn {
  background-color: var(--theme3);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  font-family: "Nunito", sans-serif;
  margin-top: 20px;
}
.ice-banner-area-2 .content .theme-btn::before {
  background-color: #083C52;
}
.ice-banner-area-2:hover::before {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.ice-banner-area-2:hover img {
  transform: scale(1.2);
}

.ice-banner-area-3 .banner-3 {
  text-align: center;
  position: relative;
  height: 340px;
  overflow: hidden;
  border-radius: 20px;
}
.ice-banner-area-3 .banner-3::before {
  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;
  pointer-events: none;
}
.ice-banner-area-3 .banner-3 img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  object-fit: cover;
  transition: all 1s;
}
.ice-banner-area-3 .banner-3 .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ice-banner-area-3 .banner-3 .content span {
  font-family: "Bylast", sans-serif;
  font-size: 33px;
  font-weight: 400;
  color: var(--theme3);
}
.ice-banner-area-3 .banner-3 .content .banner-shape-1 {
  position: absolute;
  top: -44%;
  left: -22%;
}
.ice-banner-area-3 .banner-3 .content .banner-shape-2 {
  position: absolute;
  bottom: -75%;
  right: -22%;
}
.ice-banner-area-3 .banner-3:hover::before {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.ice-banner-area-3 .banner-3:hover img {
  transform: scale(1.2);
}
.ice-banner-area-3 .banner-4 {
  position: relative;
  text-align: center;
  margin-top: 15px;
  height: 340px;
  overflow: hidden;
  border-radius: 20px;
}
.ice-banner-area-3 .banner-4::before {
  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;
  pointer-events: none;
}
.ice-banner-area-3 .banner-4 img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  object-fit: cover;
  transition: all 1s;
}
.ice-banner-area-3 .banner-4 .content {
  position: absolute;
  top: 50px;
  left: 50px;
  right: 50px;
}
.ice-banner-area-3 .banner-4 .content span {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: "Nunito", sans-serif;
}
.ice-banner-area-3 .banner-4 .content .title {
  font-size: 42px;
  font-weight: 600;
  color: var(--white);
}
.ice-banner-area-3 .banner-4 .content .link-btn {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  display: inline-block;
}
.ice-banner-area-3 .banner-4:hover::before {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.ice-banner-area-3 .banner-4:hover img {
  transform: scale(1.2);
}

.choose-us-section-5 {
  background-color: #FAF2E7;
  position: relative;
}
.choose-us-section-5 .choose-top-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.choose-us-section-5 .choose-top-shape img {
  width: 100%;
}
.choose-us-section-5 .choose-shape-1 {
  position: absolute;
  top: 250px;
  left: 0;
}
@media (max-width: 1199px) {
  .choose-us-section-5 .choose-shape-1 {
    opacity: 0.2;
  }
}
.choose-us-section-5 .choose-shape-2 {
  position: absolute;
  top: 200px;
  left: 25%;
}
@media (max-width: 1199px) {
  .choose-us-section-5 .choose-shape-2 {
    opacity: 0.2;
  }
}
.choose-us-section-5 .choose-shape-3 {
  position: absolute;
  top: 40px;
  right: 20%;
}
@media (max-width: 1199px) {
  .choose-us-section-5 .choose-shape-3 {
    opacity: 0.2;
  }
}
.choose-us-section-5 .choose-shape-4 {
  position: absolute;
  top: 260px;
  right: 0;
}
@media (max-width: 1199px) {
  .choose-us-section-5 .choose-shape-4 {
    opacity: 0.2;
  }
}
.choose-us-section-5 .choose-shape-5 {
  position: absolute;
  top: 50%;
  right: 0;
}
@media (max-width: 1199px) {
  .choose-us-section-5 .choose-shape-5 {
    display: none;
  }
}
.choose-us-section-5 .section-title {
  margin-top: 40px;
}

.choose-feature-items-5 {
  margin-top: 30px;
}
.choose-feature-items-5 .icon-items {
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .choose-feature-items-5 .icon-items {
    text-align: center;
  }
}
.choose-feature-items-5 .icon-items .icon img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}
.choose-feature-items-5 .icon-items .content {
  margin-top: 20px;
}
.choose-feature-items-5 .icon-items .content .title-2 {
  font-size: 24px;
  font-weight: 500;
}
.choose-feature-items-5 .icon-items .content p {
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
  max-width: 300px;
}
@media (max-width: 1199px) {
  .choose-feature-items-5 .icon-items .content p {
    margin: 0 auto;
    margin-top: 5px;
  }
}
.choose-feature-items-5 .icon-items:hover .icon img {
  animation: wobble 1.5s ease-in-out;
}

.choose-feature-thumb-5 {
  margin-top: 30px;
  position: relative;
  max-width: 614px;
  height: 100%;
  border-radius: 10px;
}
@media (max-width: 1199px) {
  .choose-feature-thumb-5 {
    margin: 0 auto;
    margin-top: 30px;
  }
}
.choose-feature-thumb-5 img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.choose-feature-thumb-5 .text {
  display: inline-block;
  background: rgba(255, 255, 255, 0.31);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  text-align: center;
  padding: 20px 45px;
  position: absolute;
  bottom: 50px;
  left: 20px;
  right: 20px;
  font-size: 44px;
  font-weight: 700;
  color: var(--header);
  font-family: "Signika", sans-serif;
  max-width: 300px;
  margin: 0 auto;
  z-index: 999;
  height: initial;
  width: initial;
}
.choose-feature-thumb-5 .text b {
  color: var(--theme3);
  font-size: 44px;
  font-weight: 700;
  font-family: "Signika", sans-serif;
}

.choose-coffe-section-8 {
  position: relative;
  z-index: 9;
  margin-top: 110px;
}
@media (max-width: 1199px) {
  .choose-coffe-section-8 {
    margin-top: 0;
  }
}
.choose-coffe-section-8 .choose-text {
  font-size: 450px;
  font-weight: 600;
  color: rgba(244, 233, 221, 0.49);
  font-family: "Bylast", sans-serif;
  position: absolute;
  z-index: -1;
  text-align: center;
  top: 25%;
  left: 20px;
  right: 20px;
  transform: translateY(-50%);
}

.counter-wrap-5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .counter-wrap-5 {
    flex-wrap: wrap;
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .counter-wrap-5 {
    display: grid;
    justify-content: center;
    text-align: center;
  }
}
.counter-wrap-5 .counter-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .counter-wrap-5 .counter-items {
    display: grid;
    justify-content: center;
  }
}
.counter-wrap-5 .counter-items .counter-title {
  font-size: 80px;
  font-weight: 400;
  color: var(--theme3);
}
@media (max-width: 767px) {
  .counter-wrap-5 .counter-items .counter-title {
    font-size: 55px;
  }
}
.counter-wrap-5 .counter-items .counter-title.style-2 {
  color: #D96B1A;
}
.counter-wrap-5 .counter-items .content p {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
}
.counter-wrap-5 .counter-items .content .title-2 {
  font-size: 36px;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .counter-wrap-5 .counter-items .content .title-2 {
    font-size: 26px;
  }
}
@media (max-width: 1199px) {
  .counter-wrap-5 .line {
    display: none;
  }
}

.food-menu-section-6 {
  background-color: #FAF2E7;
  position: relative;
  z-index: 99;
}
@media (max-width: 991px) {
  .food-menu-section-6 {
    margin-top: 50px;
  }
}
.food-menu-section-6 .food-menu-top-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.food-menu-section-6 .food-menu-top-shape img {
  width: 100%;
}
@media (max-width: 991px) {
  .food-menu-section-6 .food-menu-top-shape {
    display: none;
  }
}
.food-menu-section-6 .food-menu-shape-1 {
  position: absolute;
  top: 120px;
  left: 11%;
}
@media (max-width: 1600px) {
  .food-menu-section-6 .food-menu-shape-1 {
    left: 0;
  }
}
@media (max-width: 1199px) {
  .food-menu-section-6 .food-menu-shape-1 {
    max-width: 280px;
    opacity: 0.2;
  }
  .food-menu-section-6 .food-menu-shape-1 img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .food-menu-section-6 .food-menu-shape-1 {
    display: none;
  }
}
.food-menu-section-6 .food-menu-shape-2 {
  position: absolute;
  top: 200px;
  right: 14%;
}
@media (max-width: 1600px) {
  .food-menu-section-6 .food-menu-shape-2 {
    right: 6%;
  }
}
@media (max-width: 1399px) {
  .food-menu-section-6 .food-menu-shape-2 {
    right: 0;
  }
}
@media (max-width: 1199px) {
  .food-menu-section-6 .food-menu-shape-2 {
    max-width: 280px;
    opacity: 0.2;
  }
  .food-menu-section-6 .food-menu-shape-2 img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .food-menu-section-6 .food-menu-shape-2 {
    display: none;
  }
}
.food-menu-section-6 .food-menu-shape-3 {
  position: absolute;
  z-index: 11;
  left: 120px;
  top: 20%;
}
@media (max-width: 991px) {
  .food-menu-section-6 .food-menu-shape-3 {
    display: none;
  }
}
.food-menu-section-6 .food-menu-shape-4 {
  position: absolute;
  z-index: 11;
  right: 0;
  top: 10%;
}
@media (max-width: 991px) {
  .food-menu-section-6 .food-menu-shape-4 {
    display: none;
  }
}

.food-menu-wrap-6 {
  max-width: 601px;
  margin: 60px auto 0;
}
@media (max-width: 991px) {
  .food-menu-wrap-6 {
    margin-top: 0;
  }
}
.food-menu-wrap-6 .list-items {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 30px;
  justify-content: center;
  text-align: left;
}
@media (max-width: 1199px) {
  .food-menu-wrap-6 .list-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.food-menu-wrap-6 .list-items ul li {
  font-size: 18px;
  font-weight: 600;
  font-family: "Nunito", sans-serif;
  color: #4B4B4B;
}
.food-menu-wrap-6 .list-items ul li:not(:last-child) {
  margin-bottom: 20px;
}
.food-menu-wrap-6 .list-items ul li i {
  margin-right: 7px;
  color: var(--theme3);
}
.food-menu-wrap-6 .food-menu-btn-area {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: center;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .food-menu-wrap-6 .food-menu-btn-area {
    flex-wrap: wrap;
    gap: 18px;
  }
}
.food-menu-wrap-6 .food-menu-btn-area .theme-btn {
  background-color: var(--theme3);
  color: var(--white);
}
.food-menu-wrap-6 .food-menu-btn-area .theme-btn::before {
  background: var(--header);
}
.food-menu-wrap-6 .food-menu-btn-area .theme-btn.style-2 {
  border: 1px solid var(--theme3);
  background: transparent;
  color: var(--header);
}
.food-menu-wrap-6 .food-menu-btn-area .theme-btn.style-2::before {
  background-color: var(--theme3);
}
.food-menu-wrap-6 .food-menu-btn-area .theme-btn.style-2:hover {
  color: var(--white);
}

.food-banner-section-6 {
  background-color: #FAF2E7;
}
.food-banner-section-6 .container {
  max-width: 1552px;
}

.food-banner-card-6 {
  position: relative;
  height: 476px;
  border-radius: 20px;
  overflow: hidden;
}
.food-banner-card-6::before {
  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;
  pointer-events: none;
}
@media (max-width: 991px) {
  .food-banner-card-6 {
    height: 380px;
  }
}
.food-banner-card-6 img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  object-fit: cover;
  transition: all 1s;
}
.food-banner-card-6 .content {
  position: absolute;
  top: 60px;
  left: 60px;
}
@media (max-width: 1199px) {
  .food-banner-card-6 .content {
    left: 25px;
  }
}
.food-banner-card-6 .content span {
  font-family: "Bylast", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--theme3);
}
.food-banner-card-6 .content .title {
  font-size: 42px;
  font-weight: 600;
  max-width: 258px;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .food-banner-card-6 .content .title {
    font-size: 34px;
  }
}
.food-banner-card-6 .content .link-btn {
  font-size: 16px;
  font-weight: 800;
  color: var(--theme3);
  margin-top: 20px;
  display: inline-block;
}
.food-banner-card-6 .content .link-btn i {
  margin-left: 8px;
}
.food-banner-card-6 .content .link-btn:hover {
  color: var(--header);
}
.food-banner-card-6:hover::before {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.food-banner-card-6:hover img {
  transform: scale(1.2);
}

.icon-feature-wrap-6 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 120px;
  gap: 30px;
}
@media (max-width: 1199px) {
  .icon-feature-wrap-6 {
    margin-top: 100px;
  }
}
@media (max-width: 991px) {
  .icon-feature-wrap-6 {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .icon-feature-wrap-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .icon-feature-wrap-6 {
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
    text-align: center;
  }
}
.icon-feature-wrap-6 .icon-items .icon img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}
.icon-feature-wrap-6 .icon-items .content {
  margin-top: 25px;
}
.icon-feature-wrap-6 .icon-items .content .title-2 {
  font-size: 24px;
  font-weight: 500;
}
.icon-feature-wrap-6 .icon-items .content p {
  max-width: 298px;
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
}
@media (max-width: 575px) {
  .icon-feature-wrap-6 .icon-items .content p {
    margin: 0 auto;
    margin-top: 10px;
  }
}
.icon-feature-wrap-6 .icon-items:hover .icon img {
  animation: wobble 1.5s ease-in-out;
}

.explore-ice-section-6 {
  position: relative;
}
.explore-ice-section-6 .container {
  max-width: 1552px;
}
.explore-ice-section-6 .explore-shape-1 {
  position: absolute;
  top: 10%;
  right: 50px;
}

.explore-card-items-6 {
  text-align: center;
  position: relative;
  z-index: 9;
  padding: 40px 30px;
  padding-top: 0;
  margin-top: 30px;
}
.explore-card-items-6.color-2::before {
  background: #FCDFD7;
}
.explore-card-items-6.color-3::before {
  background: #D7FFD2;
}
.explore-card-items-6.color-4::before {
  background: #DAD2FF;
}
.explore-card-items-6.style-2 {
  margin-top: 90px;
}
@media (max-width: 1199px) {
  .explore-card-items-6.style-2 {
    margin-top: 30px;
  }
}
.explore-card-items-6::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #D3E5FF;
  border-radius: 20px;
  z-index: -1;
  top: 150px;
  height: initial;
}
.explore-card-items-6 .explore-thumb {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  max-width: 268px;
  border-radius: 50%;
  border: 5px solid var(--white);
}
.explore-card-items-6 .explore-thumb::before {
  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;
  pointer-events: none;
}
.explore-card-items-6 .explore-thumb img {
  border-radius: 50%;
  border: 5px solid var(--white);
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  object-fit: cover;
  transition: all 1s;
}
.explore-card-items-6 .content {
  margin-top: 40px;
}
.explore-card-items-6 .content .title {
  font-size: 28px;
  font-weight: 600;
}
.explore-card-items-6 .content p {
  font-size: 18px;
  font-weight: 500;
  max-width: 296px;
  margin: 10px auto 25px;
  color: #4A4A4A;
}
@media (max-width: 1399px) {
  .explore-card-items-6 .content p {
    font-size: 15px;
  }
}
.explore-card-items-6 .content .cirle-arrow {
  width: 52px;
  height: 52px;
  line-height: 52px;
  display: inline-block;
  background-color: var(--white);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  color: var(--theme3);
}
.explore-card-items-6 .content .cirle-arrow:hover {
  background: var(--header);
  color: var(--white);
}
.explore-card-items-6:hover .explore-thumb::before {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.explore-card-items-6:hover .explore-thumb img {
  transform: scale(1.2);
}

.feature-wrap-6 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .feature-wrap-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .feature-wrap-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .feature-wrap-6 {
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
  }
}
.feature-wrap-6 .feature-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .feature-wrap-6 .feature-items {
    display: grid;
    justify-content: center;
    text-align: center;
  }
}
.feature-wrap-6 .feature-items .icon {
  width: 78px;
  height: 78px;
  line-height: 78px;
  text-align: center;
  background-color: rgba(237, 28, 39, 0.1);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .feature-wrap-6 .feature-items .icon {
    margin: 0 auto;
  }
}
.feature-wrap-6 .feature-items .icon img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}
.feature-wrap-6 .feature-items .content .title-2 {
  font-size: 20px;
  font-weight: 600;
}
.feature-wrap-6 .feature-items .content p {
  font-size: 15px;
  font-weight: 400;
}
.feature-wrap-6 .feature-items:hover .icon {
  background-color: var(--theme3);
}
.feature-wrap-6 .feature-items:hover .icon img {
  animation: wobble 1.5s ease-in-out;
  filter: brightness(0) invert(1);
}

.restaurant-section-7 {
  position: relative;
}
.restaurant-section-7 .restaurant-shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.restaurant-left-items-7 {
  position: relative;
}
.restaurant-left-items-7 .section-title .sub-title {
  color: #C9AB81;
}
.restaurant-left-items-7 .section-title .title span {
  display: inline-block;
  margin-left: 240px;
}
@media (max-width: 1199px) {
  .restaurant-left-items-7 .section-title .title span {
    margin-left: 0;
  }
}
.restaurant-left-items-7 .restaurant-thumb {
  margin-top: 180px;
  text-align: right;
}
@media (max-width: 575px) {
  .restaurant-left-items-7 .restaurant-thumb {
    text-align: left;
    height: 500px;
    margin-top: 25px;
  }
  .restaurant-left-items-7 .restaurant-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.restaurant-left-items-7 .restaurant-thumb-2 {
  position: absolute;
  left: 0;
  top: 25%;
}
@media (max-width: 575px) {
  .restaurant-left-items-7 .restaurant-thumb-2 {
    display: none;
  }
}
.restaurant-left-items-7 .restaurant-thumb-3 {
  position: absolute;
  right: 10%;
  top: 24%;
}
@media (max-width: 767px) {
  .restaurant-left-items-7 .restaurant-thumb-3 {
    display: none;
  }
}

.restaurant-right-content-7 {
  margin-left: 60px;
}
@media (max-width: 1199px) {
  .restaurant-right-content-7 {
    margin-left: 0;
  }
}
.restaurant-right-content-7 .text-1 {
  font-family: "Nunito", sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  line-height: 167%;
  color: var(--white);
}
.restaurant-right-content-7 .text-2 {
  font-weight: 500;
  font-size: 18px;
  line-height: 167%;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 25px;
}
.restaurant-right-content-7 .nam-text {
  margin-top: 40px;
}
.restaurant-right-content-7 .restureant-thumb {
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .restaurant-right-content-7 .restureant-thumb img {
    width: 100%;
    height: 100%;
  }
}
.restaurant-right-content-7 .title-2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  margin-top: 30px;
}
.restaurant-right-content-7 p {
  font-weight: 500;
  font-size: 18px;
  line-height: 167%;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 10px;
}
.restaurant-right-content-7 .theme-btn {
  background-color: #C9AB81;
  color: var(--white);
  border-radius: 0;
  margin-top: 30px;
}
.restaurant-right-content-7 .theme-btn::before {
  background-color: var(--white);
}
.restaurant-right-content-7 .theme-btn:hover {
  color: #083C52;
}

.work-process-section-7 {
  position: relative;
}
.work-process-section-7 .section-title .sub-title {
  color: #C9AB81;
}
.work-process-section-7 .work-right-shape {
  position: absolute;
  top: 100px;
  right: 0;
}

.work-process-wrapper-7 {
  position: relative;
  z-index: 9;
}
.work-process-wrapper-7::before {
  content: "";
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 0%;
  border: 1px dashed rgb(181, 168, 167);
  z-index: -1;
  transition: height 0.5s ease;
}
@media (max-width: 1199px) {
  .work-process-wrapper-7::before {
    display: none;
  }
}

.work-process-main-items-7 {
  margin-top: 30px;
  transition: all 0.4s ease-in-out;
  position: relative;
}
.work-process-main-items-7 .work-process-items {
  position: relative;
  z-index: 11;
  padding: 40px 30px;
  padding-top: 0;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .work-process-main-items-7 .work-process-items {
    text-align: center;
  }
}
.work-process-main-items-7 .work-process-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.1);
  z-index: -1;
  top: 60px;
  height: initial;
}
.work-process-main-items-7 .work-process-items .arrow-shape {
  position: absolute;
  top: 135px;
  right: 40px;
  opacity: 0.1;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .work-process-main-items-7 .work-process-items .arrow-shape {
    display: none;
  }
}
.work-process-main-items-7 .work-process-items .icon {
  width: 115px;
  height: 115px;
  line-height: 115px;
  text-align: center;
  border-radius: 50%;
  background-color: #495357;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .work-process-main-items-7 .work-process-items .icon {
    margin: 0 auto;
  }
}
.work-process-main-items-7 .work-process-items .icon img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}
.work-process-main-items-7 .work-process-items .title-2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  max-width: 165px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .work-process-main-items-7 .work-process-items .title-2 {
    margin: 0 auto;
    margin-top: 30px;
  }
}
.work-process-main-items-7 .work-process-items p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
  font-size: 16px;
}
.work-process-main-items-7 .work-line {
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .work-process-main-items-7 .work-line {
    display: none;
  }
}
.work-process-main-items-7 span {
  display: inline-block;
  margin-left: 30px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Nunito", sans-serif;
  color: var(--white);
  margin-top: 13px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .work-process-main-items-7 span {
    display: none;
  }
}
.work-process-main-items-7:hover .work-process-items .arrow-shape {
  opacity: 1;
}
.work-process-main-items-7:hover .work-process-items .icon {
  background-color: rgb(201, 171, 129);
}
.work-process-main-items-7:hover .work-process-items .icon img {
  animation: wobble 1.5s ease-in-out;
}
.work-process-main-items-7:hover span {
  color: #C9AB81;
}

.visit-food-section-7 {
  position: relative;
}
.visit-food-section-7 .visit-left-shape {
  position: absolute;
  top: 0;
  left: 0;
}

.visit-food-box-7 {
  background-color: rgb(40, 64, 63);
  padding: 65px 55px;
  position: relative;
}
@media (max-width: 1199px) {
  .visit-food-box-7 {
    padding: 30px;
  }
}
.visit-food-box-7 .visit-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.visit-food-box-7 .visit-shape img {
  height: 100%;
}
.visit-food-box-7 .section-title .title {
  font-size: 55px;
}
@media (max-width: 767px) {
  .visit-food-box-7 .section-title .title {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .visit-food-box-7 .section-title .title {
    font-size: 38px;
  }
}
.visit-food-box-7 .content-items {
  margin-top: 40px;
}
.visit-food-box-7 .content-items .title {
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}
.visit-food-box-7 .content-items p {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-top: 5px;
}

.visit-food-thumb-7 {
  position: relative;
  z-index: 11;
  margin-top: 80px;
  margin-left: -70px;
}
@media (max-width: 991px) {
  .visit-food-thumb-7 {
    margin-left: 0;
    margin-top: 30px;
  }
}
.visit-food-thumb-7 img {
  width: 100%;
  height: 100%;
}

.food-tips-section-7 {
  background-color: #1F3634;
  position: relative;
}
.food-tips-section-7 .shape-2 {
  position: absolute;
  top: 80px;
  right: 0;
}

.food-tips-thumb-7 {
  position: relative;
  z-index: 11;
}
.food-tips-thumb-7 .shape-1 {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: -100px;
}
.food-tips-thumb-7 .food-tips-img-1 {
  border-radius: 212px 212px 0px 0px;
}
.food-tips-thumb-7 .food-tips-img-1 img {
  width: 100%;
  height: 100%;
  border-radius: 212px 212px 0px 0px;
}
.food-tips-thumb-7 .food-tips-img-2 {
  max-width: 364px;
  height: 464px;
  margin-top: 50px;
  margin-left: 20px;
}
@media (max-width: 1199px) {
  .food-tips-thumb-7 .food-tips-img-2 {
    margin-left: 0;
    height: initial;
  }
}
.food-tips-thumb-7 .food-tips-img-2 img {
  width: 100%;
  height: 100%;
}

.food-tips-content-7 {
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .food-tips-content-7 {
    margin-top: 30px;
  }
}
.food-tips-content-7 .section-title .sub-title {
  color: #C9AB81;
}
.food-tips-content-7 p {
  max-width: 500px;
  margin: 15px auto 25px;
  color: rgba(255, 255, 255, 0.82);
}
.food-tips-content-7 .link-btn {
  color: #C9AB81;
}
.food-tips-content-7 .link-btn:hover {
  color: var(--white);
}

.video-wrapper-7 {
  text-align: center;
  position: relative;
  z-index: 9;
  height: 650px;
}
@media (max-width: 767px) {
  .video-wrapper-7 {
    height: 500px;
  }
}
.video-wrapper-7::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 12, 9, 0.39);
}
.video-wrapper-7 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-wrapper-7 .video-btn {
  width: 120px;
  height: 120px;
  line-height: 120px;
  display: inline-block;
  background: transparent;
  border: 2px solid #C9AB81;
  color: #C9AB81;
  text-align: center;
  border-radius: 100%;
  font-size: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-wrapper-7 .video-btn:hover {
  background-color: var(--white);
  color: var(--header);
}
@media (max-width: 991px) {
  .video-wrapper-7 .video-btn {
    width: 120px;
    height: 120px;
    line-height: 120px;
  }
}

.foood-feature-box-items-8 {
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  margin-top: 30px;
}
.foood-feature-box-items-8 .icon img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}
.foood-feature-box-items-8 .title-2 {
  font-size: 24px;
  font-weight: 500;
  margin-top: 40px;
}
.foood-feature-box-items-8 p {
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
}
.foood-feature-box-items-8 .link-btn {
  color: #D96B1A;
  font-size: 16px;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  margin-top: 20px;
  display: inline-block;
}
.foood-feature-box-items-8 .link-btn:hover {
  color: var(--header);
}
.foood-feature-box-items-8:hover .icon img {
  animation: wobble 1.5s ease-in-out;
}

.tea-quality-section-8 {
  margin: 0 10px;
}

.tea-quality-items-8 {
  margin-top: 30px;
  overflow: hidden;
}
.tea-quality-items-8 .tea-thumb {
  overflow: hidden;
}
.tea-quality-items-8 .tea-thumb img {
  width: 100%;
  height: 100%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}
.tea-quality-items-8 .content {
  margin-top: 30px;
}
.tea-quality-items-8 .content .title-2 {
  font-size: 24px;
  font-weight: 600;
  color: #D96B1A;
}
.tea-quality-items-8 .content .title-3 {
  font-size: 28px;
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 5px;
}
.tea-quality-items-8 .content .title-3 a:hover {
  color: #D96B1A;
}
.tea-quality-items-8 .content p {
  font-size: 15px;
}
.tea-quality-items-8 .content .shop-star {
  margin-top: 10px;
}
.tea-quality-items-8 .content .shop-star i {
  color: #D96B1A;
}
.tea-quality-items-8 .content .shop-star span {
  font-size: 15px;
  font-weight: 500;
  color: #76756D;
}
.tea-quality-items-8:hover .tea-thumb img {
  transform: scale(1.1) rotate(2deg);
}

.choose-coffe-wrap-8 .choose-coffe-content .choose-items {
  display: flex;
  gap: 20px;
  margin-top: 65px;
}
@media (max-width: 575px) {
  .choose-coffe-wrap-8 .choose-coffe-content .choose-items {
    flex-wrap: wrap;
  }
}
.choose-coffe-wrap-8 .choose-coffe-content .choose-items .icon img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}
.choose-coffe-wrap-8 .choose-coffe-content .choose-items .content .title {
  font-size: 24px;
  font-weight: 500;
}
.choose-coffe-wrap-8 .choose-coffe-content .choose-items .content p {
  font-size: 16px;
  margin-top: 5px;
}
.choose-coffe-wrap-8 .choose-coffe-content .choose-items:hover .icon img {
  animation: wobble 1.5s ease-in-out;
}
.choose-coffe-wrap-8 .choose-coffe-thumb {
  width: 477px;
  height: 542px;
  margin-left: -60px;
}
@media (max-width: 1199px) {
  .choose-coffe-wrap-8 .choose-coffe-thumb {
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  .choose-coffe-wrap-8 .choose-coffe-thumb {
    width: initial;
    height: initial;
  }
}
.choose-coffe-wrap-8 .choose-coffe-thumb img {
  width: 100%;
  height: 100%;
}

.smokey-left-content-8 {
  margin-right: 40px;
  max-width: 570px;
}
.smokey-left-content-8 .food-menu-items-7 {
  margin-top: 40px;
}
.smokey-left-content-8 .food-menu-items-7 .content {
  display: flex;
  justify-content: space-between;
  border-bottom: 1.5px dashed rgba(30, 29, 35, 0.2);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.smokey-left-content-8 .food-menu-items-7 .content .title {
  font-size: 24px;
  font-weight: 600;
  color: rgb(30, 29, 35);
}
.smokey-left-content-8 .food-menu-items-7 .content .price {
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  color: rgb(217, 107, 26);
  font-family: "Signika", sans-serif;
}
.smokey-left-content-8 .food-menu-items-7 p {
  font-size: 15px;
  font-weight: 500;
  color: rgb(118, 117, 109);
}

.smokey-offer-thumb-8 {
  margin-left: 40px;
}
@media (max-width: 1199px) {
  .smokey-offer-thumb-8 {
    margin-left: 0;
  }
}
.smokey-offer-thumb-8 img {
  width: 100%;
  height: 100%;
}

.smokey-offer-section-8 {
  position: relative;
}
.smokey-offer-section-8 .smokey-right-shape {
  position: absolute;
  bottom: 120px;
  right: 0;
}

.coffe-contact-section-8 {
  margin: 0 20px;
}
.coffe-contact-section-8 .coffe-contcat-img {
  height: 708px;
  position: relative;
}
.coffe-contact-section-8 .coffe-contcat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.coffe-contact-section-8 .coffe-contcat-img .logo {
  text-align: center;
  margin-bottom: 35px;
}
.coffe-contact-section-8 .coffe-contcat-img .logo img {
  width: 100%;
  height: 100%;
}
.coffe-contact-section-8 .coffe-contcat-img .form-box {
  background: #fff;
  padding: 20px 50px;
  padding-top: 50px;
  position: absolute;
  bottom: 80px;
  right: 280px;
  max-width: 460px;
  margin-left: auto;
  text-align: center;
}
@media (max-width: 1600px) {
  .coffe-contact-section-8 .coffe-contcat-img .form-box {
    right: 140px;
  }
}
@media (max-width: 1399px) {
  .coffe-contact-section-8 .coffe-contcat-img .form-box {
    right: 100px;
  }
}
@media (max-width: 1199px) {
  .coffe-contact-section-8 .coffe-contcat-img .form-box {
    right: 30px;
  }
}
@media (max-width: 767px) {
  .coffe-contact-section-8 .coffe-contcat-img .form-box {
    left: 20px;
    right: 20px;
    bottom: 40px;
    margin: 0 auto;
  }
}
.coffe-contact-section-8 .coffe-contcat-img .form-box::before {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #D96B1A;
  width: calc(100% - 40px);
  height: calc(100% - 62px);
}
.coffe-contact-section-8 .coffe-contcat-img .form-box .logo img {
  width: initial;
  height: initial;
}
.coffe-contact-section-8 .coffe-contcat-img .form-box form .form-clt input, .coffe-contact-section-8 .coffe-contcat-img .form-box form .form-clt textarea {
  height: 54px;
  line-height: 54px;
  outline: none;
  border: 1px solid #BEBEBE;
  width: 100%;
  border-radius: 0;
  padding: 0 20px;
  color: var(--text);
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
}
.coffe-contact-section-8 .coffe-contcat-img .form-box form .form-clt .single-select {
  height: 54px;
  line-height: 52px;
  outline: none;
  border: 1px solid #BEBEBE;
  width: 100%;
  border-radius: 0;
  padding: 0 20px;
  color: var(--text);
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
}
.coffe-contact-section-8 .coffe-contcat-img .form-box form .form-clt .single-select .list {
  width: 100%;
}
.coffe-contact-section-8 .coffe-contcat-img .form-box .theme-btn {
  background: #D96B1A;
  border-radius: 0;
  color: var(--white);
}
.coffe-contact-section-8 .coffe-contcat-img .form-box .theme-btn::before {
  background-color: var(--header);
}
.coffe-contact-section-8 .coffe-contcat-img .form-box .theme-btn:hover {
  color: var(--white);
}

.feature-box-items-3 {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--white);
  box-shadow: 5px 8px 138.5px 24px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 20px;
}
.feature-box-items-3 .icon {
  width: 60px;
  height: 60px;
  background: rgba(1, 130, 62, 0.1);
  border-radius: 100px;
  line-height: 60px;
  text-align: center;
  transition: all 0.4s ease-in-out;
}
.feature-box-items-3 .content h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-box-items-3 .content p {
  font-size: 15px;
  font-weight: 400;
}
.feature-box-items-3:hover .icon {
  background-color: var(--theme);
}
.feature-box-items-3:hover .icon img {
  animation: wobble 1.5s ease-in-out;
}

.feature-section-3 {
  margin-top: -100px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .feature-section-3 {
    margin-top: 100px;
  }
}
@media (max-width: 991px) {
  .feature-section-3 {
    margin-top: 80px;
  }
}

.special-delivery-wrapper-3 {
  background-color: #F4F1EA;
  padding: 45px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  border-radius: 18px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .special-delivery-wrapper-3 {
    margin-top: 30px;
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .special-delivery-wrapper-3 {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
}
.special-delivery-wrapper-3 .vector-1 {
  position: absolute;
  left: 430px;
  top: 70px;
}
@media (max-width: 1399px) {
  .special-delivery-wrapper-3 .vector-1 {
    display: none;
  }
}
.special-delivery-wrapper-3 .vector-2 {
  position: absolute;
  right: 430px;
  top: 70px;
}
@media (max-width: 1399px) {
  .special-delivery-wrapper-3 .vector-2 {
    display: none;
  }
}
.special-delivery-wrapper-3 .vector-3 {
  position: absolute;
  left: 407px;
  bottom: 65px;
  z-index: -1;
}
@media (max-width: 1399px) {
  .special-delivery-wrapper-3 .vector-3 {
    display: none;
  }
}
.special-delivery-wrapper-3 .vector-4 {
  position: absolute;
  right: 407px;
  bottom: 65px;
  z-index: -1;
}
@media (max-width: 1399px) {
  .special-delivery-wrapper-3 .vector-4 {
    display: none;
  }
}
.special-delivery-wrapper-3 .left-item .number {
  text-align: right;
}
@media (max-width: 1399px) {
  .special-delivery-wrapper-3 .left-item .number {
    display: none;
  }
}
.special-delivery-wrapper-3 .left-item .number.style-left {
  text-align: left;
}
.special-delivery-wrapper-3 .left-item .number span {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 100px;
  background-color: #01823E;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  display: inline-block;
  margin-bottom: 30px;
}
.special-delivery-wrapper-3 .left-item .number span.style-2 {
  margin-top: 30px;
  margin-bottom: 0;
}
.special-delivery-wrapper-3 .left-item .special-delivery-box {
  background-color: var(--white);
  padding: 30px;
  border-radius: 12px;
  max-width: 380px;
  width: 100%;
}
@media (max-width: 991px) {
  .special-delivery-wrapper-3 .left-item .special-delivery-box {
    max-width: initial;
    text-align: center;
  }
}
.special-delivery-wrapper-3 .left-item .special-delivery-box.style-top {
  margin-top: 25px;
}
.special-delivery-wrapper-3 .left-item .special-delivery-box h3 {
  letter-spacing: -2%;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.special-delivery-wrapper-3 .left-item .special-delivery-box p {
  font-weight: 500;
  color: #76756D;
  font-size: 16px;
}
.special-delivery-wrapper-3 .burger-image img {
  max-width: 75%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.special-delivery-section-3 {
  position: relative;
  z-index: 9;
}
.special-delivery-section-3 .bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .special-delivery-section-3 .bg-shape {
    display: none;
  }
}
.special-delivery-section-3 .bg-shape img {
  width: 100%;
  height: 100%;
}
.special-delivery-section-3 .right-shape {
  position: absolute;
  right: 0;
  top: 150px;
  z-index: -1;
}
@media (max-width: 1600px) {
  .special-delivery-section-3 .right-shape {
    top: 200px;
  }
  .special-delivery-section-3 .right-shape img {
    width: 480px;
  }
}
@media (max-width: 1399px) {
  .special-delivery-section-3 .right-shape {
    display: none;
  }
}
.special-delivery-section-3 .bread-shape {
  position: absolute;
  right: 15px;
  top: 100px;
  z-index: -1;
}
@media (max-width: 1600px) {
  .special-delivery-section-3 .bread-shape img {
    width: 400px;
  }
}
@media (max-width: 1399px) {
  .special-delivery-section-3 .bread-shape {
    display: none;
  }
}
.special-delivery-section-3 .tomato-shape {
  position: absolute;
  left: 319px;
  top: 40px;
}
@media (max-width: 1399px) {
  .special-delivery-section-3 .tomato-shape {
    display: none;
  }
}
.special-delivery-section-3 .meat-shape {
  position: absolute;
  top: 198px;
  left: 0;
}
@media (max-width: 1399px) {
  .special-delivery-section-3 .meat-shape {
    display: none;
  }
}
.special-delivery-section-3 .leaf-shape {
  position: absolute;
  left: 250px;
  top: 300px;
  z-index: 99;
}
@media (max-width: 1399px) {
  .special-delivery-section-3 .leaf-shape {
    display: none;
  }
}
.special-delivery-section-3 .leaf-shape-2 {
  position: absolute;
  right: 10px;
  top: 480px;
}
@media (max-width: 1399px) {
  .special-delivery-section-3 .leaf-shape-2 {
    display: none;
  }
}
.special-delivery-section-3 .section-title .sub-title {
  color: var(--white);
}
@media (max-width: 991px) {
  .special-delivery-section-3 .section-title .sub-title {
    color: #00833E;
  }
}
.special-delivery-section-3 .section-title h2 {
  color: var(--white);
}
@media (max-width: 991px) {
  .special-delivery-section-3 .section-title h2 {
    color: var(--header);
  }
}
.special-delivery-section-3 .section-title .sec-line img {
  filter: brightness(0) invert(1);
}
@media (max-width: 991px) {
  .special-delivery-section-3 .section-title .sec-line img {
    filter: initial;
  }
}

.why-choose-us-wrapper-3 .burger-image {
  position: relative;
}
.why-choose-us-wrapper-3 .burger-image img {
  width: 100%;
  height: 100%;
}
.why-choose-us-wrapper-3 .burger-image .choose-box {
  background-color: #00833E;
  text-align: center;
  padding: 50px 50px 60px;
  position: absolute;
  left: -50px;
  bottom: -265px;
  border-radius: 16px;
  outline-offset: -12px;
  outline: 1px dashed var(--white);
  z-index: 999;
}
@media (max-width: 1399px) {
  .why-choose-us-wrapper-3 .burger-image .choose-box {
    display: none;
  }
}
.why-choose-us-wrapper-3 .burger-image .choose-box .icon-image {
  position: relative;
}
.why-choose-us-wrapper-3 .burger-image .choose-box .icon-image img {
  width: initial;
  height: initial;
  border-radius: 0;
}
.why-choose-us-wrapper-3 .burger-image .choose-box .icon-image .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.why-choose-us-wrapper-3 .burger-image .choose-box .content {
  margin-top: 25px;
}
.why-choose-us-wrapper-3 .burger-image .choose-box .content h2 {
  font-size: 66px;
  color: var(--white);
  font-weight: 400;
}
.why-choose-us-wrapper-3 .burger-image .choose-box .content p {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}
.why-choose-us-wrapper-3 .choose-us-content {
  margin-left: 50px;
}
@media (max-width: 1399px) {
  .why-choose-us-wrapper-3 .choose-us-content {
    margin-left: 0;
  }
}
.why-choose-us-wrapper-3 .choose-us-content .text {
  max-width: 596px;
  margin-top: 30px;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .why-choose-us-wrapper-3 .choose-us-content .text {
    margin-bottom: 20px;
    margin-top: 15px;
  }
}
.why-choose-us-wrapper-3 .choose-us-content .choose-button {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 45px;
}
@media (max-width: 1399px) {
  .why-choose-us-wrapper-3 .choose-us-content .choose-button {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
}
.why-choose-us-wrapper-3 .choose-us-content .choose-button .content span {
  font-size: 16px;
}
.why-choose-us-wrapper-3 .choose-us-content .choose-button .content h3 {
  font-weight: 700;
  font-size: 20px;
  font-family: "Nunito", sans-serif;
  margin-top: 5px;
}
.why-choose-us-wrapper-3 .choose-us-content .circle-progress-bar-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 55px;
  flex-wrap: wrap;
}
@media (max-width: 1399px) {
  .why-choose-us-wrapper-3 .choose-us-content .circle-progress-bar-wrapper {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .why-choose-us-wrapper-3 .choose-us-content .circle-progress-bar-wrapper {
    margin-top: 40px;
    gap: 70px;
  }
}
@media (max-width: 991px) {
  .why-choose-us-wrapper-3 .choose-us-content .circle-progress-bar-wrapper {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .why-choose-us-wrapper-3 .choose-us-content .circle-progress-bar-wrapper {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.why-choose-us-wrapper-3 .choose-us-content .circle-progress-bar-wrapper .single-circle-bar {
  display: flex;
  align-items: center;
  gap: 15px;
}
.why-choose-us-wrapper-3 .choose-us-content .circle-progress-bar-wrapper .single-circle-bar span {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}
.why-choose-us-wrapper-3 .choose-us-content .circle-progress-bar-wrapper .single-circle-bar .content h4 {
  display: block;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
  font-family: "Nunito", sans-serif;
}
@media (max-width: 1399px) {
  .why-choose-us-wrapper-3 .choose-us-content .circle-progress-bar-wrapper .single-circle-bar .content h4 {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .why-choose-us-wrapper-3 .choose-us-content .circle-progress-bar-wrapper .single-circle-bar .content br {
    display: block;
  }
}
.why-choose-us-wrapper-3 .choose-us-content .circle-progress-bar-wrapper .single-circle-bar .single-circle-bar .circle-progress {
  width: 88px;
  height: 88px;
  position: relative;
}
.why-choose-us-wrapper-3 .choose-us-content .circle-progress-bar-wrapper .single-circle-bar .single-circle-bar .circle-progress svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.why-choose-us-wrapper-3 .choose-us-content .circle-progress-bar-wrapper .single-circle-bar .single-circle-bar .circle-progress circle {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
}
.why-choose-us-wrapper-3 .choose-us-content .circle-progress-bar-wrapper .single-circle-bar .single-circle-bar .circle-progress .bg {
  stroke: rgba(0, 131, 62, 0.19);
}
.why-choose-us-wrapper-3 .choose-us-content .circle-progress-bar-wrapper .single-circle-bar .single-circle-bar .circle-progress .progress {
  stroke: var(--theme2);
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292;
  transition: stroke-dashoffset 1.5s ease;
}
.why-choose-us-wrapper-3 .choose-us-content .circle-progress-bar-wrapper .single-circle-bar .single-circle-bar .circle-progress .value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--header);
}

.why-choose-us-section-3 {
  position: relative;
  background-color: #F4F1EA;
  z-index: 9;
}
.why-choose-us-section-3 .top-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media (max-width: 1399px) {
  .why-choose-us-section-3 .top-shape {
    display: none;
  }
}
.why-choose-us-section-3 .top-shape img {
  width: 100%;
  height: 100%;
}
.why-choose-us-section-3 .text-shape {
  position: absolute;
  top: 200px;
  left: 20px;
  max-width: 950px;
  z-index: -1;
}
@media (max-width: 1600px) {
  .why-choose-us-section-3 .text-shape {
    max-width: 700px;
  }
}
@media (max-width: 1399px) {
  .why-choose-us-section-3 .text-shape {
    display: none;
  }
}
.why-choose-us-section-3 .text-shape img {
  width: 100%;
  height: 100%;
}
.why-choose-us-section-3 .frame-shape {
  position: absolute;
  top: 230px;
  right: 0;
}
@media (max-width: 1399px) {
  .why-choose-us-section-3 .frame-shape {
    display: none;
  }
}
.why-choose-us-section-3 .frame-shape-2 {
  position: absolute;
  top: 160px;
  left: 35%;
}
@media (max-width: 1399px) {
  .why-choose-us-section-3 .frame-shape-2 {
    display: none;
  }
}
.why-choose-us-section-3 .scrolling-wrap {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 0;
  margin-top: 110px;
}
@media (max-width: 1399px) {
  .why-choose-us-section-3 .scrolling-wrap {
    margin-top: 100px;
  }
}
@media (max-width: 991px) {
  .why-choose-us-section-3 .scrolling-wrap {
    margin-top: 80px;
  }
}
.why-choose-us-section-3 .scrolling-wrap .comm {
  display: flex;
  align-items: center;
  animation: scrolls 60s linear infinite;
  gap: 40px;
  cursor: pointer;
}
.why-choose-us-section-3 .scrolling-wrap .comm .cmn-textslide {
  font-size: 88px;
  color: #E0E0E0;
  font-weight: 500;
  line-height: 70px;
  text-transform: capitalize;
  font-family: "Nunito", sans-serif;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 1399px) {
  .why-choose-us-section-3 .scrolling-wrap .comm .cmn-textslide {
    font-size: 70px;
    line-height: 55px;
  }
}
.why-choose-us-section-3 .scrolling-wrap:hover .comm {
  animation-play-state: paused;
}
@media (max-width: 1399px) {
  .why-choose-us-section-3 .scrolling-wrap .comm {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .why-choose-us-section-3 .scrolling-wrap {
    gap: 14px;
  }
  .why-choose-us-section-3 .scrolling-wrap .comm {
    gap: 14px;
  }
}
@media (max-width: 575px) {
  .why-choose-us-section-3 .scrolling-wrap .comm {
    gap: 12px;
  }
}

.why-choose-us-wrapper-4 .burger-image {
  position: relative;
}
.why-choose-us-wrapper-4 .burger-image img {
  width: 100%;
  height: 100%;
}
.why-choose-us-wrapper-4 .choose-us-content {
  margin-left: 50px;
}
@media (max-width: 1399px) {
  .why-choose-us-wrapper-4 .choose-us-content {
    margin-left: 0;
  }
}
.why-choose-us-wrapper-4 .choose-us-content .text {
  max-width: 596px;
  margin-top: 30px;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .why-choose-us-wrapper-4 .choose-us-content .text {
    margin-bottom: 20px;
    margin-top: 15px;
  }
}
.why-choose-us-wrapper-4 .choose-us-content .choose-us-box {
  background-color: var(--white);
  padding: 28px 30px;
  border-radius: 10px;
  border-left: 4px solid #01823E;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .why-choose-us-wrapper-4 .choose-us-content .choose-us-box {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.why-choose-us-wrapper-4 .choose-us-content .choose-us-box .list li {
  font-size: 18px;
  font-weight: 600;
  color: #4B4B4B;
}
@media (max-width: 1399px) {
  .why-choose-us-wrapper-4 .choose-us-content .choose-us-box .list li {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .why-choose-us-wrapper-4 .choose-us-content .choose-us-box .list li {
    font-size: 16px;
  }
}
.why-choose-us-wrapper-4 .choose-us-content .choose-us-box .list li i {
  margin-right: 5px;
  color: #01823E;
}
.why-choose-us-wrapper-4 .choose-us-content .choose-us-box .list li:not(:last-child) {
  margin-bottom: 10px;
}
.why-choose-us-wrapper-4 .choose-us-content .choose-button {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 45px;
}
@media (max-width: 1399px) {
  .why-choose-us-wrapper-4 .choose-us-content .choose-button {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
}

.why-choose-us-section-4 {
  position: relative;
}
.why-choose-us-section-4 .left-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1399px) {
  .why-choose-us-section-4 .left-shape {
    display: none;
  }
}
.why-choose-us-section-4 .right-shape {
  position: absolute;
  top: 188px;
  right: 0;
}
@media (max-width: 1399px) {
  .why-choose-us-section-4 .right-shape {
    display: none;
  }
}

.history-top-section {
  position: relative;
}
.history-top-section .shape-1 {
  position: absolute;
  top: 40px;
  left: 0;
}
@media (max-width: 1600px) {
  .history-top-section .shape-1 {
    max-width: 330px;
  }
  .history-top-section .shape-1 img {
    width: 100%;
  }
}
@media (max-width: 1399px) {
  .history-top-section .shape-1 {
    display: none;
  }
}
.history-top-section .shape-2 {
  position: absolute;
  right: 0;
  top: 40%;
}
@media (max-width: 1399px) {
  .history-top-section .shape-2 {
    display: none;
  }
}
.history-top-section .section-title p {
  max-width: 757px;
  margin: 0 auto;
}

.history-food-list-wrap {
  position: relative;
  z-index: 9;
}
.history-food-list-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0%;
  height: 100%;
  border: 1px dashed var(--theme2);
  z-index: -1;
  transition: height 0.5s ease;
}
@media (max-width: 991px) {
  .history-food-list-wrap::before {
    display: none;
  }
}
.history-food-list-wrap .history-food-list-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .history-food-list-wrap .history-food-list-items {
    display: grid;
    gap: 30px;
    justify-content: center;
    text-align: center;
    margin-top: 40px;
  }
}
.history-food-list-wrap .history-food-list-items .thumb {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .history-food-list-wrap .history-food-list-items .thumb {
    max-width: 480px;
  }
}
@media (max-width: 1199px) {
  .history-food-list-wrap .history-food-list-items .thumb {
    max-width: 380px;
  }
}
@media (max-width: 991px) {
  .history-food-list-wrap .history-food-list-items .thumb {
    margin: 0 auto;
  }
}
.history-food-list-wrap .history-food-list-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}
.history-food-list-wrap .history-food-list-items .year-icon {
  width: 86px;
  height: 86px;
  line-height: 86px;
  background-color: var(--theme2);
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  font-family: "Signika", sans-serif;
}
@media (max-width: 991px) {
  .history-food-list-wrap .history-food-list-items .year-icon {
    margin: 0 auto;
  }
}
.history-food-list-wrap .history-food-list-items .year-icon.style-2 {
  background-color: var(--theme);
  color: var(--header);
}
.history-food-list-wrap .history-food-list-items .content .title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .history-food-list-wrap .history-food-list-items .content .title {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .history-food-list-wrap .history-food-list-items .content .title {
    font-size: 27px;
  }
}
.history-food-list-wrap .history-food-list-items .content p {
  max-width: 545px;
  font-size: 18px;
}
@media (max-width: 1399px) {
  .history-food-list-wrap .history-food-list-items .content p {
    max-width: 470px;
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .history-food-list-wrap .history-food-list-items .content p {
    max-width: 380px;
  }
}
.history-food-list-wrap .history-food-list-items:hover .thumb img {
  transform: scale(1.1) rotate(2deg);
}

.testimonial-box-items {
  margin-top: 30px;
  position: relative;
}
@media (max-width: 991px) {
  .testimonial-box-items {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
  }
}
.testimonial-box-items .testimonial-bg {
  position: relative;
}
.testimonial-box-items .testimonial-bg .vec-shape {
  position: absolute;
  bottom: -12px;
  left: 31%;
}
@media (max-width: 1399px) {
  .testimonial-box-items .testimonial-bg img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .testimonial-box-items .testimonial-bg {
    display: none;
  }
}
.testimonial-box-items .testimonial-content {
  text-align: center;
  padding: 70px 47px;
  position: absolute;
  top: 0;
}
@media (max-width: 1199px) {
  .testimonial-box-items .testimonial-content {
    top: 50%;
    transform: translateY(-50%);
  }
}
.testimonial-box-items .testimonial-content .star {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .testimonial-box-items .testimonial-content {
    position: static;
    transform: translateY(0px);
    padding: 0;
  }
}
@media (max-width: 1399px) {
  .testimonial-box-items .testimonial-content p {
    font-size: 15px;
    line-height: 1.5;
  }
}
.testimonial-box-items .client-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 106px;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .testimonial-box-items .client-info {
    margin-left: 0;
    margin: 0 auto;
    margin-top: 10px;
    justify-content: center;
  }
}
.testimonial-box-items .client-info .content .name {
  color: var(--header);
  font-family: "Signika", sans-serif;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
}
.testimonial-box-items .client-info .content p {
  font-size: 15px;
  line-height: 1;
}

.testimonial-wrapper-two {
  position: relative;
  padding: 80px 20px;
  border-radius: 20px;
  position: relative;
}
.testimonial-wrapper-two .testi-shape {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 991px) {
  .testimonial-wrapper-two .testi-shape {
    display: none;
  }
}
.testimonial-wrapper-two .testi-shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 991px) {
  .testimonial-wrapper-two .testi-shape-2 {
    display: none;
  }
}
.testimonial-wrapper-two .testi-shape-3 {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 991px) {
  .testimonial-wrapper-two .testi-shape-3 {
    display: none;
  }
}
.testimonial-wrapper-two .testi-shape-4 {
  position: absolute;
  bottom: -60px;
  right: 240px;
}
@media (max-width: 991px) {
  .testimonial-wrapper-two .testi-shape-4 {
    display: none;
  }
}
.testimonial-wrapper-two .testi-shape-5 {
  position: absolute;
  top: -12%;
  right: -40px;
}
@media (max-width: 991px) {
  .testimonial-wrapper-two .testi-shape-5 {
    display: none;
  }
}
.testimonial-wrapper-two .testimonial-slider-2 {
  max-width: 780px;
  margin: 0 auto;
}
.testimonial-wrapper-two .testimonial-items-two {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-wrapper-two .testimonial-items-two .title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 142%;
  margin-top: 15px;
}
@media (max-width: 991px) {
  .testimonial-wrapper-two .testimonial-items-two .title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .testimonial-wrapper-two .testimonial-items-two .title {
    font-size: 22px;
  }
}
.testimonial-wrapper-two .testimonial-items-two .testi-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 51px;
}
.testimonial-wrapper-two .testimonial-items-two .testi-info .content span {
  font-size: 18px;
  font-weight: 600;
  font-family: "Signika", sans-serif;
  color: var(--header);
}
.testimonial-wrapper-two .testimonial-items-two .testi-info .content p {
  font-size: 16px;
  font-weight: 500;
  color: #76756D;
  font-family: "Signika", sans-serif;
}
.testimonial-wrapper-two .array-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100px;
  right: 100px;
}
@media (max-width: 1199px) {
  .testimonial-wrapper-two .array-button {
    position: static;
    transform: initial;
    margin-top: 30px;
    left: 20px;
    right: 20px;
    justify-content: center;
    gap: 20px;
  }
}

.testimonial-section {
  position: relative;
}
.testimonial-section .shape-1 {
  position: absolute;
  left: 0;
  top: 0;
}
.testimonial-section .shape-2 {
  position: absolute;
  bottom: 120px;
  right: 0;
}
.testimonial-section .swiper-dots {
  z-index: 99;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 290px;
  margin: 0 auto;
  gap: 18px;
}
.testimonial-section .swiper-dots .dots-line {
  display: inline-block;
  height: 2px;
  width: 83px;
  background: linear-gradient(270deg, #00833E 4.85%, rgba(255, 255, 255, 0) 96.39%);
}
@media (max-width: 991px) {
  .testimonial-section .swiper-dots .dots-line {
    display: none;
  }
}
.testimonial-section .swiper-dots .dots-line2 {
  display: inline-block;
  height: 2px;
  width: 83px;
  background: linear-gradient(90deg, #00833E 4.85%, rgba(255, 255, 255, 0) 96.39%);
}
@media (max-width: 991px) {
  .testimonial-section .swiper-dots .dots-line2 {
    display: none;
  }
}
.testimonial-section .swiper-dots .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  background-color: var(--theme2);
  opacity: 1;
  border-radius: 10px;
}
.testimonial-section .swiper-dots .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}
.testimonial-section .swiper-dots .dots {
  width: initial;
}
.testimonial-section .swiper-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme2);
  transition: 0.6s;
  position: relative;
}
.testimonial-section .swiper-dots .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 30px;
  height: 30px;
  line-height: 30px;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--theme2);
  content: "";
  transform: translate(-50%, -50%);
}

.testimonial-section-5 {
  position: relative;
}
.testimonial-section-5 .testi-shape-1 {
  position: absolute;
  top: 0;
  left: 10%;
}
.testimonial-section-5 .testi-shape-2 {
  position: absolute;
  top: 20px;
  right: 0;
}
.testimonial-section-5 .testimonial-wrap-five {
  position: relative;
}
.testimonial-section-5 .testimonial-wrap-five .array-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100px;
  right: 100px;
  z-index: 99;
}
@media (max-width: 1199px) {
  .testimonial-section-5 .testimonial-wrap-five .array-button {
    position: relative;
    transform: initial;
    margin-top: 30px;
    left: initial;
    right: initial;
    justify-content: center;
    gap: 20px;
  }
}
.testimonial-section-5 .testimonial-wrap-five .testi-slider-5 {
  max-width: 780px;
  margin: 0 auto;
}
.testimonial-section-5 .testi-text {
  font-size: 450px;
  font-weight: 600;
  color: rgba(250, 242, 231, 0.65);
  font-family: "Bylast", sans-serif;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 20px;
  right: 20px;
  transform: translateY(-50%);
}
@media (max-width: 1399px) {
  .testimonial-section-5 .testi-text {
    font-size: 350px;
  }
}
@media (max-width: 1199px) {
  .testimonial-section-5 .testi-text {
    font-size: 300px;
  }
}
@media (max-width: 991px) {
  .testimonial-section-5 .testi-text {
    font-size: 200px;
  }
}
@media (max-width: 575px) {
  .testimonial-section-5 .testi-text {
    display: none;
  }
}

.testimonial-items-5 {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.testimonial-items-5 .title {
  font-size: 36px;
  font-weight: 600;
  max-width: 780px;
  letter-spacing: -0.01em;
  line-height: 142%;
  margin: 20px auto 45px;
}
@media (max-width: 991px) {
  .testimonial-items-5 .title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .testimonial-items-5 .title {
    font-size: 25px;
  }
}
.testimonial-items-5 .client-info {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.testimonial-items-5 .client-info .content {
  text-align: left;
}
.testimonial-items-5 .client-info .content .title-2 {
  font-size: 22px;
  font-weight: 600;
}
.testimonial-items-5 .client-info .content p {
  font-size: 18px;
  font-weight: 500;
  font-family: "Signika", sans-serif;
}

.testi-right-content-7 {
  margin-left: 80px;
}
@media (max-width: 1399px) {
  .testi-right-content-7 {
    margin-left: 15px;
    margin-right: 30px;
  }
}
.testi-right-content-7 .title {
  font-weight: 600;
  font-size: 88px;
  line-height: 112%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #434E4C;
}
@media (max-width: 1399px) {
  .testi-right-content-7 .title {
    font-size: 70px;
  }
}
@media (max-width: 575px) {
  .testi-right-content-7 .title {
    font-size: 50px;
  }
}
.testi-right-content-7 .tesi-items {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}
@media (max-width: 575px) {
  .testi-right-content-7 .tesi-items {
    display: grid;
    gap: 20px;
  }
}
.testi-right-content-7 .tesi-items .content .title-2 {
  font-weight: 400;
  font-size: 32px;
  line-height: 147%;
  color: var(--white);
  margin-top: 30px;
  max-width: 616px;
}
@media (max-width: 1399px) {
  .testi-right-content-7 .tesi-items .content .title-2 {
    font-size: 25px;
  }
}

.testimonial-section-7 {
  position: relative;
  z-index: 9;
  background-color: #1F3634;
}
.testimonial-section-7 .left-shape {
  position: absolute;
  top: 0;
  left: 0;
}
.testimonial-section-7 .client-sing {
  position: absolute;
  bottom: 20%;
  left: 39%;
  z-index: 111;
}
@media (max-width: 1199px) {
  .testimonial-section-7 .client-sing {
    display: none;
  }
}
.testimonial-section-7 .testi-thumb-7 {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
}
.testimonial-section-7 .testi-thumb-7 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-section-7 .testi-thumb-7::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 12, 9, 0.83);
  z-index: 1;
}
.testimonial-section-7 .swiper-dot2 {
  position: relative;
  margin-top: 40px;
  margin-left: 100px;
}
@media (max-width: 575px) {
  .testimonial-section-7 .swiper-dot2 {
    margin-left: 0;
  }
}
.testimonial-section-7 .swiper-dot2 .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  transition: 0.6s;
  background-color: transparent;
  opacity: 1;
  border-radius: 10px;
  border: 1.3px solid var(--white);
}
.testimonial-section-7 .swiper-dot2 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 5px;
}
.testimonial-section-7 .swiper-dot2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #C9AB81;
  transition: 0.6s;
  position: relative;
  border-color: #C9AB81;
}

.testi-left-thumb-7 {
  margin-left: 110px;
  max-width: 720px;
  height: 448px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1899px) {
  .testi-left-thumb-7 {
    margin-right: 50px;
  }
}
@media (max-width: 1199px) {
  .testi-left-thumb-7 {
    margin-left: 30px;
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .testi-left-thumb-7 {
    max-width: initial;
    margin-right: 30px;
    margin-bottom: 25px;
  }
}
.testi-left-thumb-7 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-wrapper-3 {
  margin-bottom: 120px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-3 {
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .testimonial-wrapper-3 {
    margin-bottom: 80px;
  }
}
.testimonial-wrapper-3 .testimonial-content .rating-box {
  border-radius: 12px;
  background-color: var(--white);
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 38px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-content .rating-box {
    padding: 20px;
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .testimonial-wrapper-3 .testimonial-content .rating-box {
    padding: 28px;
  }
}
.testimonial-wrapper-3 .testimonial-content .rating-box .rating-content {
  border-left: 1px dashed #CDCDCD;
  padding-left: 20px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-content .rating-box .rating-content {
    padding-left: 0;
    border-left: none;
  }
}
.testimonial-wrapper-3 .testimonial-content .rating-box .rating-content h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}
.testimonial-wrapper-3 .testimonial-content .rating-box .rating-content .rating-image {
  display: flex;
  align-items: center;
  gap: 2px;
}
.testimonial-wrapper-3 .testimonial-right-item {
  margin-right: -51%;
  margin-left: 50px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-right-item {
    margin-right: 0;
    margin-left: 0;
  }
}
.testimonial-wrapper-3 .testimonial-right-item .testimonial-card-item {
  border-radius: 12px;
  background: var(--white);
  padding: 45px;
  position: relative;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-right-item .testimonial-card-item {
    padding: 30px;
  }
}
.testimonial-wrapper-3 .testimonial-right-item .testimonial-card-item .icon {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.testimonial-wrapper-3 .testimonial-right-item .testimonial-card-item .content-item {
  display: flex;
  align-items: center;
  margin-left: -45px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-right-item .testimonial-card-item .content-item {
    margin-left: 0;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.testimonial-wrapper-3 .testimonial-right-item .testimonial-card-item .content-item .left-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 65px;
  height: 80px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-right-item .testimonial-card-item .content-item .left-content {
    height: initial;
    gap: 10px;
    flex-direction: initial;
  }
}
.testimonial-wrapper-3 .testimonial-right-item .testimonial-card-item .content-item .left-content h4 {
  transform: rotate(-90deg);
  font-family: "Nunito", sans-serif;
  letter-spacing: 1.92px;
  font-weight: 400;
  font-size: 16px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-right-item .testimonial-card-item .content-item .left-content h4 {
    transform: rotate(0);
  }
}
.testimonial-wrapper-3 .testimonial-right-item .testimonial-card-item .content-item .left-content img {
  transform: rotate(-90deg);
}
@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-right-item .testimonial-card-item .content-item .left-content img {
    transform: rotate(0);
  }
}
.testimonial-wrapper-3 .testimonial-right-item .testimonial-card-item .content-item .right-content {
  margin-left: -10px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-right-item .testimonial-card-item .content-item .right-content {
    margin-left: 0;
  }
}
.testimonial-wrapper-3 .testimonial-right-item .testimonial-card-item .content-item .right-content h5 {
  font-size: 24px;
  font-weight: 600;
}
.testimonial-wrapper-3 .testimonial-right-item .testimonial-card-item .content-item .right-content p {
  max-width: 455px;
  margin-top: 10px;
  border-bottom: 1px dashed #CDCDCD;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.testimonial-wrapper-3 .testimonial-right-item .testimonial-card-item .info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-wrapper-3 .testimonial-right-item .testimonial-card-item .info-item i {
  font-size: 44px;
  color: var(--theme);
}
.testimonial-wrapper-3 .testimonial-right-item .testimonial-card-item .info-item .content span {
  font-size: 18px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-3 .testimonial-right-item .testimonial-card-item .info-item .content span {
    font-size: 14px;
  }
}
.testimonial-wrapper-3 .testimonial-right-item .arrow-button {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.testimonial-wrapper-3 .testimonial-right-item .arrow-button .array-prev {
  width: 51px;
  height: 51px;
  line-height: 51px;
  text-align: center;
  border-radius: 12px;
  background-color: var(--white);
  color: #00833E;
  transition: all 0.4s ease-in-out;
}
.testimonial-wrapper-3 .testimonial-right-item .arrow-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}
.testimonial-wrapper-3 .testimonial-right-item .arrow-button .array-next {
  width: 51px;
  height: 51px;
  line-height: 51px;
  text-align: center;
  border-radius: 12px;
  background-color: var(--theme);
  color: #1E1D23;
  transition: all 0.4s ease-in-out;
}
.testimonial-wrapper-3 .testimonial-right-item .arrow-button .array-next:hover {
  background-color: var(--white);
  color: var(--theme);
}

.testimonial-section-3 {
  border-radius: 20px;
  margin: 0 15px;
  position: relative;
}
.testimonial-section-3 .left-shape {
  position: absolute;
  left: 10px;
  bottom: 240px;
}
@media (max-width: 1600px) {
  .testimonial-section-3 .left-shape {
    display: none;
  }
}
.testimonial-section-3 .right-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 1600px) {
  .testimonial-section-3 .right-shape {
    display: none;
  }
}

.testimonial-box-items-4 {
  margin-top: 30px;
  position: relative;
  background-color: var(--white);
  padding: 80px 40px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .testimonial-box-items-4 {
    padding: 70px 30px;
  }
}
.testimonial-box-items-4 .icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.testimonial-box-items-4 .star {
  margin-top: 20px;
}
.testimonial-box-items-4 p {
  font-size: 24px;
  font-weight: 500;
  line-height: 37px;
  letter-spacing: -1%;
  color: #1E1D23;
  font-family: "Signika", sans-serif;
  margin: 0 auto;
}
@media (max-width: 1399px) {
  .testimonial-box-items-4 p {
    font-size: 16px;
    line-height: 28px;
  }
}
.testimonial-box-items-4 .client-info {
  margin-top: 30px;
  margin-bottom: -165px;
}
.testimonial-box-items-4 .client-info .content .name {
  color: var(--header);
  font-family: "Signika", sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 3px;
}
.testimonial-box-items-4 .client-info .content p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.testimonal-section-4 .testimonial-slider-4 {
  padding-bottom: 145px;
}
@media (max-width: 1399px) {
  .testimonal-section-4 .testimonial-slider-4 {
    padding-bottom: 155px;
  }
}
.testimonal-section-4 .section-title .star-item {
  display: flex;
  align-items: center;
  margin-top: 30px;
  gap: 14px;
  justify-content: center;
}
.testimonal-section-4 .section-title .star-item span {
  font-size: 15px;
  font-weight: 500;
}
.testimonal-section-4 .section-title .star-item span b {
  color: var(--header);
  font-size: 28px;
  font-weight: 600;
  font-family: "Signika", sans-serif;
}
.testimonal-section-4 .swiper-slide-active .testimonial-box-items-4 {
  background-color: var(--theme);
  transform: translateY(60px);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .testimonal-section-4 .swiper-slide-active .testimonial-box-items-4 {
    transform: translateY(40px);
  }
}

.gallery-section {
  position: relative;
}
.gallery-section .section-title {
  position: relative;
  z-index: 9999;
}

.gallery-block-one {
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  position: relative;
  z-index: 999;
}
@media (max-width: 1199px) {
  .gallery-block-one {
    height: 450px;
  }
}
.gallery-block-one img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  object-fit: cover;
  transition: all 1s;
}
.gallery-block-one:hover img {
  transform: scale(1.2);
}

.gallery-titming {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.gallery-area {
  position: relative;
}
.gallery-area .gallery-shape-1 {
  position: absolute;
  top: -5px;
  left: 0;
  z-index: 999;
  right: 0;
}
@media (max-width: 1899px) {
  .gallery-area .gallery-shape-1 {
    top: -50px;
  }
}
.gallery-area .gallery-shape-1 img {
  width: 100%;
  height: 90px;
}
.gallery-area .gallery-shape-2 {
  position: absolute;
  bottom: -10px;
  left: 0;
  z-index: 999;
  right: 0;
}
@media (max-width: 1899px) {
  .gallery-area .gallery-shape-2 {
    bottom: -50px;
  }
}
.gallery-area .gallery-shape-2 img {
  width: 100%;
  height: 90px;
}
.gallery-area .galler-slider {
  margin: 0 -15px;
}

.gallery-btn {
  position: relative;
  text-align: center;
  z-index: 9999;
}

.gallery-section-7 {
  margin: 28px;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .gallery-section-7 {
    margin: 20px;
    margin-bottom: 0;
  }
}

.gallery-box-items .gallery-image {
  position: relative;
}
.gallery-box-items .gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-box-items .gallery-image::before {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: scale(0.7);
  content: "";
  position: absolute;
  background: rgba(217, 107, 26, 0.5);
  z-index: 1;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.gallery-box-items .gallery-image .icon {
  position: absolute;
  font-size: 38px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  color: var(--white);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.gallery-box-items .gallery-image:hover::before {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.gallery-box-items .gallery-image:hover .icon {
  opacity: 1;
}

.gallery-iamgess {
  position: relative;
  overflow: hidden;
}
.gallery-iamgess .icon {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  color: var(--white);
  z-index: 999;
  font-size: 30px;
}
.gallery-iamgess img {
  width: 100%;
  height: 100%;
}
.gallery-iamgess:before, .gallery-iamgess:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
  left: 0;
  background: rgba(255, 194, 34, 0.5);
  transform: translateX(-100%) rotate(15deg);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
}
.gallery-iamgess:after {
  left: auto;
  right: 0;
  transform: translateX(100%) rotate(-15deg);
}
.gallery-iamgess:hover .icon {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.gallery-iamgess:hover:before, .gallery-iamgess:hover:after {
  transform: none;
  opacity: 1;
  visibility: visible;
}

.gallery-iamge5 {
  position: relative;
  overflow: hidden;
}
.gallery-iamge5 .icon {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  color: var(--white);
  z-index: 999;
  font-size: 40px;
}
.gallery-iamge5 img {
  width: 100%;
  height: 100%;
}
.gallery-iamge5:before, .gallery-iamge5:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
  left: 0;
  background: rgba(255, 194, 34, 0.5);
  transform: translateX(-100%) rotate(15deg);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.gallery-iamge5:after {
  left: auto;
  right: 0;
  transform: translateX(100%) rotate(-15deg);
}
.gallery-iamge5:hover .icon {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.gallery-iamge5:hover:before, .gallery-iamge5:hover:after {
  transform: none;
  opacity: 1;
  visibility: visible;
}

.gallery-section-5 .container {
  max-width: 1864px;
}

.news-box-items {
  margin-top: 30px;
  transition: all 0.4s ease-in-out;
}
.news-box-items .thumb {
  border-radius: 12px;
  position: relative;
}
.news-box-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.news-box-items .thumb .date-items {
  position: absolute;
  bottom: -27px;
  right: 26px;
  border-radius: 0;
  display: grid;
  align-items: center;
  gap: 0;
}
.news-box-items .thumb .date-items .date {
  font-size: 20px;
  font-weight: 700;
  color: var(--header);
  height: 27px;
  line-height: 27px;
  padding: 0 16px;
  background-color: var(--theme);
  border-radius: 6px 6px 0px 0px;
  display: inline-block;
  border-bottom: 1px solid #f5f5f5;
}
.news-box-items .thumb .date-items .month {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  height: 27px;
  line-height: 27px;
  padding: 0 16px;
  background-color: var(--theme2);
  border-radius: 0px 0px 6px 6px;
  display: inline-block;
}
.news-box-items .content {
  margin-top: 24px;
}
.news-box-items .content ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
.news-box-items .content ul li {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-box-items .content .title {
  font-size: 24px;
  font-weight: 600;
  margin-top: 18px;
}
.news-box-items .content .title a:hover {
  color: var(--theme);
}
.news-box-items .content .link-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--header);
  overflow: hidden;
  text-transform: capitalize;
  margin-top: 13px;
}
.news-box-items .content .link-btn i {
  margin-left: 7px;
}
.news-box-items .content .link-btn .text {
  position: relative;
  display: inline-block;
  height: 22px;
  overflow: hidden;
}
.news-box-items .content .link-btn .text-default,
.news-box-items .content .link-btn .text-hover {
  display: block;
  transition: transform 0.4s ease;
}
.news-box-items .content .link-btn .text-hover {
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--theme);
}
.news-box-items .content .link-btn:hover .text-default {
  transform: translateY(-100%);
}
.news-box-items .content .link-btn:hover .text-hover {
  transform: translateY(-100%);
}
.news-box-items .content .link-btn i {
  transition: transform 0.4s ease;
}
.news-box-items:hover {
  transform: translateY(-10px);
}

.news-box-items-two {
  margin-top: 30px;
  background-color: var(--white);
  border-radius: 16px;
}
.news-box-items-two .thumb {
  border-radius: 16px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  position: relative;
}
.news-box-items-two .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.news-box-items-two .thumb .date-box {
  background-color: var(--theme);
  border-radius: 6px;
  height: 78px;
  padding: 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -40px;
  right: 25px;
}
.news-box-items-two .thumb .date-box span {
  font-size: 26px;
  font-weight: 700;
  color: var(--header);
}
.news-box-items-two .thumb .date-box p {
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
}
.news-box-items-two .content-box .content {
  padding: 30px 30px;
  border-bottom: 1px solid rgba(0, 23, 38, 0.1);
  margin-bottom: 25px;
}
.news-box-items-two .content-box .content p {
  font-size: 16px;
  font-weight: 700;
  color: var(--theme2);
}
.news-box-items-two .content-box .content .title {
  margin-top: 8px;
  font-weight: 600;
  font-size: 24px;
}
@media (max-width: 1399px) {
  .news-box-items-two .content-box .content .title {
    font-size: 20px;
  }
}
.news-box-items-two .content-box .content .title a:hover {
  color: var(--theme);
}
.news-box-items-two .content-box ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  padding-bottom: 30px;
}
.news-box-items-two .content-box ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.news-wrap-5 {
  margin-left: -7%;
  margin-right: -7%;
}
@media (max-width: 991px) {
  .news-wrap-5 {
    margin: 0 20px;
  }
}

.news-card-items-5 {
  margin-top: 30px;
  transition: all 0.4s ease-in-out;
}
.news-card-items-5 .news-thumb {
  border-radius: 12px;
  position: relative;
}
.news-card-items-5 .news-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.news-card-items-5 .news-thumb .date-items {
  position: absolute;
  bottom: -27px;
  right: 26px;
  border-radius: 0;
  display: grid;
  align-items: center;
  gap: 0;
}
@media (max-width: 1199px) {
  .news-card-items-5 .news-thumb .date-items {
    right: 15px;
  }
}
.news-card-items-5 .news-thumb .date-items .date {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  height: 27px;
  line-height: 27px;
  padding: 0 16px;
  background-color: var(--theme3);
  border-radius: 6px 6px 0px 0px;
  display: inline-block;
}
.news-card-items-5 .news-thumb .date-items .month {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  height: 27px;
  line-height: 27px;
  padding: 0 16px;
  background-color: var(--header);
  border-radius: 0px 0px 6px 6px;
  display: inline-block;
}
.news-card-items-5 .content {
  margin-top: 24px;
}
@media (max-width: 1199px) {
  .news-card-items-5 .content {
    margin-top: 32px;
  }
}
.news-card-items-5 .content ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
.news-card-items-5 .content ul li {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-card-items-5 .content ul li i {
  color: var(--theme3);
}
.news-card-items-5 .content .title {
  font-size: 24px;
  font-weight: 600;
  margin-top: 18px;
}
.news-card-items-5 .content .title a:hover {
  color: var(--theme3);
}
.news-card-items-5 .content p {
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
  max-width: 403px;
}
.news-card-items-5 .content .link-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--theme3);
  overflow: hidden;
  text-transform: capitalize;
  margin-top: 20px;
}
.news-card-items-5 .content .link-btn i {
  margin-left: 7px;
}
.news-card-items-5 .content .link-btn .text {
  position: relative;
  display: inline-block;
  height: 22px;
  overflow: hidden;
}
.news-card-items-5 .content .link-btn .text-default,
.news-card-items-5 .content .link-btn .text-hover {
  display: block;
  transition: transform 0.4s ease;
}
.news-card-items-5 .content .link-btn .text-hover {
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--theme3);
}
.news-card-items-5 .content .link-btn:hover .text-default {
  transform: translateY(-100%);
}
.news-card-items-5 .content .link-btn:hover .text-hover {
  transform: translateY(-100%);
}
.news-card-items-5 .content .link-btn i {
  transition: transform 0.4s ease;
}
.news-card-items-5:hover {
  transform: translateY(-10px);
}

.news-card-items-6 {
  margin-top: 30px;
  transition: all 0.4s ease-in-out;
}
.news-card-items-6 .news-thumb {
  overflow: hidden;
  position: relative;
  z-index: 9;
  border-radius: 18px;
}
.news-card-items-6 .news-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  position: relative;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.news-card-items-6 .news-thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.news-card-items-6 .content {
  margin-top: 24px;
}
.news-card-items-6 .content ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
.news-card-items-6 .content ul li {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-card-items-6 .content ul li i {
  color: var(--theme3);
}
.news-card-items-6 .content .title {
  font-size: 36px;
  font-weight: 600;
  margin-top: 18px;
}
@media (max-width: 1399px) {
  .news-card-items-6 .content .title {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .news-card-items-6 .content .title {
    font-size: 22px;
  }
}
.news-card-items-6 .content .title a:hover {
  color: var(--theme3);
}
.news-card-items-6:hover {
  transform: translateY(-10px);
}
.news-card-items-6:hover:hover .news-thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.news-card-items-6:hover:hover .news-thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.news-section-7 {
  position: relative;
}
.news-section-7 .section-title .sub-title {
  color: #C9AB81;
}
.news-section-7 .right-shape {
  position: absolute;
  top: -50px;
  right: 0;
}
.news-section-7 .news-btn {
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .news-section-7 .news-btn {
    margin-top: 40px;
  }
}
.news-section-7 .news-btn .theme-btn {
  background: transparent;
  border: 1px solid rgb(201, 171, 129);
  color: var(--white);
  border-radius: 0;
}
.news-section-7 .news-btn .theme-btn::before {
  background-color: var(--white);
}
.news-section-7 .news-btn .theme-btn:hover {
  color: #083C52;
}

.news-card-items-7 {
  text-align: center;
  margin-top: 30px;
}
.news-card-items-7.style-3 {
  margin-top: 90px;
}
@media (max-width: 1199px) {
  .news-card-items-7.style-3 {
    margin-top: 30px;
  }
}
.news-card-items-7 .menu-img {
  position: relative;
  overflow: hidden;
  border-radius: 212px 212px 0px 0px;
}
@media (max-width: 767px) {
  .news-card-items-7 .menu-img {
    height: 440px;
  }
}
.news-card-items-7 .menu-img.style-2 {
  border-radius: 0;
}
.news-card-items-7 .menu-img.style-2 img {
  border-radius: 0px;
}
.news-card-items-7 .menu-img::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;
  pointer-events: none;
}
.news-card-items-7 .menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  object-fit: cover;
  transition: all 1s;
  border-radius: 212px 212px 0px 0px;
}
.news-card-items-7 .content {
  margin-top: 45px;
}
.news-card-items-7 .content .post-date {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .news-card-items-7 .content .post-date {
    justify-content: center;
  }
}
.news-card-items-7 .content .post-date li {
  display: flex;
  gap: 7px;
  align-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 500;
  font-family: "Nunito", sans-serif;
  text-transform: uppercase;
}
.news-card-items-7 .content .post-date li:last-child {
  position: relative;
  padding-left: 30px;
  color: #C9AB81;
  font-size: 14px;
  font-weight: 500;
  font-family: "Nunito", sans-serif;
  text-transform: uppercase;
}
.news-card-items-7 .content .post-date li:last-child::before {
  width: 5px;
  height: 5px;
  line-height: 5px;
  border-radius: 50%;
  position: absolute;
  top: 13px;
  left: 0px;
  content: "";
  background-color: rgba(255, 255, 255, 0.37);
}
.news-card-items-7 .content h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  max-width: 375px;
  margin: 0 auto;
  margin-top: 15px;
}
.news-card-items-7 .content h3 a {
  color: var(--white);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-card-items-7 .content h3 a:hover {
  color: #C9AB81;
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(#C9AB81) 0%, var(#C9AB81) 100%);
}
.news-card-items-7:hover .menu-img::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.news-card-items-7:hover .menu-img img {
  transform: scale(1.2);
}

.news-card-items-8 {
  margin-top: 30px;
  transition: all 0.4s ease-in-out;
}
.news-card-items-8 .news-thumb {
  border-radius: 12px;
  position: relative;
}
.news-card-items-8 .news-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.news-card-items-8 .news-thumb .date-items {
  position: absolute;
  bottom: -27px;
  right: 26px;
  border-radius: 0;
  display: grid;
  align-items: center;
  gap: 0;
}
.news-card-items-8 .news-thumb .date-items .date {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  height: 27px;
  line-height: 27px;
  padding: 0 16px;
  background-color: #D96B1A;
  border-radius: 6px 6px 0px 0px;
  display: inline-block;
}
.news-card-items-8 .news-thumb .date-items .month {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  height: 27px;
  line-height: 27px;
  padding: 0 16px;
  background-color: var(--header);
  border-radius: 0px 0px 6px 6px;
  display: inline-block;
}
.news-card-items-8 .content {
  margin-top: 24px;
}
.news-card-items-8 .content ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
.news-card-items-8 .content ul li {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-card-items-8 .content ul li i {
  color: #D96B1A;
}
.news-card-items-8 .content .title {
  font-size: 24px;
  font-weight: 600;
  margin-top: 18px;
}
.news-card-items-8 .content .title a:hover {
  color: #D96B1A;
}
.news-card-items-8 .content p {
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
  max-width: 403px;
}
.news-card-items-8 .content .link-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #D96B1A;
  overflow: hidden;
  text-transform: capitalize;
  margin-top: 20px;
}
.news-card-items-8 .content .link-btn i {
  margin-left: 7px;
}
.news-card-items-8 .content .link-btn .text {
  position: relative;
  display: inline-block;
  height: 22px;
  overflow: hidden;
}
.news-card-items-8 .content .link-btn .text-default,
.news-card-items-8 .content .link-btn .text-hover {
  display: block;
  transition: transform 0.4s ease;
}
.news-card-items-8 .content .link-btn .text-hover {
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--theme);
}
.news-card-items-8 .content .link-btn:hover .text-default {
  transform: translateY(-100%);
}
.news-card-items-8 .content .link-btn:hover .text-hover {
  transform: translateY(-100%);
}
.news-card-items-8 .content .link-btn i {
  transition: transform 0.4s ease;
}
.news-card-items-8:hover {
  transform: translateY(-10px);
}

.news-section-8 {
  position: relative;
}
.news-section-8 .news-shape {
  position: absolute;
  top: 0;
  right: 0;
}

.news-box-items-two {
  margin-top: 30px;
  background-color: var(--white);
  border-radius: 16px;
}
.news-box-items-two .thumb {
  border-radius: 16px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  position: relative;
}
.news-box-items-two .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.news-box-items-two .thumb .date-box {
  background-color: var(--theme);
  border-radius: 6px;
  height: 78px;
  padding: 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -40px;
  right: 25px;
}
.news-box-items-two .thumb .date-box span {
  font-size: 26px;
  font-weight: 700;
  color: var(--header);
}
.news-box-items-two .thumb .date-box p {
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
}
.news-box-items-two .content-box .content {
  padding: 30px 30px;
  border-bottom: 1px solid rgba(0, 23, 38, 0.1);
  margin-bottom: 25px;
}
.news-box-items-two .content-box .content p {
  font-size: 16px;
  font-weight: 700;
  color: var(--theme2);
}
.news-box-items-two .content-box .content .title {
  margin-top: 8px;
}
.news-box-items-two .content-box .content .title a:hover {
  color: var(--theme);
}
.news-box-items-two .content-box ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  padding-bottom: 30px;
}
.news-box-items-two .content-box ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}
.news-box-items-two.style-box-shadow {
  background: #FFFFFF;
  box-shadow: 0px 10px 60px rgba(174, 174, 174, 0.2);
}

.news-wrapper-3 {
  margin-top: 50px;
}
.news-wrapper-3 .news-card-item-3 .news-image img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}
.news-wrapper-3 .news-card-item-3 .news-content {
  margin-top: 30px;
}
.news-wrapper-3 .news-card-item-3 .news-content ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
.news-wrapper-3 .news-card-item-3 .news-content ul li {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-wrapper-3 .news-card-item-3 .news-content h3 {
  font-size: 42px;
  font-weight: 600;
  margin-top: 10px;
}
@media (max-width: 1399px) {
  .news-wrapper-3 .news-card-item-3 .news-content h3 {
    font-size: 20px;
  }
}
.news-wrapper-3 .news-card-item-3 .news-content h3 a:hover {
  color: var(--theme);
}
.news-wrapper-3 .news-mini-card {
  background-color: #F9F8F4;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1399px) {
  .news-wrapper-3 .news-mini-card {
    gap: 16px;
  }
}
@media (max-width: 991px) {
  .news-wrapper-3 .news-mini-card {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .news-wrapper-3 .news-mini-card {
    flex-wrap: wrap;
    gap: 0;
  }
}
.news-wrapper-3 .news-mini-card.style-2 {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .news-wrapper-3 .news-mini-card .news-image {
    flex-basis: 100%;
  }
}
.news-wrapper-3 .news-mini-card .news-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
}
@media (max-width: 767px) {
  .news-wrapper-3 .news-mini-card .news-image img {
    border-radius: 18px;
  }
}
@media (max-width: 991px) {
  .news-wrapper-3 .news-mini-card .news-content {
    padding: 15px;
  }
}
.news-wrapper-3 .news-mini-card .news-content ul {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
}
@media (max-width: 1399px) {
  .news-wrapper-3 .news-mini-card .news-content ul {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .news-wrapper-3 .news-mini-card .news-content ul {
    gap: 24px;
  }
}
.news-wrapper-3 .news-mini-card .news-content ul li {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-wrapper-3 .news-mini-card .news-content h4 {
  font-size: 23px;
  font-weight: 600;
  margin-top: 15px;
}
@media (max-width: 1600px) {
  .news-wrapper-3 .news-mini-card .news-content h4 {
    font-size: 20px;
  }
}
@media (max-width: 1399px) {
  .news-wrapper-3 .news-mini-card .news-content h4 {
    font-size: 16px;
  }
  .news-wrapper-3 .news-mini-card .news-content h4 br {
    display: block;
  }
}
@media (max-width: 991px) {
  .news-wrapper-3 .news-mini-card .news-content h4 {
    font-size: 20px;
  }
}
.news-wrapper-3 .news-mini-card .news-content h4 a:hover {
  color: var(--theme);
}
.news-wrapper-3 .news-mini-card .news-content .title {
  font-size: 23px;
  font-weight: 600;
  margin-top: 15px;
}
@media (max-width: 1600px) {
  .news-wrapper-3 .news-mini-card .news-content .title {
    font-size: 20px;
  }
}
@media (max-width: 1399px) {
  .news-wrapper-3 .news-mini-card .news-content .title {
    font-size: 16px;
  }
  .news-wrapper-3 .news-mini-card .news-content .title br {
    display: block;
  }
}
@media (max-width: 991px) {
  .news-wrapper-3 .news-mini-card .news-content .title {
    font-size: 20px;
  }
}
.news-wrapper-3 .news-mini-card .news-content .title a:hover {
  color: var(--theme);
}
.news-wrapper-3 .news-mini-card .news-content .link-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #003B49;
  overflow: hidden;
  text-transform: capitalize;
  margin-top: 13px;
  border-bottom: 1px solid #003B49;
}
.news-wrapper-3 .news-mini-card .news-content .link-btn i {
  margin-left: 7px;
}
.news-wrapper-3 .news-mini-card .news-content .link-btn .text {
  position: relative;
  display: inline-block;
  height: 22px;
  overflow: hidden;
}
.news-wrapper-3 .news-mini-card .news-content .link-btn .text-default,
.news-wrapper-3 .news-mini-card .news-content .link-btn .text-hover {
  display: block;
  transition: transform 0.4s ease;
}
.news-wrapper-3 .news-mini-card .news-content .link-btn .text-hover {
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--theme);
}
.news-wrapper-3 .news-mini-card .news-content .link-btn:hover {
  border-bottom: 1px solid var(--theme);
}
.news-wrapper-3 .news-mini-card .news-content .link-btn:hover .text-default {
  transform: translateY(-100%);
}
.news-wrapper-3 .news-mini-card .news-content .link-btn:hover .text-hover {
  transform: translateY(-100%);
}
.news-wrapper-3 .news-mini-card .news-content .link-btn i {
  transition: transform 0.4s ease;
}

.news-section-3 {
  position: relative;
}
.news-section-3 .left-shape {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 1600px) {
  .news-section-3 .left-shape img {
    width: 350px;
  }
}
@media (max-width: 1399px) {
  .news-section-3 .left-shape {
    display: none;
  }
}
.news-section-3 .right-shape {
  position: absolute;
  right: 0;
  top: 100px;
}
@media (max-width: 1399px) {
  .news-section-3 .right-shape {
    display: none;
  }
}

.news-details-area .blog-post-details .single-blog-post .post-featured-thumb {
  border-radius: 8px;
}
.news-details-area .blog-post-details .single-blog-post .post-featured-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.news-details-area .blog-post-details .single-blog-post .post-content {
  margin-top: 30px;
}
.news-details-area .blog-post-details .single-blog-post .post-content .post-list {
  gap: 30px;
  margin-bottom: 10px;
}
.news-details-area .blog-post-details .single-blog-post .post-content .post-list li {
  font-size: 14px;
  font-weight: 500;
}
.news-details-area .blog-post-details .single-blog-post .post-content .post-list li i {
  color: var(--theme2);
  margin-right: 5px;
}
.news-details-area .blog-post-details .single-blog-post .post-content p {
  font-size: 16px;
  font-weight: 600;
}
.news-details-area .blog-post-details .single-blog-post .post-content h2 {
  margin-bottom: 20px;
  font-size: 42px;
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .single-blog-post .post-content h2 {
    font-size: 24px;
  }
}
.news-details-area .blog-post-details .single-blog-post .post-content h2 a:hover {
  color: var(--theme);
}
.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
  border-left: 4px solid var(--theme2);
  padding: 40px;
  background-color: var(--bg);
  border-radius: 8px;
}
@media (max-width: 1199px) {
  .news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
    padding: 30px 23px;
  }
}
.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text p {
  max-width: 650px;
  font-weight: 600;
  text-transform: capitalize;
  font-style: italic;
  line-height: 26px;
  color: var(--header);
}
.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text svg {
  float: right;
  margin-top: -30px;
}
.news-details-area .blog-post-details .single-blog-post .post-content .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.news-details-area .blog-post-details .tag-share-wrap {
  border-top: 1px solid rgba(30, 29, 35, 0.2);
  border-bottom: 1px solid rgba(30, 29, 35, 0.2);
  padding: 30px 0;
}
.news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
  display: inline-block;
  padding: 12px 26px;
  line-height: 1;
  background: var(--white);
  margin-right: 8px;
  text-transform: capitalize;
  font-weight: 500;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 4px;
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
    margin-bottom: 5px;
  }
}
.news-details-area .blog-post-details .tag-share-wrap .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--header);
}
.news-details-area .blog-post-details .tag-share-wrap .social-share span {
  font-size: 18px;
  color: var(--header);
  font-weight: 600;
}
.news-details-area .blog-post-details .tag-share-wrap .social-share a {
  font-size: 18px;
  color: var(--header);
}
.news-details-area .blog-post-details .tag-share-wrap .social-share a:not(:last-child) {
  margin-right: 10px;
}
.news-details-area .blog-post-details .tag-share-wrap .social-share a:hover {
  color: var(--theme);
}
.news-details-area .blog-post-details .comments-area {
  margin-top: 40px;
  padding: 50px 40px;
  background-color: var(--white);
  border-radius: 8px;
}
.news-details-area .blog-post-details .comments-area .comments-heading {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area .comments-heading {
    margin-bottom: 20px;
  }
}
.news-details-area .blog-post-details .comments-area .comments-heading h3 {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area .comments-heading h3 {
    font-size: 28px;
  }
}
.news-details-area .blog-post-details .comments-area .blog-single-comment {
  border-bottom: 1px solid rgba(30, 29, 35, 0.2);
}
.news-details-area .blog-post-details .comments-area .blog-single-comment.bb-none {
  border: none;
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area .blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h3 {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 20px;
}
.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .star i {
  color: var(--theme);
  font-size: 14px;
}
.news-details-area .blog-post-details .comments-area .blog-single-comment .content .reply {
  border-radius: 30px;
  padding: 5px 15px;
  font-weight: 400;
  background-color: var(--header);
  color: var(--theme);
}
.news-details-area .blog-post-details .comment-form-wrap {
  background-color: var(--white);
  border-radius: 8px;
  padding: 50px 40px;
  margin-top: 40px;
}
.news-details-area .blog-post-details .comment-form-wrap h3 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .comment-form-wrap h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.news-details-area .blog-post-details .comment-form-wrap .form-clt input, .news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: #F4F1EA;
  border: none;
  padding: 16px 20px;
  font-weight: 500;
  border-radius: 5px;
  font-size: 16px;
}
.news-details-area .blog-post-details .comment-form-wrap .form-clt input::placeholder, .news-details-area .blog-post-details .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--text);
}
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
  padding-bottom: 100px;
}

.main-sideber .single-sideber-widget {
  margin-bottom: 30px;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
}
.main-sideber .single-sideber-widget .search-widget form {
  width: 100%;
  position: relative;
}
.main-sideber .single-sideber-widget .search-widget form input {
  background-color: #F4F1EA;
  font-size: 18px;
  font-weight: 400;
  padding: 16px 20px;
  width: 100%;
  border: none;
  color: var(--text);
  border-radius: 6px;
}
.main-sideber .single-sideber-widget .search-widget form button {
  position: absolute;
  right: -2px;
  top: 0;
  width: 58px;
  border-radius: 6px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme);
  color: var(--header);
  text-align: center;
  transition: all 0.3s ease-in-out;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.main-sideber .single-sideber-widget .search-widget form button:hover {
  background-color: var(--header);
  color: var(--white);
}
.main-sideber .single-sideber-widget .widget-title {
  margin-bottom: 20px;
}
.main-sideber .single-sideber-widget .widget-title h3 {
  font-weight: 600;
  font-size: 22px;
}
.main-sideber .single-sideber-widget .amenities-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}
.main-sideber .single-sideber-widget .amenities-list li:not(:last-child) {
  margin-bottom: 20px;
}
.main-sideber .single-sideber-widget .category-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  background-color: #F4F1EA;
  padding: 22px 25px;
  font-family: "Signika", sans-serif;
  line-height: 1;
  text-transform: capitalize;
  border-radius: 8px;
}
.main-sideber .single-sideber-widget .category-list li a {
  color: var(--header);
}
.main-sideber .single-sideber-widget .category-list li i {
  transition: all 0.4s ease-in-out;
  color: var(--header);
}
.main-sideber .single-sideber-widget .category-list li:not(:last-child) {
  margin-bottom: 20px;
}
.main-sideber .single-sideber-widget .category-list li span b {
  font-weight: 400;
  color: var(--theme);
}
.main-sideber .single-sideber-widget .category-list li:hover {
  background-color: var(--theme);
}
.main-sideber .single-sideber-widget .category-list li:hover a {
  color: var(--header);
}
.main-sideber .single-sideber-widget .category-list li:hover i, .main-sideber .single-sideber-widget .category-list li:hover span {
  color: var(--header);
}
.main-sideber .single-sideber-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-thumb img {
  border-radius: 8px;
}
.main-sideber .single-sideber-widget .recent-post-area .recent-items:not(:last-child) {
  margin-bottom: 20px;
}
.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content h4 {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 17px;
  line-height: 150%;
  font-family: "Signika", sans-serif;
}
.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content h4 a:hover {
  color: var(--theme);
}
.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content ul li {
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
}
.main-sideber .single-sideber-widget .tagcloud a {
  display: inline-block;
  padding: 12px 18px;
  line-height: 1;
  font-weight: 500;
  font-size: 14px;
  background: #F4F1EA;
  font-family: "Signika", sans-serif;
  margin-right: 10px;
  margin-bottom: 10px;
  text-transform: capitalize;
  border-radius: 4px;
  color: var(--header);
}
.main-sideber .single-sideber-widget .tagcloud a:last-child {
  margin-right: 0;
}
.main-sideber .single-sideber-widget .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--header);
}

.news-standard-wrapper .news-standard-items .news-card-items-4 {
  margin-bottom: 30px;
}
.news-standard-wrapper .news-standard-items .news-card-items-4 .news-image {
  overflow: hidden;
  border-radius: 12px;
}
.news-standard-wrapper .news-standard-items .news-card-items-4 .news-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
  border-radius: 12px;
}
.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .date-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .date-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .date-list li i {
  margin-right: 10px;
  color: var(--theme2);
}
.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content h2 {
  margin-bottom: 10px;
  font-size: 36px;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .news-standard-wrapper .news-standard-items .news-card-items-4 .news-content h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .news-standard-wrapper .news-standard-items .news-card-items-4 .news-content h2 {
    font-size: 25px;
  }
}
.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content h2 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content h2 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content p {
  max-width: 656px;
}
.news-standard-wrapper .news-standard-items .news-card-items-4 .news-content .theme-btn {
  margin-top: 25px;
}
.news-standard-wrapper .news-standard-items .news-card-items-4:hover .news-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.news-section-two {
  position: relative;
}
.news-section-two .shape-1 {
  position: absolute;
  top: 30px;
  left: 130px;
}
.news-section-two .shape-2 {
  position: absolute;
  top: 0;
  right: 20px;
}

.team-section-two .container {
  max-width: 1622px;
}

.team-card-items-2 {
  padding: 15px;
  border-radius: 12px;
  background-color: var(--white);
  text-align: center;
  padding-bottom: 0;
}
@media (max-width: 1199px) {
  .team-card-items-2 {
    margin-top: 30px;
  }
}
.team-card-items-2 .thumb {
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  z-index: 9;
}
.team-card-items-2 .thumb img {
  border-radius: 100%;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.team-card-items-2 .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.team-card-items-2 .thumb .team-icon {
  gap: 10px;
  position: absolute;
  bottom: 6%;
  left: 0;
  transform: translateY(-50%);
  right: 0;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.team-card-items-2 .thumb .team-icon li {
  transform: scaleX(0);
  transition: 0.4s ease-in-out;
  cursor: pointer;
}
.team-card-items-2 .thumb .team-icon li a {
  background-color: var(--white);
  width: 48px;
  height: 48px;
  line-height: 48px;
  display: inline-block;
  color: var(--header);
  font-size: 16px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}
.team-card-items-2 .thumb .team-icon li a:hover {
  background-color: var(--theme);
}
.team-card-items-2 .content {
  padding: 25px 25px;
}
.team-card-items-2 .content .title {
  font-size: 24px;
  margin-bottom: 3px;
}
.team-card-items-2 .content .title a:hover {
  color: var(--theme2);
}
.team-card-items-2:hover .thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.team-card-items-2:hover .thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.team-card-items-2:hover .thumb .team-icon li {
  transform: scaleX(1);
}
.team-card-items-2.style-top {
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .team-card-items-2.style-top {
    margin-top: 30px;
  }
}

.team-section-two {
  position: relative;
  z-index: 1;
}
.team-section-two .shape {
  position: absolute;
  right: 76px;
  top: 190px;
  z-index: -1;
}

.team-details-image {
  border-radius: 12px;
}
.team-details-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
@media (max-width: 1399px) {
  .team-details-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }
}

.team-details-content {
  margin-left: 60px;
}
@media (max-width: 1199px) {
  .team-details-content {
    margin-left: 0;
  }
}
.team-details-content .top-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--theme2);
}
.team-details-content h2 {
  font-size: 44px;
  font-weight: 600;
  margin-top: 10px;
}
@media (max-width: 575px) {
  .team-details-content h2 {
    font-size: 38px;
  }
}
.team-details-content .team-text {
  margin-top: 10px;
  font-size: 18px;
}
.team-details-content .progress-wrap {
  margin-top: 20px;
}
.team-details-content .progress-wrap .pro-items {
  width: 100%;
}
.team-details-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 30px;
}
.team-details-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.team-details-content .progress-wrap .pro-items .pro-head .title {
  color: var(--header);
}
.team-details-content .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--header);
}
.team-details-content .progress-wrap .pro-items .progress {
  background: rgba(0, 131, 62, 0.1);
  justify-content: flex-start;
  align-items: center;
  position: relative;
  display: flex;
  height: 6px;
  width: 100%;
}
.team-details-content .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  background: var(--theme2);
  height: 6px;
  width: 0;
}
.team-details-content .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.team-details-content .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 75%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 80%;
  }
}
.team-details-content ul {
  margin-top: 30px;
}
.team-details-content ul li {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  font-weight: 500;
}
.team-details-content ul li .icon {
  font-size: 18px;
  color: var(--theme2);
}
.team-details-content ul li p {
  color: #616766;
  font-size: 16px;
  font-weight: 500;
}
.team-details-content ul li p a {
  color: #616766;
}
.team-details-content ul li:not(:last-child) {
  margin-bottom: 15px;
}
.team-details-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 80px;
}
.team-details-content h4 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 50px;
}
.team-details-content .list-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .team-details-content .list-items {
    gap: 25px;
    flex-wrap: wrap;
  }
}
.team-details-content .list-items ul li {
  font-size: 16px;
  font-weight: 400;
  color: rgb(100, 100, 100);
}
.team-details-content .list-items ul li:not(:last-child) {
  margin-bottom: 15px;
}

.food-menu-items {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 575px) {
  .food-menu-items {
    flex-wrap: wrap;
    gap: 18px;
  }
}
.food-menu-items .content {
  width: 100%;
  position: relative;
}
.food-menu-items .content .price {
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  color: var(--theme2);
  font-family: "Signika", sans-serif;
  position: absolute;
  top: 0;
  right: 0;
}
.food-menu-items .content .title {
  border-bottom: 1.5px dashed rgba(30, 29, 35, 0.2);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.food-menu-items .content p {
  font-size: 15px;
}
.food-menu-items:hover .thumb img {
  animation: wobblew 1.5s ease-in-out;
}

.food-menu-wrapper {
  max-width: 595px;
}
@media (max-width: 991px) {
  .food-menu-wrapper {
    max-width: initial;
  }
}
.food-menu-wrapper.style-2 {
  margin-left: auto;
}

.food-menu-section {
  position: relative;
}
.food-menu-section .food-menu-line {
  position: absolute;
  top: 63%;
  left: 50.4%;
  text-align: center;
  transform: translate(-50%, -50%);
}
@media (max-width: 1399px) {
  .food-menu-section .food-menu-line {
    display: none;
  }
}
.food-menu-section .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  margin-top: 40px;
  margin-bottom: 30px;
}
.food-menu-section .nav .nav-item .nav-link {
  display: inline-block;
  font-size: 15px;
  color: var(--header);
  text-transform: capitalize;
  border: 1.5px dashed rgba(30, 29, 35, 0.2);
  padding: 0;
  height: 42px;
  line-height: 42px;
  padding: 0 16px;
  border-radius: 4px;
}
.food-menu-section .nav .nav-item .nav-link.active {
  background-color: var(--theme);
  border-color: var(--theme);
}

.best-food-menu-list-two {
  margin-top: 30px;
}
.best-food-menu-list-two li {
  background-color: var(--white);
  border-radius: 20px;
  padding: 21.5px 22px;
  display: flex;
  align-items: center;
  gap: 17px;
  position: relative;
  z-index: 99;
}
.best-food-menu-list-two li:not(:last-child) {
  margin-bottom: 15px;
}
.best-food-menu-list-two li .content {
  width: 100%;
}
.best-food-menu-list-two li .content .star {
  color: #FF7C2B;
  font-size: 14px;
}
.best-food-menu-list-two li .content .title {
  font-size: 18px;
  margin-bottom: 10px;
}
.best-food-menu-list-two li .content .price-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.best-food-menu-list-two li .content .price-list span {
  font-size: 18px;
  font-weight: 600;
  font-family: "Signika", sans-serif;
  color: var(--theme2);
}
.best-food-menu-list-two li .content .price-list .cart-icon {
  font-size: 20px;
  color: var(--theme);
}

.best-food-menu-wrap-two {
  border-radius: 20px;
  padding: 57px 40px 45px;
  padding-right: 18px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  align-items: end;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .best-food-menu-wrap-two {
    justify-content: space-between;
  }
}
@media (max-width: 575px) {
  .best-food-menu-wrap-two {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.best-food-menu-wrap-two .bg-shape {
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 575px) {
  .best-food-menu-wrap-two .bg-shape {
    display: none;
  }
}
.best-food-menu-wrap-two .bg-shape img {
  height: 100%;
}
.best-food-menu-wrap-two .content {
  position: relative;
  z-index: 9;
}
.best-food-menu-wrap-two .content .title {
  color: var(--white);
  text-transform: uppercase;
}
.best-food-menu-wrap-two .content .text {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.best-food-menu-wrap-two .content .price-items {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  margin-bottom: 45px;
}
.best-food-menu-wrap-two .content .price-items span {
  font-size: 32px;
  font-weight: 600;
  font-family: "Signika", sans-serif;
  color: var(--theme2);
}
.best-food-menu-wrap-two .content .price-items p {
  font-size: 24px;
  font-weight: 600;
  font-family: "Signika", sans-serif;
  color: #9D9D9D;
}
.best-food-menu-wrap-two .rice-image {
  position: relative;
}
.best-food-menu-wrap-two .rice-image .discount {
  position: absolute;
  top: -30%;
  left: 20%;
  -webkit-animation: scale-up-two 6s infinite linear;
  animation: scale-up-two 6s infinite linear;
}
@media (max-width: 575px) {
  .best-food-menu-wrap-two .rice-image img {
    width: 100%;
  }
}

.best-food-menu-two .bottom-text {
  text-align: center;
  color: #76756D;
  font-size: 18px;
  max-width: 730px;
  margin: 0 auto;
  margin-top: 50px;
}
.best-food-menu-two .bottom-text p {
  margin-bottom: 30px;
}

.best-food-menu-two {
  position: relative;
}
.best-food-menu-two .shape {
  position: absolute;
  bottom: 130px;
  right: 40px;
}

.special-menu-banner-two {
  position: relative;
}
.special-menu-banner-two .shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
.special-menu-banner-two .shape-2 {
  position: absolute;
  top: 0;
  right: 0;
}

.shop-category-section-2 {
  position: relative;
}
.shop-category-section-2 .shape {
  position: absolute;
  right: 145px;
  top: 120px;
}

.food-menu-items-7 {
  margin-top: 40px;
}
.food-menu-items-7 .content {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(201, 171, 129, 0.5);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.food-menu-items-7 .content .title {
  font-size: 24px;
  font-weight: 600;
  color: #C9AB81;
}
.food-menu-items-7 .content .price {
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  color: #C9AB81;
  font-family: "Signika", sans-serif;
}
.food-menu-items-7 p {
  font-size: 15px;
  font-weight: 500;
  color: rgb(255, 255, 255);
}

.menu-list-section-7 {
  background-color: #1F3634;
}
.menu-list-section-7 .section-title .sub-title {
  color: #C9AB81;
}
.menu-list-section-7 .menu-btn {
  text-align: center;
  margin-top: 50px;
}
.menu-list-section-7 .menu-btn .theme-btn {
  background: transparent;
  border: 1px solid rgb(201, 171, 129);
  color: #C9AB81;
  border-radius: 0;
}
.menu-list-section-7 .menu-btn .theme-btn::before {
  background-color: var(--white);
}
.menu-list-section-7 .menu-btn .theme-btn:hover {
  color: #083C52;
}

.best-delivery-wrapper-3 {
  position: relative;
}
.best-delivery-wrapper-3 .chili {
  position: absolute;
  top: 330px;
  left: 44%;
}
@media (max-width: 1399px) {
  .best-delivery-wrapper-3 .chili {
    display: none;
  }
}
.best-delivery-wrapper-3 .frame-shape {
  position: absolute;
  right: 0;
  top: 100px;
}
@media (max-width: 1399px) {
  .best-delivery-wrapper-3 .frame-shape {
    display: none;
  }
}
.best-delivery-wrapper-3 .best-delivery-content .text {
  max-width: 490px;
  margin-top: 45px;
  margin-bottom: 45px;
}
@media (max-width: 1399px) {
  .best-delivery-wrapper-3 .best-delivery-content .text {
    margin-bottom: 30px;
    margin-top: 30px;
  }
}
.best-delivery-wrapper-3 .delevary-bike img {
  width: 100%;
  height: 100%;
}

.best-food-menu-wrapper-3 .food-menu-image {
  margin-left: -120px;
  height: 680px;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
}
@media (max-width: 1600px) {
  .best-food-menu-wrapper-3 .food-menu-image {
    margin-left: 0;
  }
}
@media (max-width: 1399px) {
  .best-food-menu-wrapper-3 .food-menu-image {
    height: 500px;
    margin-left: 0;
  }
  .best-food-menu-wrapper-3 .food-menu-image img {
    object-fit: cover;
  }
}
@media (max-width: 991px) {
  .best-food-menu-wrapper-3 .food-menu-image {
    height: 400px;
  }
  .best-food-menu-wrapper-3 .food-menu-image img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .best-food-menu-wrapper-3 .food-menu-image {
    height: 350px;
  }
  .best-food-menu-wrapper-3 .food-menu-image img {
    object-fit: cover;
  }
}
.best-food-menu-wrapper-3 .food-menu-image img {
  width: 100%;
  height: 100%;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
}
@media (max-width: 1399px) {
  .best-food-menu-wrapper-3 .food-menu-image img {
    border-radius: 12px;
  }
}
.best-food-menu-wrapper-3 .food-menu-mid-item {
  margin-left: 80px;
  margin-right: 80px;
}
@media (max-width: 1399px) {
  .best-food-menu-wrapper-3 .food-menu-mid-item {
    margin-left: 0;
    margin-right: 0;
  }
}
.best-food-menu-wrapper-3 .food-menu-mid-item .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  margin-top: 40px;
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .best-food-menu-wrapper-3 .food-menu-mid-item .nav {
    margin-bottom: 40px;
    margin-top: 20px;
    gap: 15px;
  }
}
.best-food-menu-wrapper-3 .food-menu-mid-item .nav .nav-item .nav-link {
  display: inline-block;
  font-size: 15px;
  color: var(--header);
  text-transform: capitalize;
  border: 1.5px dashed rgba(30, 29, 35, 0.2);
  padding: 0;
  height: 42px;
  line-height: 42px;
  padding: 0 16px;
  border-radius: 4px;
}
.best-food-menu-wrapper-3 .food-menu-mid-item .nav .nav-item .nav-link.active {
  background-color: var(--theme);
  border-color: var(--theme);
}
.best-food-menu-wrapper-3 .food-menu-mid-item .food-menu-items-3 .food-menu-itemss {
  margin-top: 55px;
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 1399px) {
  .best-food-menu-wrapper-3 .food-menu-mid-item .food-menu-items-3 .food-menu-itemss {
    margin-top: 30px;
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .best-food-menu-wrapper-3 .food-menu-mid-item .food-menu-items-3 .food-menu-itemss {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.best-food-menu-wrapper-3 .food-menu-mid-item .food-menu-items-3 .food-menu-itemss .thumb {
  width: 110px;
  height: 92px;
}
.best-food-menu-wrapper-3 .food-menu-mid-item .food-menu-items-3 .food-menu-itemss .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.best-food-menu-wrapper-3 .food-menu-mid-item .food-menu-items-3 .food-menu-itemss .content {
  width: 100%;
  position: relative;
}
.best-food-menu-wrapper-3 .food-menu-mid-item .food-menu-items-3 .food-menu-itemss .content .price {
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  color: var(--theme2);
  font-family: "Signika", sans-serif;
  position: absolute;
  top: 0;
  right: 0;
}
.best-food-menu-wrapper-3 .food-menu-mid-item .food-menu-items-3 .food-menu-itemss .content .title {
  border-bottom: 1.5px dashed rgba(30, 29, 35, 0.2);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.best-food-menu-wrapper-3 .food-menu-mid-item .food-menu-items-3 .food-menu-itemss .content p {
  font-size: 15px;
}
.best-food-menu-wrapper-3 .food-menu-mid-item .food-menu-items-3 .food-menu-itemss:hover .thumb img {
  animation: wobblew 1.5s ease-in-out;
}
.best-food-menu-wrapper-3 .food-menu-mid-item .food-menu-items-3 .food-button {
  text-align: center;
  margin-top: 70px;
}
@media (max-width: 1399px) {
  .best-food-menu-wrapper-3 .food-menu-mid-item .food-menu-items-3 .food-button {
    margin-top: 30px;
  }
}
.best-food-menu-wrapper-3 .food-menu-image-2 {
  margin-top: 70px;
}
@media (max-width: 1399px) {
  .best-food-menu-wrapper-3 .food-menu-image-2 {
    margin-top: 0;
    height: 500px;
  }
  .best-food-menu-wrapper-3 .food-menu-image-2 img {
    object-fit: cover;
  }
}
@media (max-width: 991px) {
  .best-food-menu-wrapper-3 .food-menu-image-2 {
    height: 400px;
  }
  .best-food-menu-wrapper-3 .food-menu-image-2 img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .best-food-menu-wrapper-3 .food-menu-image-2 {
    height: 350px;
  }
  .best-food-menu-wrapper-3 .food-menu-image-2 img {
    object-fit: cover;
  }
}
.best-food-menu-wrapper-3 .food-menu-image-2 img {
  width: 100%;
  height: 100%;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
}
@media (max-width: 1399px) {
  .best-food-menu-wrapper-3 .food-menu-image-2 img {
    border-radius: 12px;
  }
}

.food-menu-section-3 {
  background-color: #F4F1EA;
  position: relative;
}
.food-menu-section-3 .container {
  max-width: 1651px;
}
.food-menu-section-3 .right-shape {
  position: absolute;
  top: 315px;
  right: 65px;
}
@media (max-width: 1600px) {
  .food-menu-section-3 .right-shape {
    display: none;
  }
}
.food-menu-section-3 .right-shape-2 {
  position: absolute;
  right: 0;
  bottom: 200px;
}
@media (max-width: 1600px) {
  .food-menu-section-3 .right-shape-2 {
    display: none;
  }
}

.food-offer-wrapper-3 .food-offer-banner {
  border-radius: 20px;
  padding: 40px 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1399px) {
  .food-offer-wrapper-3 .food-offer-banner {
    padding: 25px;
  }
}
.food-offer-wrapper-3 .food-offer-banner .special-thumb {
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .food-offer-wrapper-3 .food-offer-banner .special-thumb {
    margin-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .food-offer-wrapper-3 .food-offer-banner .special-thumb {
    margin-bottom: 30px;
  }
}
.food-offer-wrapper-3 .food-offer-banner .food-img {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1600px) {
  .food-offer-wrapper-3 .food-offer-banner .food-img {
    max-width: 210px;
  }
}
@media (max-width: 1399px) {
  .food-offer-wrapper-3 .food-offer-banner .food-img {
    max-width: 85px;
  }
}
@media (max-width: 991px) {
  .food-offer-wrapper-3 .food-offer-banner .food-img {
    max-width: 127px;
  }
}
.food-offer-wrapper-3 .food-offer-banner .food-img.style-2 {
  top: 40px;
}
@media (max-width: 1600px) {
  .food-offer-wrapper-3 .food-offer-banner .food-img.style-2 {
    max-width: 175px;
    bottom: 20px;
  }
}
@media (max-width: 1399px) {
  .food-offer-wrapper-3 .food-offer-banner .food-img.style-2 {
    top: initial;
    bottom: 40px;
    max-width: 85px;
  }
}
@media (max-width: 991px) {
  .food-offer-wrapper-3 .food-offer-banner .food-img.style-2 {
    height: 115px;
    max-width: 127px;
  }
}
.food-offer-wrapper-3 .food-offer-banner .food-img img {
  width: 100%;
  height: 100%;
}
.food-offer-wrapper-3 .food-offer-banner .info-cont {
  margin-bottom: 26px;
}
.food-offer-wrapper-3 .food-offer-banner .info-cont h2 {
  text-transform: uppercase;
  color: white;
  font-size: 52px;
  line-height: 94%;
  font-weight: 600;
}
@media (max-width: 1399px) {
  .food-offer-wrapper-3 .food-offer-banner .info-cont h2 {
    font-size: 30px;
  }
}
.food-offer-wrapper-3 .food-offer-banner .info-cont p {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.food-offer-wrapper-3 .food-offer-banner .info-cont h3 {
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
}
.food-offer-wrapper-3 .food-offer-banner .info-items {
  margin-top: 64px;
}
@media (max-width: 1399px) {
  .food-offer-wrapper-3 .food-offer-banner .info-items {
    margin-top: 30px;
  }
}
.food-offer-wrapper-3 .food-offer-banner .info-items p {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}
.food-offer-wrapper-3 .food-offer-banner .info-items .number {
  display: inline-block;
  font-size: 30px;
  font-weight: 600;
  font-family: "Signika", sans-serif;
  color: var(--white);
  margin-top: 5px;
}
@media (max-width: 1399px) {
  .food-offer-wrapper-3 .food-offer-banner .info-items .number {
    font-size: 22px;
  }
}
.food-offer-wrapper-3 .food-offer-banner .info-items .number:hover {
  color: var(--theme);
}
.food-offer-wrapper-3 .food-offer-banner .shape {
  position: absolute;
  top: -90px;
  right: 130px;
}
@media (max-width: 1600px) {
  .food-offer-wrapper-3 .food-offer-banner .shape {
    display: none;
  }
}
.food-offer-wrapper-3 .hot-pizza-image {
  position: relative;
  height: 596px;
  border-radius: 12px;
}
@media (max-width: 1399px) {
  .food-offer-wrapper-3 .hot-pizza-image {
    height: 550px;
  }
  .food-offer-wrapper-3 .hot-pizza-image img {
    object-fit: cover;
  }
}
@media (max-width: 991px) {
  .food-offer-wrapper-3 .hot-pizza-image {
    height: 450px;
  }
  .food-offer-wrapper-3 .hot-pizza-image img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .food-offer-wrapper-3 .hot-pizza-image {
    height: 350px;
  }
  .food-offer-wrapper-3 .hot-pizza-image img {
    object-fit: cover;
  }
}
.food-offer-wrapper-3 .hot-pizza-image .food-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 45px;
  bottom: 45px;
  left: 160px;
  right: 160px;
}
@media (max-width: 1600px) {
  .food-offer-wrapper-3 .hot-pizza-image .food-content {
    top: 30px;
    bottom: 30px;
    left: 100px;
    right: 100px;
  }
}
@media (max-width: 1399px) {
  .food-offer-wrapper-3 .hot-pizza-image .food-content {
    top: 30px;
    bottom: 30px;
    left: 30px;
    right: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .food-offer-wrapper-3 .hot-pizza-image .food-content {
    justify-content: center;
  }
}
@media (max-width: 470px) {
  .food-offer-wrapper-3 .hot-pizza-image .food-content {
    justify-content: start;
  }
}
.food-offer-wrapper-3 .hot-pizza-image .food-content h2 {
  font-size: 155px;
  font-weight: 400;
  color: var(--white);
  font-family: "Bylast", sans-serif;
  letter-spacing: -4%;
  line-height: 83%;
}
@media (max-width: 1399px) {
  .food-offer-wrapper-3 .hot-pizza-image .food-content h2 {
    font-size: 90px;
  }
}
@media (max-width: 991px) {
  .food-offer-wrapper-3 .hot-pizza-image .food-content h2 {
    font-size: 50px;
  }
}
.food-offer-wrapper-3 .hot-pizza-image .food-content h2 span {
  color: var(--theme);
  font-family: "Bylast", sans-serif;
}
.food-offer-wrapper-3 .hot-pizza-image .food-content .circle-box {
  width: 163px;
  min-width: 163px;
  height: 163px;
  text-align: center;
  border-radius: 100%;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background-color: var(--theme);
  font-size: 16px;
  font-weight: 600;
  position: relative;
}
@media (max-width: 767px) {
  .food-offer-wrapper-3 .hot-pizza-image .food-content .circle-box {
    width: 120px;
    min-width: 120px;
    height: 120px;
  }
}
.food-offer-wrapper-3 .hot-pizza-image .food-content .circle-box span {
  position: relative;
  z-index: 9;
}
.food-offer-wrapper-3 .hot-pizza-image .food-content .circle-box::before {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: var(--header);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
  z-index: 0;
  opacity: 0;
}
.food-offer-wrapper-3 .hot-pizza-image .food-content .circle-box::after {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  content: "";
  background: var(--theme);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 1.8s;
  z-index: 0;
  opacity: 0;
}
.food-offer-wrapper-3 .hot-pizza-image .food-content .circle-box:hover::before {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.food-offer-wrapper-3 .hot-pizza-image .food-content .circle-box:hover::after {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.food-offer-wrapper-3 .hot-pizza-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.food-offer-section-3 .container {
  max-width: 1651px;
}

.best-food-selling-item-4 {
  margin-top: 40px;
  display: flex;
  align-items: center;
  align-items: start;
  gap: 25px;
  background-color: var(--white);
  border-radius: 20px;
  padding: 27px 25px 23px 30px;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .best-food-selling-item-4 {
    flex-wrap: wrap;
  }
}
.best-food-selling-item-4 .thumb {
  width: 110px;
  height: 97px;
}
.best-food-selling-item-4 .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.best-food-selling-item-4 .content {
  width: 100%;
  position: relative;
}
.best-food-selling-item-4 .content .price {
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  color: var(--theme2);
  font-family: "Signika", sans-serif;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1399px) {
  .best-food-selling-item-4 .content .price {
    font-size: 22px;
  }
}
.best-food-selling-item-4 .content .title {
  border-bottom: 1.5px dashed rgba(30, 29, 35, 0.2);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.best-food-selling-item-4 .content p {
  font-size: 15px;
}
.best-food-selling-item-4:hover .thumb img {
  animation: wobblew 1.5s ease-in-out;
}

.food-category-card-item {
  position: relative;
  padding: 30px;
}
.food-category-card-item::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--white);
  box-shadow: 8px 6px 182.2px -2px rgba(10, 3, 46, 0.06);
  border-radius: 12px;
  top: initial;
  height: 310px;
  z-index: -1;
}
.food-category-card-item .arrow {
  width: 43px;
  height: 43px;
  line-height: 43px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--theme);
  color: var(--black);
  position: absolute;
  right: 30px;
  bottom: -15px;
}
.food-category-card-item .arrow:hover {
  background-color: var(--header);
  color: var(--white);
}
.food-category-card-item .food {
  text-align: center;
  margin: 0 auto;
  height: 210px;
  max-width: 222px;
}
.food-category-card-item .food img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.food-category-card-item .food-content {
  margin-top: 35px;
}
.food-category-card-item .food-content .content-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.food-category-card-item .food-content .content-item .item .star {
  color: #FF7C2B;
  font-size: 14px;
  margin-bottom: 5px;
}
.food-category-card-item .food-content .content-item .item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}
.food-category-card-item .food-content .content-item .item h3 a:hover {
  color: var(--theme);
}
.food-category-card-item .food-content .content-item .item p {
  font-size: 15px;
}
.food-category-card-item .food-content .content-item .heart {
  color: #868686;
}
.food-category-card-item .food-content h4 {
  font-size: 24px;
  font-weight: 600;
  color: var(--theme2);
}
.food-category-card-item:hover .food img {
  animation: wobblew 1.5s ease-in-out;
}

.food-category-section {
  position: relative;
}
.food-category-section .left-shape {
  position: absolute;
  left: 0;
  top: 150px;
}
@media (max-width: 1399px) {
  .food-category-section .left-shape {
    display: none;
  }
}
.food-category-section .left-shape-2 {
  position: absolute;
  left: 100px;
  bottom: 200px;
}
@media (max-width: 1600px) {
  .food-category-section .left-shape-2 {
    display: none;
  }
}
.food-category-section .right-shape {
  position: absolute;
  top: 270px;
  right: 168px;
}
@media (max-width: 1600px) {
  .food-category-section .right-shape {
    display: none;
  }
}
.food-category-section .right-shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1600px) {
  .food-category-section .right-shape-2 {
    display: none;
  }
}

.food-banner-items {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  padding: 40px 30px;
  z-index: 1;
  margin-top: 22px;
}
.food-banner-items .shape-image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .food-banner-items .shape-image {
    display: none;
  }
}
.food-banner-items .chiken-image {
  position: absolute;
  bottom: 0px;
  right: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .food-banner-items .chiken-image {
    display: none;
  }
}
.food-banner-items .chiken-image img {
  width: 100%;
  height: 100%;
}
.food-banner-items .offer-image {
  position: absolute;
  right: 190px;
  top: 0;
}
@media (max-width: 767px) {
  .food-banner-items .offer-image {
    display: none;
  }
}
.food-banner-items .content .title {
  font-size: 62px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  line-height: 94%;
}
@media (max-width: 1399px) {
  .food-banner-items .content .title {
    font-size: 35px;
  }
}
.food-banner-items .content .text {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-top: 8px;
}
.food-banner-items .content .price {
  font-size: 32px;
  font-weight: 600;
  color: #00BF57;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  .food-banner-items .content .price {
    font-size: 30px;
  }
}
.food-banner-items .content .price span {
  color: #9D9D9D;
  font-size: 24px;
}
.food-banner-items .content .coming-soon-time {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .food-banner-items .content .coming-soon-time {
    margin-top: 23px;
  }
}
.food-banner-items .content .coming-soon-time .timer-content {
  text-align: center;
}
.food-banner-items .content .coming-soon-time .timer-content h2 {
  color: var(--theme);
  font-size: 28px;
  line-height: 90%;
}
.food-banner-items .content .coming-soon-time .timer-content span {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
}
.food-banner-items .content .coming-soon-time .timer-dot {
  display: grid;
  align-items: center;
  gap: 20px;
  margin-top: -10px;
}
.food-banner-items .content .coming-soon-time .timer-dot span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: var(--white);
}
@media (max-width: 991px) {
  .food-banner-items .content .coming-soon-time .timer-dot span {
    width: 8px;
    height: 8px;
  }
}
@media (max-width: 767px) {
  .food-banner-items .content .coming-soon-time .timer-dot span {
    width: 5px;
    height: 5px;
    border-radius: 5px;
  }
}

.food-menu-wrapper-4 .food-menu-box-items-4 {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  padding: 40px 40px 270px;
  z-index: 1;
  height: 100%;
}
@media (max-width: 1399px) {
  .food-menu-wrapper-4 .food-menu-box-items-4 {
    padding: 30px 30px 200px;
  }
}
.food-menu-wrapper-4 .food-menu-box-items-4 .burger-image {
  position: absolute;
  bottom: 0px;
  right: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .food-menu-wrapper-4 .food-menu-box-items-4 .burger-image {
    max-width: 300px;
  }
}
.food-menu-wrapper-4 .food-menu-box-items-4 .burger-image img {
  width: 100%;
  height: 100%;
}
.food-menu-wrapper-4 .food-menu-box-items-4 .content .title {
  font-size: 62px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  line-height: 94%;
}
@media (max-width: 1399px) {
  .food-menu-wrapper-4 .food-menu-box-items-4 .content .title {
    font-size: 45px;
  }
}
.food-menu-wrapper-4 .food-menu-box-items-4 .content .text {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-top: 8px;
}
.food-menu-wrapper-4 .food-menu-box-items-4 .content .price {
  font-size: 32px;
  font-weight: 600;
  color: var(--theme2);
  margin-top: 10px;
  margin-bottom: 30px;
}
.food-menu-wrapper-4 .food-menu-box-items-4 .content .price span {
  color: #9D9D9D;
  font-size: 24px;
}
.food-menu-wrapper-4 .food-menu-box-items-4 .discount-boxx {
  position: absolute;
  top: 155px;
  right: 80px;
}
@media (max-width: 1399px) {
  .food-menu-wrapper-4 .food-menu-box-items-4 .discount-boxx {
    right: 20px;
  }
  .food-menu-wrapper-4 .food-menu-box-items-4 .discount-boxx img {
    width: 100px;
  }
  .food-menu-wrapper-4 .food-menu-box-items-4 .discount-boxx .cont span {
    font-size: 26px;
  }
}
.food-menu-wrapper-4 .food-menu-box-items-4 .discount-boxx .cont {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.food-menu-wrapper-4 .food-menu-box-items-4 .discount-boxx .cont p {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  font-family: "Signika", sans-serif;
}
.food-menu-wrapper-4 .food-menu-box-items-4 .discount-boxx .cont span {
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  font-family: "Signika", sans-serif;
}
.food-menu-wrapper-4 .food-menu-box-items-4 .discount-boxx img {
  animation: cir36 10s linear infinite;
}
.food-menu-wrapper-4 .food-menu-box-items-4:hover .burger-image {
  right: -30px;
}
.food-menu-wrapper-4 .food-menu-bg-box-4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  border-radius: 20px;
}
@media (max-width: 1399px) {
  .food-menu-wrapper-4 .food-menu-bg-box-4 {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .food-menu-wrapper-4 .food-menu-bg-box-4 {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.food-menu-wrapper-4 .food-menu-bg-box-4 .burger-imagee img {
  width: 100%;
  height: 100%;
}
.food-menu-wrapper-4 .food-menu-bgg-box-4 {
  padding: 38px 35px;
  border-radius: 20px;
  padding-right: 0;
  margin-top: 20px;
}
@media (max-width: 1399px) {
  .food-menu-wrapper-4 .food-menu-bgg-box-4 {
    padding: 38px 30px;
  }
}
.food-menu-wrapper-4 .food-menu-bgg-box-4 .cont span {
  border: 1.5px solid var(--white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  color: var(--white);
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 5px;
}
.food-menu-wrapper-4 .food-menu-bgg-box-4 .cont h2 {
  color: var(--white);
  font-family: "Bylast", sans-serif;
  font-size: 52px;
  font-weight: 400;
  letter-spacing: -4%;
  margin-bottom: 10px;
}
.food-menu-wrapper-4 .food-menu-bgg-box-4 .cont h3 {
  color: var(--white);
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -2%;
  margin-bottom: 25px;
}
.food-menu-wrapper-4 .food-menu-bgg-box-4 .chicken-imagee {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 1399px) {
  .food-menu-wrapper-4 .food-menu-bgg-box-4 .chicken-imagee {
    max-width: 120px;
    bottom: 0;
    top: initial;
  }
}
.food-menu-wrapper-4 .food-menu-bgg-box-4 .chicken-imagee img {
  width: 100%;
  height: 100%;
}
.food-menu-wrapper-4 .food-menu-bgg-box-4 .tomato {
  position: absolute;
  right: 260px;
  top: 0;
}
@media (max-width: 1399px) {
  .food-menu-wrapper-4 .food-menu-bgg-box-4 .tomato {
    display: none;
  }
}
.food-menu-wrapper-4 .food-menu-bgg-box-4 .shape {
  position: absolute;
  bottom: 0;
  left: 250px;
}
@media (max-width: 1399px) {
  .food-menu-wrapper-4 .food-menu-bgg-box-4 .shape {
    display: none;
  }
}
.food-menu-wrapper-4 .food-menu-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .food-menu-wrapper-4 .food-menu-bottom {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.food-menu-wrapper-4 .food-menu-bottom .shape-image {
  position: relative;
}
@media (max-width: 1399px) {
  .food-menu-wrapper-4 .food-menu-bottom .shape-image img {
    width: 100%;
    height: 100%;
  }
}
.food-menu-wrapper-4 .food-menu-bottom .shape-image span {
  position: absolute;
  top: 20px;
  left: 60px;
  color: var(--white);
  font-size: 42px;
  font-weight: 700;
  font-family: "Signika", sans-serif;
  letter-spacing: -4%;
}
@media (max-width: 1399px) {
  .food-menu-wrapper-4 .food-menu-bottom .shape-image span {
    font-size: 22px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.food-menu-wrapper-4 .food-menu-bottom p {
  max-width: 472px;
  color: #76756D;
}

.best-selling-food-section .offer-button {
  margin-top: 40px;
}
@media (max-width: 1399px) {
  .best-selling-food-section .offer-button {
    margin-top: 30px;
  }
}

.faq-items-style-1 {
  max-width: 1095px;
  margin: 0 auto;
  margin-top: 55px;
}
.faq-items-style-1 .accordion-box {
  position: relative;
}
.faq-items-style-1 .accordion-box .block {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-radius: 12px;
  margin-bottom: 15px;
  line-height: 1;
}
.faq-items-style-1 .accordion-box .block .acc-btn {
  position: relative;
  font-size: 24px;
  color: var(--header);
  font-weight: 600;
  font-family: "Signika", sans-serif;
  cursor: pointer;
  transition: all 500ms ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 30px;
  padding-right: 14px;
  gap: 14px;
}
@media (max-width: 1399px) {
  .faq-items-style-1 .accordion-box .block .acc-btn {
    line-height: 1.4;
  }
}
@media (max-width: 470px) {
  .faq-items-style-1 .accordion-box .block .acc-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}
.faq-items-style-1 .accordion-box .block .acc-btn .icon {
  max-width: 39px;
  height: 39px;
  font-size: 16px;
  line-height: 39px;
  background-color: #F4F1EA;
  transition: all 500ms ease;
  border-radius: 50%;
  color: var(--header);
  text-align: center;
  width: 100%;
}
.faq-items-style-1 .accordion-box .block .acc-btn .icon:before {
  content: "\f067";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  color: var(--header);
  transition: all 0.3s ease;
}
.faq-items-style-1 .accordion-box .block .acc-content {
  position: relative;
  display: none;
  padding: 30px 30px;
  padding-top: 22px;
}
@media (max-width: 470px) {
  .faq-items-style-1 .accordion-box .block .acc-content {
    padding: 18px 20px;
  }
}
.faq-items-style-1 .accordion-box .block .acc-content .content {
  position: relative;
}
.faq-items-style-1 .accordion-box .block .acc-content .content .text {
  line-height: 175%;
  font-size: 18px;
  font-weight: 400;
  color: #666666;
  max-width: 885px;
}
@media (max-width: 470px) {
  .faq-items-style-1 .accordion-box .block .acc-content .content .text {
    font-size: 15px;
  }
}
.faq-items-style-1 .accordion-box .block.active-block {
  border-radius: 12px;
}
.faq-items-style-1 .accordion-box .block.active-block .acc-btn {
  background-color: var(--header);
  border-radius: 12px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  color: var(--white) !important;
}
.faq-items-style-1 .accordion-box .block.active-block .acc-btn .icon:before {
  content: "\f068";
  color: var(--header);
}
.faq-items-style-1 .accordion-box .block .acc-content.current {
  display: block;
}
.faq-items-style-1 .accordion-box .block:last-child {
  margin-bottom: 0;
}

.best-delivery-wrapper .content {
  margin-right: -30px;
}
@media (max-width: 1199px) {
  .best-delivery-wrapper .content {
    margin-right: 0;
    text-align: center;
  }
}
.best-delivery-wrapper .content .text {
  margin-top: 40px;
}
.best-delivery-wrapper .delivery-items {
  margin-left: -60px;
}
@media (max-width: 1199px) {
  .best-delivery-wrapper .delivery-items {
    margin-left: 0;
  }
}
.best-delivery-wrapper .delivery-items .delivery-image {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .best-delivery-wrapper .delivery-items .delivery-image img {
    width: 100%;
    height: 100%;
  }
}
.best-delivery-wrapper .content-2 {
  margin-left: -50px;
  text-align: right;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .best-delivery-wrapper .content-2 {
    margin-left: 0;
    text-align: center;
  }
}
.best-delivery-wrapper .content-2 .info-items {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: -50px;
  margin-top: 48px;
}
@media (max-width: 1199px) {
  .best-delivery-wrapper .content-2 .info-items {
    margin-left: 0;
    display: grid;
  }
}
.best-delivery-wrapper .content-2 .info-items p {
  font-size: 16px;
  color: var(--header);
  font-weight: 600;
}

.discount-banner-section {
  padding: 150px 70px;
  margin: 0 20px;
  border-radius: 20px;
  position: relative;
}
@media (max-width: 1199px) {
  .discount-banner-section {
    padding: 150px 40px 150px;
  }
}
@media (max-width: 767px) {
  .discount-banner-section {
    padding: 150px 32px 150px;
  }
}
@media (max-width: 575px) {
  .discount-banner-section {
    padding: 150px 25px 150px;
  }
}
.discount-banner-section .top-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media (max-width: 1199px) {
  .discount-banner-section .top-shape {
    display: none;
  }
}
.discount-banner-section .top-shape img {
  width: 100%;
}
.discount-banner-section .pizza-image {
  position: relative;
  z-index: 9;
}
@media (max-width: 1600px) {
  .discount-banner-section .pizza-image {
    max-width: 600px;
  }
  .discount-banner-section .pizza-image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .discount-banner-section .pizza-image {
    text-align: center;
    margin: 0 auto;
  }
}
.discount-banner-section .pizza-image .circle-box {
  position: absolute;
  bottom: 50px;
  right: 0;
}
@media (max-width: 991px) {
  .discount-banner-section .pizza-image .circle-box {
    max-width: 140px;
  }
}
.discount-banner-section .pizza-image .title {
  color: var(--white);
  font-size: 40px;
  font-family: "Signika", sans-serif;
  font-style: italic;
  line-height: 1;
  position: absolute;
  top: 56%;
  left: 43%;
  transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  .discount-banner-section .pizza-image .title {
    font-size: 24px;
  }
}
.discount-banner-section .flower-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30%;
}
.discount-banner-section .flower-shape img {
  height: 100%;
}
.discount-banner-section .flower-shape-2 {
  position: absolute;
  bottom: 0;
  left: 30%;
}
.discount-banner-section .pizza-shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1600px) {
  .discount-banner-section .pizza-shape-2 {
    max-width: 400px;
  }
  .discount-banner-section .pizza-shape-2 img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .discount-banner-section .pizza-shape-2 {
    max-width: 200px;
  }
}
.discount-banner-section .tomato-shape {
  position: absolute;
  right: 0;
  top: 20%;
}
@media (max-width: 1199px) {
  .discount-banner-section .tomato-shape {
    display: none;
  }
}
.discount-banner-section .discount-banner-content {
  max-width: 680px;
  text-align: center;
}
@media (max-width: 1199px) {
  .discount-banner-section .discount-banner-content {
    margin: 0 auto;
  }
}
.discount-banner-section .discount-banner-content .section-title {
  text-align: center;
}
.discount-banner-section .discount-banner-content .section-title h2 {
  text-transform: uppercase;
  color: var(--white);
  font-size: 100px;
}
@media (max-width: 1600px) {
  .discount-banner-section .discount-banner-content .section-title h2 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .discount-banner-section .discount-banner-content .section-title h2 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .discount-banner-section .discount-banner-content .section-title h2 {
    font-size: 40px;
  }
}
.discount-banner-section .discount-banner-content .text {
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 35px;
}

.comboo-banner-section {
  border-radius: 20px;
  margin: 0 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.comboo-banner-section .line-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media (max-width: 1199px) {
  .comboo-banner-section .line-image {
    top: -10px;
  }
}
.comboo-banner-section .line-image img {
  width: 100%;
}
.comboo-banner-section .burger-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1600px) {
  .comboo-banner-section .burger-shape {
    max-width: 500px;
  }
  .comboo-banner-section .burger-shape img {
    width: 100%;
  }
}
@media (max-width: 1399px) {
  .comboo-banner-section .burger-shape {
    max-width: 350px;
  }
  .comboo-banner-section .burger-shape img {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .comboo-banner-section .burger-shape {
    top: 0;
    bottom: initial;
  }
}
@media (max-width: 991px) {
  .comboo-banner-section .burger-shape {
    bottom: 0;
    top: initial;
    max-width: 200px;
  }
}
@media (max-width: 575px) {
  .comboo-banner-section .burger-shape {
    opacity: 0.2;
  }
}
.comboo-banner-section .pizza-shape {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1600px) {
  .comboo-banner-section .pizza-shape {
    max-width: 500px;
    bottom: 0;
    top: initial;
    bottom: 0;
  }
  .comboo-banner-section .pizza-shape img {
    width: 100%;
  }
}
@media (max-width: 1399px) {
  .comboo-banner-section .pizza-shape {
    max-width: 380px;
  }
}
@media (max-width: 991px) {
  .comboo-banner-section .pizza-shape {
    max-width: 200px;
    bottom: initial;
    top: 0;
  }
}
@media (max-width: 575px) {
  .comboo-banner-section .pizza-shape {
    opacity: 0.2;
  }
}
.comboo-banner-section .section-title .sub-title {
  color: #00BF57;
}
.comboo-banner-section .content {
  position: relative;
  z-index: 99;
  text-align: center;
}
.comboo-banner-section .content .coming-soon-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  margin-top: 30px;
  margin-bottom: 35px;
}
@media (max-width: 1199px) {
  .comboo-banner-section .content .coming-soon-time {
    margin-top: 23px;
  }
}
@media (max-width: 767px) {
  .comboo-banner-section .content .coming-soon-time {
    gap: 25px;
  }
}
@media (max-width: 575px) {
  .comboo-banner-section .content .coming-soon-time {
    flex-wrap: wrap;
  }
}
.comboo-banner-section .content .coming-soon-time .timer-content {
  text-align: center;
}
.comboo-banner-section .content .coming-soon-time .timer-content h2 {
  color: var(--white);
}
.comboo-banner-section .content .coming-soon-time .timer-content span {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
}
.comboo-banner-section .content .timer-dot {
  display: grid;
  align-items: center;
  gap: 20px;
  margin-top: -10px;
}
.comboo-banner-section .content .timer-dot span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: var(--white);
}
@media (max-width: 991px) {
  .comboo-banner-section .content .timer-dot span {
    width: 8px;
    height: 8px;
  }
}
@media (max-width: 767px) {
  .comboo-banner-section .content .timer-dot span {
    width: 5px;
    height: 5px;
    border-radius: 5px;
  }
}
.comboo-banner-section .left-shape {
  position: absolute;
  bottom: 0;
  top: 0;
  left: -60px;
  z-index: -1;
}
@media (max-width: 1600px) {
  .comboo-banner-section .left-shape {
    max-width: 650px;
  }
  .comboo-banner-section .left-shape img {
    width: 100%;
  }
}
@media (max-width: 1399px) {
  .comboo-banner-section .left-shape {
    max-width: 300px;
  }
  .comboo-banner-section .left-shape img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .comboo-banner-section .left-shape {
    display: none;
  }
}
.comboo-banner-section .left-shape img {
  height: 100%;
}
.comboo-banner-section .right-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 1600px) {
  .comboo-banner-section .right-shape {
    max-width: 700px;
  }
  .comboo-banner-section .right-shape img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .comboo-banner-section .right-shape {
    display: none;
  }
}

.discount-food-banner-1 {
  border-radius: 20px;
  padding: 45px 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: initial !important;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .discount-food-banner-1 {
    padding: 40px 30px;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}
.discount-food-banner-1 .content-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
@media (max-width: 991px) {
  .discount-food-banner-1 .content-box {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}
.discount-food-banner-1 .content-box .content {
  text-align: center;
}
.discount-food-banner-1 .content-box .content span {
  color: var(--white);
  display: inline-block;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}
.discount-food-banner-1 .content-box .content h2 {
  color: var(--white);
}
.discount-food-banner-1 .content-box .theme-btn::before {
  background-color: var(--header);
}

.discount-food-banner-2 {
  padding: 16px 30px 30px;
  border-radius: 20px;
}
.discount-food-banner-2 .content {
  max-width: 270px;
  transform: rotate(342deg);
}
.discount-food-banner-2 .content .sub-text {
  display: inline-block;
  font-size: 40px;
  color: var(--header);
  font-family: "Bylast", sans-serif;
  font-style: italic;
}
.discount-food-banner-2 .content h2 {
  color: var(--header);
  font-family: "Bylast", sans-serif;
  color: var(--white);
  text-transform: uppercase;
  font-size: 45px;
}
.discount-food-banner-2 .content h2 span {
  color: var(--header);
}
.discount-food-banner-2 .content p {
  color: var(--header);
  font-family: "Bylast", sans-serif;
  font-style: italic;
  text-align: right;
}
.discount-food-banner-2 .food-image {
  position: relative;
}
.discount-food-banner-2 .food-image .discount-box {
  position: absolute;
  top: -40px;
  right: -18px;
}
.discount-food-banner-2 .food-image .discount-box .cont {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.discount-food-banner-2 .food-image .discount-box .cont p {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  font-family: "Signika", sans-serif;
}
.discount-food-banner-2 .food-image .discount-box .cont span {
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  font-family: "Signika", sans-serif;
}
.discount-food-banner-2 .food-image .discount-box img {
  animation: cir36 10s linear infinite;
}

.discount-food-banner-3 {
  border-radius: 20px;
  height: 100%;
  position: relative;
}
.discount-food-banner-3 img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.discount-food-banner-3 .title {
  position: absolute;
  top: 50%;
  left: 15px;
  right: 15px;
  transform: translateY(-50%);
  text-align: center;
  font-size: 52px;
  font-weight: 400;
  font-family: "Bylast", sans-serif;
  text-transform: capitalize;
  color: #ED0B08;
  line-height: 100%;
  -webkit-text-stroke: 1px #ffffff;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}
.discount-food-banner-3 .shape1 {
  position: absolute;
  top: 43px;
  left: 25px;
}
.discount-food-banner-3 .shape2 {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.discount-food-banner-4 {
  border-radius: 20px;
  position: relative;
  height: 100%;
}
.discount-food-banner-4 .thumb {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1399px) {
  .discount-food-banner-4 .thumb img {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .discount-food-banner-4 .thumb {
    position: static;
    text-align: right;
  }
  .discount-food-banner-4 .thumb img {
    width: initial;
  }
}
.discount-food-banner-4 .content {
  padding: 45px 20px;
  text-align: center;
}
.discount-food-banner-4 .content .menu-text {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  border: 1.6px solid #FFFFFF;
  height: 30px;
  line-height: 30px;
  border-radius: 4px;
  padding: 0 15px;
  margin-bottom: 15px;
}
.discount-food-banner-4 .content h2 {
  font-size: 52px;
  font-weight: 400;
  letter-spacing: -4%;
  font-family: "Bylast", sans-serif;
  color: var(--white);
}
.discount-food-banner-4 .content h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-top: 15px;
}
.discount-food-banner-4 .content .theme-btn {
  background-color: var(--white);
  color: var(--header);
  margin-top: 25px;
}
.discount-food-banner-4 .content .theme-btn::before {
  background-color: var(--theme2);
}
.discount-food-banner-4 .content .theme-btn:hover {
  color: var(--white);
}

.discount-food-section-one {
  margin: 0 20px;
  position: relative;
}

.discount-food-banner-5 {
  border-radius: 20px;
  padding: 50px 50px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 1899px) {
  .discount-food-banner-5 {
    padding: 50px 30px;
    height: 100%;
  }
}
@media (max-width: 1899px) {
  .discount-food-banner-5 .text-img {
    max-width: 200px;
  }
  .discount-food-banner-5 .text-img img {
    width: 100%;
  }
}
.discount-food-banner-5 .info-items {
  margin-top: 100px;
}
.discount-food-banner-5 .info-items p {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}
.discount-food-banner-5 .info-items .number {
  display: inline-block;
  font-size: 30px;
  font-weight: 600;
  font-family: "Signika", sans-serif;
  color: var(--white);
  margin-top: 5px;
}
.discount-food-banner-5 .info-items .number:hover {
  color: var(--theme);
}
.discount-food-banner-5 .burger-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.discount-food-banner-5 .burger-image img {
  height: 100%;
}
@media (max-width: 1899px) {
  .discount-food-banner-5 .burger-image {
    right: -50px;
  }
}
@media (max-width: 575px) {
  .discount-food-banner-5 .burger-image {
    opacity: 0.4;
  }
}
.discount-food-banner-5 .line-1 {
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
}
.discount-food-banner-5 .line-1 img {
  width: 100%;
}
.discount-food-banner-5 .content-2 {
  max-width: 270px;
  transform: rotate(342deg);
  margin-bottom: 35px;
}
.discount-food-banner-5 .content-2 .sub-text {
  display: inline-block;
  font-size: 40px;
  color: var(--theme);
  font-family: "Bylast", sans-serif;
  font-style: italic;
}
.discount-food-banner-5 .content-2 h2 {
  color: var(--theme);
  font-family: "Bylast", sans-serif;
  color: var(--white);
  text-transform: uppercase;
  font-size: 45px;
}
.discount-food-banner-5 .content-2 h2 span {
  color: var(--theme);
}
.discount-food-banner-5 .content-2 p {
  color: var(--theme);
  font-family: "Bylast", sans-serif;
  font-style: italic;
  text-align: right;
}
.discount-food-banner-5.style-2 {
  padding: 50px 25px;
  padding-bottom: 85px;
}
.discount-food-banner-5.style-2 .theme-btn {
  margin-top: 15px;
}
.discount-food-banner-5.style-2 .theme-btn::before {
  background-color: var(--white);
}
.discount-food-banner-5.style-2 .theme-btn:hover {
  color: var(--header);
}
.discount-food-banner-5.style-2 .food-img {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1600px) {
  .discount-food-banner-5.style-2 .food-img {
    max-width: 250px;
  }
  .discount-food-banner-5.style-2 .food-img img {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .discount-food-banner-5.style-2 .food-img {
    opacity: 0.4;
  }
}
.discount-food-banner-5.style-2 .content-2 {
  transform: rotate(348deg);
  position: relative;
  z-index: 9;
  max-width: 235px;
}
.discount-food-banner-5.style-2 .content-2 h2 {
  font-size: 40px;
}

.discount-food-banner-6 {
  padding: 85px 35px 84px;
  border-radius: 20px;
  position: relative;
}
.discount-food-banner-6 .tomato-shape {
  position: absolute;
  top: 0;
  right: 190px;
}
.discount-food-banner-6 .line1 {
  position: absolute;
  bottom: -7px;
  left: 0;
  right: 0;
  z-index: 1;
}
.discount-food-banner-6 .line1 img {
  width: 100%;
}
.discount-food-banner-6 .content {
  position: relative;
  z-index: 99;
}
.discount-food-banner-6 .content .menu-text {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  border: 1.6px solid #FFFFFF;
  height: 30px;
  line-height: 30px;
  border-radius: 4px;
  padding: 0 15px;
  margin-bottom: 8px;
}
.discount-food-banner-6 .content h2 {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -4%;
  font-family: "Bylast", sans-serif;
  color: var(--white);
  margin-bottom: 8px;
}
.discount-food-banner-6 .content p {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.discount-food-banner-6 .content .theme-btn {
  margin-top: 25px;
}
.discount-food-banner-6 .fry-image {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1600px) {
  .discount-food-banner-6 .fry-image {
    max-width: 300px;
  }
  .discount-food-banner-6 .fry-image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1600px) {
  .discount-food-banner-6 .fry-image {
    max-width: 270px;
  }
}
@media (max-width: 575px) {
  .discount-food-banner-6 .fry-image {
    opacity: 0.4;
  }
}
.discount-food-banner-6 .fry-image .discount-box {
  position: absolute;
  bottom: 21%;
  left: 15%;
}
@media (max-width: 575px) {
  .discount-food-banner-6 .fry-image .discount-box {
    opacity: 1;
    bottom: 0;
  }
}
.discount-food-banner-6 .fry-image .discount-box .cont {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.discount-food-banner-6 .fry-image .discount-box .cont p {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  font-family: "Signika", sans-serif;
}
.discount-food-banner-6 .fry-image .discount-box .cont span {
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  font-family: "Signika", sans-serif;
}
.discount-food-banner-6 .fry-image .discount-box img {
  animation: cir36 10s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
@keyframes scrollRight {
  0% {
    transform: translateX(calc(-100% - var(--gap)));
  }
  100% {
    transform: translateX(0);
  }
}
.marque-section {
  background-color: var(--header);
  padding: 18px 0;
  margin-top: 120px;
}
.marque-section .text {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 25px;
  text-transform: uppercase;
}
.marque-section .marquee {
  gap: 25px;
  --duration: 20s !important;
}
.marque-section .marquee-group {
  gap: 25px;
}

.marquee {
  position: relative;
  --duration: 100s;
  --gap: 0px;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 0;
}
.marquee .marquee-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  min-width: 100%;
  animation: scroll var(--duration) linear infinite;
}

.instagram-section .instagram-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.instagram-section .instagram-image img {
  border-radius: 12px;
}
.instagram-section .instagram-image .hover-img {
  position: relative;
  width: 100%;
  display: block;
  transition: all 0.4s ease-in-out;
  border-radius: 12px;
}
.instagram-section .instagram-image .hover-img:first-child {
  bottom: 0px;
  opacity: 0;
  filter: blur(10px);
  left: 0px;
  position: absolute;
  right: 0px;
  top: 0px;
  transform: translateX(50%) scaleX(2);
  z-index: 1;
}
.instagram-section .instagram-image .hover-img .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 74px;
  height: 74px;
  line-height: 74px;
  background-color: var(--white);
  text-align: center;
  display: inline-block;
}
.instagram-section .instagram-image .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  line-height: 74px;
  border-radius: 50%;
  background-color: var(--white);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  z-index: 11;
  transition: all 0.5s ease-in-out;
}
.instagram-section .instagram-image:hover .hover-img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}
.instagram-section .instagram-image:hover .hover-img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}
.instagram-section .instagram-image:hover .icon {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.instagram-section .marquee {
  gap: 15px !important;
  --duration: 30s !important;
}
.instagram-section .marquee-group {
  gap: 15px !important;
}

.special-menu-banner-wrapper-two {
  border-radius: 20px;
  padding: 60px 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}
@media (max-width: 1399px) {
  .special-menu-banner-wrapper-two {
    padding: 50px 35px;
  }
}
@media (max-width: 1199px) {
  .special-menu-banner-wrapper-two {
    display: block;
    text-align: center;
  }
}
.special-menu-banner-wrapper-two .vec-shape {
  position: absolute;
  top: 25px;
  left: 33%;
}
@media (max-width: 1199px) {
  .special-menu-banner-wrapper-two .vec-shape {
    display: none;
  }
}
.special-menu-banner-wrapper-two .pizza-image {
  position: absolute;
  bottom: -70px;
  left: 40%;
}
@media (max-width: 1199px) {
  .special-menu-banner-wrapper-two .pizza-image {
    position: static;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .special-menu-banner-wrapper-two .pizza-image img {
    width: 100%;
    height: 100%;
  }
}
.special-menu-banner-wrapper-two .sub-text {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  border: 1.6px solid #FFFFFF;
  height: 30px;
  line-height: 30px;
  border-radius: 8px;
  padding: 0 15px;
  margin-bottom: 10px;
}
.special-menu-banner-wrapper-two h2 {
  font-size: 62px;
  font-weight: 600;
  letter-spacing: -4%;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .special-menu-banner-wrapper-two h2 {
    font-size: 46px;
  }
}
.special-menu-banner-wrapper-two p {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-top: 10px;
}
.special-menu-banner-wrapper-two .theme-btn::before {
  background-color: var(--white);
}
.special-menu-banner-wrapper-two .theme-btn:hover {
  color: var(--header);
}
.special-menu-banner-wrapper-two .shape-3 {
  position: absolute;
  top: -55px;
  right: 200px;
}

.comboo-offer-section-two {
  border-radius: 20px;
  margin: 0 20px;
  margin-bottom: 45px;
  position: relative;
}
.comboo-offer-section-two .shape-1 {
  position: absolute;
  left: 16px;
  bottom: 160px;
}
.comboo-offer-section-two .shape-2 {
  position: absolute;
  bottom: 0;
  left: 36%;
}
.comboo-offer-section-two .shape-3 {
  position: absolute;
  top: 0;
  right: 200px;
}
.comboo-offer-section-two .top-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.comboo-offer-section-two .top-shape img {
  width: 100%;
}

.comboo-offer-content-two .text {
  color: var(--white);
  max-width: 535px;
  margin-top: 30px;
}
.comboo-offer-content-two .info-items {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 120px;
}
@media (max-width: 991px) {
  .comboo-offer-content-two .info-items {
    margin-top: 40px;
  }
}
.comboo-offer-content-two .info-items span {
  display: block;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 10px;
}
.comboo-offer-content-two .info-items .number {
  display: inline-block;
  font-size: 32px;
  letter-spacing: -2%;
  font-weight: 600;
  font-family: "Signika", sans-serif;
  color: var(--white);
}
@media (max-width: 991px) {
  .comboo-offer-content-two .info-items .number {
    font-size: 24px;
  }
}

.comboo-contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 45px 40px;
  text-align: center;
  margin-bottom: -45px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .comboo-contact-form {
    padding: 40px 25px;
  }
}
.comboo-contact-form .shape1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.comboo-contact-form .shape2 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.comboo-contact-form .title {
  color: #ED0B08;
  text-transform: uppercase;
  text-align: center;
  margin-top: 25px;
}
.comboo-contact-form form {
  margin-top: 38px;
}
.comboo-contact-form form .form-clt input, .comboo-contact-form form .form-clt textarea {
  height: 54px;
  line-height: 54px;
  outline: none;
  border: 1px solid #BEBEBE;
  width: 100%;
  border-radius: 6px;
  padding: 0 20px;
  color: var(--text);
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
}
.comboo-contact-form form .form-clt .single-select {
  height: 54px;
  line-height: 54px;
  outline: none;
  border: 1px solid #BEBEBE;
  width: 100%;
  border-radius: 6px;
  padding: 0 20px;
  color: var(--text);
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
}
.comboo-contact-form form .form-clt .single-select .list {
  width: 100%;
}

.discount-food-section {
  position: relative;
  z-index: 1;
}
.discount-food-section .dis-shape {
  position: absolute;
  bottom: 0;
  right: 10%;
  z-index: -1;
}
@media (max-width: 1399px) {
  .discount-food-section .dis-shape {
    display: none;
  }
}

.text-marquee-section {
  background: #ED1C27;
  padding: 22px 0;
  transform: rotate(-5.53deg);
  position: relative;
  z-index: 99;
}
@media (max-width: 1199px) {
  .text-marquee-section {
    transform: rotate(0deg);
  }
}
.text-marquee-section .text {
  font-family: "Signika", sans-serif;
  font-size: 48px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white);
  line-height: 1;
}
.text-marquee-section.style-three {
  transform: rotate(0deg);
}
.text-marquee-section.text-marquee-three {
  background: rgba(217, 107, 26, 0.11);
  transform: rotate(6.37deg);
  margin-top: 110px;
}
@media (max-width: 1199px) {
  .text-marquee-section.text-marquee-three {
    margin-top: 0;
    transform: rotate(0deg);
  }
}
.text-marquee-section.text-marquee-three .text {
  color: #D96B1A;
}
.text-marquee-section.text-marquee-four {
  background: #D96B1A;
  transform: rotate(347deg);
  position: relative;
  z-index: 999;
  margin-top: -60px;
}
@media (max-width: 1199px) {
  .text-marquee-section.text-marquee-four {
    margin-top: 0;
    transform: rotate(0deg);
  }
}
.text-marquee-section.text-marquee-four .text {
  color: var(--white);
}

.text-marquee-two {
  background: rgba(237, 28, 39, 0.11);
  transform: rotate(6.37deg);
  z-index: 1;
}
@media (max-width: 1199px) {
  .text-marquee-two {
    transform: rotate(0deg);
  }
}
.text-marquee-two .text {
  color: var(--theme3);
}
.text-marquee-two .marquee-group {
  animation: scrollRight var(--duration) linear infinite;
}

.text-marque-sec {
  position: relative;
}
.text-marque-sec .coffe-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
}
@media (max-width: 767px) {
  .text-marque-sec .coffe-icon {
    display: none;
  }
}

.cta-section-6 {
  margin-top: 100px;
}
@media (max-width: 1199px) {
  .cta-section-6 {
    margin-top: 80px;
  }
}
.cta-section-6 .cta-bg-thumb {
  position: relative;
}
@media (max-width: 1199px) {
  .cta-section-6 .cta-bg-thumb {
    height: 405px;
  }
}
.cta-section-6 .cta-bg-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.cta-section-6 .cta-bg-thumb .cta-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 70px;
  right: 250px;
}
@media (max-width: 1399px) {
  .cta-section-6 .cta-bg-thumb .cta-items {
    left: 50px;
    right: 50px;
  }
}
@media (max-width: 991px) {
  .cta-section-6 .cta-bg-thumb .cta-items {
    display: grid;
    justify-content: center;
    gap: 25px;
    text-align: center;
  }
  .cta-section-6 .cta-bg-thumb .cta-items .red-circle img {
    width: initial !important;
  }
}
.cta-section-6 .cta-bg-thumb .title {
  font-size: 100px;
  font-weight: 600;
  color: var(--white);
}
@media (max-width: 1199px) {
  .cta-section-6 .cta-bg-thumb .title {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .cta-section-6 .cta-bg-thumb .title {
    font-size: 50px;
  }
}
@media (max-width: 470px) {
  .cta-section-6 .cta-bg-thumb .title {
    font-size: 38px;
  }
}
.cta-section-6 .cta-bg-thumb .title span {
  display: inline-block;
  margin-left: 120px;
}
@media (max-width: 991px) {
  .cta-section-6 .cta-bg-thumb .title span {
    margin-left: 0;
  }
}
.cta-section-6 .cta-bg-thumb.style-two {
  border-radius: 0;
}
.cta-section-6 .cta-bg-thumb.style-two img {
  border-radius: 0;
}

.cta-newsletter-wrapper-8 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cta-newsletter-wrapper-8 {
    display: grid;
    justify-content: center;
    text-align: center;
  }
}
.cta-newsletter-wrapper-8 .right-content {
  max-width: 576px;
}
.cta-newsletter-wrapper-8 .right-content p {
  color: var(--white);
  font-size: 18px;
}
.cta-newsletter-wrapper-8 .right-content form {
  position: relative;
  margin-top: 22px;
}
.cta-newsletter-wrapper-8 .right-content form input {
  display: inline-block;
  border: none;
  width: 100%;
  border: none;
  border-radius: 27.5px;
  font-size: 16px;
  height: 55px;
  line-height: 55px;
  padding-left: 25px;
  padding-right: 118px;
  color: var(--text);
  background-color: var(--white);
}
.cta-newsletter-wrapper-8 .right-content form button {
  height: 55px;
  line-height: 55px;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  padding: 0 20px;
  border-radius: 0px 27.5px 27.5px 0px;
  background-color: var(--theme);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.discount-banner-section-4 {
  padding: 230px 0 188px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .discount-banner-section-4 {
    padding: 100px 0 100px;
  }
}
@media (max-width: 991px) {
  .discount-banner-section-4 {
    padding: 80px 0 80px;
  }
}
.discount-banner-section-4::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(89.22deg, rgba(28, 28, 28, 0.96) -3.52%, rgba(28, 28, 28, 0) 99.33%);
  border-radius: 20px;
}
.discount-banner-section-4 .bottom-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}
@media (max-width: 1399px) {
  .discount-banner-section-4 .bottom-shape {
    bottom: -8px;
  }
}
.discount-banner-section-4 .bottom-shape img {
  width: 100%;
  height: 100%;
}
.discount-banner-section-4 .tomato-shape {
  position: absolute;
  left: 435px;
  top: 0;
}
@media (max-width: 1600px) {
  .discount-banner-section-4 .tomato-shape {
    left: 230px;
  }
}
@media (max-width: 1399px) {
  .discount-banner-section-4 .tomato-shape {
    display: none;
  }
}
.discount-banner-section-4 .offer {
  position: absolute;
  top: 142px;
  right: 170px;
}
@media (max-width: 1600px) {
  .discount-banner-section-4 .offer {
    z-index: 99;
    right: 50px;
  }
}
@media (max-width: 1399px) {
  .discount-banner-section-4 .offer {
    display: none;
  }
}
.discount-banner-section-4 .left-shape {
  position: absolute;
  bottom: 80px;
  left: 0;
}
@media (max-width: 1399px) {
  .discount-banner-section-4 .left-shape {
    display: none;
  }
}
.discount-banner-section-4 .pizza-shape {
  position: absolute;
  right: 438px;
  top: 30px;
  bottom: 60px;
}
@media (max-width: 1600px) {
  .discount-banner-section-4 .pizza-shape {
    right: 190px;
  }
}
@media (max-width: 1399px) {
  .discount-banner-section-4 .pizza-shape {
    display: none;
  }
}
.discount-banner-section-4 .pizza-shape img {
  width: 100%;
  height: 100%;
}
.discount-banner-section-4 .discount-banner-content-4 {
  position: relative;
  z-index: 9;
}
.discount-banner-section-4 .discount-banner-content-4 h2 {
  color: var(--white);
  text-transform: uppercase;
  font-size: 144px;
  font-weight: 700;
  letter-spacing: -7%;
}
@media (max-width: 1600px) {
  .discount-banner-section-4 .discount-banner-content-4 h2 {
    font-size: 132px;
  }
}
@media (max-width: 1399px) {
  .discount-banner-section-4 .discount-banner-content-4 h2 {
    font-size: 100px;
  }
}
@media (max-width: 991px) {
  .discount-banner-section-4 .discount-banner-content-4 h2 {
    font-size: 110px;
  }
}
@media (max-width: 767px) {
  .discount-banner-section-4 .discount-banner-content-4 h2 {
    font-size: 90px;
  }
}
@media (max-width: 575px) {
  .discount-banner-section-4 .discount-banner-content-4 h2 {
    font-size: 60px;
  }
}
.discount-banner-section-4 .discount-banner-content-4 p {
  color: var(--white);
  font-weight: 600;
  max-width: 380px;
}
.discount-banner-section-4 .discount-banner-content-4 .red-image {
  position: relative;
  margin-bottom: 30px;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .discount-banner-section-4 .discount-banner-content-4 .red-image img {
    width: 100%;
    height: 100%;
  }
}
.discount-banner-section-4 .discount-banner-content-4 .red-image span {
  position: absolute;
  top: 20px;
  left: 60px;
  color: var(--white);
  font-size: 42px;
  font-weight: 700;
  font-family: "Signika", sans-serif;
  letter-spacing: -4%;
}
@media (max-width: 1399px) {
  .discount-banner-section-4 .discount-banner-content-4 .red-image span {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .discount-banner-section-4 .discount-banner-content-4 .red-image span {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .discount-banner-section-4 .discount-banner-content-4 .red-image span {
    font-size: 22px;
  }
}
.discount-banner-section-4 .right-content {
  position: relative;
  z-index: 9;
  margin-left: 295px;
}
@media (max-width: 1399px) {
  .discount-banner-section-4 .right-content {
    margin-left: 0;
  }
}
.discount-banner-section-4 .right-content h2 {
  color: var(--white);
  text-transform: uppercase;
  font-size: 144px;
  font-weight: 700;
  letter-spacing: -7%;
  line-height: 1;
}
@media (max-width: 1600px) {
  .discount-banner-section-4 .right-content h2 {
    font-size: 132px;
  }
}
@media (max-width: 1399px) {
  .discount-banner-section-4 .right-content h2 {
    font-size: 100px;
  }
}
@media (max-width: 991px) {
  .discount-banner-section-4 .right-content h2 {
    font-size: 110px;
  }
}
@media (max-width: 767px) {
  .discount-banner-section-4 .right-content h2 {
    font-size: 90px;
  }
}
@media (max-width: 575px) {
  .discount-banner-section-4 .right-content h2 {
    font-size: 60px;
  }
}

.cta-from-content {
  text-align: center;
}
.cta-from-content .section-title h2 span {
  color: #ED0B08;
}
.cta-from-content .content {
  margin-top: 45px;
}
@media (max-width: 1399px) {
  .cta-from-content .content {
    margin-top: 30px;
  }
}
.cta-from-content .content form {
  max-width: 644px;
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.cta-from-content .content form input {
  display: inline-block;
  border: none;
  width: 100%;
  border: 2px solid #FFC222;
  border-radius: 27.5px;
  font-size: 16px;
  height: 55px;
  line-height: 55px;
  padding-left: 25px;
  padding-right: 118px;
  color: var(--text);
  background-color: transparent;
}
.cta-from-content .content form button {
  height: 55px;
  line-height: 55px;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  padding: 0 20px;
  border-radius: 0px 27.5px 27.5px 0px;
  background-color: var(--theme);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.cta-section-4 {
  position: relative;
  z-index: 1;
}
.cta-section-4 .burger-shape {
  position: absolute;
  top: 120px;
  left: 40px;
}
@media (max-width: 1600px) {
  .cta-section-4 .burger-shape {
    max-width: 300px;
  }
  .cta-section-4 .burger-shape img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1399px) {
  .cta-section-4 .burger-shape {
    max-width: 180px;
    left: 0;
  }
  .cta-section-4 .burger-shape img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .cta-section-4 .burger-shape {
    max-width: 90px;
    left: 0;
  }
  .cta-section-4 .burger-shape img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 575px) {
  .cta-section-4 .burger-shape {
    display: none;
  }
}
.cta-section-4 .pizza-shape {
  position: absolute;
  top: 120px;
  right: 0;
}
@media (max-width: 1600px) {
  .cta-section-4 .pizza-shape {
    max-width: 300px;
  }
  .cta-section-4 .pizza-shape img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1399px) {
  .cta-section-4 .pizza-shape {
    max-width: 180px;
  }
  .cta-section-4 .pizza-shape img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .cta-section-4 .pizza-shape {
    max-width: 90px;
  }
  .cta-section-4 .pizza-shape img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 575px) {
  .cta-section-4 .pizza-shape {
    display: none;
  }
}
.cta-section-4 .left-shape {
  position: absolute;
  left: 0;
  top: 50px;
}
@media (max-width: 1399px) {
  .cta-section-4 .left-shape {
    display: none;
  }
}
.cta-section-4 .left-shape-2 {
  position: absolute;
  left: 524px;
  top: 27px;
}
@media (max-width: 1600px) {
  .cta-section-4 .left-shape-2 {
    left: 340px;
  }
}
@media (max-width: 1399px) {
  .cta-section-4 .left-shape-2 {
    display: none;
  }
}
.cta-section-4 .right-shape {
  position: absolute;
  right: 408px;
  top: 86px;
}
@media (max-width: 1399px) {
  .cta-section-4 .right-shape {
    display: none;
  }
}
.cta-section-4 .shape-1 {
  position: absolute;
  top: 0;
  left: 150px;
}
@media (max-width: 1600px) {
  .cta-section-4 .shape-1 {
    left: 50px;
    max-width: 340px;
  }
  .cta-section-4 .shape-1 img {
    width: 100%;
  }
}
.cta-section-4 .shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 1600px) {
  .cta-section-4 .shape-2 {
    max-width: 420px;
  }
  .cta-section-4 .shape-2 img {
    width: 100%;
  }
}
.cta-section-4 .shape-3 {
  position: absolute;
  left: 0;
  top: 158px;
}

.discount-banner-section-4 {
  padding: 230px 0 188px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .discount-banner-section-4 {
    padding: 100px 0 100px;
  }
}
@media (max-width: 991px) {
  .discount-banner-section-4 {
    padding: 80px 0 80px;
  }
}
.discount-banner-section-4::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(89.22deg, rgba(28, 28, 28, 0.96) -3.52%, rgba(28, 28, 28, 0) 99.33%);
  border-radius: 20px;
}
.discount-banner-section-4 .bottom-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}
@media (max-width: 1399px) {
  .discount-banner-section-4 .bottom-shape {
    bottom: -8px;
  }
}
.discount-banner-section-4 .bottom-shape img {
  width: 100%;
  height: 100%;
}
.discount-banner-section-4 .tomato-shape {
  position: absolute;
  left: 435px;
  top: 0;
}
@media (max-width: 1600px) {
  .discount-banner-section-4 .tomato-shape {
    left: 230px;
  }
}
@media (max-width: 1399px) {
  .discount-banner-section-4 .tomato-shape {
    display: none;
  }
}
.discount-banner-section-4 .offer {
  position: absolute;
  top: 142px;
  right: 170px;
}
@media (max-width: 1600px) {
  .discount-banner-section-4 .offer {
    z-index: 99;
    right: 50px;
  }
}
@media (max-width: 1399px) {
  .discount-banner-section-4 .offer {
    display: none;
  }
}
.discount-banner-section-4 .left-shape {
  position: absolute;
  bottom: 80px;
  left: 0;
}
@media (max-width: 1399px) {
  .discount-banner-section-4 .left-shape {
    display: none;
  }
}
.discount-banner-section-4 .pizza-shape {
  position: absolute;
  right: 438px;
  top: 30px;
  bottom: 60px;
}
@media (max-width: 1600px) {
  .discount-banner-section-4 .pizza-shape {
    right: 190px;
  }
}
@media (max-width: 1399px) {
  .discount-banner-section-4 .pizza-shape {
    display: none;
  }
}
.discount-banner-section-4 .pizza-shape img {
  width: 100%;
  height: 100%;
}
.discount-banner-section-4 .discount-banner-content-4 {
  position: relative;
  z-index: 9;
}
.discount-banner-section-4 .discount-banner-content-4 h2 {
  color: var(--white);
  text-transform: uppercase;
  font-size: 144px;
  font-weight: 700;
  letter-spacing: -7%;
}
@media (max-width: 1600px) {
  .discount-banner-section-4 .discount-banner-content-4 h2 {
    font-size: 132px;
  }
}
@media (max-width: 1399px) {
  .discount-banner-section-4 .discount-banner-content-4 h2 {
    font-size: 100px;
  }
}
@media (max-width: 991px) {
  .discount-banner-section-4 .discount-banner-content-4 h2 {
    font-size: 110px;
  }
}
@media (max-width: 767px) {
  .discount-banner-section-4 .discount-banner-content-4 h2 {
    font-size: 90px;
  }
}
@media (max-width: 575px) {
  .discount-banner-section-4 .discount-banner-content-4 h2 {
    font-size: 60px;
  }
}
.discount-banner-section-4 .discount-banner-content-4 p {
  color: var(--white);
  font-weight: 600;
  max-width: 380px;
}
.discount-banner-section-4 .discount-banner-content-4 .red-image {
  position: relative;
  margin-bottom: 30px;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .discount-banner-section-4 .discount-banner-content-4 .red-image img {
    width: 100%;
    height: 100%;
  }
}
.discount-banner-section-4 .discount-banner-content-4 .red-image span {
  position: absolute;
  top: 20px;
  left: 60px;
  color: var(--white);
  font-size: 42px;
  font-weight: 700;
  font-family: "Signika", sans-serif;
  letter-spacing: -4%;
}
@media (max-width: 1399px) {
  .discount-banner-section-4 .discount-banner-content-4 .red-image span {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .discount-banner-section-4 .discount-banner-content-4 .red-image span {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .discount-banner-section-4 .discount-banner-content-4 .red-image span {
    font-size: 22px;
  }
}
.discount-banner-section-4 .right-content {
  position: relative;
  z-index: 9;
  margin-left: 295px;
}
@media (max-width: 1399px) {
  .discount-banner-section-4 .right-content {
    margin-left: 0;
  }
}
.discount-banner-section-4 .right-content h2 {
  color: var(--white);
  text-transform: uppercase;
  font-size: 144px;
  font-weight: 700;
  letter-spacing: -7%;
  line-height: 1;
}
@media (max-width: 1600px) {
  .discount-banner-section-4 .right-content h2 {
    font-size: 132px;
  }
}
@media (max-width: 1399px) {
  .discount-banner-section-4 .right-content h2 {
    font-size: 100px;
  }
}
@media (max-width: 991px) {
  .discount-banner-section-4 .right-content h2 {
    font-size: 110px;
  }
}
@media (max-width: 767px) {
  .discount-banner-section-4 .right-content h2 {
    font-size: 90px;
  }
}
@media (max-width: 575px) {
  .discount-banner-section-4 .right-content h2 {
    font-size: 60px;
  }
}

.contact-left-items-1 .text {
  border-left: 2px solid var(--theme);
  padding-left: 20px;
  max-width: 535px;
  margin-top: 30px;
}
.contact-left-items-1 .number-info {
  margin-top: 45px;
  margin-bottom: 48px;
}
.contact-left-items-1 .number-info p {
  color: var(--header);
  font-weight: 700;
  font-size: 16px;
}
.contact-left-items-1 .number-info .number {
  font-size: 44px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .contact-left-items-1 .number-info .number {
    font-size: 30px;
  }
}
.contact-left-items-1 .number-info .number a {
  color: var(--theme2);
}
.contact-left-items-1 .contact-info-box-items {
  background-color: var(--white);
  padding: 40px 25px;
  border-radius: 10px;
  padding-top: 35px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .contact-left-items-1 .contact-info-box-items {
    padding: 30px 20px;
  }
}
.contact-left-items-1 .contact-info-box-items h3 {
  margin-bottom: 15px;
  line-height: 1;
}
.contact-left-items-1 .contact-info-box-items p {
  color: var(--header);
  font-size: 16px;
  font-weight: 500;
}
.contact-left-items-1 .contact-info-box-items a {
  color: var(--header);
  font-size: 16px;
  font-weight: 500;
}
.contact-left-items-1 .contact-info-box-items.active {
  background-color: var(--theme);
}

@media (max-width: 1199px) {
  .contact-section .contact-image-1 img {
    width: 100%;
    height: 100%;
  }
}

.support-feature-box-two {
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  border-radius: 20px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.support-feature-box-two .icon {
  max-width: 60px;
  width: 100%;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background: rgba(1, 130, 62, 0.1);
}
.support-feature-box-two .content .title {
  font-size: 18px;
  font-weight: 600;
}
.support-feature-box-two .content p {
  font-size: 14px;
}
.support-feature-box-two:hover .icon img {
  animation: wobble 1.5s ease-in-out;
}

.contact-booking-wrapper-3 {
  padding: 50px 128px;
  border-radius: 20px;
  position: relative;
}
.contact-booking-wrapper-3 .tomato-shape {
  position: absolute;
  left: 0px;
  top: 0;
}
@media (max-width: 1399px) {
  .contact-booking-wrapper-3 .tomato-shape {
    display: none;
  }
}
@media (max-width: 1399px) {
  .contact-booking-wrapper-3 {
    padding: 30px;
  }
}
.contact-booking-wrapper-3 h2 {
  text-align: center;
  color: var(--white);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}
.contact-booking-wrapper-3 .contact-form-box {
  margin-bottom: 30px;
}
.contact-booking-wrapper-3 .contact-form-box .form-clt input, .contact-booking-wrapper-3 .contact-form-box .form-clt textarea {
  outline: none;
  width: 100%;
  color: #4D4D4D;
  border-radius: 6px;
  padding: 14px 18px;
  border: none;
  background: var(--white);
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
}
.contact-booking-wrapper-3 .contact-form-box .form-clt input::placeholder, .contact-booking-wrapper-3 .contact-form-box .form-clt textarea::placeholder {
  color: #4D4D4D;
}
.contact-booking-wrapper-3 .contact-form-box .form-clt textarea {
  padding-bottom: 120px;
}
.contact-booking-wrapper-3 .contact-form-box .form-clt input[type=date] {
  text-transform: capitalize;
}
.contact-booking-wrapper-3 .contact-form-box .form-clt .form .single-select {
  border: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.2);
  background-color: var(--white);
  border-radius: 6px;
  width: 100%;
  height: initial;
  padding: 14px 18px;
  line-height: initial;
  text-transform: capitalize;
  color: #4D4D4D;
}
.contact-booking-wrapper-3 .contact-form-box .form-clt .form .single-select .current {
  color: #4D4D4D;
}
.contact-booking-wrapper-3 .contact-form-box .form-clt .form .single-select::after {
  border-bottom: 2px solid #4D4D4D;
  border-right: 2px solid #4D4D4D;
  width: 8px;
  height: 8px;
  right: 12px;
}
.contact-booking-wrapper-3 .contact-form-box .form-clt .form .single-select .list {
  width: 100%;
}
.contact-booking-wrapper-3 .contact-form-box .theme-btn::before {
  background-color: var(--header);
}
.contact-booking-wrapper-3 p {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -1%;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 1399px) {
  .contact-booking-wrapper-3 p {
    font-size: 16px;
  }
}
.contact-booking-wrapper-3 p span {
  font-weight: 800;
}
.contact-booking-wrapper-3 p span a {
  color: var(--theme);
}

.contact-flag-box-in {
  position: relative;
  z-index: 9;
  padding: 60px;
  padding-top: 0;
  border-radius: 20px;
}
.contact-flag-box-in::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--white);
  border-radius: 20px;
  z-index: -1;
  top: 60px;
  height: initial;
}
.contact-flag-box-in .title {
  font-size: 32px;
  font-weight: 500;
  margin-top: 40px;
  border-bottom: 3px dashed var(--theme2);
  padding-bottom: 20px;
}
.contact-flag-box-in .content-item {
  margin-top: 40px;
}
.contact-flag-box-in .content-item.style-2 {
  border-top: 1px solid rgb(229, 229, 229);
  padding-top: 25px;
  margin-top: 25px;
}
.contact-flag-box-in .content-item .title-2 {
  font-size: 18px;
  font-weight: 600;
  color: #232323;
  font-family: "Nunito", sans-serif;
}
.contact-flag-box-in .content-item p {
  font-size: 16px;
  color: #6F7783;
  margin-top: 7px;
}
.contact-flag-box-in .content-item p a {
  font-size: 16px;
  color: #6F7783;
}

.google-map-items iframe {
  width: 100%;
  height: 900px;
  border-radius: 12px;
}
@media (max-width: 1199px) {
  .google-map-items iframe {
    height: 800px;
  }
}
@media (max-width: 991px) {
  .google-map-items iframe {
    height: 500px;
  }
}
@media (max-width: 575px) {
  .google-map-items iframe {
    height: 400px;
  }
}

.contact-right-content-in {
  border-radius: 12px;
  background: var(--white);
}
.contact-right-content-in .contact-box {
  background-color: var(--theme2);
  padding: 48px 50px;
  border-radius: 12px 12px 20px 20px;
}
@media (max-width: 1199px) {
  .contact-right-content-in .contact-box {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-top: 30px;
  }
}
.contact-right-content-in .contact-form-box {
  padding-top: 35px;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 1199px) {
  .contact-right-content-in .contact-form-box {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-top: 30px;
  }
}
.contact-right-content-in .contact-form-box .form-clt input, .contact-right-content-in .contact-form-box .form-clt textarea {
  border-radius: 6px;
  border: 1px solid rgba(2, 36, 35, 0.12);
  background: rgba(244, 241, 234, 0.42);
  line-height: 1;
  padding: 15px 25px;
  width: 100%;
  text-transform: capitalize;
  color: var(--text);
}
.contact-right-content-in .contact-form-box .form-clt textarea {
  padding-bottom: 100px;
}
.contact-right-content-in .contact-form-box .theme-btn {
  transition: all 0.4s ease-in-out;
}
.contact-right-content-in .contact-form-box .theme-btn i {
  transition: all 0.4s ease-in-out;
}

.contact-booking-section-7 {
  position: relative;
  z-index: 1;
}
.contact-booking-section-7::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(11, 19, 21, 0.72);
  z-index: -1;
}
.contact-booking-section-7 .bottom-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width: 1899px) {
  .contact-booking-section-7 .bottom-shape {
    bottom: -7px;
  }
}
@media (max-width: 1399px) {
  .contact-booking-section-7 .bottom-shape {
    display: none;
  }
}
.contact-booking-section-7 .bottom-shape img {
  width: 100%;
}

.contact-booking-wrapper-7 {
  position: relative;
}
.contact-booking-wrapper-7 h2 {
  text-align: center;
  color: var(--white);
  font-size: 88px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .contact-booking-wrapper-7 h2 {
    font-size: 64px;
  }
}
@media (max-width: 767px) {
  .contact-booking-wrapper-7 h2 {
    font-size: 54px;
  }
}
@media (max-width: 575px) {
  .contact-booking-wrapper-7 h2 {
    font-size: 44px;
  }
}
@media (max-width: 470px) {
  .contact-booking-wrapper-7 h2 {
    font-size: 35px;
  }
}
.contact-booking-wrapper-7 .contact-form-box {
  margin-bottom: 30px;
}
.contact-booking-wrapper-7 .contact-form-box .form-clt input, .contact-booking-wrapper-7 .contact-form-box .form-clt textarea {
  outline: none;
  width: 100%;
  color: rgba(255, 255, 255, 0.62);
  border-radius: 0;
  padding: 0 18px;
  border: none;
  background: transparent;
  height: 54px;
  line-height: 54px;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.62);
}
.contact-booking-wrapper-7 .contact-form-box .form-clt input::placeholder, .contact-booking-wrapper-7 .contact-form-box .form-clt textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
}
.contact-booking-wrapper-7 .contact-form-box .form-clt textarea {
  padding-bottom: 120px;
}
.contact-booking-wrapper-7 .contact-form-box .form-clt input[type=date] {
  text-transform: capitalize;
}
.contact-booking-wrapper-7 .contact-form-box .form-clt input[type=date] {
  color: #fff;
}
.contact-booking-wrapper-7 .contact-form-box .form-clt input[type=date]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}
.contact-booking-wrapper-7 .contact-form-box .form-clt .form .single-select {
  border: none;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background-color: transparent;
  border-radius: 0;
  width: 100%;
  height: initial;
  padding: 14px 18px;
  line-height: initial;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.62);
}
.contact-booking-wrapper-7 .contact-form-box .form-clt .form .single-select .list {
  color: #232323;
}
.contact-booking-wrapper-7 .contact-form-box .form-clt .form .single-select .current {
  color: rgba(255, 255, 255, 0.62);
}
.contact-booking-wrapper-7 .contact-form-box .form-clt .form .single-select::after {
  border-bottom: 2px solid rgba(255, 255, 255, 0.62);
  border-right: 2px solid rgba(255, 255, 255, 0.62);
  width: 8px;
  height: 8px;
  right: 12px;
}
.contact-booking-wrapper-7 .contact-form-box .form-clt .form .single-select .list {
  width: 100%;
}
.contact-booking-wrapper-7 .contact-form-box .theme-btn {
  border-radius: 0;
  background: #C9AB81;
  color: var(--white);
}
.contact-booking-wrapper-7 .contact-form-box .theme-btn::before {
  background-color: var(--white);
}
.contact-booking-wrapper-7 .contact-form-box .theme-btn:hover {
  color: #232323;
}
.contact-booking-wrapper-7 .text {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -1%;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 1399px) {
  .contact-booking-wrapper-7 .text {
    font-size: 16px;
  }
}
.contact-booking-wrapper-7 .text span {
  font-weight: 800;
}
.contact-booking-wrapper-7 .text span a {
  color: #C9AB81;
}
.contact-booking-wrapper-7 .text-2 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

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

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 0;
}

.array-button {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 999;
}
.array-button .array-prev, .array-button .array-next {
  border-radius: 100px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
  color: #3B82F6;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  font-size: 15px;
}
.array-button .array-prev:hover, .array-button .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}

.swiper-dot {
  position: relative;
}
.swiper-dot .swiper-pagination-bullet {
  width: 37px;
  height: 8px;
  transition: 0.6s;
  background-color: rgba(255, 255, 255, 0.26);
  opacity: 1;
  border-radius: 10px;
}
.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 5px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
  width: 90px;
}
@media (max-width: 1199px) {
  .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 60px;
  }
}
.swiper-dot.style-2 .swiper-pagination-bullet {
  background-color: rgba(178, 178, 178, 0.26);
}
.swiper-dot.style-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
}

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

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.gt-slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.gt-brand-slide-element {
  width: auto;
  display: inline-block;
}

.p-relative {
  position: relative;
}

/* ================================
   Split Text Styles
================================ */
.split-title .word {
  display: inline-block;
  white-space: nowrap;
}

/* char animation */
.split-title .char {
  display: inline-block;
  transform-origin: left center;
  clip-path: inset(0 100% 0 0);
  opacity: 0;
}

.body-bg-2 {
  background-color: #FFFCF8;
}

.array-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.array-buttons .array-prev, .array-buttons .array-next {
  transition: all 0.4s ease-in-out;
}
.array-buttons .array-prev:hover, .array-buttons .array-next:hover {
  color: var(--theme);
}

.page-nav-wrap {
  margin-top: 50px;
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--theme2);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 0;
  background: var(--white);
  color: var(--header);
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border-radius: 10px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  text-transform: capitalize;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  font-size: 16px;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme2);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers:hover i {
  color: var(--white);
}

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

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

.jump-anim,
.studio-text {
  display: inline-block;
}

.p-relative {
  position: relative;
}

.sec-line-shape img {
  width: 100%;
}

.image-distortion {
  overflow: hidden;
  height: 100%;
  position: relative;
}
.image-distortion canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* ================================
   CLIP ANIMATION STYLE
================================ */
.tp-clip-anim {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.tp-clip-anim .tp-anim-img {
  width: 100%;
  display: block;
  opacity: 0; /* hide original */
}

/* mask base */
.tp-clip-anim .mask {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  opacity: 0;
  animation: reveal 1s forwards;
  will-change: transform, opacity;
}

/* 9 slice animation */
.mask-1 {
  clip-path: inset(0 88.8% 0 0%);
  animation-delay: 0.1s;
}

.mask-2 {
  clip-path: inset(0 77.7% 0 11.1%);
  animation-delay: 0.2s;
}

.mask-3 {
  clip-path: inset(0 66.6% 0 22.2%);
  animation-delay: 0.3s;
}

.mask-4 {
  clip-path: inset(0 55.5% 0 33.3%);
  animation-delay: 0.4s;
}

.mask-5 {
  clip-path: inset(0 44.4% 0 44.4%);
  animation-delay: 0.5s;
}

.mask-6 {
  clip-path: inset(0 33.3% 0 55.5%);
  animation-delay: 0.6s;
}

.mask-7 {
  clip-path: inset(0 22.2% 0 66.6%);
  animation-delay: 0.7s;
}

.mask-8 {
  clip-path: inset(0 11.1% 0 77.7%);
  animation-delay: 0.8s;
}

.mask-9 {
  clip-path: inset(0 0% 0 88.8%);
  animation-delay: 0.9s;
}

/* animation */
@keyframes reveal {
  from {
    opacity: 0;
    transform: scale(1.2);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.p-relative {
  position: relative;
}

.tilt_scale {
  transition: transform 0.2s ease;
  display: inline-block;
}

.clip-animation {
  width: 100%;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  position: relative;
}

.clip-animation .clip-animation-img {
  opacity: 0;
  width: 100%;
  height: 100%;
}

.clip-animation > * {
  grid-area: 1/1/2/2;
  width: 100%;
  height: 100%;
  max-height: 100%;
}

.testi-bg {
  background: #f1f1f1 !important;
}

.arrow-hover-bg {
  background: #f1f1f1 !important;
  color: var(--header) !important;
}
.arrow-hover-bg:hover {
  background-color: var(--theme) !important;
}

.shop-banner-items {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  padding: 40px 40px;
  padding-bottom: 0;
  z-index: 1;
  height: 100%;
}
@media (max-width: 1600px) {
  .shop-banner-items {
    padding: 30px 25px;
  }
}
.shop-banner-items .burger-image {
  position: absolute;
  top: 30px;
  right: -170px;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1600px) {
  .shop-banner-items .burger-image {
    max-width: 400px;
  }
  .shop-banner-items .burger-image img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .shop-banner-items .burger-image {
    max-width: 320px;
  }
}
.shop-banner-items .ciken-image {
  position: absolute;
  top: -100px;
  right: -150px;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1600px) {
  .shop-banner-items .ciken-image {
    max-width: 400px;
  }
  .shop-banner-items .ciken-image img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .shop-banner-items .ciken-image {
    max-width: 320px;
  }
}
.shop-banner-items .content .title {
  font-size: 62px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  line-height: 94%;
}
@media (max-width: 575px) {
  .shop-banner-items .content .title {
    font-size: 45px;
  }
}
.shop-banner-items .content .text {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-top: 8px;
}
.shop-banner-items .content .price {
  font-size: 32px;
  font-weight: 600;
  color: #FF5700;
  margin-top: 10px;
  margin-bottom: 10px;
}
.shop-banner-items .food-title {
  font-weight: 400;
  font-size: 160px;
  line-height: 1;
  color: var(--white);
  margin-bottom: -20px;
  font-family: "Bylast", sans-serif;
  margin-top: 60px;
}
@media (max-width: 1600px) {
  .shop-banner-items .food-title {
    font-size: 130px;
  }
}
@media (max-width: 1399px) {
  .shop-banner-items .food-title {
    font-size: 100px;
  }
}
@media (max-width: 575px) {
  .shop-banner-items .food-title {
    font-size: 70px;
  }
}
.shop-banner-items:hover .burger-image {
  right: -140px;
}
.shop-banner-items:hover .ciken-image {
  top: -80px;
}

.shop-banner-section {
  margin: 0 20px;
}

.shop-banner-items-2 {
  border-radius: 20px;
  padding: 40px 20px 0;
  overflow: hidden;
  height: 100%;
  z-index: 1;
}
.shop-banner-items-2 .content {
  text-align: center;
}
.shop-banner-items-2 .content .title {
  font-size: 62px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  line-height: 94%;
}
@media (max-width: 1199px) {
  .shop-banner-items-2 .content .title {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .shop-banner-items-2 .content .title {
    font-size: 48px;
  }
}
.shop-banner-items-2 .content .text {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-top: 8px;
}
.shop-banner-items-2 .content .price-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.shop-banner-items-2 .content .price-item .price {
  font-size: 32px;
  font-weight: 600;
  color: var(--theme2);
  color: var(--white);
}
.shop-banner-items-2 .roll-image {
  transform: rotate(60deg);
  margin-bottom: -53%;
  margin-top: -50px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .shop-banner-items-2 .roll-image img {
    width: 100%;
  }
}
.shop-banner-items-2:hover .roll-image {
  margin-top: -70px;
}

.shop-category-items {
  margin-top: 30px;
  background: #FFFFFF;
  border-radius: 20px 20px 0px 0px;
  padding: 40px 25px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.shop-category-items.style-2 {
  margin-top: 100px;
}
@media (max-width: 991px) {
  .shop-category-items.style-2 {
    margin-top: 30px;
  }
}
.shop-category-items.style-3 {
  margin-top: 70px;
}
@media (max-width: 991px) {
  .shop-category-items.style-3 {
    margin-top: 30px;
  }
}
.shop-category-items.style-category {
  background: #FFFFFF;
  box-shadow: 8px 6px 182.2px -2px rgba(10, 3, 46, 0.06);
  border-radius: 12px;
  margin-top: 30px;
}
.shop-category-items .shape-img {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  text-align: center;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.shop-category-items .line-shape {
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  z-index: -1;
}
.shop-category-items .line-shape img {
  width: 100%;
}
.shop-category-items .thumb {
  text-align: center;
}
.shop-category-items .thumb img {
  display: inline-block;
}
.shop-category-items .shape {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  text-align: center;
  z-index: -1;
}
.shop-category-items .shape svg {
  width: 100%;
  height: auto;
}
.shop-category-items .shape svg path {
  transition: all 0.4s ease-in-out;
  width: 100%;
}
.shop-category-items .content {
  margin-top: 28px;
}
.shop-category-items .content .star {
  color: #FF7C2B;
  font-size: 14px;
  margin-bottom: 5px;
}
.shop-category-items .content .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.shop-category-items .content .title a:hover {
  color: var(--theme);
}
.shop-category-items .content p {
  font-size: 15px;
}
.shop-category-items .content .pricing-item {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 18px;
}
@media (max-width: 1399px) {
  .shop-category-items .content .pricing-item {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.shop-category-items .content .pricing-item .price {
  display: inline-block;
  color: var(--theme2);
  font-size: 32px;
  font-weight: 600;
  font-family: "Signika", sans-serif;
}
.shop-category-items .content .pricing-item .theme-btn {
  background-color: transparent;
  border: 1px solid var(--theme);
  color: var(--theme);
  padding: 0 28px;
}
.shop-category-items .content .pricing-item .theme-btn::before {
  background-color: var(--theme);
}
.shop-category-items .content .pricing-item .theme-btn:hover {
  color: var(--header);
}
.shop-category-items:hover .shape svg path {
  fill: var(--theme);
}
.shop-category-items:hover .shape-img {
  opacity: 1;
  visibility: visible;
}
.shop-category-items:hover .thumb img {
  animation: wobblew 1.5s ease-in-out;
}

.shop-category-slider {
  margin-left: -3%;
  margin-right: -3%;
}
@media (max-width: 575px) {
  .shop-category-slider {
    margin-left: 18px;
    margin-right: 18px;
  }
}

.shop-category-section {
  position: relative;
}
.shop-category-section .pizza-shape {
  position: absolute;
  left: -4%;
  top: 22%;
}
.shop-category-section .rev-shape {
  position: absolute;
  top: 19%;
  left: 15%;
}
.shop-category-section .shape1 {
  position: absolute;
  top: 130px;
  right: 0;
}

.shop-category-box-items-2 {
  margin-top: 30px;
  position: relative;
  z-index: 1;
  padding: 50px 40px;
  text-align: center;
  padding-top: 25px;
  overflow: hidden;
}
.shop-category-box-items-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  border-radius: 156px 156px 0px 0px;
  z-index: -1;
  top: 18%;
  transition: all 0.35s ease-in-out;
}
.shop-category-box-items-2 .content {
  margin-top: -25px;
  position: relative;
  z-index: 11;
}
.shop-category-box-items-2 .content .star {
  color: #FF7C2B;
  font-size: 14px;
  margin-bottom: 5px;
  margin-top: 10px;
}
.shop-category-box-items-2 .content .price {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  font-family: "Signika", sans-serif;
  color: var(--header);
  background-color: var(--theme);
  height: 32px;
  line-height: 32px;
  padding: 0 15px;
  border-radius: 18px;
}
.shop-category-box-items-2 .content .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}
.shop-category-box-items-2 .content .title a:hover {
  color: var(--theme);
}
.shop-category-box-items-2 .content p {
  font-size: 15px;
}
.shop-category-box-items-2 .content .theme-btn {
  background-color: transparent;
  border: 1px solid var(--theme2);
  color: var(--theme2);
  padding: 0 28px;
  margin-top: 25px;
}
.shop-category-box-items-2 .content .theme-btn::before {
  background-color: var(--theme2);
}
.shop-category-box-items-2 .content .theme-btn:hover {
  color: var(--white);
}
.shop-category-box-items-2 .line-1 {
  position: absolute;
  bottom: -7px;
  left: 0;
  right: 0;
}
.shop-category-box-items-2 .line-1 img {
  width: 100%;
}
.shop-category-box-items-2:hover::before {
  top: 0;
}
.shop-category-box-items-2:hover .thumb img {
  animation: wobblew 1.5s ease-in-out;
}

.food-banner-items-two {
  border-radius: 20px;
  padding: 70px 40px 50px;
  position: relative;
  overflow: hidden;
}
.food-banner-items-two .chili-shape {
  position: absolute;
  top: 0;
  left: 40%;
  z-index: 1;
}
.food-banner-items-two .line-1 {
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  z-index: 11;
}
.food-banner-items-two .line-1 img {
  width: 100%;
}
.food-banner-items-two .shape2 {
  position: absolute;
  bottom: 0;
  left: 53%;
  z-index: 1;
}
.food-banner-items-two .content {
  position: relative;
  z-index: 9;
}
.food-banner-items-two .content .menu-text {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  border: 1.6px solid #FFFFFF;
  height: 30px;
  line-height: 30px;
  border-radius: 8px;
  padding: 0 15px;
  margin-bottom: 10px;
}
.food-banner-items-two .content h2 {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -4%;
  font-family: "Bylast", sans-serif;
  color: var(--white);
  margin-bottom: 8px;
}
.food-banner-items-two .content p {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.food-banner-items-two .content .theme-btn {
  margin-top: 70px;
}
.food-banner-items-two .thumb {
  position: absolute;
  top: 35px;
  right: 0;
  bottom: 0;
}
@media (max-width: 575px) {
  .food-banner-items-two .thumb {
    opacity: 0.3;
  }
}
.food-banner-items-two .thumb .shape {
  position: absolute;
  bottom: 42px;
  left: -57px;
}
@media (max-width: 1399px) {
  .food-banner-items-two .thumb {
    max-width: 250px;
  }
  .food-banner-items-two .thumb img {
    width: 100% !important;
  }
}

.food-banner-items-three {
  border-radius: 20px;
  padding: 60px 40px 50px;
  position: relative;
  overflow: hidden;
}
.food-banner-items-three .tomato-shape {
  position: absolute;
  top: 0;
  left: 35%;
}
.food-banner-items-three .line-1 {
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  z-index: 11;
}
.food-banner-items-three .line-1 img {
  width: 100%;
}
.food-banner-items-three .content-2 {
  transform: rotate(348deg);
  position: relative;
  z-index: 9;
  max-width: 270px;
}
.food-banner-items-three .content-2 .sub-text {
  display: inline-block;
  font-size: 40px;
  color: var(--theme);
  font-family: "Bylast", sans-serif;
  font-style: italic;
}
.food-banner-items-three .content-2 h2 {
  color: var(--theme);
  font-family: "Bylast", sans-serif;
  color: var(--white);
  text-transform: uppercase;
  font-size: 45px;
}
.food-banner-items-three .content-2 h2 span {
  color: var(--theme);
}
.food-banner-items-three .content-2 p {
  color: var(--theme);
  font-family: "Bylast", sans-serif;
  font-style: italic;
  text-align: right;
}
.food-banner-items-three .info-items {
  margin-top: 60px;
  position: relative;
  z-index: 9;
}
.food-banner-items-three .info-items span {
  display: block;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 10px;
}
.food-banner-items-three .info-items .number {
  display: inline-block;
  font-size: 30px;
  letter-spacing: -2%;
  font-weight: 600;
  font-family: "Signika", sans-serif;
  color: var(--white);
}
.food-banner-items-three .burger-image {
  position: absolute;
  bottom: 0;
  right: -16%;
  max-width: 448px;
}
@media (max-width: 1399px) {
  .food-banner-items-three .burger-image {
    max-width: 350px;
  }
}
@media (max-width: 575px) {
  .food-banner-items-three .burger-image {
    opacity: 0.3;
  }
}
.food-banner-items-three .burger-image img {
  width: 100%;
}

.footer-banner-two-sec {
  position: relative;
}
.footer-banner-two-sec .burger-shape {
  position: absolute;
  bottom: 16px;
  left: 13%;
}
.footer-banner-two-sec .pizza-1 {
  position: absolute;
  right: 50px;
  bottom: 190px;
}

.best-seller-box-two {
  margin-top: 30px;
  text-align: center;
}
.best-seller-box-two .content {
  margin-top: 20px;
  text-align: center;
}
.best-seller-box-two .content .star {
  color: #FF7C2B;
  font-size: 14px;
  margin-bottom: 5px;
  margin-top: 10px;
}
.best-seller-box-two .content .title {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
}
.best-seller-box-two .content .title a:hover {
  color: var(--theme2);
}
.best-seller-box-two .content .price {
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  font-family: "Signika", sans-serif;
  color: var(--theme2);
  margin-top: 10px;
  margin-bottom: 10px;
}
.best-seller-box-two .content .line-1 {
  display: block;
  width: 114px;
  height: 1px;
  text-align: center;
  background-color: var(--theme2);
  margin: 0 auto;
}
.best-seller-box-two .content .cart-btn {
  display: inline-block;
  font-size: 14px;
  font-family: "Signika", sans-serif;
  font-weight: 500;
  color: var(--header);
  margin-top: 7px;
}
.best-seller-box-two .content .cart-btn i {
  margin-left: 4px;
}
.best-seller-box-two .content .cart-btn:hover {
  color: var(--theme2);
}
.best-seller-box-two:hover .thumb img {
  animation: wobblew 1.5s ease-in-out;
}

.ice-category-section-5 {
  margin: 0 55px;
}

.ice-category-items-5 {
  text-align: center;
}
.ice-category-items-5 .thumb img {
  width: 100%;
  height: 100%;
}
.ice-category-items-5 .title {
  font-size: 18px;
  font-weight: 500;
  font-family: "Signika", sans-serif;
  margin-top: 25px;
}
.ice-category-items-5 .title a:hover {
  color: #ED1C27;
}

.shop-card-items {
  margin-top: 30px;
  text-align: center;
}
.shop-card-items .thumb {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.shop-card-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.shop-card-items .thumb .gt-shop-icon {
  gap: 10px;
  position: absolute;
  bottom: 32px;
  left: 20px;
  right: 20px;
  justify-content: center;
}
.shop-card-items .thumb .gt-shop-icon li {
  transform: scaleX(0);
  transition: 0.4s ease-in-out;
  cursor: pointer;
}
.shop-card-items .thumb .gt-shop-icon li a, .shop-card-items .thumb .gt-shop-icon li button {
  width: 48px;
  height: 48px;
  line-height: 48px;
  display: inline-block;
  color: rgb(31, 24, 23);
  text-align: center;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  background-color: var(--white);
}
.shop-card-items .thumb .gt-shop-icon li a:hover, .shop-card-items .thumb .gt-shop-icon li button:hover {
  background-color: var(--theme3);
  color: var(--white);
}
.shop-card-items .thumb .back-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
}
.shop-card-items .thumb .font-image {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.shop-card-items .thumb .discount-text {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  padding: 8px 15px;
  line-height: 1;
  background: var(--theme3);
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  border-radius: 42px;
}
.shop-card-items .thumb .plus-icon {
  position: absolute;
  bottom: 0;
  right: 25px;
  transition: all 0.4s ease-in-out;
}
.shop-card-items .thumb .plus-icon a {
  position: absolute;
  top: 61%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease-in-out;
}
.shop-card-items .thumb .plus-icon a i {
  color: var(--theme3);
  transition: all 0.4s ease-in-out;
}
.shop-card-items .shop-content {
  margin-top: 20px;
}
.shop-card-items .shop-content .star {
  color: #FF7C2B;
}
.shop-card-items .shop-content h3 {
  font-size: 22px;
  font-weight: 500;
  margin-top: 7px;
}
.shop-card-items .shop-content h3 a:hover {
  color: var(--theme3);
}
.shop-card-items .shop-content p {
  font-size: 16px;
  font-weight: 500;
  margin-top: 6px;
}
.shop-card-items .shop-content h4 {
  font-size: 22px;
  font-weight: 500;
  margin-top: 10px;
  color: var(--theme3);
}
.shop-card-items .shop-content h4 del {
  color: rgba(30, 29, 35, 0.3);
}
.shop-card-items:hover .thumb .font-image {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
}
.shop-card-items:hover .thumb .gt-shop-icon li {
  transform: scaleX(1);
}
.shop-card-items:hover .thumb .back-image {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.shop-card-items:hover .thumb .plus-icon svg path {
  fill: #ED1C27;
}
.shop-card-items:hover .thumb .plus-icon a i {
  color: var(--white);
}

.ice-cream-shop-wrapper-5 {
  margin-left: -7%;
  margin-right: -7%;
}
@media (max-width: 767px) {
  .ice-cream-shop-wrapper-5 {
    margin: 0 20px;
  }
}

.best-ice-cream-section-5 {
  position: relative;
}
@media (max-width: 1199px) {
  .best-ice-cream-section-5 .section-title-area {
    display: grid;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }
}
@media (max-width: 1199px) {
  .best-ice-cream-section-5 .nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.best-ice-cream-section-5 .best-btn {
  text-align: center;
  margin-top: 60px;
}
.best-ice-cream-section-5 .best-btn .theme-btn {
  background-color: var(--theme3);
  color: var(--white);
}
.best-ice-cream-section-5 .best-btn .theme-btn::before {
  background-color: var(--header);
}
.best-ice-cream-section-5 .best-shape-1 {
  position: absolute;
  bottom: 30%;
  left: 0;
}
.best-ice-cream-section-5 .best-shape-2 {
  position: absolute;
  top: 10%;
  right: 0;
}
.best-ice-cream-section-5 .best-shape-3 {
  position: absolute;
  bottom: 20px;
  right: 0;
}

.banner-wrapper-5 {
  position: relative;
  z-index: 9;
}
.banner-wrapper-5 .banner-bottom-shape {
  position: absolute;
  z-index: 11;
  bottom: 0;
  left: 0;
  right: 0;
}
.banner-wrapper-5 .banner-bottom-shape img {
  width: 100%;
}
.banner-wrapper-5 .banner-shape-1 {
  position: absolute;
  left: 0;
  top: 50%;
}
.banner-wrapper-5 .banner-shape-2 {
  position: absolute;
  z-index: 11;
  left: 18%;
  bottom: 27%;
}
@media (max-width: 1199px) {
  .banner-wrapper-5 .banner-shape-2 {
    top: initial;
    right: 30px;
    bottom: 0;
  }
}
.banner-wrapper-5 .banner-shape-3 {
  position: absolute;
  z-index: 11;
  top: 24%;
  right: 70px;
}
@media (max-width: 1199px) {
  .banner-wrapper-5 .banner-shape-3 {
    top: initial;
    right: 30px;
    bottom: 0;
  }
}
.banner-wrapper-5 .banner-box-items {
  position: relative;
  height: 815px;
}
@media (max-width: 1199px) {
  .banner-wrapper-5 .banner-box-items {
    height: 600px;
  }
}
@media (max-width: 991px) {
  .banner-wrapper-5 .banner-box-items {
    height: 500px;
  }
}
.banner-wrapper-5 .banner-box-items img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-wrapper-5 .banner-box-items .content {
  position: absolute;
  top: 120px;
  left: 90px;
}
@media (max-width: 1600px) {
  .banner-wrapper-5 .banner-box-items .content {
    left: 50px;
  }
}
@media (max-width: 1199px) {
  .banner-wrapper-5 .banner-box-items .content {
    top: 70px;
    left: 30px;
    right: 30px;
  }
}
.banner-wrapper-5 .banner-box-items .content span {
  font-size: 24px;
  font-weight: 400;
  font-family: "Bylast", sans-serif;
  color: var(--theme3);
}
.banner-wrapper-5 .banner-box-items .content .title {
  font-size: 60px;
  font-weight: 600;
  max-width: 430px;
  margin-top: 5px;
}
@media (max-width: 1199px) {
  .banner-wrapper-5 .banner-box-items .content .title {
    font-size: 46px;
  }
}
@media (max-width: 575px) {
  .banner-wrapper-5 .banner-box-items .content .title {
    font-size: 38px;
  }
}
.banner-wrapper-5 .banner-box-items .content .theme-btn {
  background-color: var(--theme3);
  color: var(--white);
  margin-top: 30px;
}
.banner-wrapper-5 .banner-box-items-2 {
  position: relative;
  height: 815px;
}
@media (max-width: 1199px) {
  .banner-wrapper-5 .banner-box-items-2 {
    height: 600px;
  }
}
@media (max-width: 991px) {
  .banner-wrapper-5 .banner-box-items-2 {
    height: 500px;
  }
}
.banner-wrapper-5 .banner-box-items-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-wrapper-5 .banner-box-items-2 .content {
  position: absolute;
  top: 120px;
  left: 90px;
}
@media (max-width: 1600px) {
  .banner-wrapper-5 .banner-box-items-2 .content {
    left: 50px;
  }
}
@media (max-width: 1199px) {
  .banner-wrapper-5 .banner-box-items-2 .content {
    top: 70px;
    left: 30px;
    right: 30px;
  }
}
.banner-wrapper-5 .banner-box-items-2 .content span {
  font-size: 24px;
  font-weight: 400;
  font-family: "Bylast", sans-serif;
  color: var(--white);
}
.banner-wrapper-5 .banner-box-items-2 .content .title {
  font-size: 60px;
  font-weight: 600;
  max-width: 550px;
  margin-top: 5px;
  color: var(--white);
}
@media (max-width: 1199px) {
  .banner-wrapper-5 .banner-box-items-2 .content .title {
    font-size: 46px;
  }
}
@media (max-width: 575px) {
  .banner-wrapper-5 .banner-box-items-2 .content .title {
    font-size: 38px;
  }
}
.banner-wrapper-5 .banner-box-items-2 .content .theme-btn {
  background-color: var(--theme3);
  color: var(--white);
  margin-top: 30px;
}

.ice-banner-card-6 {
  position: relative;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
}
.ice-banner-card-6::before {
  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;
  pointer-events: none;
}
.ice-banner-card-6.style-2 {
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .ice-banner-card-6.style-2 {
    margin-top: 0;
  }
}
.ice-banner-card-6.style-3 {
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .ice-banner-card-6.style-3 {
    margin-top: 0;
  }
}
.ice-banner-card-6 .ice-banner-shape {
  position: absolute;
  top: 40%;
  right: 30px;
}
.ice-banner-card-6 img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  object-fit: cover;
  transition: all 1s;
}
.ice-banner-card-6 .content {
  position: absolute;
  top: 55px;
  left: 20px;
  right: 20px;
  text-align: center;
}
.ice-banner-card-6 .content span {
  font-family: "Bylast", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--theme3);
}
.ice-banner-card-6 .content .title {
  font-size: 36px;
  font-weight: 600;
  margin-top: 10px;
}
.ice-banner-card-6 .content p {
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
}
.ice-banner-card-6 .content .theme-btn {
  margin-top: 25px;
  background-color: var(--white);
  color: var(--theme3);
}
.ice-banner-card-6 .content .theme-btn::before {
  background-color: var(--header);
}
.ice-banner-card-6 .content .theme-btn:hover {
  color: var(--white);
}
.ice-banner-card-6:hover::before {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.ice-banner-card-6:hover img {
  transform: scale(1.2);
}

.menu-section-7 {
  position: relative;
}
.menu-section-7 .section-title .sub-title {
  color: #C9AB81;
}
.menu-section-7 .menu-shape-1 {
  position: absolute;
  top: 50px;
  right: 0;
}
.menu-section-7 .menu-btn {
  text-align: center;
  margin-top: 20px;
}
.menu-section-7 .menu-btn .theme-btn {
  background: transparent;
  border: 1px solid rgb(201, 171, 129);
  color: var(--white);
  border-radius: 0;
}
.menu-section-7 .menu-btn .theme-btn::before {
  background-color: #C9AB81;
}

.menu-card-items-7 {
  text-align: center;
  margin-top: 30px;
}
.menu-card-items-7.style-3 {
  margin-top: 90px;
}
@media (max-width: 1199px) {
  .menu-card-items-7.style-3 {
    margin-top: 30px;
  }
}
.menu-card-items-7 .menu-img {
  position: relative;
  overflow: hidden;
  border-radius: 212px 212px 0px 0px;
}
@media (max-width: 767px) {
  .menu-card-items-7 .menu-img {
    height: 440px;
  }
}
.menu-card-items-7 .menu-img.style-2 {
  border-radius: 0;
}
.menu-card-items-7 .menu-img.style-2 img {
  border-radius: 0px;
}
.menu-card-items-7 .menu-img::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;
  pointer-events: none;
}
.menu-card-items-7 .menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  object-fit: cover;
  transition: all 1s;
  border-radius: 212px 212px 0px 0px;
}
.menu-card-items-7 .content {
  margin-top: 45px;
}
@media (max-width: 1199px) {
  .menu-card-items-7 .content {
    margin-top: 20px;
  }
}
.menu-card-items-7 .content .title-2 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 150%;
}
.menu-card-items-7 .content .title-2 a {
  color: #C9AB81;
}
.menu-card-items-7 .content .title-2 a:hover {
  color: var(--white);
}
.menu-card-items-7 .content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  font-weight: 500;
  line-height: 167%;
  font-family: "Nunito", sans-serif;
}
.menu-card-items-7:hover .menu-img::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.menu-card-items-7:hover .menu-img img {
  transform: scale(1.2);
}

.ice-cream-shop-5 .array-button .array-prev, .ice-cream-shop-5 .array-button .array-next {
  width: 51px;
  height: 51px;
  line-height: 51px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #1E1D23;
  color: #1E1D23;
}
.ice-cream-shop-5 .array-button .array-prev:hover, .ice-cream-shop-5 .array-button .array-next:hover {
  background-color: #1E1D23;
  color: var(--white);
}

.shop-category-section {
  position: relative;
}
.shop-category-section .pizza-shape {
  position: absolute;
  left: -4%;
  top: 22%;
}
.shop-category-section .rev-shape {
  position: absolute;
  top: 19%;
  left: 15%;
}
.shop-category-section .shape1 {
  position: absolute;
  top: 130px;
  right: 0;
}
.shop-category-section .lef-shape {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1399px) {
  .shop-category-section .lef-shape {
    display: none;
  }
}
.shop-category-section .right-shapee {
  position: absolute;
  right: 0;
  bottom: 0px;
}
@media (max-width: 1399px) {
  .shop-category-section .right-shapee {
    display: none;
  }
}

.shop-drink-box-item {
  background-color: var(--white);
  border-radius: 20px;
  padding: 10px;
  padding-bottom: 0;
  text-align: center;
  position: relative;
  z-index: 9;
}
.shop-drink-box-item .shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.shop-drink-box-item .shape img {
  width: 100%;
  height: 100%;
}
.shop-drink-box-item .bg-shape {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  z-index: -1;
}
.shop-drink-box-item .bg-shape img {
  width: 100%;
  height: 100%;
}
.shop-drink-box-item .shop-drink-content {
  margin-top: 30px;
  margin-bottom: 25px;
}
.shop-drink-box-item .shop-drink-content h2 {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -1%;
  margin-bottom: 15px;
}
.shop-drink-box-item .shop-drink-content h2 a {
  color: var(--white);
}
.shop-drink-box-item .shop-drink-content .theme-btn {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  height: 48px;
  line-height: 48px;
  padding: 0 25px;
}
.shop-drink-box-item .shop-drink-content .theme-btn::before {
  background-color: var(--white);
}
.shop-drink-box-item .shop-drink-content .theme-btn:hover {
  color: var(--header);
}
.shop-drink-box-item .shop-drink-content .theme-btn:hover img {
  filter: brightness(0);
}
.shop-drink-box-item .shop-drink-content .theme-btn img {
  margin-left: 5px;
}
.shop-drink-box-item .drink-image {
  margin: 0 auto;
  text-align: center;
}
.shop-drink-box-item:hover .drink-image img {
  animation: wobblew 2s ease-in-out;
}

.shop-drink-section {
  margin-top: -180px;
}
@media (max-width: 1399px) {
  .shop-drink-section {
    margin-top: 100px;
    overflow: hidden;
  }
}
@media (max-width: 991px) {
  .shop-drink-section {
    margin-top: 80px;
  }
}

.food-category-items-4 {
  margin-top: 30px;
  background: var(--white);
  padding: 40px 25px;
  position: relative;
  z-index: 1;
  border-radius: 20px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .food-category-items-4 {
    max-width: 306px;
    margin: 0 auto;
    margin-top: 30px;
  }
}
.food-category-items-4 .icon {
  position: absolute;
  top: 12px;
  right: 24px;
}
.food-category-items-4 .icon a {
  color: var(--white);
  text-align: center;
}
.food-category-items-4 .icon a i {
  text-align: center;
  margin-left: 6px;
  margin-top: 2px;
}
.food-category-items-4 .icon .frame {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.food-category-items-4 .thumb {
  text-align: center;
}
.food-category-items-4 .thumb img {
  display: inline-block;
}
.food-category-items-4 .shape {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  text-align: center;
  z-index: -1;
}
.food-category-items-4 .shape svg {
  width: 100%;
  height: auto;
}
.food-category-items-4 .shape svg path {
  transition: all 0.4s ease-in-out;
}
.food-category-items-4 .content {
  margin-top: 28px;
  text-align: center;
}
.food-category-items-4 .content .star {
  color: #FF7C2B;
  font-size: 14px;
  margin-bottom: 5px;
}
.food-category-items-4 .content .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.food-category-items-4 .content .title a:hover {
  color: var(--theme);
}
.food-category-items-4 .content p {
  font-size: 15px;
}
.food-category-items-4 .content .pricing-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  justify-content: center;
}
.food-category-items-4 .content .pricing-item .price {
  display: inline-block;
  color: var(--theme2);
  font-size: 24px;
  font-weight: 600;
  font-family: "Signika", sans-serif;
}
.food-category-items-4 .content .pricing-item .theme-btn,
.shop-list-inner .content .pricing-item .theme-btn {
  height: 42px;
  line-height: 42px;
  padding: 0 22px;
  font-size: 15px;
}
.food-category-items-4 .content .pricing-item .form-clt .form {
  width: 123px;
  position: relative;
}
.food-category-items-4 .content .pricing-item .form-clt .form .single-select {
  border: 1px solid #1F1F1F;
  background-color: var(--white);
  border-radius: 100px;
  width: 100%;
  height: initial;
  padding: 8px 18px;
  line-height: initial;
  text-transform: capitalize;
  color: #1F1F1F;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.food-category-items-4 .content .pricing-item .form-clt .form .single-select::before {
  position: absolute;
  content: "";
  right: 0;
  width: 32px;
  top: 0;
  bottom: 0;
  height: 100%;
  background-color: var(--theme);
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
}
.food-category-items-4 .content .pricing-item .form-clt .form .single-select .current {
  color: #1F1F1F;
}
.food-category-items-4 .content .pricing-item .form-clt .form .single-select::after {
  border-bottom: 2px solid #1F1F1F;
  border-right: 2px solid #1F1F1F;
  width: 8px;
  height: 8px;
  right: 12px;
}
.food-category-items-4 .content .pricing-item .form-clt .form .single-select .list {
  width: 100%;
  margin-top: -5px;
}
.food-category-items-4 .content .pricing-item .form-clt .form .single-select .list li {
  line-height: 25px;
  list-style: none;
  min-height: 25px;
}
.food-category-items-4:hover .shape svg path {
  fill: var(--theme);
}
.food-category-items-4:hover .shape-img {
  opacity: 1;
  visibility: visible;
}
.food-category-items-4:hover .thumb img {
  animation: wobblew 1.5s ease-in-out;
}

.food-category-section-4 .section-title .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  margin-top: 40px;
  margin-bottom: 30px;
}
.food-category-section-4 .section-title .nav .nav-item .nav-link {
  display: inline-block;
  font-size: 15px;
  color: var(--header);
  text-transform: capitalize;
  border: 1.5px solid rgba(30, 29, 35, 0.22);
  padding: 0;
  height: 42px;
  line-height: 42px;
  padding: 0 16px;
  border-radius: 4px;
}
.food-category-section-4 .section-title .nav .nav-item .nav-link.active {
  background-color: var(--theme);
  border-color: var(--theme);
}

.shop-notices-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
}
@media (max-width: 991px) {
  .shop-notices-wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.shop-notices-wrapper form {
  position: relative;
  max-width: 312px;
  width: 100%;
}
@media (max-width: 1399px) {
  .shop-notices-wrapper form {
    width: 270px;
  }
}
.shop-notices-wrapper form input {
  border: none;
  background: transparent;
  border-bottom: 1px solid rgba(34, 34, 34, 0.4);
  font-size: 18px;
  font-weight: 400;
  color: #6C6C6C;
  padding-left: 25px;
  padding-bottom: 8px;
}
.shop-notices-wrapper form input::placeholder {
  color: #6C6C6C;
}
.shop-notices-wrapper form button {
  position: absolute;
  top: 0;
  left: 0;
}
.shop-notices-wrapper .shop-showing {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  justify-content: end;
}
@media (max-width: 991px) {
  .shop-notices-wrapper .shop-showing {
    justify-content: start;
  }
}
@media (max-width: 767px) {
  .shop-notices-wrapper .shop-showing {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.shop-notices-wrapper .shop-showing p {
  font-size: 16px;
  font-weight: 400;
  color: #7B7B7B;
}
.shop-notices-wrapper .shop-showing .nav {
  display: flex;
  align-items: center;
  gap: 17px;
}
.shop-notices-wrapper .shop-showing .nav .nav-link {
  padding: 0;
  color: var(--header);
}
.shop-notices-wrapper .shop-showing .nav .nav-link.active {
  color: var(--theme2);
}
.shop-notices-wrapper .shop-showing .form-clt {
  max-width: 232px;
  width: 100%;
}
.shop-notices-wrapper .shop-showing .form-clt .single-select {
  background: var(--white);
  font-size: 16px;
  font-weight: 500;
  height: 46px;
  line-height: 46px;
  border-radius: 63px;
  border: none !important;
  padding: 0 20px;
}
.shop-notices-wrapper .shop-showing .form-clt .single-select .list {
  width: 100%;
}

.shop-list-inner {
  background-color: var(--white);
  border-radius: 20px;
  padding: 55px 60px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 65px;
  margin-top: 30px;
}
.shop-list-inner .icon {
  position: absolute;
  top: 0;
  right: 24px;
}
.shop-list-inner .icon a {
  color: var(--white);
  text-align: center;
}
.shop-list-inner .icon a i {
  text-align: center;
  margin-left: 7px;
  margin-top: 6px;
}
.shop-list-inner .icon .frame {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .shop-list-inner {
    padding: 40px 40px;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .shop-list-inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 30px 25px;
  }
}
.shop-list-inner .shape {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 20px;
  z-index: -1;
}
@media (max-width: 767px) {
  .shop-list-inner .shape {
    display: none;
  }
}
.shop-list-inner .shape svg {
  height: 100%;
}
.shop-list-inner .shape svg path {
  transition: all 0.4s ease-in-out;
}
.shop-list-inner .content .star {
  font-size: 14px;
  color: #FF7C2B;
  margin-bottom: 8px;
}
.shop-list-inner .content .title {
  font-size: 32px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .shop-list-inner .content .title {
    font-size: 24px;
  }
}
.shop-list-inner .content .title a:hover {
  color: var(--theme);
}
.shop-list-inner .content .text {
  font-size: 15px;
  font-weight: 500;
  color: #76756D;
  max-width: 780px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .shop-list-inner .content .text {
    margin: 0 auto;
    margin-top: 10px;
  }
}
.shop-list-inner .content .pricing-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}
@media (max-width: 767px) {
  .shop-list-inner .content .pricing-item {
    justify-content: center;
  }
}
.shop-list-inner .content .pricing-item .price {
  display: inline-block;
  color: var(--theme2);
  font-size: 24px;
  font-weight: 600;
  font-family: "Signika", sans-serif;
}
.shop-list-inner .content .pricing-item .form-clt .form {
  width: 123px;
  position: relative;
}
.shop-list-inner .content .pricing-item .form-clt .form .single-select {
  border: 1px solid #1F1F1F;
  background-color: var(--white);
  border-radius: 100px;
  width: 100%;
  height: initial;
  padding: 8px 18px;
  line-height: initial;
  text-transform: capitalize;
  color: #1F1F1F;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.shop-list-inner .content .pricing-item .form-clt .form .single-select::before {
  position: absolute;
  content: "";
  right: 0;
  width: 32px;
  top: 0;
  bottom: 0;
  height: 100%;
  background-color: var(--theme);
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
}
.shop-list-inner .content .pricing-item .form-clt .form .single-select .current {
  color: #1F1F1F;
}
.shop-list-inner .content .pricing-item .form-clt .form .single-select::after {
  border-bottom: 2px solid #1F1F1F;
  border-right: 2px solid #1F1F1F;
  width: 8px;
  height: 8px;
  right: 12px;
}
.shop-list-inner .content .pricing-item .form-clt .form .single-select .list {
  width: 100%;
  margin-top: -5px;
}
.shop-list-inner .content .pricing-item .form-clt .form .single-select .list li {
  line-height: 25px;
  list-style: none;
  min-height: 25px;
}
.shop-list-inner:hover .shape svg path {
  fill: var(--theme);
}
.shop-list-inner:hover .thumb img {
  animation: wobblew 1.5s ease-in-out;
}

.shop-sidebar-area .shop-sidebar-item {
  margin-top: 30px;
  overflow: hidden;
}
.shop-sidebar-area .shop-sidebar-item .sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  margin-bottom: 25px;
}
.shop-sidebar-area .shop-sidebar-item .sidebar-header .head-title {
  font-size: 22px;
  font-weight: 500;
  font-family: "Signika", sans-serif;
  color: var(--header);
}
.shop-sidebar-area .shop-sidebar-item .sidebar-inner {
  overflow: hidden;
}
.shop-sidebar-area .shop-sidebar-item .sidebar-inner .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.shop-sidebar-area .shop-sidebar-item .sidebar-inner .custom-checkbox {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 16px;
  color: var(--header);
  font-family: "Signika", sans-serif;
  user-select: none;
  transition: color 0.3s;
}
.shop-sidebar-area .shop-sidebar-item .sidebar-inner .custom-checkbox:hover {
  color: #76756D;
}
.shop-sidebar-area .shop-sidebar-item .sidebar-inner .custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.shop-sidebar-area .shop-sidebar-item .sidebar-inner .checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 2px solid #76756D;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.shop-sidebar-area .shop-sidebar-item .sidebar-inner .custom-checkbox input:checked ~ .checkmark {
  background-color: var(--theme);
  border-color: var(--theme);
}
.shop-sidebar-area .shop-sidebar-item .sidebar-inner .custom-checkbox input:checked ~ span {
  color: #76756D;
  font-weight: 500;
}
.shop-sidebar-area .shop-sidebar-item .sidebar-inner {
  /* Checkmark tick sign */
}
.shop-sidebar-area .shop-sidebar-item .sidebar-inner .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--header);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.shop-sidebar-area .shop-sidebar-item .sidebar-inner .custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}
.shop-sidebar-area .toggle-icon {
  font-size: 14px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #222222;
}
.shop-sidebar-area .shop-sidebar-item.active .toggle-icon {
  transform: rotate(180deg);
}
.shop-sidebar-area .sidebar-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop-sidebar-area .shop-sidebar-item.active .sidebar-content {
  grid-template-rows: 1fr;
}
.shop-sidebar-area .price-filter-widget {
  width: 100%;
}
.shop-sidebar-area .slider-wrapper {
  position: relative;
  height: 30px;
}
.shop-sidebar-area .slider-track {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 30px;
}
.shop-sidebar-area .slider-range {
  position: absolute;
  top: 12px;
  height: 4px;
  background: var(--theme);
  border-radius: 30px;
}
.shop-sidebar-area .slider-wrapper input[type=range] {
  position: absolute;
  width: 100%;
  pointer-events: none;
  appearance: none;
  background: none;
  top: 6px;
  left: 0;
  margin: 0;
  z-index: 9;
}
.shop-sidebar-area .slider-wrapper input[type=range]::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  background: var(--theme);
  border: 3px solid var(--theme);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
}
.shop-sidebar-area .slider-wrapper input[type=range]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: transparent;
  border: 3px solid var(--theme);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
}
.shop-sidebar-area .filter-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop-sidebar-area .price-value {
  font-size: 16px;
  color: #666666;
  font-weight: 500;
  font-family: "Signika", sans-serif;
}
.shop-sidebar-area .price-value span {
  color: var(--text);
}
.shop-sidebar-area .filter-btn {
  border: 0;
  padding: 14px 15px;
  border-radius: 10px;
  background: var(--theme);
  color: var(--header);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  line-height: 1;
}
.shop-sidebar-area .filter-btn:hover {
  background: var(--header);
  color: var(--white);
}
.shop-sidebar-area .post-inner li {
  display: flex;
  align-items: center;
  gap: 17px;
  position: relative;
  z-index: 99;
}
.shop-sidebar-area .post-inner li:not(:last-child) {
  margin-bottom: 20px;
}
.shop-sidebar-area .post-inner li .content {
  width: 100%;
}
.shop-sidebar-area .post-inner li .content .star {
  color: #FF7C2B;
  font-size: 14px;
  margin-bottom: 4px;
}
.shop-sidebar-area .post-inner li .content .title {
  font-size: 18px;
  margin-bottom: 5px;
}
.shop-sidebar-area .post-inner li .content .price-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop-sidebar-area .post-inner li .content .price-list span {
  font-size: 18px;
  font-weight: 600;
  font-family: "Signika", sans-serif;
  color: var(--theme2);
}
.shop-sidebar-area .post-inner li .content .price-list .cart-icon {
  font-size: 17px;
  color: var(--theme);
}
.shop-sidebar-area .seller-list li {
  display: flex;
  align-items: center;
  gap: 20px;
}
.shop-sidebar-area .seller-list li:not(:last-child) {
  margin-bottom: 20px;
}
.shop-sidebar-area .seller-list li .thumb img {
  border-radius: 10px;
}
.shop-sidebar-area .seller-list li .content .star {
  font-size: 14px;
  font-weight: 500;
  font-family: "Signika", sans-serif;
  color: var(--header);
  display: flex;
  align-items: center;
  gap: 6px;
}
.shop-sidebar-area .seller-list li .content .star i {
  color: #FFC107;
}
.shop-sidebar-area .seller-list li .content p {
  color: var(--header);
  font-size: 16px;
  font-family: "Signika", sans-serif;
  font-weight: 500;
}
.shop-sidebar-area .seller-list li .content .price-list {
  margin-top: 5px;
}
.shop-sidebar-area .seller-list li .content .price-list span {
  font-size: 16px;
  font-weight: 500;
  color: #222222;
  font-family: "Signika", sans-serif;
}
.shop-sidebar-area .seller-list li .content .price-list del {
  font-size: 16px;
  font-weight: 500;
  font-family: "Signika", sans-serif;
}
.shop-sidebar-area .shop-sidebar-inner-banner {
  margin-top: 30px;
  border-radius: 20px;
  padding-bottom: 25px;
  overflow: hidden;
}
.shop-sidebar-area .shop-sidebar-inner-banner .content {
  padding: 35px 35px;
}
.shop-sidebar-area .shop-sidebar-inner-banner .title {
  color: var(--white);
  text-transform: uppercase;
  font-size: 44px;
  font-weight: 600;
  font-family: "Signika", sans-serif;
  letter-spacing: -0.02em;
  line-height: 100%;
  margin-bottom: 10px;
}
.shop-sidebar-area .shop-sidebar-inner-banner .text {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.shop-sidebar-area .shop-sidebar-inner-banner .price-items {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.shop-sidebar-area .shop-sidebar-inner-banner .price-items span {
  font-size: 32px;
  font-weight: 600;
  font-family: "Signika", sans-serif;
  color: var(--theme2);
}
.shop-sidebar-area .shop-sidebar-inner-banner .price-items del {
  font-size: 24px;
  font-weight: 600;
  font-family: "Signika", sans-serif;
  color: #9D9D9D;
}
.shop-sidebar-area .shop-sidebar-inner-banner .rice-image {
  text-align: right;
  padding-left: 35px;
  max-width: 277px;
  margin-left: auto;
}
.shop-sidebar-area .shop-sidebar-inner-banner .rice-image img {
  width: 100%;
}

.common-table {
  min-width: -moz-max-content;
  min-width: max-content;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.common-table .cart-item-thumb {
  width: 86px;
}
@media (max-width: 1399px) {
  .common-table .cart-item-thumb {
    flex-wrap: wrap;
  }
}
.common-table .cart-item-thumb .head {
  color: var(--header);
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
}
.common-table .price-usd {
  color: var(--header);
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
}
.common-table tr {
  border-bottom: 1px solid rgba(60, 60, 60, 0.14);
}

.common-table thead,
.common-table tbody {
  width: 100%;
}

.common-table thead tr,
.common-table tbody tr {
  width: 100%;
  display: flex;
  box-sizing: border-box;
}

.common-table thead tr th,
.common-table thead tr td,
.common-table tbody tr th,
.common-table tbody tr td {
  width: 100%;
  box-sizing: border-box;
}

.common-table thead tr {
  color: #1B1F2A;
  border-bottom: unset;
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid rgba(60, 60, 60, 0.14);
}

.common-table thead tr th {
  background: unset;
  color: unset;
  border: unset;
  font-size: 18px;
  padding-bottom: 16px;
}

.common-table tbody tr td {
  background: transparent;
  color: unset;
  box-sizing: border-box;
  border-bottom: unset;
}

.quantity {
  border-radius: 8px;
}
.quantity button i {
  font-size: 16px;
}
.quantity {
  border: 1px solid rgba(60, 60, 60, 0.14) !important;
}

.quantity .quantityValue {
  width: 40px;
  text-align: center;
  padding: 0;
  color: #000;
  border: unset;
  background-color: transparent;
}

@media (max-width: 767px) {
  .cart-list-area .table-responsive {
    overflow-x: scroll;
  }
}
@media (max-width: 991px) {
  .cart-list-area .table-responsive .table {
    width: 900px;
  }
}
.cart-list-area .coupon-items input {
  background: transparent;
  border: 1px solid rgba(60, 60, 60, 0.14);
  padding: 18px 20px;
  color: var(--text);
  line-height: 1;
  border-radius: 10px;
  font-size: 16px;
  text-transform: capitalize;
}
.cart-list-area .theme-btn {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}
.cart-list-area .theme-btn:hover {
  color: var(--white);
  background-color: #000;
}

.cart-total-area {
  margin-top: -10px;
}
.cart-total-area .theme-btn {
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 20px 30px;
  line-height: 1;
}
.cart-total-area .theme-btn:hover {
  color: var(--white);
  background-color: #000;
}
.cart-total-area h2 {
  font-size: 40px;
  margin-bottom: 5px;
  font-weight: 500;
}
.cart-total-area ul {
  margin-bottom: 50px;
}
.cart-total-area ul li {
  font-size: 20px;
  font-weight: 600;
  color: var(--header);
  display: flex;
  align-items: center;
  gap: 220px;
  border-bottom: 1px solid rgba(60, 60, 60, 0.14);
  padding-bottom: 25px;
  padding-top: 25px;
}
.cart-total-area ul li .subtotal {
  color: var(--header);
  font-weight: 600;
  margin-left: -30px;
}
.cart-total-area ul li .price {
  font-weight: 700;
  font-size: 22px;
  flex-basis: 30%;
}

.checkout-radio {
  background-color: var(--white);
  border-radius: 5px;
}
.checkout-radio .primary-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 16px;
  color: var(--header);
  text-transform: capitalize;
}
.checkout-radio {
  padding: 24px;
}
.checkout-radio h2 {
  color: var(--header);
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 24px;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input {
  border-radius: 50%;
  width: 18px;
  height: 18px;
  box-shadow: none;
  outline: none;
  border: 1px solid rgba(60, 60, 60, 0.14);
  font-weight: 500;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single label {
  color: var(--header);
  text-transform: capitalize;
  font-size: 18px;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single:not(:last-child) {
  margin-bottom: 12px;
}
@media (max-width: 500px) {
  .checkout-radio {
    padding: 10px;
  }
}

.checkout-single-wrapper .checkout-single h2 {
  color: var(--header);
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 24px;
  text-transform: capitalize;
  position: relative;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single input {
  width: 100%;
  outline: none;
  box-shadow: none;
  border: 1px solid rgba(60, 60, 60, 0.14);
  border-radius: 5px;
  padding: 12px 24px;
  color: var(--header);
  text-transform: capitalize;
  font-weight: 500;
  font-size: 16px;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single label {
  color: var(--header);
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-weight: 500;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single ::placeholder {
  color: var(--header);
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .list {
  width: 100%;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .payment {
  color: var(--header);
  margin-bottom: 12px;
  text-transform: capitalize;
}
.checkout-single-wrapper .boxshado-single {
  background-color: var(--white);
  border-radius: 5px;
  padding: 32px;
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .checkout-single-wrapper .boxshado-single {
    padding: 14px;
  }
}
.checkout-single-wrapper .checkout-single-bg {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 32px;
  background-color: #fff;
}
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single input {
  border: 1px solid rgba(60, 60, 60, 0.14);
  background: transparent;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .checkout-single-wrapper .checkout-single-bg {
    padding: 14px;
  }
}
.checkout-single-wrapper .checkout-single-bg .payment-save {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.checkout-single-wrapper .checkout-single-bg .payment-save input {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid rgba(60, 60, 60, 0.14);
  background-color: var(--theme);
  outline: none;
  color: var(--header);
}
.checkout-single-wrapper .checkout-single-bg .payment-save label {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.shop-details-wrapper .shop-details-image {
  position: relative;
}
.shop-details-wrapper .shop-details-image img {
  width: 100%;
  height: 100%;
}
.shop-details-wrapper .shop-details-image .nav {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 50px;
  justify-content: center;
  position: relative;
  z-index: 9;
}
.shop-details-wrapper .shop-details-image .nav .nav-link {
  padding: 0;
  width: 135px;
  height: 135px;
  line-height: 135px;
  border: 1px solid rgba(60, 60, 60, 0.17);
  border-radius: 12px;
  text-align: center;
  background: #fff;
}
@media (max-width: 1399px) {
  .shop-details-wrapper .shop-details-image .nav .nav-link {
    width: 117px;
    height: 117px;
    line-height: 117px;
  }
}
.shop-details-wrapper .shop-details-image .nav .nav-link img {
  border-radius: 12px;
  width: 100px;
  height: 96px;
}
@media (max-width: 1399px) {
  .shop-details-wrapper .shop-details-image .nav .nav-link img {
    width: 85px;
    height: 85px;
    line-height: 185px;
  }
}
.shop-details-wrapper .shop-details-image .nav .nav-link.active {
  border: 1px solid var(--theme);
}
.shop-details-wrapper .shop-details-image .shop-thumb img {
  width: 100%;
  height: 100%;
}
.shop-details-wrapper .product-details-content {
  margin-left: 60px;
}
@media (max-width: 1399px) {
  .shop-details-wrapper .product-details-content {
    margin-left: 30px;
  }
}
@media (max-width: 991px) {
  .shop-details-wrapper .product-details-content {
    margin-left: 0;
    margin-top: 30px;
  }
}
.shop-details-wrapper .product-details-content .des-sub {
  color: var(--theme2);
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}
.shop-details-wrapper .product-details-content h2 {
  font-size: 54px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .shop-details-wrapper .product-details-content h2 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .shop-details-wrapper .product-details-content h2 {
    font-size: 32px;
  }
}
.shop-details-wrapper .product-details-content .star a {
  color: #FF7C2B;
  font-size: 16px;
  font-weight: 600;
}
.shop-details-wrapper .product-details-content .star span {
  margin-left: 10px;
  font-size: 18px;
  color: #7B7B7B;
}
.shop-details-wrapper .product-details-content .details-text {
  font-size: 18px;
  font-weight: 400;
}
.shop-details-wrapper .product-details-content .sp-details-list {
  background-color: var(--white);
  padding: 22px 25px;
  border-radius: 8px;
  margin-top: 25px;
}
.shop-details-wrapper .product-details-content .sp-details-list li {
  color: var(--header);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}
.shop-details-wrapper .product-details-content .sp-details-list li i {
  color: var(--theme2);
}
.shop-details-wrapper .product-details-content .sp-details-list li:not(:last-child) {
  margin-bottom: 10px;
}
.shop-details-wrapper .product-details-content .price-list {
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 25px;
}
.shop-details-wrapper .product-details-content .price-list ul {
  display: flex;
  gap: 25px;
  margin-top: 10px;
}
.shop-details-wrapper .product-details-content .price-list ul li {
  font-size: 34px;
  color: var(--theme2);
  font-family: "Signika", sans-serif;
  font-weight: 700;
}
.shop-details-wrapper .product-details-content .price-list ul li del {
  color: #A8A8A8;
}
.shop-details-wrapper .product-details-content .cart-quantity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 30px 0;
}
@media (max-width: 1199px) {
  .shop-details-wrapper .product-details-content .cart-quantity {
    flex-wrap: wrap;
  }
}
.shop-details-wrapper .product-details-content .cart-quantity .qty {
  display: flex;
  align-items: center;
  border: 1px solid #E4E4E5;
  padding: 0 24px;
  line-height: 1;
  justify-content: space-between;
  border-radius: 8px;
  height: 60px;
  line-height: 60px;
  background-color: #fff;
}
@media (max-width: 575px) {
  .shop-details-wrapper .product-details-content .cart-quantity .qty {
    width: 100%;
  }
}
.shop-details-wrapper .product-details-content .cart-quantity .qty button,
.shop-details-wrapper .product-details-content .cart-quantity .qty input {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--header);
  font-weight: 400;
  font-size: 24px;
}
.shop-details-wrapper .product-details-content .cart-quantity .qty input {
  background-color: transparent;
  text-align: center;
  border-radius: 0;
  border: unset;
  outline: none;
}
.shop-details-wrapper .product-details-content .cart-quantity .shop-btn {
  width: 100%;
  background-color: var(--theme2);
  color: var(--white);
  padding: 0 20px;
  height: 60px;
  line-height: 60px !important;
  text-align: center;
  line-height: 1;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  text-transform: capitalize;
  border-radius: 8px;
}
.shop-details-wrapper .product-details-content .cart-quantity .shop-btn i {
  margin-right: 10px;
}
.shop-details-wrapper .product-details-content .cart-quantity .shop-btn::before {
  background-color: var(--header);
}
.shop-details-wrapper .product-details-content .cart-quantity .icon-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.shop-details-wrapper .product-details-content .cart-quantity .icon-item .icon {
  border: 1px solid #E4E4E5;
  padding: 0 24px;
  transition: all 0.4s ease-in-out;
  border-radius: 8px;
  height: 60px;
  line-height: 60px;
  background: #fff;
}
.shop-details-wrapper .product-details-content .cart-quantity .icon-item .icon:hover {
  background-color: var(--theme2);
  color: var(--white);
}
.shop-details-wrapper .product-details-content .details-info {
  position: relative;
}
.shop-details-wrapper .product-details-content .details-info:not(:last-child) {
  margin-bottom: 10px;
}
.shop-details-wrapper .product-details-content .details-info span {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--header);
}
.shop-details-wrapper .product-details-content .details-info a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-left: 150px;
  text-transform: capitalize;
}
.shop-details-wrapper .single-tab {
  padding-top: 60px;
}
.shop-details-wrapper .single-tab .nav {
  justify-content: center;
  border-bottom: 1px solid rgba(60, 60, 60, 0.14);
  padding-bottom: 20px;
}
.shop-details-wrapper .single-tab .nav .nav-link.active {
  position: relative;
}
.shop-details-wrapper .single-tab .nav .nav-link.active span {
  color: var(--theme2);
}
.shop-details-wrapper .single-tab .nav .nav-link.active::before {
  position: absolute;
  bottom: -21px;
  left: 0;
  height: 2px;
  width: 100%;
  content: "";
  background: var(--theme2);
  transition: 0.3s;
}
@media (max-width: 470px) {
  .shop-details-wrapper .single-tab .nav .nav-link.active::before {
    display: none;
  }
}
.shop-details-wrapper .single-tab .nav .nav-link span {
  font-size: 18px;
  text-transform: capitalize;
  color: var(--header);
  font-weight: 600;
}
.shop-details-wrapper .single-tab td {
  background-color: transparent;
}
.shop-details-wrapper .single-tab .description-items .description-content {
  margin-right: 50px;
}
@media (max-width: 1399px) {
  .shop-details-wrapper .single-tab .description-items .description-content {
    margin-right: 30px;
  }
}
@media (max-width: 991px) {
  .shop-details-wrapper .single-tab .description-items .description-content {
    margin-right: 0;
  }
}
.shop-details-wrapper .single-tab .description-items .description-content h3 {
  margin-bottom: 15px;
}
.shop-details-wrapper .single-tab .description-items .description-content .description-list-items {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .shop-details-wrapper .single-tab .description-items .description-content .description-list-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.shop-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li {
  font-size: 16px;
  text-transform: capitalize;
  color: var(--header);
  font-weight: 600;
}
.shop-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li span {
  color: var(--text);
  font-weight: 400;
}
@media (max-width: 767px) {
  .shop-details-wrapper .single-tab .review-items .admin-items {
    justify-content: center;
    gap: 30px;
  }
}
.shop-details-wrapper .single-tab .review-items .admin-items .admin-img {
  width: 100px;
  height: 100px;
}
@media (max-width: 575px) {
  .shop-details-wrapper .single-tab .review-items .admin-items .admin-img {
    margin-right: 0 !important;
    text-align: center;
    margin: 0 auto;
    margin-left: 0 !important;
  }
}
.shop-details-wrapper .single-tab .review-items .admin-items .admin-img img {
  border-radius: 50%;
}
.shop-details-wrapper .single-tab .review-items .admin-items .content {
  position: relative;
  border: 1px solid rgba(60, 60, 60, 0.14);
  border-radius: 4px;
}
@media (max-width: 575px) {
  .shop-details-wrapper .single-tab .review-items .admin-items .content {
    text-align: center !important;
  }
}
.shop-details-wrapper .single-tab .review-items .admin-items .content h3 {
  text-transform: capitalize;
  font-size: 18px;
}
@media (max-width: 575px) {
  .shop-details-wrapper .single-tab .review-items .admin-items .content .head-content {
    display: block !important;
    text-align: center;
  }
}
.shop-details-wrapper .single-tab .review-items .admin-items .content .head-content h3 span {
  font-size: 14px;
  margin-left: 30px;
}
@media (max-width: 575px) {
  .shop-details-wrapper .single-tab .review-items .admin-items .content .head-content h3 span {
    display: block !important;
    margin-left: 0 !important;
  }
}
.shop-details-wrapper .single-tab .review-items .admin-items .content .star i {
  font-size: 16px;
  color: #FF7C2B;
}
.shop-details-wrapper .single-tab .review-title h4 {
  font-weight: 500;
  text-transform: capitalize;
}
.shop-details-wrapper .single-tab .review-title .rate-now {
  margin-top: 15px;
  gap: 15px;
}
.shop-details-wrapper .single-tab .review-title .rate-now p {
  font-size: 16px;
  text-transform: capitalize;
}
.shop-details-wrapper .single-tab .review-title .rate-now i {
  font-size: 16px;
  color: #FF7C2B;
}
.shop-details-wrapper .single-tab .review-form {
  margin-top: 40px;
}
.shop-details-wrapper .single-tab .review-form .form-clt input {
  width: 100%;
  outline: none;
  border: 1px solid rgba(60, 60, 60, 0.14);
  padding: 20px 25px;
  color: var(--text);
  background-color: transparent;
  font-size: 16px;
  text-transform: capitalize;
  border-radius: 8px;
  line-height: 1;
}
@media (max-width: 575px) {
  .shop-details-wrapper .single-tab .review-form .form-clt input {
    padding: 15px 20px;
  }
}
.shop-details-wrapper .single-tab .review-form .form-clt-big textarea {
  padding: 18px 25px 170px;
  width: 100%;
  outline: none;
  color: var(--header);
  background-color: transparent;
  font-size: 16px;
  border: 1px solid rgba(60, 60, 60, 0.14);
  border-radius: 8px;
  text-transform: capitalize;
  line-height: 1;
}
@media (max-width: 575px) {
  .shop-details-wrapper .single-tab .review-form .form-clt-big textarea {
    padding: 15px 20px;
  }
}
.shop-details-wrapper .single-tab .review-form .form-clt-big textarea:placeholder {
  color: #000;
}
.shop-details-wrapper p {
  font-size: 16px;
}

.cart-section .add-carts-btns {
  background-color: var(--theme2);
  color: var(--white);
}
.cart-section .add-carts-btns::before {
  background: var(--header);
}

.counter-sec-two {
  position: relative;
}
.counter-sec-two .shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.best-seller-setion-two {
  position: relative;
}
.best-seller-setion-two .shape-1 {
  position: absolute;
  top: 0;
  right: 125px;
}/*# sourceMappingURL=main.css.map */