/*======================================================================================
Theme Name: POSH 
Author: pixel-plus
Author URI: https://themeforest.net/user/pixel-plus/portfolio
Description: POSH - Modern & Multi-Purpose eCommerce HTML Template
Service 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("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&amp;display=swap");
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #FF914D;
  --theme2: #C9E265;
  --theme3: #38B6FF;
  --theme4: #F58720;
  --header: #121212;
  --text: #808080;
  --border: #FCFCFC;
  --bg: #F0F0F0;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

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

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: "Plus Jakarta Sans", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
}

h1 {
  font-size: 80px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -2px;
}
@media (max-width: 1399px) {
  h1 {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 55px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 60px;
    line-height: 130% !important;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 44px;
  }
}
@media (max-width: 470px) {
  h1 {
    font-size: 34px;
  }
}

h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 135%;
}
@media (max-width: 1199px) {
  h2 {
    font-size: 38px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 470px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 135%;
}
@media (max-width: 575px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 16px;
  font-weight: 5 0;
}

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

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

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;
  text-transform: capitalize;
}

span {
  margin: 0px;
  text-transform: capitalize;
}

.theme-btn {
  background-color: var(--white);
  color: var(--header);
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: 0;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  line-height: 1;
}
.theme-btn::before {
  content: "";
  background-color: var(--theme);
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  -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);
  z-index: -1;
}
.theme-btn::after {
  content: "";
  background-color: var(--theme);
  width: 0;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  -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);
  z-index: -1;
}
.theme-btn i {
  margin-left: 10px;
}
.theme-btn.theme-btn2 {
  background-color: var(--white);
}
.theme-btn.theme-btn3 {
  background-color: var(--white);
}
.theme-btn.theme-btn3:hover {
  color: var(--white);
}
.theme-btn.theme-btn4 {
  background-color: var(--theme4);
}
.theme-btn.hover-white::before, .theme-btn.hover-white::after {
  background-color: var(--white);
}
.theme-btn.hover-white:hover {
  color: var(--header);
}
.theme-btn.border-btn {
  background: transparent;
  border: 1px solid #808080;
}
.theme-btn.border-btn::before, .theme-btn.border-btn::after {
  background-color: var(--theme2);
}
.theme-btn.border-btn:hover {
  border: 1px solid var(--theme2);
  color: var(--header);
}
.theme-btn.border-btn2 {
  background: transparent;
  border: 1px solid #808080;
}
.theme-btn.border-btn2::before, .theme-btn.border-btn2::after {
  background-color: var(--theme3);
}
.theme-btn.border-btn2:hover {
  border: 1px solid var(--theme3);
  color: var(--white);
}
.theme-btn:hover {
  color: var(--white);
}
.theme-btn:hover::before, .theme-btn:hover::after {
  width: 100%;
}
@media (max-width: 767px) {
  .theme-btn {
    padding: 20px 32px;
  }
}
@media (max-width: 575px) {
  .theme-btn {
    padding: 18px 30px;
    font-size: 14px;
  }
}

@keyframes slideRight {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes slideUp {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
/*---------------------------------------
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: var(--header);
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
  border: none;
  font-family: "Plus Jakarta Sans", 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: 18px;
}

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

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

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

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

.cursor-outer {
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  background-color: var(--theme);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.34;
  -webkit-transition: all 0.4s ease-out 0s;
  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%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}

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

.cursor-inner {
  -webkit-margin-start: -3px;
  margin-inline-start: -3px;
  margin-top: -3px;
  width: 10px;
  height: 10px;
  z-index: 10000001;
  background-color: var(--theme);
  opacity: 1;
  -webkit-transition: all 0.24s ease-out 0s;
  transition: all 0.24s ease-out 0s;
}
.cursor-inner span {
  color: var(--text);
  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 {
  -webkit-margin-start: -10px;
  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 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));
}

/*---------------------------------------
04. Layouts
---------------------------------------*/
.header-top-section {
  position: relative;
  z-index: 9999;
  background: rgb(201, 226, 101);
}
.header-top-section .container-fluid {
  padding: 0 30px;
}
@media (max-width: 1399px) {
  .header-top-section .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .header-top-section .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 1399px) {
  .header-top-section {
    display: none;
  }
}
.header-top-section.style-3 {
  background-color: var(--white);
  border-top: 4px solid rgb(56, 182, 255);
}
.header-top-section.style-4 {
  background-color: #000;
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0;
}
.header-top-wrapper .contact-list {
  display: flex;
  align-items: center;
  gap: 22px;
}
.header-top-wrapper .contact-list li {
  color: rgb(18, 18, 18);
  font-size: 14px;
  font-weight: 500;
}
.header-top-wrapper .contact-list li i {
  color: rgb(18, 18, 18);
  margin-right: 10px;
}
.header-top-wrapper .contact-list li a {
  color: rgb(18, 18, 18);
}
.header-top-wrapper .flag-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-top-wrapper .flag-wrapper .flag-wrap {
  position: relative;
}
@media (max-width: 1399px) {
  .header-top-wrapper .flag-wrapper .flag-wrap {
    display: none;
  }
}
.header-top-wrapper .flag-wrapper .flag-wrap .nice-select {
  background: transparent;
  border: none;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 99999;
}
.header-top-wrapper .flag-wrapper .flag-wrap .nice-select span {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--header);
}
.header-top-wrapper .flag-wrapper .flag-wrap .nice-select .list {
  background-color: var(--white);
  z-index: 9999;
}
.header-top-wrapper .flag-wrapper .flag-wrap .nice-select .list li {
  color: var(--header);
}
.header-top-wrapper .flag-wrapper .flag-wrap .nice-select::after {
  border-bottom: 2px solid var(--header);
  border-right: 2px solid var(--header);
  height: 7px;
  margin-top: -6px;
  width: 7px;
  right: -5px;
}
.header-top-wrapper .flag-wrapper .flag-wrap .nice-select.style-2 span {
  text-transform: uppercase;
}
.header-top-wrapper .flag-wrapper .flag-wrap .flag {
  position: absolute;
  top: 9px;
  left: 15px;
  z-index: 1;
}
@media (max-width: 767px) {
  .header-top-wrapper .flag-wrapper .flag-wrap .flag {
    display: none;
  }
}
.header-top-wrapper .flag-wrapper .content button.account-text {
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--header);
}
.header-top-wrapper.style-4 .contact-list {
  display: flex;
  align-items: center;
  gap: 22px;
}
.header-top-wrapper.style-4 .contact-list li {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 500;
}
.header-top-wrapper.style-4 .contact-list li i {
  color: rgb(255, 255, 255);
  margin-right: 10px;
}
.header-top-wrapper.style-4 .contact-list li a {
  color: rgb(255, 255, 255);
}
.header-top-wrapper.style-4 .flag-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-top-wrapper.style-4 .flag-wrapper .flag-wrap {
  position: relative;
}
@media (max-width: 1399px) {
  .header-top-wrapper.style-4 .flag-wrapper .flag-wrap {
    display: none;
  }
}
.header-top-wrapper.style-4 .flag-wrapper .flag-wrap .nice-select {
  background: transparent;
  border: none;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 99999;
}
.header-top-wrapper.style-4 .flag-wrapper .flag-wrap .nice-select span {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: rgb(255, 255, 255);
}
.header-top-wrapper.style-4 .flag-wrapper .flag-wrap .nice-select .list {
  background-color: var(--white);
  z-index: 9999;
}
.header-top-wrapper.style-4 .flag-wrapper .flag-wrap .nice-select .list li {
  color: #000;
}
.header-top-wrapper.style-4 .flag-wrapper .flag-wrap .nice-select::after {
  border-bottom: 2px solid rgb(255, 255, 255);
  border-right: 2px solid rgb(255, 255, 255);
  height: 7px;
  margin-top: -6px;
  width: 7px;
  right: -5px;
}
.header-top-wrapper.style-4 .flag-wrapper .flag-wrap .nice-select.style-2 span {
  text-transform: uppercase;
}
.header-top-wrapper.style-4 .flag-wrapper .flag-wrap .flag {
  position: absolute;
  top: 9px;
  left: 15px;
  z-index: 1;
}
@media (max-width: 767px) {
  .header-top-wrapper.style-4 .flag-wrapper .flag-wrap .flag {
    display: none;
  }
}
.header-top-wrapper.style-4 .flag-wrapper .content button.account-text {
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--header);
}

.header-top-wrapper-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top-wrapper-3 .flag-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-top-wrapper-3 .flag-wrapper .flag-wrap {
  position: relative;
}
@media (max-width: 1399px) {
  .header-top-wrapper-3 .flag-wrapper .flag-wrap {
    display: none;
  }
}
.header-top-wrapper-3 .flag-wrapper .flag-wrap .nice-select {
  background: transparent;
  border: none;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 99999;
}
.header-top-wrapper-3 .flag-wrapper .flag-wrap .nice-select span {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--header);
}
.header-top-wrapper-3 .flag-wrapper .flag-wrap .nice-select .list {
  background-color: var(--white);
  z-index: 9999;
}
.header-top-wrapper-3 .flag-wrapper .flag-wrap .nice-select .list li {
  color: var(--header);
}
.header-top-wrapper-3 .flag-wrapper .flag-wrap .nice-select::after {
  border-bottom: 2px solid rgb(18, 18, 18);
  border-right: 2px solid rgb(18, 18, 18);
  height: 7px;
  margin-top: -6px;
  width: 7px;
  right: -5px;
}
.header-top-wrapper-3 .flag-wrapper .flag-wrap .nice-select.style-2 span {
  text-transform: uppercase;
}
.header-top-wrapper-3 .flag-wrapper .flag-wrap .flag {
  position: absolute;
  top: 9px;
  left: 15px;
  z-index: 1;
}
@media (max-width: 767px) {
  .header-top-wrapper-3 .flag-wrapper .flag-wrap .flag {
    display: none;
  }
}
.header-top-wrapper-3 .header-icon {
  display: flex;
  align-items: center;
  gap: 18px;
}
@media (max-width: 1399px) {
  .header-top-wrapper-3 .header-icon {
    display: none;
  }
}
.header-top-wrapper-3 .header-icon li a {
  color: rgb(18, 18, 18);
  position: relative;
}
.header-top-wrapper-3 .header-icon li a i {
  font-size: 20px;
}
.header-top-wrapper-3 .header-icon li a .number {
  position: absolute;
  top: -11px;
  right: -8px;
  width: 17px;
  height: 17px;
  border-radius: 50px;
  line-height: 17px;
  text-align: center;
  background-color: rgb(56, 182, 255);
  color: rgb(18, 18, 18);
  font-size: 14px;
  font-weight: 400;
}

.header-top-section-5 {
  background-color: var(--white);
  position: relative;
  z-index: 9;
}
.header-top-section-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #FF914D;
  right: initial;
  width: 640px;
  z-index: -1;
}
.header-top-section-5::after {
  position: absolute;
  content: "";
  background-color: #FF914D;
  width: 640px;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.header-top-section-5 .container-fluid {
  padding: 0 170px;
}
@media (max-width: 1899px) {
  .header-top-section-5 .container-fluid {
    padding: 0 70px;
  }
}
@media (max-width: 1600px) {
  .header-top-section-5 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-top-section-5 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .header-top-section-5 .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 1399px) {
  .header-top-section-5 {
    display: none;
  }
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header-top-inner .text {
  color: rgb(18, 18, 18);
  font-size: 14px;
  font-weight: 500;
}
.header-top-inner .text img {
  margin-right: 5px;
  filter: grayscale(100%) brightness(0.2);
}

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

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 50px;
}
@media (max-width: 1199px) {
  .header-main .main-menu ul li {
    margin-inline-end: 30px;
  }
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: rgb(212, 212, 212);
  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: 14px;
}
.header-main .main-menu ul li a:hover {
  color: var(--theme);
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 115%;
  inset-inline-start: 0;
  min-width: 260px;
  padding: 20px 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out;
  border-top: 6px solid var(--theme);
  background-color: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.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: 16px;
  font-weight: 500;
  letter-spacing: -0.34px;
  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(--theme);
  left: 14px;
  bottom: 18px;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme);
}
.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;
}
.header-main .main-menu ul li .submenu li:hover > a {
  color: var(--theme) !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(--theme);
}
.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(--theme);
}
.header-main .main-menu ul li .has-homemenu {
  width: 1000px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -20px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
  background-color: var(--white);
  border-radius: 8px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}
.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;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
  width: 100%;
  padding: 0 12px;
}
@media (max-width: 1399px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .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 {
  background-color: var(--theme);
  color: var(--header);
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 40px;
  border-radius: 0;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  line-height: 1;
  text-align: center;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::before {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  -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);
  z-index: -1;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::after {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  -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);
  z-index: -1;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover::before, .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover::after {
  width: 100%;
}
.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-thumb::before {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
}
.header-main .main-menu ul li:hover > a {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-main .header-right {
  position: relative;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 25px;
}
.header-main .header-right .search-widget form {
  width: 100%;
  position: relative;
  width: 300px;
}
.header-main .header-right .search-widget form input {
  background-color: transparent;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 40px;
  width: 100%;
  border: none;
  color: rgb(128, 128, 128);
  border: 1px solid rgb(66, 66, 66);
  border-radius: 0px;
}
.header-main .header-right .search-widget form button {
  position: absolute;
  left: 16px;
  top: 13px;
  font-size: 16px;
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1399px) {
  .header-main .header-right .search-widget {
    display: none;
  }
}
.header-main .header-right .header-icon {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 1399px) {
  .header-main .header-right .header-icon {
    display: none;
  }
}
.header-main .header-right .header-icon li a {
  color: rgb(255, 255, 255);
  position: relative;
}
.header-main .header-right .header-icon li a i {
  font-size: 20px;
}
.header-main .header-right .header-icon li a .number {
  position: absolute;
  top: -11px;
  right: -8px;
  width: 17px;
  height: 17px;
  border-radius: 50px;
  line-height: 17px;
  text-align: center;
  background-color: rgb(255, 145, 77);
  color: rgb(18, 18, 18);
  font-size: 14px;
  font-weight: 400;
}
.header-main .header-right .header__hamburger .sidebar__toggle {
  color: rgb(255, 255, 255);
  cursor: pointer;
}
@media (max-width: 1399px) {
  .header-main .header-right .header__hamburger .sidebar__toggle {
    font-size: 22px;
  }
}

.header-1 {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background-color: rgb(18, 18, 18);
  margin-top: 44px;
}
@media (max-width: 1399px) {
  .header-1 {
    top: 0;
    margin-top: 0;
  }
}
.header-1 .container-fluid {
  padding: 0 30px;
}
@media (max-width: 575px) {
  .header-1 .container-fluid {
    padding: 0 15px;
  }
}
.header-1 .header-main .header-left {
  display: flex;
  align-items: center;
  gap: 150px;
}
.header-1 .header-main .header-left .header-logo-2 {
  display: none;
}
.header-1.header-2 {
  margin-top: 0;
  background-color: rgb(255, 255, 255);
  position: static;
}
.header-1.header-2 .header-main .header-left {
  display: flex;
  align-items: center;
  gap: 410px;
}
@media (max-width: 1600px) {
  .header-1.header-2 .header-main .header-left {
    gap: 90px;
  }
}
.header-1.header-2 .header-main .header-left .main-menu ul li a {
  color: rgb(18, 18, 18);
}
.header-1.header-2 .header-main .header-right .search-widget form input {
  color: rgb(128, 128, 128);
  border: 1px solid rgb(212, 212, 212);
}
.header-1.header-2 .header-main .header-right .search-widget form button {
  color: rgb(18, 18, 18);
  font-size: 18px;
}
.header-1.header-2 .header-main .header-right .header-icon li a {
  color: rgb(18, 18, 18);
}
.header-1.header-2 .header-main .header-right .header-icon li a .number {
  background-color: rgb(201, 226, 101);
}
.header-1.header-2 .header-main .header-right .header__hamburger .sidebar__toggle {
  color: rgb(18, 18, 18);
}
.header-1.header-3 {
  position: static;
  margin-top: 0;
}
.header-1.header-3 .header-main {
  padding: 0 0;
}
@media (max-width: 1399px) {
  .header-1.header-3 .header-main {
    padding: 10px 0;
  }
}
.header-1.header-3 .header-main .logo {
  display: none;
}
@media (max-width: 1399px) {
  .header-1.header-3 .header-main .logo {
    display: block;
  }
}
.header-1.header-3 .header-main .logo .logo-2 {
  display: none;
}
@media (max-width: 1399px) {
  .header-1.header-3 .header-main .header__hamburger {
    display: none;
  }
}
.header-1.header-3 .header-main .header__hamburger .sidebar__toggle {
  color: rgb(255, 255, 255);
  cursor: pointer;
}
.header-1.header-3 .header-main .search-widget form {
  width: 100%;
  position: relative;
}
.header-1.header-3 .header-main .search-widget form input {
  background-color: transparent;
  font-size: 14px;
  font-weight: 500;
  border: none;
  color: rgb(128, 128, 128);
  padding: 0;
}
.header-1.header-3 .header-main .search-widget form button {
  position: absolute;
  right: 40px;
  top: 2px;
  font-size: 15px;
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1399px) {
  .header-1.header-3 .header-main .search-widget {
    display: none;
  }
}
.header-1.header-3 .header-main .main-menu {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.header-1.header-3 .header-main .main-menu ul li {
  margin-inline-end: 0px;
}
.header-1.header-3 .header-main .main-menu ul li a {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 40px 12px;
}
.header-1.header-3 .header-main .main-menu ul li .submenu li a {
  padding: 0px 0px 0px 32px;
}
.header-1.header-3 .header-main .header-right .header__hamburger-2 {
  display: none;
}
@media (max-width: 1399px) {
  .header-1.header-3 .header-main .header-right .header__hamburger-2 {
    display: block;
  }
}
.header-1.header-3 .header-main .header-right .header__hamburger-2 .sidebar__toggle {
  color: rgb(255, 255, 255);
  cursor: pointer;
  font-size: 20px;
}
.header-1.header-4 {
  background-color: transparent;
}
.header-1.header-4 .header-main .header-left {
  display: flex;
  align-items: center;
  gap: 80px;
}
.header-1.header-4 .header-main .header-left .main-menu ul li a {
  color: rgb(18, 18, 18);
}
.header-1.header-4 .header-main .header-right .header-icon li a {
  color: rgb(18, 18, 18);
}
.header-1.header-4 .header-main .header-right .header-icon li a .number {
  background-color: #F58720;
  color: rgb(18, 18, 18);
}
.header-1.header-4 .header-main .header-right .header__hamburger .sidebar__toggle {
  color: rgb(18, 18, 18);
  cursor: pointer;
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 99999;
  transition: all 0.9s;
  background-color: var(--white);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.sticky.header-1 {
  margin-top: 0;
}
.sticky.header-1 .header-main .header-left .header-logo {
  display: none;
}
.sticky.header-1 .header-main .header-left .header-logo-2 {
  display: block;
}
.sticky.header-1 .header-main .main-menu ul li a {
  color: var(--header);
}
.sticky.header-1 .header-main .header-right .search-widget form button {
  color: var(--header);
}
.sticky.header-1 .header-main .header-right .header-icon li a {
  color: rgb(18, 18, 18);
}
.sticky.header-1 .header-main .header-right .header__hamburger .sidebar__toggle {
  color: rgb(18, 18, 18);
}
@media (max-width: 1399px) {
  .sticky.header-3 .header-main .header__hamburger {
    display: none;
  }
}
.sticky.header-3 .header-main .header__hamburger .sidebar__toggle {
  color: #000;
  cursor: pointer;
}
.sticky.header-3 .header-main .logo a {
  display: none;
}
@media (max-width: 1399px) {
  .sticky.header-3 .header-main .logo .logo-2 {
    display: block;
  }
}
.sticky.header-3 .header-main .header-right .header__hamburger-2 {
  display: none;
}
@media (max-width: 1399px) {
  .sticky.header-3 .header-main .header-right .header__hamburger-2 {
    display: block;
  }
}
.sticky.header-3 .header-main .header-right .header__hamburger-2 .sidebar__toggle {
  color: #000;
  cursor: pointer;
  font-size: 20px;
}
.sticky.header-4 {
  background-color: #fff;
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 450px;
  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;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}
.offcanvas__info.style-3 {
  background: var(--white) none repeat scroll 0 0;
  border-right: 2px solid var(--theme);
  position: fixed;
  left: 0;
  top: 0;
  width: 450px;
  height: 100%;
  transform: translateX(calc(-100% - 80px));
  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;
}
@media (max-width: 1399px) {
  .offcanvas__info.style-3 {
    background: var(--white);
    border-left: 2px solid var(--theme);
    position: fixed;
    right: 0;
    left: auto;
    top: 0;
    width: 300px;
    height: 100%;
    transform: translateX(calc(100% + 80px));
    transition: transform 0.45s ease-in-out;
    z-index: 9999999;
    overflow-y: scroll;
    scrollbar-width: none;
    position: fixed;
  }
  .offcanvas__info.style-3::-webkit-scrollbar {
    display: none;
  }
}
.offcanvas__info.style-3::-webkit-scrollbar {
  display: none;
}

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

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

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

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

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.breadcrumb-wrapper .page-heading {
  position: relative;
  padding: 190px 0 120px;
  z-index: 9;
  text-align: center;
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading {
    text-align: center;
    padding-top: 130px;
    padding-bottom: 90px;
  }
}
.breadcrumb-wrapper .page-heading h1 {
  color: var(--header);
  font-size: 50px;
  position: relative;
  text-transform: capitalize;
  z-index: 9;
}
@media (max-width: 470px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 40px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
  justify-content: center;
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    margin-top: 15px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: var(--header);
  text-transform: capitalize;
  font-weight: 500;
  font-size: 16px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--header);
  transition: all 0.4s ease-in-out;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a i {
  color: var(--theme);
  margin-right: 9px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
  opacity: 1;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a i {
  color: var(--theme);
  margin-right: 5px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: var(--white);
}

.error-items {
  text-align: center;
  position: relative;
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.error-items .error-image {
  margin-bottom: 40px;
}
.error-items .error-image img {
  width: 100%;
  height: 100%;
}
.error-items h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 15px;
  text-align: center;
}
@media (max-width: 575px) {
  .error-items h2 {
    font-size: 30px;
  }
}
.error-items p {
  max-width: 500px;
  margin: 0 auto 40px;
}
@media (max-width: 767px) {
  .error-items p {
    margin-bottom: 30px;
  }
}
.error-items .theme-btn {
  color: var(--header);
  border: 1px solid var(--header);
}
.error-items .theme-btn::before, .error-items .theme-btn ::after {
  background-color: var(--theme);
}
.error-items .theme-btn:hover {
  color: var(--white);
  border: 1px solid var(--theme);
}

.footer-section {
  background-color: #F0F0F0;
}
.footer-section .footer-head {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media (max-width: 767px) {
  .footer-section .footer-head {
    display: grid;
    justify-content: center;
    gap: 20px;
    text-align: center;
  }
}
.footer-section .footer-head .social-icon {
  gap: 8px;
}
.footer-section .footer-head .social-icon a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: var(--header);
  background-color: #D4D4D4;
}
.footer-section .footer-head .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.footer-section .footer-head .line {
  width: 100%;
  height: 1px;
  background-color: #D4D4D4;
  display: inline-block;
}
@media (max-width: 767px) {
  .footer-section .footer-head .line {
    display: none;
  }
}

.footer-widget-wrapper {
  padding: 40px 0 70px;
}
@media (max-width: 991px) {
  .footer-widget-wrapper {
    padding: 40px 0 60px;
  }
}
.footer-widget-wrapper .single-widget-items {
  margin-top: 30px;
}
.footer-widget-wrapper .single-widget-items .widget-head {
  margin-bottom: 20px;
}
.footer-widget-wrapper .single-widget-items .widget-head h3 {
  font-size: 18px;
  font-weight: 600;
}
.footer-widget-wrapper .single-widget-items .footer-content p {
  font-size: 16px;
  font-weight: 500;
  color: #424242;
}
.footer-widget-wrapper .single-widget-items .footer-content h4 {
  font-size: 18px;
  font-weight: 600;
}
.footer-widget-wrapper .single-widget-items .gt-list-area li {
  transition: all 0.4s ease-in-out;
  font-weight: 500;
}
.footer-widget-wrapper .single-widget-items .gt-list-area li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-widget-wrapper .single-widget-items .gt-list-area li a {
  color: #424242;
}
.footer-widget-wrapper .single-widget-items .gt-list-area li:hover {
  margin-left: 5px;
}
.footer-widget-wrapper .single-widget-items .gt-list-area li:hover a {
  color: var(--theme);
}
.footer-widget-wrapper .single-widget-items .contact-info {
  margin-left: auto;
}
.footer-widget-wrapper .single-widget-items .contact-info .info-items {
  margin-bottom: 20px;
}
.footer-widget-wrapper .single-widget-items .contact-info .info-items a {
  color: #121212;
  font-size: 20px;
  font-weight: 600;
  text-decoration: underline;
}
.footer-widget-wrapper .contact-info-area {
  max-width: 170px;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .footer-widget-wrapper .contact-info-area {
    margin-left: initial;
  }
}
.footer-widget-wrapper.footer-widget-wrapper-3 .single-widget-items .widget-head h3 {
  color: var(--white);
}
.footer-widget-wrapper.footer-widget-wrapper-3 .single-widget-items .footer-content p {
  color: #808080;
}
.footer-widget-wrapper.footer-widget-wrapper-3 .single-widget-items .footer-content form {
  position: relative;
  margin-top: 24px;
}
.footer-widget-wrapper.footer-widget-wrapper-3 .single-widget-items .footer-content form .form-clt input {
  width: 100%;
  border: none;
  background: rgba(46, 46, 46, 0.4);
  height: 56px;
  line-height: 56px;
  outline: none;
  padding-left: 16px;
}
.footer-widget-wrapper.footer-widget-wrapper-3 .single-widget-items .footer-content form .paper-btn {
  position: absolute;
  top: 6px;
  bottom: 0;
  right: 6px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  background-color: var(--white);
  text-align: center;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}
.footer-widget-wrapper.footer-widget-wrapper-3 .single-widget-items .footer-content form .paper-btn:hover {
  background-color: var(--theme3);
  color: var(--white);
}
.footer-widget-wrapper.footer-widget-wrapper-3 .single-widget-items .footer-content .social-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}
.footer-widget-wrapper.footer-widget-wrapper-3 .single-widget-items .footer-content .social-icon a {
  display: inline-block;
  background: rgba(46, 46, 46, 0.4);
  width: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  text-align: center;
  color: var(--white);
}
.footer-widget-wrapper.footer-widget-wrapper-3 .single-widget-items .footer-content .social-icon a:hover {
  background-color: var(--theme3);
  color: var(--white);
}
.footer-widget-wrapper.footer-widget-wrapper-3 .single-widget-items .gt-list-area li a {
  color: #808080;
}
.footer-widget-wrapper.footer-widget-wrapper-3 .single-widget-items .gt-list-area li:hover a {
  color: var(--theme3);
}
.footer-widget-wrapper.footer-widget-wrapper-3 .single-widget-items .contact-info {
  margin-left: auto;
}
.footer-widget-wrapper.footer-widget-wrapper-3 .single-widget-items .contact-info .info-items a {
  color: #fff;
}
.footer-widget-wrapper.footer-widget-wrapper-4 .footer-content {
  max-width: 230px;
}
.footer-widget-wrapper.footer-widget-wrapper-4 .footer-content .social-icon a:hover {
  background-color: var(--theme4) !important;
}
.footer-widget-wrapper.footer-widget-wrapper-4 .gt-list-area li a {
  color: #808080;
}
.footer-widget-wrapper.footer-widget-wrapper-4 .gt-list-area li:hover a {
  color: var(--theme4) !important;
}
.footer-widget-wrapper.footer-widget-wrapper-4 .footer-gallery .gallery-wrap .gallery-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-widget-wrapper.footer-widget-wrapper-4 .footer-gallery .gallery-wrap .gallery-item:not(:last-child) {
  margin-bottom: 10px;
}
.footer-widget-wrapper.footer-widget-wrapper-4 .footer-gallery .gallery-wrap .gallery-item .thumb {
  position: relative;
}
.footer-widget-wrapper.footer-widget-wrapper-4 .footer-gallery .gallery-wrap .gallery-item .thumb img {
  width: 100%;
  height: 100%;
}
.footer-widget-wrapper.footer-widget-wrapper-4 .footer-gallery .gallery-wrap .gallery-item .thumb .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  transition: 0.3s;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.footer-widget-wrapper.footer-widget-wrapper-4 .footer-gallery .gallery-wrap .gallery-item .thumb .icon::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(245, 135, 32, 0.4);
  transition: 0.4s;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.footer-widget-wrapper.footer-widget-wrapper-4 .footer-gallery .gallery-wrap .gallery-item .thumb .icon i {
  color: var(--white);
  font-size: 22px;
  z-index: 99;
  position: relative;
  margin-top: 30px;
}
.footer-widget-wrapper.footer-widget-wrapper-4 .footer-gallery .gallery-wrap .gallery-item .thumb:hover .icon {
  opacity: 1;
}
.footer-widget-wrapper.footer-widget-wrapper-4 .footer-gallery .gallery-wrap .gallery-item .thumb:hover .icon::after {
  opacity: 1;
}

.footer-bottom {
  background-color: var(--theme);
  padding: 24px 0;
}
.footer-bottom.style-2 {
  background-color: #2E2E2E;
}
.footer-bottom.style-2 .footer-bottom-wrapper p {
  color: var(--white);
}
.footer-bottom.style-3 {
  background-color: transparent;
  border-top: 1px solid #2E2E2E;
}
.footer-bottom.style-3 .footer-bottom-wrapper p {
  color: rgba(128, 128, 128, 0.9);
}
.footer-bottom.style-3 .footer-bottom-wrapper p a {
  color: var(--white);
}
.footer-bottom .footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer-bottom .footer-bottom-wrapper {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
  }
}
.footer-bottom .footer-bottom-wrapper p {
  font-size: 16px;
  font-weight: 400;
  color: var(--header);
}
.footer-bottom .footer-bottom-wrapper img {
  max-width: 278px;
  width: 100%;
}

.footer-section-2 {
  background-color: #121212;
}

.footer-widget-wrapper-2 {
  padding: 80px 0 80px;
}
.footer-widget-wrapper-2 .footer-left-items {
  background-color: #2E2E2E;
  padding: 44px 30px;
}
.footer-widget-wrapper-2 .footer-left-items .footer-logo {
  display: inline-block;
  margin-bottom: 30px;
}
.footer-widget-wrapper-2 .footer-left-items .footer-form-box {
  margin-top: 30px;
}
.footer-widget-wrapper-2 .footer-left-items .footer-form-box form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.footer-widget-wrapper-2 .footer-left-items .footer-form-box form .email-input {
  width: 100%;
  padding: 18px 20px;
  font-size: 18px;
  line-height: 1;
  border: none;
  outline: none;
  background-color: #ffffff;
  color: #000000;
}
.footer-widget-wrapper-2 .footer-left-items .footer-form-box form .email-input::placeholder {
  color: #888888;
}
.footer-widget-wrapper-2 .footer-left-items .footer-form-box form .radio-group {
  display: flex;
  gap: 30px;
  margin-bottom: 13px;
}
.footer-widget-wrapper-2 .footer-left-items .footer-form-box form .radio-group .radio-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #888888;
  font-size: 18px;
  position: relative;
  padding-left: 35px;
  user-select: none;
}
.footer-widget-wrapper-2 .footer-left-items .footer-form-box form .radio-group .radio-item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.footer-widget-wrapper-2 .footer-left-items .footer-form-box form .radio-group .radio-item .custom-radio {
  position: absolute;
  left: 0;
  height: 24px;
  width: 24px;
  border: 2px solid #808080;
  border-radius: 50%;
}
.footer-widget-wrapper-2 .footer-left-items .footer-form-box form .radio-group .radio-item .custom-radio:after {
  content: "";
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--theme2);
}
.footer-widget-wrapper-2 .footer-left-items .footer-form-box form .radio-group .radio-item input:checked ~ .custom-radio {
  border-color: var(--theme2);
}
.footer-widget-wrapper-2 .footer-left-items .footer-form-box form .radio-group .radio-item input:checked ~ .custom-radio:after {
  display: block;
}
.footer-widget-wrapper-2 .footer-left-items .footer-form-box form .theme-btn::before {
  background-color: var(--theme2);
}
.footer-widget-wrapper-2 .footer-left-items .footer-form-box form .theme-btn::after {
  background-color: var(--theme2);
}
.footer-widget-wrapper-2 .footer-left-items .footer-form-box form .theme-btn:hover {
  color: var(--header) !important;
}
.footer-widget-wrapper-2 .footer-right-items .download-box-items {
  border: 1px solid #2E2E2E;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .footer-widget-wrapper-2 .footer-right-items .download-box-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.footer-widget-wrapper-2 .footer-right-items .download-box-items .app-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-widget-wrapper-2 .footer-right-items .download-box-items .app-info .icon {
  background-color: var(--theme2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
}
.footer-widget-wrapper-2 .footer-right-items .download-box-items .app-info .content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}
.footer-widget-wrapper-2 .footer-right-items .download-box-items .app-info .content p {
  font-size: 14px;
  font-weight: 500;
}
.footer-widget-wrapper-2 .footer-right-items .download-box-items .social-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-widget-wrapper-2 .footer-right-items .download-box-items .social-icon a {
  display: inline-block;
  background-color: #2E2E2E;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  text-align: center;
  color: var(--white);
}
.footer-widget-wrapper-2 .footer-right-items .download-box-items .social-icon a:hover {
  background-color: var(--theme2);
  color: var(--header);
}
.footer-widget-wrapper-2 .footer-right-items .footer-link-items {
  background-color: #111111;
  display: flex;
  border: 1px solid #222222;
  margin: 0 auto;
}
.footer-widget-wrapper-2 .footer-right-items .footer-link-items .footer-col {
  flex: 1;
  padding: 40px 40px;
  border-right: 1px solid #222222;
  text-align: left;
  padding-top: 35px;
}
.footer-widget-wrapper-2 .footer-right-items .footer-link-items .footer-col:last-child {
  border-right: none;
}
.footer-widget-wrapper-2 .footer-right-items .footer-link-items .footer-col h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 0;
  text-align: left;
}
.footer-widget-wrapper-2 .footer-right-items .footer-link-items .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-widget-wrapper-2 .footer-right-items .footer-link-items .footer-col ul li {
  text-align: left;
}
.footer-widget-wrapper-2 .footer-right-items .footer-link-items .footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-widget-wrapper-2 .footer-right-items .footer-link-items .footer-col ul li a {
  color: #808080;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  transition: 0.3s;
}
.footer-widget-wrapper-2 .footer-right-items .footer-link-items .footer-col ul li a:hover {
  color: #cedf66;
}
@media (max-width: 768px) {
  .footer-widget-wrapper-2 .footer-right-items .footer-link-items {
    flex-direction: column;
  }
  .footer-widget-wrapper-2 .footer-right-items .footer-link-items .footer-col {
    border-right: none;
    border-bottom: 1px solid #222222;
    padding: 40px 30px;
  }
  .footer-widget-wrapper-2 .footer-right-items .footer-link-items .footer-col:last-child {
    border-bottom: none;
  }
}

.footer-section-3 {
  background-color: #121212;
}

.footer-form-4 {
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .footer-form-4 {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
  }
}
.footer-form-4 h2 {
  color: var(--white);
  font-size: 32px;
}
@media (max-width: 991px) {
  .footer-form-4 h2 br {
    display: none;
  }
}
@media (max-width: 575px) {
  .footer-form-4 h2 {
    font-size: 26px;
  }
}
.footer-form-4 h2 span {
  color: var(--theme);
}
.footer-form-4 form {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 565px;
  width: 100%;
}
.footer-form-4 form .form-clt {
  max-width: 392px;
  width: 100%;
}
.footer-form-4 form .form-clt input {
  width: 100%;
  border: none;
  background-color: var(--white);
  line-height: 1;
  padding: 17.5px 20px;
  outline: none;
  color: var(--text);
}
.footer-form-4 form .theme-btn {
  padding: 20px 32px;
  background-color: var(--white);
}
.footer-form-4 form .theme-btn::before, .footer-form-4 form .theme-btn::after {
  background-color: var(--theme4);
}
.footer-form-4 form .theme-btn:hover {
  color: var(--white);
}

.footer-newsletter-items-4 {
  border-bottom: 1px solid rgb(43, 43, 43);
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
  .section-title br {
    display: none;
  }
}
.section-title .sub-title {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--header);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 0.16em;
}
.section-title .sub-title img {
  line-height: 1;
  margin-right: 5px;
  margin-top: -3px;
}
.section-title h2 {
  color: var(--header);
}
.section-title h2 span {
  color: rgba(15, 23, 42, 0.3);
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
  margin-bottom: 25px;
}
@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;
  }
}

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

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

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

/*---------------------------------------
05. Sections
---------------------------------------*/
.hero-2 {
  background-color: #EBEBEB;
  padding: 150px 0;
  overflow: hidden;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero-2 {
    padding: 140px 0;
  }
}
@media (max-width: 575px) {
  .hero-2 {
    padding: 120px 0;
  }
}
.hero-2 .right-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  max-width: 1100px;
}
@media (max-width: 1600px) {
  .hero-2 .right-shape {
    max-width: 990px;
  }
}
@media (max-width: 1399px) {
  .hero-2 .right-shape {
    max-width: 790px;
  }
}
@media (max-width: 1199px) {
  .hero-2 .right-shape {
    display: none;
  }
}
.hero-2 .right-shape img {
  height: 100%;
}
.hero-2 .hero-content {
  position: relative;
  opacity: 0;
  z-index: 3;
  transform: translateY(-150px);
}
@media (max-width: 991px) {
  .hero-2 .hero-content {
    text-align: center;
  }
}
.hero-2 .hero-content span {
  display: inline-block;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #121212;
  margin-bottom: 15px;
}
.hero-2 .hero-content h1 {
  font-weight: bold;
  font-size: 92px;
  text-transform: capitalize;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content h1 {
    font-size: 70px;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-content h1 br {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content h1 {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    font-size: 45px;
  }
}
.hero-2 .hero-content h1 b {
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: rgba(18, 18, 18, 0.8);
  color: transparent;
}
.hero-2 .hero-content p {
  max-width: 500px;
  color: #424242;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .hero-2 .hero-content p {
    margin: 20px auto 0;
  }
}
.hero-2 .hero-button {
  margin-top: 35px;
  transform: translateY(150px);
  opacity: 0;
  position: relative;
  z-index: 9;
}
@media (max-width: 991px) {
  .hero-2 .hero-button {
    text-align: center;
  }
}
.hero-2 .hero-button .theme-btn {
  background-color: transparent;
  border: 1px solid var(--header);
  color: var(--header);
}
.hero-2 .hero-button .theme-btn::before, .hero-2 .hero-button .theme-btn::after {
  background-color: var(--theme2);
}
.hero-2 .hero-button .theme-btn:hover {
  color: var(--header);
  border: 1px solid var(--theme2);
}
.hero-2 .hero-image {
  position: relative;
  opacity: 0;
  z-index: 3;
  transform: translateX(150px);
  margin-left: 100px;
}
@media (max-width: 1600px) {
  .hero-2 .hero-image {
    margin-left: 0;
  }
  .hero-2 .hero-image img {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .hero-2 .hero-image {
    max-width: 600px;
  }
}
.hero-2 .hero-image .dis-count {
  position: absolute;
  top: 0;
  left: 20px;
}
@media (max-width: 1199px) {
  .hero-2 .hero-image .dis-count {
    max-width: 150px;
  }
  .hero-2 .hero-image .dis-count img {
    width: 100% !important;
    height: 100% !important;
  }
}
.hero-2 .hero-image .dis-count img {
  width: initial;
  height: initial;
}

.hero-section-2 {
  position: relative;
}
.hero-section-2 .array-button {
  position: absolute;
  top: 50%;
  transform: translateY(58%);
  left: 30px;
  z-index: 99;
  display: flex;
  align-items: center;
  right: 30px;
  justify-content: space-between;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 1199px) {
  .hero-section-2 .array-button {
    display: none;
  }
}
.hero-section-2 .array-button .array-prev {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 0;
  background-color: var(--white);
  color: var(--header);
  transition: all 0.4s ease-in-out;
  font-size: 18px;
}
.hero-section-2 .array-button .array-prev:hover {
  background-color: var(--theme2);
  color: var(--header);
}
.hero-section-2 .array-button .array-next {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 0;
  background-color: var(--white);
  color: var(--header);
  transition: all 0.4s ease-in-out;
  font-size: 18px;
}
.hero-section-2 .array-button .array-next:hover {
  background-color: var(--theme2);
  color: var(--header);
}
.hero-section-2:hover .array-button {
  transform: translateY(-50%);
  opacity: 1;
  visibility: visible;
}
.hero-section-2 .swiper-slide.swiper-slide-active .hero-content {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2500ms ease;
}
.hero-section-2 .swiper-slide.swiper-slide-active .hero-button {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2500ms ease;
}
.hero-section-2 .swiper-slide.swiper-slide-active .hero-image {
  opacity: 1;
  transform: translateX(0px);
  transition: all 2500ms ease;
}

.hero-section-3 {
  position: relative;
}
.hero-section-3 .swiper-dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  z-index: 99;
  right: 30px;
}
@media (max-width: 1199px) {
  .hero-section-3 .swiper-dot {
    display: none;
  }
}
.hero-section-3 .swiper-slide.swiper-slide-active .hero-content {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2500ms ease;
}
.hero-section-3 .swiper-slide.swiper-slide-active .hero-button {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2500ms ease;
}
.hero-section-3 .swiper-slide.swiper-slide-active .hero-image {
  opacity: 1;
  transform: translateX(0px);
  transition: all 2500ms ease;
}

.hero-3 {
  padding: 200px 0;
  position: relative;
}
@media (max-width: 1199px) {
  .hero-3 {
    padding: 160px 0 160px;
  }
}
@media (max-width: 767px) {
  .hero-3 {
    padding: 140px 0 140px;
  }
}
@media (max-width: 575px) {
  .hero-3 {
    padding: 120px 0 120px;
  }
}
.hero-3 .hero-content {
  position: relative;
  opacity: 0;
  z-index: 3;
  transform: translateY(-150px);
}
@media (max-width: 991px) {
  .hero-3 .hero-content {
    text-align: center;
  }
}
.hero-3 .hero-content .hero-sub-text {
  color: #121212;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.16em;
  margin-bottom: 4px;
  display: inline-block;
}
.hero-3 .hero-content h1 {
  font-weight: 700;
  font-size: 80px;
}
@media (max-width: 1199px) {
  .hero-3 .hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-content h1 {
    font-size: 48px;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-content h1 {
    font-size: 38px;
  }
}
.hero-3 .hero-content p {
  color: #424242;
  max-width: 500px;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .hero-3 .hero-content p {
    margin: 20px auto 0;
  }
}
.hero-3 .hero-content .price-items {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .hero-3 .hero-content .price-items {
    justify-content: center;
    margin-bottom: 25px;
  }
}
.hero-3 .hero-content .price-items h2 {
  font-weight: 700;
  font-size: 24px;
}
.hero-3 .hero-content .price-items del {
  font-weight: 600;
  font-size: 24px;
  color: #808080;
}
.hero-3 .hero-button {
  transform: translateY(150px);
  opacity: 0;
  position: relative;
  z-index: 9;
}
@media (max-width: 991px) {
  .hero-3 .hero-button {
    text-align: center;
  }
}
.hero-3 .hero-button .theme-btn {
  border: 1px solid var(--header);
  background-color: transparent;
}
.hero-3 .hero-button .theme-btn:hover {
  border: 1px solid var(--theme3);
}
.hero-3 .hero-image {
  text-align: center;
  transform: translateX(350px);
  opacity: 0;
  position: relative;
  z-index: 9;
}
@media (max-width: 991px) {
  .hero-3 .hero-image .thumb {
    max-width: 300px;
    margin: 0 auto;
  }
  .hero-3 .hero-image .thumb img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-image .thumb {
    max-width: 200px;
  }
}
.hero-3 .hero-image img {
  margin-right: -60px;
}
@media (max-width: 1199px) {
  .hero-3 .hero-image img {
    margin-right: 0;
  }
}
.hero-3 .hero-image .hero-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 991px) {
  .hero-3 .hero-image .hero-shape {
    display: none;
  }
}
.hero-3 .hero-image .hero-shape img {
  margin-right: 0;
}

.hero-4 {
  padding-bottom: 150px;
}
.hero-4 .hero-content {
  margin-top: 160px;
  position: relative;
  opacity: 0;
  z-index: 3;
  transform: translateY(-150px);
}
@media (max-width: 991px) {
  .hero-4 .hero-content {
    text-align: center;
    transform: initial;
  }
}
.hero-4 .hero-content span {
  display: inline-block;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #121212;
  margin-bottom: 0px;
}
.hero-4 .hero-content h1 {
  font-size: 90px;
  line-height: 110%;
}
@media (max-width: 1199px) {
  .hero-4 .hero-content h1 {
    font-size: 78px;
  }
}
@media (max-width: 991px) {
  .hero-4 .hero-content h1 {
    font-size: 65px;
  }
}
@media (max-width: 767px) {
  .hero-4 .hero-content h1 {
    font-size: 54px;
  }
}
@media (max-width: 575px) {
  .hero-4 .hero-content h1 {
    font-size: 40px;
  }
}
.hero-4 .hero-content h1 b {
  font-weight: 400;
}
.hero-4 .hero-content p {
  font-size: 20px;
  font-weight: 400;
  margin-top: 20px;
  color: rgb(128, 128, 128);
}
.hero-4 .hero-button {
  margin-top: 30px;
  transform: translateY(150px);
  opacity: 0;
  position: relative;
  z-index: 9;
}
@media (max-width: 991px) {
  .hero-4 .hero-button {
    text-align: center;
    transform: initial;
  }
}
.hero-4 .hero-button .theme-btn {
  background-color: transparent;
  border: 1px solid var(--header);
}
.hero-4 .hero-button .theme-btn::before {
  background-color: var(--theme4);
}
.hero-4 .hero-button .theme-btn::after {
  background-color: var(--theme4);
}
.hero-4 .hero-button .theme-btn:hover {
  border: 1px solid var(--theme4);
  color: var(--white);
}
.hero-4 .hero-image {
  text-align: center;
  transform: translateY(-350px);
  opacity: 0;
  position: relative;
  z-index: 9;
}
@media (max-width: 991px) {
  .hero-4 .hero-image {
    max-width: 450px;
    margin: 40px auto 0;
    transform: initial;
  }
}
.hero-4 .hero-image .discount {
  position: absolute;
  bottom: -80px;
  right: -30px;
}
.hero-4 .hero-image .icon-box {
  width: 215px;
  height: 215px;
  line-height: 215px;
  border-radius: 50%;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.355) 0%, rgba(255, 255, 255, 0.35) 100%);
  backdrop-filter: blur(15px);
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 991px) {
  .hero-4 .hero-image .icon-box {
    display: none;
  }
}
.hero-4 .hero-image .icon-box img {
  border-radius: initial;
  height: initial;
  width: initial;
}
.hero-4 .hero-image img {
  border-radius: 0px 0px 286px 286px;
}
@media (max-width: 1199px) {
  .hero-4 .hero-image img {
    width: 100%;
    height: 100%;
  }
}

.hero-1 {
  position: relative;
  padding-top: 280px;
  overflow: hidden;
  height: 100vh;
}
@media (max-width: 1600px) {
  .hero-1 {
    padding-top: 200px;
  }
}
@media (max-width: 991px) {
  .hero-1 {
    padding-top: 180px;
  }
}
.hero-1 .hero-content {
  max-width: 620px;
  position: relative;
  opacity: 0;
  z-index: 3;
  position: relative;
  transform: translateY(-150px);
}
.hero-1 .hero-content span {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-block;
  color: #FFFFFF;
  font-weight: 500;
  margin-bottom: 0px;
}
.hero-1 .hero-content h1 {
  color: var(--white);
  line-height: 120%;
}
.hero-1 .hero-content .offter-text {
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1;
  margin-top: 15px;
}
.hero-1 .hero-button {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  transform: translateY(250px);
  opacity: 0;
  position: relative;
  z-index: 9;
}
.hero-1 .hero-button .theme-btn {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}
.hero-1 .hero-button .theme-btn::before, .hero-1 .hero-button .theme-btn::after {
  background-color: var(--white);
}
.hero-1 .hero-button .theme-btn:hover {
  color: var(--theme);
}

.hero-section-4 {
  position: relative;
}
.hero-section-4 .swiper-dot {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}
.hero-section-4 .swiper-slide.swiper-slide-active .hero-content {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2000ms ease;
}
.hero-section-4 .swiper-slide.swiper-slide-active .hero-button {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2500ms ease;
}
.hero-section-4 .swiper-slide.swiper-slide-active .hero-image {
  opacity: 1;
  transform: translateY(0px);
  transition: all 2000ms ease;
}

.tp-showcase-arrow-box {
  position: absolute;
  top: 50%;
  right: 80px;
  z-index: 2;
  transform: translateY(-40%);
}
.tp-showcase-arrow-box button {
  display: block;
  height: 60px;
  width: 60px;
  font-size: 20px;
  margin-bottom: 10px;
  transform: translateY(-50%);
  color: var(--tp-common-white);
  background: var(--tp-theme-secondary);
  z-index: 2;
}
.tp-showcase-arrow-box button:hover {
  color: var(--tp-theme-secondary);
  background: var(--tp-common-white);
}

.tp-slider-dot {
  z-index: 3;
}

.showcase-slider-wrappper {
  height: 100vh;
}
.showcase-slider-wrappper .swiper-slide-active .hero-content {
  opacity: 1;
  transform: translateY(0px);
  transition: all 2500ms ease;
}
.showcase-slider-wrappper .swiper-slide-active .hero-button {
  opacity: 1;
  transform: translateY(0px);
  transition: all 2500ms ease;
}
.showcase-slider-wrappper .tp-hero-7-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(58%);
  left: 30px;
  z-index: 99;
  display: flex;
  align-items: center;
  right: 30px;
  justify-content: space-between;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 1199px) {
  .showcase-slider-wrappper .tp-hero-7-slider-arrow {
    display: none;
  }
}
.showcase-slider-wrappper .tp-hero-7-slider-arrow .tp-hero-prev {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--header);
  transition: all 0.4s ease-in-out;
  font-size: 18px;
}
.showcase-slider-wrappper .tp-hero-7-slider-arrow .tp-hero-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}
.showcase-slider-wrappper .tp-hero-7-slider-arrow .tp-hero-next {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--header);
  transition: all 0.4s ease-in-out;
  font-size: 18px;
}
.showcase-slider-wrappper .tp-hero-7-slider-arrow .tp-hero-next:hover {
  background-color: var(--theme);
  color: var(--white);
}
.showcase-slider-wrappper:hover .tp-hero-7-slider-arrow {
  transform: translateY(-50%);
  opacity: 1;
  visibility: visible;
}

#canvas-slider {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  right: 0;
  overflow: hidden;
  -webkit-transition: width 0.5s ease-in-out 0;
  transition: width 0.5s ease-in-out 0s;
  z-index: 1;
}
#canvas-slider .slider-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  background-position: center center;
  background-color: #222;
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#showcase-slider-holder {
  width: 100%;
  object-fit: cover;
  position: absolute;
  overflow: hidden;
  opacity: 1;
  z-index: 2;
}

.port-showcase-slider-item {
  height: 100vh;
}

.tp-slider__thumb-bg {
  position: absolute;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.parallax-slider-active .swiper-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.parallax-slider-active .swiper-container {
  width: 100%;
  height: 100vh;
}

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

.tp-hover-distort-wrapper {
  position: relative;
}
.tp-hover-distort-wrapper .canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.tp-hover-distort-img {
  opacity: 0;
  object-fit: cover;
}
.tp-hover-distort-img.back {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about-wrapper-4 {
  margin-bottom: 90px;
}
@media (max-width: 1199px) {
  .about-wrapper-4 {
    margin-bottom: 0;
  }
}
.about-wrapper-4 .about-image-items {
  max-width: 478px;
  position: relative;
}
@media (max-width: 1199px) {
  .about-wrapper-4 .about-image-items {
    max-width: initial;
  }
}
@media (max-width: 991px) {
  .about-wrapper-4 .about-image-items {
    height: 500px;
  }
}
.about-wrapper-4 .about-image-items img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-wrapper-4 .about-image-items .thumb1 {
  position: absolute;
  right: -100px;
  bottom: -100px;
}
@media (max-width: 1600px) {
  .about-wrapper-4 .about-image-items .thumb1 {
    right: -60px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper-4 .about-image-items .thumb1 {
    right: 0;
    bottom: 0;
  }
}
@media (max-width: 575px) {
  .about-wrapper-4 .about-image-items .thumb1 {
    max-width: 200px;
  }
  .about-wrapper-4 .about-image-items .thumb1 img {
    border: 2px solid var(--white);
  }
}
.about-wrapper-4 .about-image-items .thumb1 img {
  border: 8px solid var(--white);
}
.about-wrapper-4 .about-content .about-text {
  margin-top: 25px;
  max-width: 500px;
}
.about-wrapper-4 .about-content ul {
  margin-top: 32px;
  margin-bottom: 40px;
}
.about-wrapper-4 .about-content ul li {
  font-size: 20px;
  font-weight: 400;
  color: #121212;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-wrapper-4 .about-content ul li:not(:last-child) {
  margin-bottom: 15px;
}
.about-wrapper-4 .about-content .theme-btn.theme-btn4 {
  border: 1px solid var(--header);
  background-color: var(--white);
}
.about-wrapper-4 .about-content .theme-btn.theme-btn4::before {
  background-color: var(--theme4);
}
.about-wrapper-4 .about-content .theme-btn.theme-btn4::after {
  background-color: var(--theme4);
}
.about-wrapper-4 .about-content .theme-btn.theme-btn4:hover {
  border: 1px solid var(--theme4);
  color: var(--white);
}
.about-wrapper-4 .about-inner-right-thumb {
  max-width: 638px;
}
.about-wrapper-4 .about-inner-right-thumb img {
  width: 100%;
  height: 100%;
}

.about-section-4 {
  border-bottom: 1.2px solid #D4D4D4;
}

.about-inner-wrapper .thumb img {
  width: 100%;
}
.about-inner-wrapper .about-content {
  margin-left: 40px;
}
@media (max-width: 1199px) {
  .about-inner-wrapper .about-content {
    margin-left: 0;
  }
}
.about-inner-wrapper .about-content .accordion-box {
  position: relative;
  margin-top: 40px;
  max-width: 600px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  padding-top: 30px;
}
@media (max-width: 767px) {
  .about-inner-wrapper .about-content .accordion-box {
    margin-top: 30px;
  }
}
.about-inner-wrapper .about-content .accordion-box .block {
  position: relative;
  background-color: transparent;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  margin-bottom: 30px;
  line-height: 1;
  padding-bottom: 32px;
}
.about-inner-wrapper .about-content .accordion-box .block .acc-btn {
  position: relative;
  font-size: 20px;
  color: var(--header);
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media (max-width: 470px) {
  .about-inner-wrapper .about-content .accordion-box .block .acc-btn {
    font-size: 20px;
  }
}
.about-inner-wrapper .about-content .accordion-box .block .acc-btn .number {
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -3px;
  margin-left: -50px;
  margin-right: 15px;
}
.about-inner-wrapper .about-content .accordion-box .block .acc-btn .icon {
  position: absolute;
  right: 0;
  top: 0;
  height: 35px;
  font-size: 18px;
  line-height: 18px;
  color: var(--header);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.about-inner-wrapper .about-content .accordion-box .block .acc-content {
  position: relative;
  display: none;
  margin-top: 22px;
}
@media (max-width: 470px) {
  .about-inner-wrapper .about-content .accordion-box .block .acc-content {
    margin-top: 10px;
  }
}
.about-inner-wrapper .about-content .accordion-box .block .acc-content .content {
  position: relative;
}
.about-inner-wrapper .about-content .accordion-box .block .acc-content .content .text {
  line-height: 175%;
  font-size: 16px;
  font-weight: 400;
  color: #808080;
  max-width: 570px;
}
@media (max-width: 1199px) {
  .about-inner-wrapper .about-content .accordion-box .block .acc-content .content .text {
    font-size: 14px;
  }
}
@media (max-width: 470px) {
  .about-inner-wrapper .about-content .accordion-box .block .acc-content .content .text {
    font-size: 13px;
  }
}
.about-inner-wrapper .about-content .accordion-box .block .acc-content.current {
  display: block;
}
.about-inner-wrapper .about-content .accordion-box .block .acc-btn.active .icon:before {
  content: "\f077";
  color: var(--header);
}
.about-inner-wrapper .about-content .accordion-box .block .acc-btn.active {
  color: var(--header);
}
.about-inner-wrapper .about-content .accordion-box .block:last-child {
  margin-bottom: 0;
}
.about-inner-wrapper .about-content .about-btn {
  display: flex;
  align-items: center;
  margin-top: 40px;
  gap: 25px;
}
.about-inner-wrapper .about-content .about-btn .theme-btn {
  border: 1px solid var(--header);
}
.about-inner-wrapper .about-content .about-btn .theme-btn:hover {
  border: 1px solid var(--theme);
}
.about-inner-wrapper .about-content .about-btn .link-btn {
  color: var(--header);
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
}
.about-inner-wrapper .about-content .about-btn .link-btn:hover {
  color: var(--theme);
}

.about-counter-inner-wrapper {
  border-top: 1px solid #D4D4D4;
  border-bottom: 1px solid #D4D4D4;
  border-left: 1px solid #D4D4D4;
  border-right: 1px solid #D4D4D4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}
@media (max-width: 1199px) {
  .about-counter-inner-wrapper {
    padding: 30px;
    gap: 30px;
    flex-wrap: wrap;
  }
}
.about-counter-inner-wrapper .counter-items {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-counter-inner-wrapper .counter-items .icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  line-height: 68px;
  border: 1px solid #D4D4D4;
  text-align: center;
}
@media (max-width: 767px) {
  .about-counter-inner-wrapper .counter-items h2 {
    font-size: 30px;
  }
}
.about-counter-inner-wrapper .line {
  width: 1px;
  height: 148px;
  background-color: #D4D4D4;
}
@media (max-width: 1199px) {
  .about-counter-inner-wrapper .line {
    display: none;
  }
}

.marquee {
  position: relative;
  --duration: 30s;
  --gap: 0px;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 30px;
  background: rgba(201, 226, 101, 0.2);
  padding: 20px 0;
}
.marquee::before {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  height: 44px;
  width: 100%;
  background-color: var(--theme2);
  content: "";
}
.marquee.style-4 {
  background: rgba(245, 135, 32, 0.2);
}
.marquee.style-4::before {
  background-color: var(--theme4);
}
.marquee.slide-right {
  transform: scaleX(-1);
}
.marquee.slide-right .text,
.marquee.slide-right .stroke-text {
  transform: scaleX(-1);
}
.marquee .marquee-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  animation: scroll var(--duration) linear infinite;
}
.marquee .text {
  line-height: 1;
  font-weight: 500;
  font-size: 18px;
  color: #121212;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease-in-out;
}
.marquee .text span {
  margin-top: -10px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}

.marquee-1 {
  position: relative;
  --duration: 30s;
  --gap: 0px;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 20px;
  padding: 10px 0;
}
@media (max-width: 1399px) {
  .marquee-1 {
    display: none;
  }
}
.marquee-1.slide-right {
  transform: scaleX(-1);
}
.marquee-1.slide-right .text,
.marquee-1.slide-right .stroke-text {
  transform: scaleX(-1);
}
.marquee-1 .marquee-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  animation: scroll var(--duration) linear infinite;
}
.marquee-1 .text {
  line-height: 1;
  font-weight: 500;
  font-size: 14px;
  color: rgb(18, 18, 18);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease-in-out;
}
.marquee-1 .text span {
  display: inline-block;
  transition: all 0.4s ease-in-out;
  color: rgb(255, 145, 77);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
.choose-us-box-items {
  margin-top: 30px;
  border: 1px solid rgb(46, 46, 46);
  padding: 24px;
  position: relative;
  z-index: 2;
}
.choose-us-box-items::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  -webkit-transform: scale(1, 0.3);
  transform: scale(1, 0.3);
  background-color: var(--theme2);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}
.choose-us-box-items .icon {
  border: 1px solid rgb(46, 46, 46);
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 65px;
  border-radius: 50%;
}
.choose-us-box-items .content {
  margin-top: 30px;
}
.choose-us-box-items .content h3 {
  color: var(--white);
  margin-bottom: 20px;
}
.choose-us-box-items .content .link-btn {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  display: inline-block;
}
.choose-us-box-items .content .link-btn i {
  margin-left: 5px;
}
.choose-us-box-items .content .link-btn:hover {
  color: var(--theme2);
}
.choose-us-box-items:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}
.choose-us-box-items:hover .content h3 {
  color: var(--header);
}
.choose-us-box-items:hover .content p {
  color: #121212;
}
.choose-us-box-items:hover .content .link-btn {
  color: #121212;
}
.choose-us-box-items:hover .icon {
  background-color: var(--header);
}
.choose-us-box-items:hover .icon img {
  animation: 0.6s ease 0s 1 normal none running gelatine;
}

.feature-box-3 {
  padding: 10px;
}
.feature-box-3 .icon-circle {
  width: 70px;
  height: 70px;
  background-color: #ebebeb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease-in-out;
}
.feature-box-3 .icon-circle i {
  font-size: 26px;
  color: #111111;
}
@media (max-width: 576px) {
  .feature-box-3 .icon-circle {
    width: 60px;
    height: 60px;
  }
  .feature-box-3 .icon-circle i {
    font-size: 22px;
  }
}
.feature-box-3 h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .feature-box-3 h3 {
    font-size: 16px;
  }
}
.feature-box-3 p {
  font-size: 16px;
  line-height: 1.4;
  margin-top: 5px;
}
@media (max-width: 576px) {
  .feature-box-3 p {
    font-size: 13px;
  }
}
.feature-box-3:hover .icon-circle {
  background-color: var(--theme3);
}
.feature-box-3.style-2 {
  display: flex;
  gap: 12px;
}
@media (max-width: 1199px) {
  .feature-box-3.style-2 {
    display: grid;
  }
}
.feature-box-3.style-2 .icon-circle {
  margin: initial;
  margin-bottom: 20px;
  background-color: var(--white);
  width: 100%;
  max-width: 70px;
}
@media (max-width: 1199px) {
  .feature-box-3.style-2 .icon-circle {
    width: 70px;
    height: 70px;
  }
}
.feature-box-3.style-2 p {
  font-size: 15px;
  line-height: 1.9;
}
.feature-box-3.style-2 p br {
  display: none !important;
}

.feature-section-3 {
  border-bottom: 1px solid #F0F0F0;
}

.team-box-items {
  margin-top: 30px;
  text-align: center;
  background-color: var(--white);
  margin-top: 30px;
  padding: 40px 20px;
}
.team-box-items .thumb {
  max-width: 255px;
  margin: 0 auto;
  transition: all 900ms ease;
}
.team-box-items .thumb img {
  width: 100%;
  height: 100%;
}
.team-box-items .content {
  margin-top: 20px;
}
.team-box-items .content h3 {
  margin-bottom: 5px;
}
.team-box-items .content .social-icon {
  gap: 8px;
  margin-top: 20px;
  justify-content: center;
}
.team-box-items .content .social-icon a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: var(--header);
  background-color: transparent;
  border: 1px solid #D4D4D4;
}
.team-box-items .content .social-icon a:hover {
  background-color: var(--theme);
  border: 1px solid var(--theme);
}
.team-box-items:hover .thumb {
  transform: rotateY(360deg);
}

.categorie-wrapper {
  position: relative;
}
.categorie-wrapper .categorie-left-image {
  margin-top: 25px;
  position: relative;
  overflow: hidden;
}
.categorie-wrapper .categorie-left-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.categorie-wrapper .categorie-left-image 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);
}
.categorie-wrapper .categorie-left-image .title {
  background-color: #121212;
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 14px 16px;
  line-height: 1;
  z-index: 99;
}
.categorie-wrapper .categorie-left-image .title a {
  color: var(--white);
}
.categorie-wrapper .categorie-left-image .title a:hover {
  color: var(--theme);
}
.categorie-wrapper .categorie-left-image .title a span {
  font-size: 14px;
  color: #808080;
}
.categorie-wrapper .categorie-left-image:hover img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.categorie-wrapper .categorie-left-image:hover img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.categorie-wrapper .categorie-right-image {
  margin-top: 25px;
  position: relative;
  overflow: hidden;
}
.categorie-wrapper .categorie-right-image img {
  width: 100%;
  height: 100%;
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.categorie-wrapper .categorie-right-image .title {
  background-color: var(--white);
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 12px 14px;
  line-height: 1;
  z-index: 99;
}
.categorie-wrapper .categorie-right-image .title a {
  color: var(--header);
}
.categorie-wrapper .categorie-right-image .title a:hover {
  color: var(--theme);
}
.categorie-wrapper .categorie-right-image .title a span {
  font-size: 14px;
  color: #808080;
}
.categorie-wrapper .categorie-right-image .back-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
}
.categorie-wrapper .categorie-right-image .font-image {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.categorie-wrapper .categorie-right-image:hover .font-image {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
}
.categorie-wrapper .categorie-right-image:hover .back-image {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.categorie-wrapper .categorie-right-image.style-2 .title a:hover {
  color: var(--theme4);
}
.categorie-wrapper .array-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -25px;
  right: -25px;
  z-index: 99;
}
@media (max-width: 1199px) {
  .categorie-wrapper .array-button {
    display: none;
  }
}
.categorie-wrapper .array-button .array-prev, .categorie-wrapper .array-button .array-next {
  background-color: var(--white);
  box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.12);
  color: var(--header);
}
.categorie-wrapper .array-button .array-prev:hover, .categorie-wrapper .array-button .array-next:hover {
  background-color: var(--theme4);
}

.shop-card-items {
  margin-top: 25px;
}
.shop-card-items .thumb {
  position: relative;
  overflow: hidden;
}
.shop-card-items .thumb img {
  width: 100%;
  height: 100%;
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.shop-card-items .thumb .theme-btn {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  width: calc(100% - 30px);
  background-color: var(--header);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  bottom: -50px;
  transition: all 0.4s ease-in-out;
}
.shop-card-items .thumb .theme-btn::before, .shop-card-items .thumb .theme-btn::after {
  background-color: var(--theme);
}
.shop-card-items .thumb .theme-btn i {
  margin-left: 0;
  margin-right: 8px;
}
.shop-card-items .thumb .gt-shop-icon {
  gap: 10px;
  position: absolute;
  top: 16px;
  right: 16px;
}
.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 {
  background-color: var(--white);
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  color: var(--theme);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}
.shop-card-items .thumb .gt-shop-icon li a:hover, .shop-card-items .thumb .gt-shop-icon li button:hover {
  background-color: var(--theme);
  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: 500;
  color: #121212;
  height: 29px;
  line-height: 29px;
  text-align: center;
  padding: 0 8px;
  background: #EBEBEB;
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}
.shop-card-items .shop-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 20px;
}
.shop-card-items .shop-content .content span {
  font-size: 14px;
  display: inline-block;
  margin-bottom: 5px;
}
.shop-card-items .shop-content .content h3 {
  font-size: 16px;
  font-weight: 500;
}
.shop-card-items .shop-content .content h3 a:hover {
  color: var(--theme);
}
.shop-card-items .shop-content .content h4 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
}
.shop-card-items .shop-content .color-picker {
  display: flex;
  align-items: center;
  gap: 12px;
}
.shop-card-items .shop-content .color-picker .color-box {
  width: 12px;
  height: 12px;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: outline 0.1s ease-in-out;
}
.shop-card-items .shop-content .color-picker .color-box.box-black {
  background-color: #120F14;
}
.shop-card-items .shop-content .color-picker .color-box.box-brown {
  background-color: #B77351;
}
.shop-card-items .shop-content .color-picker .color-box.box-blue {
  background-color: #9EC5FF;
}
.shop-card-items .shop-content .color-picker .color-box.active {
  outline: 1px solid #808080;
  border: 1px solid #ffffff;
}
.shop-card-items .shop-content .color-picker .more-count {
  font-size: 14px;
  color: #808080;
  font-weight: 500;
}
.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 .theme-btn {
  opacity: 1;
  visibility: visible;
  bottom: 16px;
}
.shop-card-items.style-2 .thumb .theme-btn::before, .shop-card-items.style-2 .thumb .theme-btn::after {
  background-color: var(--theme2);
}
.shop-card-items.style-2 .thumb .theme-btn:hover {
  color: #120F14;
}
.shop-card-items.style-2 .thumb .gt-shop-icon li a, .shop-card-items.style-2 .thumb .gt-shop-icon li button {
  background-color: var(--white);
  color: var(--theme);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.shop-card-items.style-2 .thumb .gt-shop-icon li a:hover, .shop-card-items.style-2 .thumb .gt-shop-icon li button:hover {
  background-color: var(--theme);
  color: var(--white);
}
.shop-card-items.style-2 .shop-content .content h3 a:hover {
  color: var(--theme2);
}
.shop-card-items.style-4 {
  border: 1px solid #D4D4D4;
}
.shop-card-items.style-4 .thumb .discount-text {
  background-color: var(--white);
}
.shop-card-items.style-4 .thumb .theme-btn::before, .shop-card-items.style-4 .thumb .theme-btn::after {
  background-color: var(--theme4);
}
.shop-card-items.style-4 .thumb .theme-btn:hover {
  color: var(--white);
}
.shop-card-items.style-4 .thumb .gt-shop-icon li a, .shop-card-items.style-4 .thumb .gt-shop-icon li button {
  background-color: var(--white);
  color: var(--theme4);
}
.shop-card-items.style-4 .thumb .gt-shop-icon li a:hover, .shop-card-items.style-4 .thumb .gt-shop-icon li button:hover {
  background-color: var(--theme4);
  color: var(--white);
}
.shop-card-items.style-4 .shop-content {
  padding: 30px 20px;
  margin-top: 0;
  padding-top: 20px;
}
.shop-card-items.style-4 .shop-content .content span {
  text-transform: capitalize;
}
.shop-card-items.style-4 .shop-content .content h3 a:hover {
  color: var(--theme4);
}
.shop-card-items.style-4 .shop-content .star {
  font-size: 14px;
  color: #FEC300;
}

.product-day-section {
  background-color: #121212;
  position: relative;
}
@media (max-width: 1399px) {
  .product-day-section {
    padding: 120px 0;
  }
}
@media (max-width: 1199px) {
  .product-day-section {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .product-day-section {
    padding: 80px 0;
    padding-top: 0;
  }
}
@media (max-width: 1199px) {
  .product-day-section.product-day-section1 {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .product-day-section.product-day-section1 {
    padding: 80px 0 0;
  }
}
.product-day-section .dot-shape {
  position: absolute;
  top: 75px;
  right: 100px;
}
@media (max-width: 1399px) {
  .product-day-section .dot-shape {
    display: none;
  }
}
.product-day-section.style-2 {
  background: #E6E6E6;
}
.product-day-section.style-2 .shape1 {
  position: absolute;
  right: 0;
  bottom: 60px;
}
@media (max-width: 1899px) {
  .product-day-section.style-2 .shape1 {
    display: none;
  }
}
.product-day-section.style-2 .product-day-wrapper .product-day-content h6 {
  color: var(--header);
}
.product-day-section.style-2 .product-day-wrapper .product-day-content h2 {
  color: var(--header);
}
.product-day-section.style-2 .product-day-wrapper .product-day-content p {
  font-size: 16px;
  font-weight: 400;
  color: #808080;
  max-width: 500px;
  margin-top: 30px;
}
.product-day-section.style-2 .product-day-wrapper .product-day-content .coming-soon-time {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 35px;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .product-day-section.style-2 .product-day-wrapper .product-day-content .coming-soon-time {
    flex-wrap: wrap;
    margin-bottom: 25px;
    margin-top: 25px;
  }
}
.product-day-section.style-2 .product-day-wrapper .product-day-content .coming-soon-time .timer-content {
  text-align: center;
  border-top: 1px solid #D4D4D4;
  border-bottom: 1px solid #D4D4D4;
  min-width: 110px;
  padding: 20px 0;
}
.product-day-section.style-2 .product-day-wrapper .product-day-content .coming-soon-time .timer-content span {
  display: inline-block;
  margin-top: 5px;
}
.product-day-section.style-2 .product-day-wrapper .product-day-content .theme-btn.theme-btn2::before {
  background-color: var(--theme2);
}
.product-day-section.style-2 .product-day-wrapper .product-day-content .theme-btn.theme-btn2::after {
  background-color: var(--theme2);
}
.product-day-section.style-2 .product-day-wrapper .product-day-content .theme-btn.theme-btn2:hover {
  color: var(--header) !important;
}

.product-day-wrapper {
  position: relative;
}
.product-day-wrapper .product-day-image .offer-box {
  position: absolute;
  top: 16%;
  left: 35%;
  z-index: 88;
}
@media (max-width: 1399px) {
  .product-day-wrapper .product-day-image .offer-box {
    display: none;
  }
}
.product-day-wrapper .product-day-image .location-indicator {
  width: 32px;
  height: 32px;
  background-color: rgba(18, 18, 18, 0.7);
  border-radius: 50%;
  position: absolute;
  cursor: pointer;
  z-index: 1;
}
.product-day-wrapper .product-day-image .location-indicator::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background-color: var(--white);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.product-day-wrapper .product-day-image .location-indicator.loc-1 {
  top: 30%;
  inset-inline-start: 25%;
}
@media (max-width: 1199px) {
  .product-day-wrapper .product-day-image .location-indicator.loc-1 {
    display: none;
  }
}
.product-day-wrapper .product-day-image .location-indicator.loc-2 {
  bottom: 20%;
  inset-inline-start: 20%;
}
.product-day-wrapper .product-day-image .location-indicator.loc-3 {
  bottom: 15%;
  inset-inline-start: 30%;
}
.product-day-wrapper .product-day-image .location-indicator.loc-4 {
  top: 30%;
  inset-inline-start: 13%;
}
@media (max-width: 1199px) {
  .product-day-wrapper .product-day-image .location-indicator.loc-4 {
    display: none;
  }
}
.product-day-wrapper .product-day-image .location-indicator::after {
  content: "";
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 100%;
  z-index: -2;
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  border-radius: 50%;
  animation: pulse4 1.6s linear infinite;
}
.product-day-wrapper .product-day-image .location-indicator:hover .location-tooltip {
  opacity: 1;
  visibility: visible;
  margin-bottom: 42px;
}
.product-day-wrapper .product-day-image .location-tooltip {
  width: 140px;
  background-color: var(--white);
  box-shadow: 0 10px 40px 0 rgba(29, 31, 21, 0.1);
  padding: 18px 0;
  line-height: 1;
  font-family: "Plus Jakarta Sans", sans-serif;
  position: absolute;
  margin-bottom: 35px;
  text-align: center;
  inset-inline-start: 50%;
  bottom: 0;
  transform: translateX(-50%);
  cursor: default;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .product-day-wrapper .product-day-image .location-tooltip {
    width: initial;
    max-width: 300px;
  }
}
.product-day-wrapper .product-day-image .location-tooltip::after {
  content: "";
  background: var(--white);
  width: 14px;
  height: 14px;
  z-index: -1;
  position: absolute;
  inset-inline-start: 50%;
  bottom: -7px;
  transform: translateX(-50%) rotate(45deg);
}
.product-day-wrapper .product-day-image .location-tooltip p {
  color: var(--header);
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 575px) {
  .product-day-wrapper .product-day-image .location-tooltip p {
    font-size: 14px;
  }
}
.product-day-wrapper .product-day-image .location-tooltip span {
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
}
.product-day-wrapper .product-day-image img {
  width: 100%;
  height: 100%;
}
.product-day-wrapper .product-day-image video {
  width: 50%;
  height: 700px;
  position: absolute;
  top: -85px;
  object-fit: cover;
  left: 0;
  display: block;
}
@media (max-width: 1600px) {
  .product-day-wrapper .product-day-image video {
    top: -120px;
  }
}
@media (max-width: 1399px) {
  .product-day-wrapper .product-day-image video {
    top: -120px;
  }
}
@media (max-width: 1199px) {
  .product-day-wrapper .product-day-image video {
    top: -80px;
  }
}
@media (max-width: 991px) {
  .product-day-wrapper .product-day-image video {
    position: static;
    width: 100%;
    margin-top: 30px;
    height: 500px;
  }
}
.product-day-wrapper .product-day-content {
  margin-left: 80px;
}
@media (max-width: 991px) {
  .product-day-wrapper .product-day-content {
    margin-right: 20px;
    margin-top: 25px;
  }
}
@media (max-width: 1399px) {
  .product-day-wrapper .product-day-content {
    margin-left: 20px;
  }
}
.product-day-wrapper .product-day-content .sub-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  display: inline-block;
}
.product-day-wrapper .product-day-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
}
@media (max-width: 575px) {
  .product-day-wrapper .product-day-content h2 {
    font-size: 30px;
  }
}
.product-day-wrapper .product-day-content p {
  font-size: 16px;
  font-weight: 400;
  color: #808080;
  max-width: 500px;
  margin-top: 30px;
}
.product-day-wrapper .product-day-content .coming-soon-time {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 35px;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .product-day-wrapper .product-day-content .coming-soon-time {
    flex-wrap: wrap;
    margin-bottom: 25px;
    margin-top: 25px;
  }
}
.product-day-wrapper .product-day-content .coming-soon-time .timer-content {
  text-align: center;
  border-top: 1px solid #2E2E2E;
  border-bottom: 1px solid #2E2E2E;
  min-width: 110px;
  padding: 20px 0;
}
.product-day-wrapper .product-day-content .coming-soon-time .timer-content span {
  display: inline-block;
  margin-top: 5px;
}
.product-day-wrapper .product-day-content .theme-btn.theme-btn3 {
  border: 1px solid var(--header);
}
.product-day-wrapper .product-day-content .theme-btn.theme-btn3:hover {
  border: 1px solid var(--theme3);
}
@media (max-width: 991px) {
  .product-day-wrapper.style-3 {
    padding-top: 80px;
  }
}
.product-day-wrapper.style-3 .product-day-image {
  position: relative;
}
.product-day-wrapper.style-3 .product-day-image .small-shop-day-box {
  background-color: #ffffff;
  padding: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 0px;
  position: absolute;
  top: 30px;
  left: 30px;
}
.product-day-wrapper.style-3 .product-day-image .small-shop-day-box .image {
  position: relative;
}
.product-day-wrapper.style-3 .product-day-image .small-shop-day-box .image .badge-hot {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--header);
  color: #ffffff;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  z-index: 1;
  line-height: 1;
}
.product-day-wrapper.style-3 .product-day-image .small-shop-day-box .image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.product-day-wrapper.style-3 .product-day-image .small-shop-day-box .product-details {
  padding: 16px 5px 8px;
}
.product-day-wrapper.style-3 .product-day-image .small-shop-day-box .product-details .product-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  text-transform: none;
}
.product-day-wrapper.style-3 .product-day-image .small-shop-day-box .product-details .product-price {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  color: var(--header);
}
@media (max-width: 991px) {
  .product-day-wrapper.style-3 .product-day-content {
    margin-left: 0;
    margin-right: 0;
  }
}
.product-day-wrapper.style-3 .product-day-content h6 {
  color: var(--header);
}
.product-day-wrapper.style-3 .product-day-content h2 {
  color: var(--header);
}
.product-day-wrapper.style-3 .product-day-content p {
  color: #808080;
}
.product-day-wrapper.style-3 .product-day-content .coming-soon-time .timer-content {
  border-top: 1px solid #D4D4D4;
  border-bottom: 1px solid #D4D4D4;
}

.shop-banner-items .content {
  padding: 100px 40px;
}
@media (max-width: 767px) {
  .shop-banner-items .content {
    padding: 50px 35px;
  }
}
.shop-banner-items .content h6 {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.shop-banner-items .content h3 {
  font-size: 32px;
  font-weight: 700;
}
.shop-banner-items .content p {
  max-width: 280px;
  color: #424242;
  margin-top: 15px;
  margin-bottom: 22px;
}

.shop-collection-wrapper .shop-collection-image {
  position: relative;
}
.shop-collection-wrapper .shop-collection-image video {
  width: 100%;
  height: 705px;
  object-fit: cover;
  display: block;
}
.shop-collection-wrapper .shop-collection-image .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: 0.3s;
}
.shop-collection-wrapper .shop-collection-image.playing .video-play-btn {
  opacity: 0;
  visibility: hidden;
}
.shop-collection-wrapper .shop-collenction-content {
  margin-left: 20px;
}
@media (max-width: 1199px) {
  .shop-collection-wrapper .shop-collenction-content {
    margin-left: 0;
  }
}
.shop-collection-wrapper .shop-collenction-content .theme-btn {
  margin-top: 0px;
  margin-bottom: 0px;
}
.shop-collection-wrapper .shop-collenction-content .button-items-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 44px;
  position: relative;
}
@media (max-width: 1399px) {
  .shop-collection-wrapper .shop-collenction-content .button-items-2 {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
}
.shop-collection-wrapper .shop-collenction-content .button-items-2::before {
  position: absolute;
  content: "";
  background-color: #D4D4D4;
  width: 420px;
  height: 1px;
  top: 22px;
  left: 120px;
}
@media (max-width: 1399px) {
  .shop-collection-wrapper .shop-collenction-content .button-items-2::before {
    display: none;
  }
}
.shop-collection-wrapper .shop-collenction-content .button-items-2 .pagi-item .dot-number {
  display: flex;
  gap: 20px;
}
.shop-collection-wrapper .shop-collenction-content .button-items-2 .pagi-item .dot-number .dot-num span {
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  transition: 0.3s;
  display: inline-block;
}
.shop-collection-wrapper .shop-collenction-content .button-items-2 .pagi-item .dot-number .dot-num.active span {
  color: var(--theme);
}

.shop-section .section-title-area .nav {
  border: 1px solid #D4D4D4;
  display: flex;
  align-items: center;
  padding: 18px 24px;
  gap: 20px;
  line-height: 1;
}
@media (max-width: 767px) {
  .shop-section .section-title-area .nav {
    gap: 20px;
    padding: 18px 24px;
  }
}
.shop-section .section-title-area .nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #808080;
  padding: 0;
}
.shop-section .section-title-area .nav .nav-item .nav-link.style-2 {
  border-left: 1px solid #D4D4D4;
  padding-left: 20px;
}
.shop-section .section-title-area .nav .nav-item .nav-link.active {
  color: var(--header);
}

.shop-category-2 {
  text-align: center;
  margin-top: 30px;
}
.shop-category-2 .thumb {
  position: relative;
  border: 1px solid var(--white);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  transition: all 900ms ease;
}
.shop-category-2 .thumb .number {
  display: inline-block;
  width: 34px;
  height: 34px;
  line-height: 28px;
  border-radius: 50%;
  background-color: var(--theme3);
  color: var(--header);
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  top: 10px;
  right: 8px;
  border: 3px solid var(--white);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.shop-category-2 .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.shop-category-2 .thumb::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 100%;
  height: 100%;
  border: 7px solid var(--white);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.shop-category-2 h3 {
  font-weight: 600;
  font-size: 16px;
  margin-top: 15px;
}
.shop-category-2 h3 a {
  color: #808080;
}
.shop-category-2:hover .thumb {
  border: 1px solid #D4D4D4;
  transform: rotateY(360deg);
}
.shop-category-2:hover .thumb::before {
  opacity: 1;
  visibility: visible;
}
.shop-category-2:hover .thumb .number {
  opacity: 1;
  visibility: visible;
}
.shop-category-2:hover h3 a {
  color: var(--header);
}

.shop-banner-3 {
  position: relative;
  overflow: hidden;
}
.shop-banner-3 .content {
  padding: 80px 30px;
  position: relative;
  z-index: 99;
}
@media (max-width: 575px) {
  .shop-banner-3 .content {
    padding: 40px 30px;
  }
}
.shop-banner-3 .content .shop-sub-text {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #121212;
  margin-bottom: 4px;
  display: inline-block;
}
.shop-banner-3 .content p {
  font-size: 16px;
  font-weight: 400;
  max-width: 255px;
  margin-top: 30px;
  color: #808080;
  margin-bottom: 30px;
}
.shop-banner-3 .thumb {
  position: absolute;
  right: -45px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .shop-banner-3 .thumb {
    max-width: 250px;
  }
  .shop-banner-3 .thumb img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 575px) {
  .shop-banner-3 .thumb {
    display: none;
  }
}

.shop-banner-wrap .shop-banner-items-3 {
  background-color: #EBEBEB;
  padding: 40px 30px;
  padding-bottom: 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .shop-banner-wrap .shop-banner-items-3 {
    height: 100%;
  }
}
.shop-banner-wrap .shop-banner-items-3 .content .shop-sub-text {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--header);
  margin-bottom: 5px;
  display: inline-block;
}
.shop-banner-wrap .shop-banner-items-3 .content h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}
.shop-banner-wrap .shop-banner-items-3 .content .theme-btn {
  padding: 16px 30px;
}
.shop-banner-wrap .shop-banner-items-3 .watch-thumb {
  margin-bottom: -60px;
  margin-top: 30px;
}
.shop-banner-wrap .shop-small-box {
  background-color: #D6EBFF;
  padding: 30px 24px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.shop-banner-wrap .shop-small-box .watch-image {
  position: absolute;
  bottom: -20px;
  right: -10px;
}
.shop-banner-wrap .shop-small-box.style-2 {
  background-color: #D4D4D4;
}
.shop-banner-wrap .shop-small-box .content .shop-sub-text {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--header);
  margin-bottom: 5px;
  display: inline-block;
}
.shop-banner-wrap .shop-small-box .content h2 {
  font-size: 20px;
  font-weight: 600;
}
.shop-banner-wrap .shop-small-box .content .price {
  color: var(--theme3);
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  margin-top: 40px;
}
.shop-banner-wrap .shop-small-box .watch-image2 {
  position: absolute;
  bottom: 20px;
  right: 8px;
}

.shop-items-3 {
  background-color: #fff;
  margin-top: 30px;
}
.shop-items-3 .product-img {
  text-align: center;
  border-bottom: 1px solid #D4D4D4;
  position: relative;
  position: relative;
  z-index: 99;
}
.shop-items-3 .product-img .back-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
}
.shop-items-3 .product-img .font-image {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.shop-items-3 .product-img .discount-text {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #121212;
  height: 29px;
  line-height: 29px;
  text-align: center;
  padding: 0 8px;
  background: #EBEBEB;
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}
.shop-items-3 .product-img .gt-shop-icon {
  gap: 10px;
  position: absolute;
  top: 16px;
  right: 16px;
}
.shop-items-3 .product-img .gt-shop-icon li {
  transform: scaleX(0);
  transition: 0.4s ease-in-out;
  cursor: pointer;
}
.shop-items-3 .product-img .gt-shop-icon li a, .shop-items-3 .product-img .gt-shop-icon li button {
  background-color: var(--white);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  color: var(--theme3);
  text-align: center;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}
.shop-items-3 .product-img .gt-shop-icon li a:hover, .shop-items-3 .product-img .gt-shop-icon li button:hover {
  background-color: var(--theme3);
  color: var(--white);
}
.shop-items-3 .product-img img {
  width: 100%;
  height: 100%;
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.shop-items-3 .product-content {
  padding: 20px 30px;
}
.shop-items-3 .product-content .brand {
  font-size: 12px;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.shop-items-3 .product-content .title {
  font-size: 16px;
  font-weight: 500;
  margin: 5px 0 15px 0;
}
.shop-items-3 .product-content .title a:hover {
  color: var(--theme3);
}
.shop-items-3 .product-content .price {
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
}
.shop-items-3 .product-content .color-picker {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: end;
}
.shop-items-3 .product-content .color-picker .color-box {
  width: 12px;
  height: 12px;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: outline 0.1s ease-in-out;
}
.shop-items-3 .product-content .color-picker .color-box.box-black {
  background-color: #120F14;
}
.shop-items-3 .product-content .color-picker .color-box.box-brown {
  background-color: #B77351;
}
.shop-items-3 .product-content .color-picker .color-box.box-blue {
  background-color: #9EC5FF;
}
.shop-items-3 .product-content .color-picker .color-box.active {
  outline: 1px solid #808080;
  border: 1px solid #ffffff;
}
.shop-items-3 .product-content .color-picker .more-count {
  font-size: 14px;
  color: #808080;
  font-weight: 500;
}
.shop-items-3:hover .font-image {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
}
.shop-items-3:hover .gt-shop-icon li {
  transform: scaleX(1);
}
.shop-items-3:hover .back-image {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.shop-items-3:hover .theme-btn {
  opacity: 1;
  visibility: visible;
  bottom: 16px;
}

.shop-section-4 .array-button .array-prev, .shop-section-4 .array-button .array-next {
  background-color: var(--white);
  box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.12);
  color: var(--header);
}
.shop-section-4 .array-button .array-prev:hover, .shop-section-4 .array-button .array-next:hover {
  background-color: var(--theme4);
}

.product-day-section4 {
  background-color: #121212;
}

.product-day-wrapper-4 .thumb-1 img {
  width: 100%;
  height: 100%;
  border: 2px solid var(--white);
}
.product-day-wrapper-4 .product-day-content2 {
  max-width: 500px;
  margin: 50px auto 0;
  text-align: center;
}
@media (max-width: 1199px) {
  .product-day-wrapper-4 .product-day-content2 {
    margin-top: 0;
  }
}
.product-day-wrapper-4 .product-day-content2 .sub-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  display: inline-block;
}
.product-day-wrapper-4 .product-day-content2 h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
}
@media (max-width: 575px) {
  .product-day-wrapper-4 .product-day-content2 h2 {
    font-size: 30px;
  }
}
.product-day-wrapper-4 .product-day-content2 p {
  font-size: 16px;
  font-weight: 400;
  color: #808080;
  max-width: 500px;
  margin-top: 20px;
}
.product-day-wrapper-4 .product-day-content2 .coming-soon-time {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 35px;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .product-day-wrapper-4 .product-day-content2 .coming-soon-time {
    flex-wrap: wrap;
    margin-bottom: 25px;
    margin-top: 25px;
    justify-content: center;
  }
}
.product-day-wrapper-4 .product-day-content2 .coming-soon-time .timer-content {
  text-align: center;
  border-top: 1px solid #2E2E2E;
  border-bottom: 1px solid #2E2E2E;
  min-width: 110px;
  padding: 20px 0;
}
.product-day-wrapper-4 .product-day-content2 .coming-soon-time .timer-content span {
  display: inline-block;
  margin-top: 5px;
}
.product-day-wrapper-4 .product-day-content2 .theme-btn.theme-btn4 {
  background-color: var(--white);
}
.product-day-wrapper-4 .product-day-content2 .theme-btn.theme-btn4::before {
  background-color: var(--theme4);
}
.product-day-wrapper-4 .product-day-content2 .theme-btn.theme-btn4::after {
  background-color: var(--theme4);
}
.product-day-wrapper-4 .product-day-content2 .theme-btn.theme-btn4:hover {
  color: var(--white);
}
.product-day-wrapper-4 .thumb-2 {
  margin-top: 190px;
  position: relative;
}
@media (max-width: 1199px) {
  .product-day-wrapper-4 .thumb-2 {
    margin-top: 0;
  }
}
.product-day-wrapper-4 .thumb-2 .discount-box {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background-color: var(--theme4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: -40px;
  left: -40px;
}
@media (max-width: 1199px) {
  .product-day-wrapper-4 .thumb-2 .discount-box {
    left: 20px;
    top: 20px;
  }
}
.product-day-wrapper-4 .thumb-2 .discount-box h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--header);
  line-height: 1;
}
.product-day-wrapper-4 .thumb-2 .discount-box h3 span {
  font-size: 16px;
  font-weight: 700;
}
.product-day-wrapper-4 .thumb-2 .discount-box p {
  color: var(--header);
  font-size: 12px;
  font-weight: 500;
}
.product-day-wrapper-4 .thumb-2 img {
  width: 100%;
  height: 100%;
  border: 2px solid var(--white);
}

.latest-collection-banner-4 {
  margin-top: 30px;
  position: relative;
}
@media (max-width: 991px) {
  .latest-collection-banner-4 {
    height: 500px;
  }
}
.latest-collection-banner-4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.latest-collection-banner-4 .content {
  max-width: 180px;
  position: absolute;
  left: 30px;
  bottom: 30px;
}
.latest-collection-banner-4 .content span {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 16%;
  margin-bottom: 10px;
  display: inline-block;
}
.latest-collection-banner-4 .content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}
.latest-collection-banner-4 .content .theme-btn {
  padding: 17px 30px;
  margin-top: 30px;
  background-color: var(--white);
}
.latest-collection-banner-4 .content .theme-btn::before {
  background-color: var(--theme4);
}
.latest-collection-banner-4 .content .theme-btn::after {
  background-color: var(--theme4);
}
.latest-collection-banner-4 .content .theme-btn:hover {
  color: var(--white);
}

.latest-collection-section-4 .section-title-area .theme-btn {
  background-color: transparent;
  border: 1px solid rgb(128, 128, 128);
}
.latest-collection-section-4 .section-title-area .theme-btn:hover {
  border: 1px solid var(--theme4);
  color: var(--white);
}

.wishlist-items .table-responsive {
  width: 100%;
  overflow-x: auto;
}
.wishlist-items table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.wishlist-items table thead tr {
  border-bottom: 1px solid #D4D4D4;
}
.wishlist-items table thead tr th {
  padding: 20px 0;
  color: var(--header);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  text-transform: capitalize;
}
.wishlist-items table tbody tr {
  border-bottom: 1px solid #D4D4D4;
}
.wishlist-items table tbody tr td {
  padding: 30px 0;
  vertical-align: middle;
}
.wishlist-items table .product-col {
  width: 35%;
}
.wishlist-items table .stock-col {
  width: 20%;
  padding-left: 20px;
}
.wishlist-items table .action-col {
  width: 30%;
  padding-left: 10px;
}
.wishlist-items table .remove-col {
  width: 10%;
  text-align: right !important;
}
.wishlist-items table .product-info {
  display: flex;
  align-items: center;
}
.wishlist-items table .product-info .img-box {
  width: 100px;
  height: 120px;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
}
.wishlist-items table .product-info .img-box img {
  max-width: 100%;
  height: auto;
}
.wishlist-items table .product-info .details .category {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  display: block;
}
.wishlist-items table .product-info .details h2 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}
.wishlist-items table .product-info .details .price {
  font-size: 18px;
  font-weight: 500;
  color: var(--header);
}
.wishlist-items table .stock-status {
  color: #19BD3D;
  font-weight: 500;
  font-size: 16px;
}
.wishlist-items table .theme-btn {
  padding: 16px 30px;
  background-color: transparent;
  border: 1px solid #808080;
}
.wishlist-items table .theme-btn:hover {
  border: 1px solid var(--theme);
}
.wishlist-items table .remove-icon {
  color: #808080;
  font-size: 20px;
  cursor: pointer;
  padding-right: 5px;
}
.wishlist-items .wishlist-footer {
  margin-top: 45px;
}
.wishlist-items .wishlist-footer .btn-view-cart {
  padding: 18px 55px;
  background: #111111;
  color: #ffffff;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 1599px) {
  .wishlist-items {
    max-width: 95%;
  }
}
@media (max-width: 991px) {
  .wishlist-items table .product-col {
    width: 40%;
  }
  .wishlist-items table .stock-col {
    width: 20%;
  }
  .wishlist-items table .action-col {
    width: 30%;
  }
}
@media (max-width: 768px) {
  .wishlist-items table {
    table-layout: auto;
  }
  .wishlist-items table thead {
    display: none;
  }
  .wishlist-items table tbody tr td {
    display: block;
    width: 100% !important;
    padding: 15px 0;
    text-align: left !important;
  }
}
.shop-cart-wrapper .cart-main-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  /* =========================
      CART LEFT
  ========================= */
  /* =========================
      CART RIGHT
  ========================= */
}
.shop-cart-wrapper .cart-main-content .cart-left {
  flex: 1;
  min-width: 60%;
  /* Cart Header */
  /* =========================
      COUPON SECTION
  ========================= */
}
.shop-cart-wrapper .cart-main-content .cart-left .cart-header {
  display: flex;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
  color: #888;
  font-size: 14px;
}
.shop-cart-wrapper .cart-main-content .cart-left .cart-header .col-name {
  flex: 3;
  color: var(--header);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.shop-cart-wrapper .cart-main-content .cart-left .cart-header .col-qty {
  flex: 1.5;
  color: var(--header);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.shop-cart-wrapper .cart-main-content .cart-left .cart-header .col-total {
  flex: 0.5;
  text-align: right;
  color: var(--header);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.shop-cart-wrapper .cart-main-content .cart-left .cart-item {
  display: flex;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid #e0e0e0;
  /* Total Price */
}
.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-info {
  flex: 3;
  display: flex;
  gap: 20px;
  align-items: center;
}
.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-info .product-img {
  width: 100px;
  height: 120px;
  background: #fff;
  padding: 10px;
}
.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-info .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-info .product-details .category {
  font-size: 12px;
  margin-bottom: 5px;
}
.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-info .product-details .name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}
.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-info .product-details .price {
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
}
.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-qty {
  flex: 1.5;
  display: flex;
  align-items: center;
  gap: 15px;
}
.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-qty .qty-box {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e0e0e0;
}
.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-qty .qty-box button {
  width: 35px;
  height: 40px;
  border: none;
  background: #f9f9f9;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: 0.3s;
}
.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-qty .qty-box button:hover {
  background: #eee;
}
.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-qty .qty-box button i {
  font-size: 12px;
}
.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-qty .qty-box input {
  width: 40px;
  border: none;
  text-align: center;
  outline: none;
  font-weight: 600;
  color: var(--header);
  /* Remove number arrows */
}
.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-qty .qty-box input::-webkit-outer-spin-button, .shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-qty .qty-box input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-qty .remove-btn {
  background: none;
  border: none;
  color: #808080;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.4s ease-in-out;
}
.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-qty .remove-btn:hover {
  color: var(--theme);
}
.shop-cart-wrapper .cart-main-content .cart-left .cart-item .product-total {
  flex: 0.5;
  text-align: right;
  font-weight: 600;
  font-size: 16px;
  color: var(--header);
}
.shop-cart-wrapper .cart-main-content .cart-left .coupon-section {
  margin-top: 50px;
}
.shop-cart-wrapper .cart-main-content .cart-left .coupon-section h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}
.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-input {
  display: flex;
  margin-bottom: 30px;
}
.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-input input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  background: transparent;
  border: 1px solid #D4D4D4;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-input .apply-now-btn {
  padding: 0 40px;
  border: none;
  background: var(--header);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-input .apply-now-btn:hover {
  background-color: var(--theme);
}
.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards {
  display: flex;
  gap: 20px;
}
.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card::before {
  position: absolute;
  top: 54%;
  left: -14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
  background-color: var(--bg);
}
.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card::after {
  position: absolute;
  top: 54%;
  right: -14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
  background-color: var(--bg);
}
.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card.white {
  background: #fff;
  color: #111;
}
.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card.orange {
  background: #ff924d;
}
.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card.orange .card-bottom p {
  color: var(--header);
}
.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card.orange .apply-code:hover {
  background-color: var(--white) !important;
  color: var(--header);
}
.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card .card-top {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  border-bottom: 2px dashed rgba(0, 0, 0, 0.1);
  padding-bottom: 25px;
}
.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card .card-top .disc-label {
  font-size: 12px;
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--header);
}
.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card .card-top h2 {
  font-size: 20px;
  font-weight: 600;
}
.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card .card-top .card-info {
  text-align: right;
  font-size: 14px;
}
.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card .card-top .card-info p {
  font-weight: 500;
  color: var(--header);
}
.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card .card-bottom {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card .card-bottom p {
  font-weight: 500;
  font-size: 18px;
}
.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card .card-bottom .apply-code {
  padding: 10px 30px;
  border: none;
  background: var(--header);
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}
.shop-cart-wrapper .cart-main-content .cart-left .coupon-section .coupon-cards .coupon-card .card-bottom .apply-code:hover {
  background-color: var(--theme);
}
.shop-cart-wrapper .cart-main-content .cart-right {
  flex: 0 0 420px;
}
.shop-cart-wrapper .cart-main-content .cart-right .summary-box {
  background: #fff;
  padding: 40px 32px;
}
.shop-cart-wrapper .cart-main-content .cart-right .summary-box .shipping-text {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--header);
}
.shop-cart-wrapper .cart-main-content .cart-right .summary-box .progress-bar {
  height: 6px;
  background: #eee;
  border-radius: 10px;
  margin-bottom: 30px;
}
.shop-cart-wrapper .cart-main-content .cart-right .summary-box .progress-bar .fill {
  height: 100%;
  background: #111;
  border-radius: 10px;
}
.shop-cart-wrapper .cart-main-content .cart-right .summary-box .subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}
.shop-cart-wrapper .cart-main-content .cart-right .summary-box .subtotal-row h3 {
  font-size: 22px;
}
.shop-cart-wrapper .cart-main-content .cart-right .summary-box .subtotal-row .tax-info {
  font-size: 14px;
}
.shop-cart-wrapper .cart-main-content .cart-right .summary-box .order-note {
  margin-bottom: 20px;
}
.shop-cart-wrapper .cart-main-content .cart-right .summary-box .order-note label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}
.shop-cart-wrapper .cart-main-content .cart-right .summary-box .order-note textarea {
  width: 100%;
  border: 1px solid #eee;
  padding: 10px;
  resize: none;
  outline: none;
}
.shop-cart-wrapper .cart-main-content .cart-right .summary-box .terms {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.shop-cart-wrapper .cart-main-content .cart-right .summary-box .terms input {
  width: 16px;
  height: 16px;
  accent-color: #111;
}
.shop-cart-wrapper .cart-main-content .cart-right .summary-box .terms label {
  font-size: 14px;
  color: var(--header);
}
.shop-cart-wrapper .cart-main-content .cart-right .summary-box .checkout-btn {
  width: 100%;
  padding: 15px;
  background: #111;
  color: #fff;
  border: none;
  font-weight: 600;
  margin-bottom: 10px;
  cursor: pointer;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  text-align: center;
}
.shop-cart-wrapper .cart-main-content .cart-right .summary-box .checkout-btn:hover {
  background-color: var(--theme);
}
.shop-cart-wrapper .cart-main-content .cart-right .summary-box .continue-btn {
  width: 100%;
  padding: 15px;
  background: #fff;
  color: var(--header);
  border: 1px solid #D4D4D4;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.shop-cart-wrapper .cart-main-content .cart-right .summary-box .continue-btn:hover {
  background-color: var(--theme);
  color: var(--white);
}

@media (max-width: 992px) {
  .shop-cart-wrapper .cart-main-content {
    flex-direction: column;
  }
  .shop-cart-wrapper .cart-main-content .cart-left {
    width: 100%;
  }
  .shop-cart-wrapper .cart-main-content .cart-right {
    width: 100%;
    flex: none;
  }
}
@media (max-width: 600px) {
  .shop-cart-wrapper {
    padding: 0 15px;
  }
  .shop-cart-wrapper .cart-header {
    display: none;
  }
  .shop-cart-wrapper .cart-item {
    flex-direction: column;
    text-align: center;
  }
  .shop-cart-wrapper .cart-item .product-info {
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
  }
  .shop-cart-wrapper .cart-item .product-total {
    text-align: center;
    margin-top: 10px;
  }
  .shop-cart-wrapper .coupon-cards {
    flex-direction: column;
  }
}
.checkout-main-item {
  padding: 0 40px;
  display: flex;
  gap: 30px;
  /* Common title */
  /* ======================
     Checkout Left
  ====================== */
  /* ======================
     Checkout Right
  ====================== */
}
.checkout-main-item .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}
.checkout-main-item .checkout-left {
  flex: 1;
  /* Custom select */
  /* Payment section */
}
.checkout-main-item .checkout-left .login-prompt {
  padding: 18px;
  margin-bottom: 35px;
  font-size: 14px;
  background: transparent;
  border: 1px dashed #D4D4D4;
}
.checkout-main-item .checkout-left .login-prompt a {
  color: #111;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid #111;
}
.checkout-main-item .checkout-left .section-box {
  margin-bottom: 20px;
}
.checkout-main-item .checkout-left .form-grid input,
.checkout-main-item .checkout-left .form-grid select,
.checkout-main-item .checkout-left .form-grid textarea {
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  background: transparent;
  border: 1px solid #D4D4D4;
  outline: none;
  color: var(--text);
}
.checkout-main-item .checkout-left .form-grid input.full-width,
.checkout-main-item .checkout-left .form-grid select.full-width,
.checkout-main-item .checkout-left .form-grid textarea.full-width {
  grid-column: span 2;
}
.checkout-main-item .checkout-left .nice-select-wrapper {
  position: relative;
}
.checkout-main-item .checkout-left .nice-select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.checkout-main-item .checkout-left .nice-select-wrapper i {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 12px;
  color: #888;
  pointer-events: none;
}
.checkout-main-item .checkout-left .payment-section .payment-methods {
  margin-bottom: 25px;
  border: 1px solid #eee;
}
.checkout-main-item .checkout-left .payment-section .payment-methods .payment-option {
  border: 1px solid #D4D4D4;
  padding: 32px 24px;
  margin-bottom: 16px;
}
.checkout-main-item .checkout-left .payment-section .payment-methods .method-item .method-header {
  border: 1px solid #D4D4D4;
  padding: 20px 24px;
  line-height: 1;
}
.checkout-main-item .checkout-left .payment-section .payment-methods .method-item .method-header label {
  font-size: 16px;
  font-weight: 600;
  margin-left: 10px;
  cursor: pointer;
}
.checkout-main-item .checkout-left .payment-section .payment-methods .method-item .method-transfer label {
  font-size: 16px;
  font-weight: 600;
  margin-left: 10px;
  cursor: pointer;
}
.checkout-main-item .checkout-left .payment-section .payment-methods .method-item .method-content {
  margin-top: 10px;
}
.checkout-main-item .checkout-left .payment-section .payment-methods .method-item .method-content .desc {
  font-size: 15px;
  margin-bottom: 15px;
}
.checkout-main-item .checkout-left .payment-section .payment-methods .method-item .method-content .full-width {
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  background: transparent;
  border: 1px solid #D4D4D4;
  outline: none;
  color: var(--text);
}
.checkout-main-item .checkout-left .payment-section .payment-methods .method-item .method-content .card-input-box {
  position: relative;
  margin: 15px 0;
}
.checkout-main-item .checkout-left .payment-section .payment-methods .method-item .method-content .card-input-box input {
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  background: transparent;
  border: 1px solid #D4D4D4;
  outline: none;
  color: var(--header);
}
.checkout-main-item .checkout-left .payment-section .payment-methods .method-item .method-content .card-input-box input::placeholder {
  color: var(--header);
}
.checkout-main-item .checkout-left .payment-section .payment-methods .method-item .method-content .card-input-box .card-icons {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  gap: 8px;
  max-width: 255px;
}
@media (max-width: 575px) {
  .checkout-main-item .checkout-left .payment-section .payment-methods .method-item .method-content .card-input-box .card-icons {
    position: static;
    transform: initial;
    margin-top: 10px;
  }
}
.checkout-main-item .checkout-left .payment-section .payment-methods .method-item .method-content .card-input-box .card-icons img {
  height: 16px;
  width: 100%;
}
.checkout-main-item .checkout-left .payment-section .payment-methods .method-item .method-content .form-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.checkout-main-item .checkout-left .payment-section .payment-methods .method-item .method-content .form-grid-3 select {
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  background: transparent;
  border: 1px solid #D4D4D4;
  outline: none;
  color: var(--text);
}
.checkout-main-item .checkout-left .payment-section .payment-methods .method-item .method-content .form-grid-3 input {
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  background: transparent;
  border: 1px solid #D4D4D4;
  outline: none;
  color: var(--text);
}
.checkout-main-item .checkout-left .payment-section .payment-methods .method-item .method-content .save-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
}
.checkout-main-item .checkout-left .payment-section .payment-methods .method-item .method-content .save-card input {
  width: 16px;
  height: 16px;
  accent-color: #111;
}
.checkout-main-item .checkout-left .payment-section .payment-methods .method-item:not(.active) .method-content {
  display: none;
}
.checkout-main-item .checkout-left .payment-section .theme-btn {
  width: 100%;
  background-color: var(--header);
  color: var(--white);
}
.checkout-main-item .checkout-left .payment-section .theme-btn::before, .checkout-main-item .checkout-left .payment-section .theme-btn::after {
  background-color: var(--theme);
}
.checkout-main-item .checkout-right {
  flex: 1;
  /* Coupon Card */
  /* Coupon input */
  /* Totals */
}
.checkout-main-item .checkout-right .order-list-box {
  padding: 32px 24px;
  border: 1px solid #D4D4D4;
}
.checkout-main-item .checkout-right .order-list-box .list-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #999;
  border-bottom: 1px solid #D4D4D4;
}
.checkout-main-item .checkout-right .order-list-box .list-head span {
  color: #808080;
}
.checkout-main-item .checkout-right .order-list-box .order-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #D4D4D4;
}
.checkout-main-item .checkout-right .order-list-box .order-item .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checkout-main-item .checkout-right .order-list-box .order-item .item-info {
  flex: 1;
}
.checkout-main-item .checkout-right .order-list-box .order-item .item-info .cat {
  font-size: 12px;
  color: #808080;
  font-weight: 500;
  line-height: 1;
}
.checkout-main-item .checkout-right .order-list-box .order-item .item-info .name {
  font-size: 16px;
  font-weight: 600;
  margin: 3px 0;
  color: var(--header);
}
.checkout-main-item .checkout-right .order-list-box .order-item .item-info .price {
  font-size: 14px;
  font-weight: 500;
  color: var(--header);
  line-height: 1;
}
.checkout-main-item .checkout-right .order-list-box .order-item .qty-control {
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkout-main-item .checkout-right .order-list-box .order-item .qty-control .qty-box {
  display: flex;
  border: 1px solid #D4D4D4;
}
.checkout-main-item .checkout-right .order-list-box .order-item .qty-control .qty-box .minus {
  border-right: 1px solid #D4D4D4;
}
.checkout-main-item .checkout-right .order-list-box .order-item .qty-control .qty-box .plus {
  border-left: 1px solid #D4D4D4;
}
.checkout-main-item .checkout-right .order-list-box .order-item .qty-control .qty-box button {
  width: 30px;
  height: 30px;
  font-size: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.checkout-main-item .checkout-right .order-list-box .order-item .qty-control .qty-box input {
  width: 30px;
  border: none;
  text-align: center;
  font-size: 13px;
  outline: none;
  background-color: transparent;
  color: var(--header);
}
.checkout-main-item .checkout-right .order-list-box .order-item .qty-control .qty-box input::placeholder {
  color: var(--header);
}
.checkout-main-item .checkout-right .order-list-box .order-item .qty-control .del {
  background: transparent;
  border: none;
  font-size: 16px;
  color: #999;
  cursor: pointer;
}
.checkout-main-item .checkout-right .order-list-box .order-item .qty-control .del:hover {
  color: var(--theme);
}
.checkout-main-item .checkout-right .orange-coupon {
  position: relative;
  margin: 30px 0;
  background: var(--theme);
  color: #fff;
}
.checkout-main-item .checkout-right .orange-coupon .top {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px dashed #D4D4D4;
}
.checkout-main-item .checkout-right .orange-coupon .top .lbl {
  font-size: 14px;
  color: var(--header);
}
.checkout-main-item .checkout-right .orange-coupon .top h3 {
  font-size: 24px;
}
.checkout-main-item .checkout-right .orange-coupon .top .txt-right {
  text-align: right;
  font-size: 14px;
  color: var(--header);
  text-transform: capitalize;
  font-weight: 500;
}
.checkout-main-item .checkout-right .orange-coupon .bottom {
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.checkout-main-item .checkout-right .orange-coupon .bottom p {
  font-weight: 600;
  color: var(--header);
}
.checkout-main-item .checkout-right .orange-coupon .bottom .apply-btn {
  padding: 10px 22px;
  border-radius: 30px;
  background: #111;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.checkout-main-item .checkout-right .orange-coupon .bottom .apply-btn:hover {
  background-color: var(--white);
  color: var(--header);
}
.checkout-main-item .checkout-right .orange-coupon::before, .checkout-main-item .checkout-right .orange-coupon::after {
  content: "";
  position: absolute;
  top: 54%;
  width: 28px;
  height: 28px;
  background: var(--bg);
  border-radius: 50%;
  transform: translateY(-50%);
}
.checkout-main-item .checkout-right .orange-coupon::before {
  left: -5px;
}
.checkout-main-item .checkout-right .orange-coupon::before {
  left: -9px;
}
.checkout-main-item .checkout-right .orange-coupon::after {
  right: -9px;
}
.checkout-main-item .checkout-right .coupon-field {
  margin-bottom: 30px;
  border-bottom: 1px solid #D4D4D4;
  padding-bottom: 24px;
}
.checkout-main-item .checkout-right .coupon-field h3 {
  font-size: 18px;
  margin-bottom: 15px;
}
.checkout-main-item .checkout-right .coupon-field .input-grp {
  display: flex;
}
@media (max-width: 575px) {
  .checkout-main-item .checkout-right .coupon-field .input-grp {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.checkout-main-item .checkout-right .coupon-field .input-grp input {
  flex: 1;
  padding: 16px 16px;
  border: 1px solid #D4D4D4;
  outline: none;
  color: var(--text);
  font-size: 14px;
}
.checkout-main-item .checkout-right .coupon-field .input-grp button {
  padding: 0 30px;
  background: var(--header);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  margin-left: 10px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .checkout-main-item .checkout-right .coupon-field .input-grp button {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.checkout-main-item .checkout-right .coupon-field .input-grp button:hover {
  background-color: var(--theme);
  color: var(--header);
}
.checkout-main-item .checkout-right .totals .rows {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 15px;
  color: #424242;
}
.checkout-main-item .checkout-right .totals .rows.grand-total {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #D4D4D4;
  font-size: 20px;
  color: #111;
}

/* ======================
Responsive
====================== */
@media (max-width: 1200px) {
  .checkout-main-item {
    flex-direction: column;
  }
  .checkout-main-item .checkout-left,
  .checkout-main-item .checkout-right {
    width: 100%;
    flex: none;
  }
}
@media (max-width: 650px) {
  .checkout-main-item {
    padding: 0 15px;
  }
  .checkout-main-item .form-grid {
    grid-template-columns: 1fr;
  }
  .checkout-main-item .form-grid .full-width {
    grid-column: span 1;
  }
  .checkout-main-item .form-grid-3 {
    grid-template-columns: 1fr;
  }
  .checkout-main-item .order-item {
    flex-direction: column;
    text-align: center;
  }
  .checkout-main-item .order-item .qty-control {
    margin-top: 10px;
  }
}
.compare-box-items {
  padding: 20px;
}
.compare-box-items .compare-header-info {
  border: 2px dashed #dddddd;
  padding: 15px 20px;
  margin-bottom: 30px;
  font-size: 14px;
  color: #808080;
}
.compare-box-items .compare-table-wrapper {
  width: 100%;
  overflow-x: auto;
  background: #f1f1f1;
}
.compare-box-items .compare-table-wrapper .compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 900px;
}
.compare-box-items .compare-table-wrapper .compare-table td {
  padding: 15px 30px;
  border: 1px solid #D4D4D4;
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
  color: #333333;
}
.compare-box-items .compare-table-wrapper .compare-table td.row-label {
  text-align: left;
  font-weight: 500;
  width: 250px;
  background-color: transparent;
  color: #121212;
  position: relative;
}
.compare-box-items .compare-table-wrapper .compare-table td.row-label .product-text {
  position: absolute;
  top: 18px;
  left: 30px;
}
.compare-box-items .compare-table-wrapper .compare-table td.price {
  font-weight: 600;
  font-size: 16px;
}
.compare-box-items .compare-table-wrapper .compare-table td.stock {
  color: #00d34d;
  font-weight: 500;
}
.compare-box-items .compare-table-wrapper .compare-table .action-row td {
  border-top: none;
  border-bottom: none;
  padding: 25px 15px;
}
.compare-box-items .product-card {
  position: relative;
  padding-top: 10px;
}
.compare-box-items .product-card .remove-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: #111111;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.compare-box-items .product-card .img-box {
  position: relative;
  background: #ffffff;
  padding: 10px;
  margin-bottom: 15px;
}
.compare-box-items .product-card .img-box img {
  width: 100%;
  display: block;
}
.compare-box-items .product-card .img-box .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ffffff;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #eeeeee;
  color: var(--header);
  z-index: 1;
  border-radius: 0;
}
.compare-box-items .product-card .product-info .cat {
  font-size: 14px;
  color: #808080;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 5px;
}
.compare-box-items .product-card .product-info h2 {
  font-size: 16px;
  font-weight: 500;
}
.compare-box-items .add-product-box {
  background-color: #ffffff;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.compare-box-items .add-product-box:hover {
  border-color: #111111;
}
.compare-box-items .add-product-box .plus-icon {
  width: 40px;
  height: 40px;
  background: #111111;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 15px;
}
.compare-box-items .add-product-box span {
  font-size: 14px;
  font-weight: 600;
  color: #111111;
}
.compare-box-items .cart-btn {
  background-color: var(--header);
  color: #ffffff;
  border: none;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.compare-box-items .cart-btn:hover {
  background-color: var(--theme);
}
.compare-box-items .rating i {
  color: var(--header);
  font-size: 14px;
  margin-right: 2px;
}
.compare-box-items .rating span {
  font-size: 14px;
  color: var(--text);
  margin-left: 5px;
}

@media (max-width: 1599px) {
  .compare-box-items {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .compare-box-items .compare-table td.row-label {
    width: 150px;
  }
}
.gt-shop-details-wrapper .gt-shop-details-image {
  position: relative;
}
.gt-shop-details-wrapper .gt-shop-details-image img {
  width: 100%;
  height: 100%;
}
.gt-shop-details-wrapper .gt-shop-details-image .gt-box-text {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 9px 14px;
  line-height: 1;
  background-color: var(--theme);
  color: var(--white);
}
.gt-shop-details-wrapper .gt-shop-details-content {
  margin-left: 40px;
}
@media (max-width: 1199px) {
  .gt-shop-details-wrapper .gt-shop-details-content {
    margin-left: 0;
  }
}
.gt-shop-details-wrapper .gt-shop-details-content span {
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.gt-shop-details-wrapper .gt-shop-details-content h2 {
  font-size: 36px;
  margin-top: 5px;
}
@media (max-width: 575px) {
  .gt-shop-details-wrapper .gt-shop-details-content h2 {
    font-size: 30px;
  }
}
.gt-shop-details-wrapper .gt-shop-details-content .price-list {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}
.gt-shop-details-wrapper .gt-shop-details-content .price-list li:first-child {
  font-size: 16px;
  color: var(--header);
  font-weight: 500;
}
.gt-shop-details-wrapper .gt-shop-details-content .price-list li span {
  font-weight: 700;
  color: var(--theme);
}
.gt-shop-details-wrapper .gt-shop-details-content .eye-icon {
  display: inline-block;
  margin-top: 12px;
}
.gt-shop-details-wrapper .gt-shop-details-content .color-list {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.gt-shop-details-wrapper .gt-shop-details-content .color-list li span {
  color: var(--header);
  font-weight: 500;
}
.gt-shop-details-wrapper .gt-shop-details-content .color-list li:nth-last-of-type(4) {
  width: 18px;
  height: 18px;
  background-color: #FF914D;
}
.gt-shop-details-wrapper .gt-shop-details-content .color-list li:nth-last-of-type(3) {
  width: 18px;
  height: 18px;
  background-color: #C9E265;
}
.gt-shop-details-wrapper .gt-shop-details-content .color-list li:nth-last-of-type(2) {
  width: 18px;
  height: 18px;
  background-color: #38B6FF;
}
.gt-shop-details-wrapper .gt-shop-details-content .color-list li:nth-last-of-type(1) {
  width: 18px;
  height: 18px;
  background-color: #F58720;
}
.gt-shop-details-wrapper .gt-shop-details-content .star {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.gt-shop-details-wrapper .gt-shop-details-content .star i {
  color: #ECB014;
}
.gt-shop-details-wrapper .gt-shop-details-content .star span {
  margin-left: 10px;
}
.gt-shop-details-wrapper .gt-shop-details-content p {
  margin-top: 15px;
}
.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 30px 0;
}
@media (max-width: 1199px) {
  .gt-shop-details-wrapper .gt-shop-details-content .cart-quantity {
    flex-wrap: wrap;
  }
}
.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .qty {
  display: flex;
  align-items: center;
  background-color: var(--white);
  padding: 11px 14px;
  line-height: 1;
  justify-content: space-between;
  margin-top: 0;
}
.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .qty button,
.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .qty input {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--header);
  font-weight: 400;
  font-size: 24px;
}
.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .qty input {
  background-color: transparent;
  text-align: center;
  border-radius: 0;
  border: unset;
  outline: none;
}
.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .shop-btn {
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  background-color: transparent;
  border: 1px solid var(--header);
  color: var(--header);
  padding: 18px 20px;
  text-align: center;
  line-height: 1;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  text-transform: capitalize;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .shop-btn::before, .gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .shop-btn::after {
  background-color: var(--theme);
}
.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .shop-btn i {
  margin-right: 10px;
}
.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .shop-btn:hover {
  color: var(--white);
  border: 1px solid var(--theme);
}
@media (max-width: 1199px) {
  .gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .icon-item {
    margin-top: 16px;
  }
}
.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .icon-item .icon {
  background-color: var(--white);
  padding: 16px 24px;
  transition: all 0.4s ease-in-out;
}
.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .icon-item .icon:hover {
  background-color: var(--theme);
  color: var(--white);
}
.gt-shop-details-wrapper .gt-shop-details-content .buy-btn {
  width: 100%;
  background-color: var(--header);
  color: var(--white);
  outline: none;
  font-size: 16px;
  font-weight: 700;
  padding: 24px 20px;
  text-align: center;
  line-height: 1;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: capitalize;
}
.gt-shop-details-wrapper .gt-shop-details-content .buy-btn:hover {
  background-color: var(--theme);
  color: var(--white);
}
.gt-shop-details-wrapper .gt-shop-details-content .gt-list-items {
  margin-top: 25px;
}
.gt-shop-details-wrapper .gt-shop-details-content .gt-list-items li {
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
}
.gt-shop-details-wrapper .gt-shop-details-content .gt-list-items li:not(:last-child) {
  margin-bottom: 10px;
}
.gt-shop-details-wrapper .gt-shop-details-content .gt-list-items li span {
  color: var(--header);
}
.gt-shop-details-wrapper .gt-shop-details-content .share-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}
.gt-shop-details-wrapper .gt-shop-details-content .share-list a {
  color: var(--text);
}
.gt-shop-details-wrapper .gt-shop-details-content .share-list a:hover {
  color: var(--theme);
}
.gt-shop-details-wrapper .gt-shop-details-content .gt-bank-list {
  color: var(--header);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .gt-shop-details-wrapper .gt-shop-details-content .gt-bank-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.gt-shop-details-wrapper .gt-shop-details-content .gt-bank-list span {
  display: block;
  color: var(--text);
  font-weight: 400;
}
.gt-shop-details-wrapper .single-tab {
  padding-top: 60px;
}
.gt-shop-details-wrapper .single-tab .nav {
  justify-content: center;
  border-bottom: 1px solid #D4D4D4;
  padding-bottom: 20px;
}
.gt-shop-details-wrapper .single-tab .nav .nav-link.active {
  position: relative;
}
.gt-shop-details-wrapper .single-tab .nav .nav-link.active span {
  color: var(--theme);
}
.gt-shop-details-wrapper .single-tab .nav .nav-link.active::before {
  position: absolute;
  bottom: -21px;
  left: 0;
  height: 2px;
  width: 100%;
  content: "";
  background: var(--theme);
  transition: 0.3s;
}
@media (max-width: 767px) {
  .gt-shop-details-wrapper .single-tab .nav .nav-link.active::before {
    display: none;
  }
}
.gt-shop-details-wrapper .single-tab .nav .nav-link span {
  font-size: 18px;
  text-transform: capitalize;
  color: var(--header);
}
.gt-shop-details-wrapper .single-tab .table {
  background: transparent;
  --bs-table-bg: none !important;
  border: 1px solid #D4D4D4;
}
.gt-shop-details-wrapper .single-tab .description-items .description-content {
  margin-right: 50px;
}
@media (max-width: 1399px) {
  .gt-shop-details-wrapper .single-tab .description-items .description-content {
    margin-right: 30px;
  }
}
@media (max-width: 991px) {
  .gt-shop-details-wrapper .single-tab .description-items .description-content {
    margin-right: 0;
  }
}
.gt-shop-details-wrapper .single-tab .description-items .description-content h3 {
  margin-bottom: 15px;
}
.gt-shop-details-wrapper .single-tab .description-items .description-content .description-list-items {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .gt-shop-details-wrapper .single-tab .description-items .description-content .description-list-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.gt-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;
}
.gt-shop-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li span {
  color: var(--text);
  font-weight: 400;
  font-size: 16px;
}
.gt-shop-details-wrapper .single-tab .review-items .admin-items {
  border: 1px solid #D4D4D4;
  padding: 30px;
  gap: 30px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .gt-shop-details-wrapper .single-tab .review-items .admin-items {
    justify-content: center;
    gap: 30px;
  }
}
.gt-shop-details-wrapper .single-tab .review-items .admin-items .admin-img {
  width: 100px;
  height: 100px;
}
.gt-shop-details-wrapper .single-tab .review-items .admin-items .admin-img img {
  border-radius: 50%;
}
.gt-shop-details-wrapper .single-tab .review-items .admin-items .content {
  position: relative;
}
.gt-shop-details-wrapper .single-tab .review-items .admin-items .content h3 {
  text-transform: capitalize;
}
.gt-shop-details-wrapper .single-tab .review-items .admin-items .content .head-content h3 span {
  font-size: 14px;
  margin-left: 30px;
}
.gt-shop-details-wrapper .single-tab .review-items .admin-items .content .star i {
  font-size: 16px;
  color: var(--theme);
}
.gt-shop-details-wrapper .single-tab .review-title .review-text {
  font-weight: 500;
  text-transform: capitalize;
  font-size: 22px;
  color: var(--header);
}
.gt-shop-details-wrapper .single-tab .review-title .rate-now {
  margin-top: 15px;
  gap: 15px;
}
.gt-shop-details-wrapper .single-tab .review-title .rate-now p {
  font-size: 16px;
  text-transform: capitalize;
}
.gt-shop-details-wrapper .single-tab .review-title .rate-now i {
  font-size: 16px;
  color: var(--theme);
}
.gt-shop-details-wrapper .single-tab .review-form {
  margin-top: 40px;
}
.gt-shop-details-wrapper .single-tab .review-form .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  padding: 18px 35px;
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 16px;
  text-transform: capitalize;
  border-radius: 0px;
}
@media (max-width: 575px) {
  .gt-shop-details-wrapper .single-tab .review-form .form-clt input {
    padding: 15px 20px;
  }
}
.gt-shop-details-wrapper .single-tab .review-form .form-clt-big textarea {
  padding: 18px 35px 170px;
  width: 100%;
  outline: none;
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 16px;
  border: none;
  border-radius: 0px;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .gt-shop-details-wrapper .single-tab .review-form .form-clt-big textarea {
    padding: 15px 20px;
  }
}
.gt-shop-details-wrapper .single-tab .review-form .theme-btn::before {
  background-color: var(--theme);
}
.gt-shop-details-wrapper .single-tab .review-form .theme-btn::after {
  background-color: var(--theme);
}
.gt-shop-details-wrapper .single-tab .review-form .theme-btn:hover {
  color: var(--white);
}

.gt-shop-notices-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .gt-shop-notices-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.gt-shop-notices-wrapper .gt-shop-showing {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
}
.gt-shop-notices-wrapper .gt-shop-showing h2 {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
}
.gt-shop-notices-wrapper .gt-shop-showing .nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.gt-shop-notices-wrapper .gt-shop-showing .nav .nav-item .nav-link {
  display: inline-block;
  border: 1px solid #BFBFBF;
  background: #F2F2F2;
  width: 40px;
  height: 40px;
  line-height: 37px;
  text-align: center;
  padding: 0;
  color: var(--text);
}
.gt-shop-notices-wrapper .gt-shop-showing .nav .nav-item .nav-link.active {
  background-color: var(--theme);
  border: 1px solid var(--theme);
  color: var(--white);
}
.gt-shop-notices-wrapper .form .single-select {
  padding: 16px 20px;
  border: none;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  line-height: 1;
  height: initial;
  border: 1px solid #BFBFBF;
  background: #F2F2F2;
  color: var(--header);
  border-radius: 0;
}
.gt-shop-notices-wrapper .form .single-select::after {
  right: 20px;
  border-bottom: 2px solid var(--header);
  border-right: 2px solid var(--header);
  margin-top: -5px;
  width: 8px;
  height: 8px;
}
.gt-shop-notices-wrapper .form .single-select .option {
  color: var(--text);
}
.gt-shop-notices-wrapper .form .list {
  width: 100%;
}
.gt-shop-notices-wrapper .form-clt {
  max-width: 300px;
  width: 100%;
}

.shop-sidebar-area .shop-sidebar-widget {
  border-top: 1px solid #D4D4D4;
  padding-top: 20px;
  margin-bottom: 20px;
}
.shop-sidebar-area .shop-sidebar-widget .widget-title {
  margin-bottom: 20px;
}
.shop-sidebar-area .shop-sidebar-widget .widget-title h2 {
  font-size: 18px;
  font-weight: 600;
}
.shop-sidebar-area .shop-sidebar-widget .product-type-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.shop-sidebar-area .shop-sidebar-widget .product-type-box ul li:not(:last-child) {
  margin-bottom: 10px;
}
.shop-sidebar-area .shop-sidebar-widget .product-type-box ul li label {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  position: relative;
}
.shop-sidebar-area .shop-sidebar-widget .product-type-box ul li label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.shop-sidebar-area .shop-sidebar-widget .product-type-box ul li label input:checked ~ .checkmark {
  background-color: #111111;
  border-color: #111111;
}
.shop-sidebar-area .shop-sidebar-widget .product-type-box ul li label input:checked ~ .checkmark:after {
  display: block;
}
.shop-sidebar-area .shop-sidebar-widget .product-type-box ul li label .checkmark {
  height: 22px;
  width: 22px;
  background-color: transparent;
  border: 1px solid #cccccc;
  display: inline-block;
  margin-right: 15px;
  position: relative;
}
.shop-sidebar-area .shop-sidebar-widget .product-type-box ul li label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.shop-sidebar-area .shop-sidebar-widget .product-type-box ul li label .text {
  font-size: 16px;
  color: var(--header);
  font-weight: 400;
}
.shop-sidebar-area .shop-sidebar-widget .product-type-box ul li label .text .counts {
  color: #999999;
  margin-left: 2px;
  font-size: 14px;
  font-weight: 500;
}
.shop-sidebar-area .shop-sidebar-widget .color-check-box {
  max-width: 275px;
}
.shop-sidebar-area .shop-sidebar-widget .color-check-box .color-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.shop-sidebar-area .shop-sidebar-widget .color-check-box .color-grid .color-item {
  cursor: pointer;
  position: relative;
  display: inline-block;
}
.shop-sidebar-area .shop-sidebar-widget .color-check-box .color-grid .color-item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.shop-sidebar-area .shop-sidebar-widget .color-check-box .color-grid .color-item input:checked + .box {
  outline-offset: 3px;
}
.shop-sidebar-area .shop-sidebar-widget .color-check-box .color-grid .color-item .box {
  display: block;
  width: 27px;
  height: 27px;
  transition: transform 0.2s ease;
}
.shop-sidebar-area .shop-sidebar-widget .color-check-box .color-grid .color-item .box:hover {
  transform: scale(1.05);
}
.shop-sidebar-area .shop-sidebar-widget .color-check-box .color-grid .color-item .box.color-black {
  background-color: #1a191d;
}
.shop-sidebar-area .shop-sidebar-widget .color-check-box .color-grid .color-item .box.color-brown {
  background-color: #b17351;
}
.shop-sidebar-area .shop-sidebar-widget .color-check-box .color-grid .color-item .box.color-l-blue {
  background-color: #9fc1fe;
}
.shop-sidebar-area .shop-sidebar-widget .color-check-box .color-grid .color-item .box.color-m-blue {
  background-color: #a4bad5;
}
.shop-sidebar-area .shop-sidebar-widget .color-check-box .color-grid .color-item .box.color-yellow {
  background-color: #ffc40c;
}
.shop-sidebar-area .shop-sidebar-widget .color-check-box .color-grid .color-item .box.color-orange {
  background-color: #ff934c;
}
.shop-sidebar-area .shop-sidebar-widget .price-filter-box .input-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.shop-sidebar-area .shop-sidebar-widget .price-filter-box .input-wrapper .input-field {
  display: flex;
  align-items: center;
  background: transparent;
  border: 1px solid #dcdcdc;
  padding: 8px 12px;
  width: 42%;
}
.shop-sidebar-area .shop-sidebar-widget .price-filter-box .input-wrapper .input-field span {
  color: #999999;
  font-size: 18px;
  margin-right: 8px;
}
.shop-sidebar-area .shop-sidebar-widget .price-filter-box .input-wrapper .input-field input {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-size: 18px;
  color: #000000;
}
.shop-sidebar-area .shop-sidebar-widget .price-filter-box .input-wrapper .input-field input::-webkit-outer-spin-button, .shop-sidebar-area .shop-sidebar-widget .price-filter-box .input-wrapper .input-field input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.shop-sidebar-area .shop-sidebar-widget .price-filter-box .range-slider {
  position: relative;
  height: 20px;
  display: flex;
  align-items: center;
}
.shop-sidebar-area .shop-sidebar-widget .price-filter-box .range-slider .slider-track {
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #000000;
  z-index: 1;
}
.shop-sidebar-area .shop-sidebar-widget .price-filter-box .range-slider input[type=range] {
  position: absolute;
  width: 100%;
  background: none;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
  z-index: 2;
}
.shop-sidebar-area .shop-sidebar-widget .price-filter-box .range-slider input[type=range]::-webkit-slider-thumb {
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #000000;
  pointer-events: auto;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.shop-sidebar-area .shop-sidebar-widget .price-filter-box .range-slider input[type=range]::-moz-range-thumb {
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #000000;
  pointer-events: auto;
  cursor: pointer;
}
.shop-sidebar-area .shop-sidebar-widget .theme-btn {
  width: 100%;
  padding: 17px 20px;
  background-color: var(--header);
  color: var(--white);
}
.shop-sidebar-area .shop-sidebar-widget .theme-btn::before, .shop-sidebar-area .shop-sidebar-widget .theme-btn::after {
  background-color: var(--theme);
}
.shop-sidebar-area .shop-sidebar-widget .theme-btn:hover {
  color: var(--white);
}
.shop-sidebar-area .shop-sidebar-widget .theme-btn.style-2 {
  background-color: transparent;
  color: var(--header);
  border: 1px solid #D4D4D4;
  margin-top: 10px;
}
.shop-sidebar-area .shop-sidebar-widget .theme-btn.style-2:hover {
  color: var(--white);
}

.modal-common-wrap {
  position: fixed;
  z-index: 9999;
  overflow-y: scroll;
  max-height: 100vh;
}
.modal-common-wrap .modal-content {
  background: transparent;
  border: unset;
}
.modal-common-wrap .gt-shop-details-wrapper {
  background-color: var(--bg);
}
.modal-common-wrap .modal-header {
  border-radius: 0;
  padding: 0 0;
  margin-left: auto;
  border: unset;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 99;
}
.modal-common-wrap .modal-header .btn-close {
  margin: 0 0;
  padding: 0 0;
  outline: none;
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 0;
}
.modal-common-wrap .modal-body {
  background: var(--white);
  padding: 0 0;
}
.modal-common-wrap .modal-dialog {
  max-width: 1380px;
}
.modal-common-wrap .modal-dialog.style-shop-details {
  max-width: 1380px;
}
.modal-common-wrap .modal-dialog.style-shop-details .modal-header {
  background-color: var(--bg);
}
.modal-common-wrap .modal-dialog.style-shop-details .gt-shop-details-wrapper {
  padding: 30px;
}

.testimonial-box-items {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
  background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0.5) 170.32%);
}
@media (max-width: 767px) {
  .testimonial-box-items {
    display: block;
    text-align: center;
  }
}
.testimonial-box-items .thumb {
  max-width: 308px;
}
@media (max-width: 767px) {
  .testimonial-box-items .thumb {
    margin: 0 auto;
  }
}
.testimonial-box-items .thumb img {
  width: 100%;
  height: 100%;
}
.testimonial-box-items .content {
  max-width: 425px;
}
@media (max-width: 767px) {
  .testimonial-box-items .content {
    margin: 30px auto 0;
    text-align: center;
  }
}
.testimonial-box-items .content .quote-icon {
  margin-bottom: 35px;
}
.testimonial-box-items .content p {
  font-size: 20px;
  color: #424242;
}
@media (max-width: 767px) {
  .testimonial-box-items .content p {
    font-size: 17px;
  }
}
.testimonial-box-items .content .client-info {
  margin-top: 25px;
}
.testimonial-box-items .content .client-info .star {
  color: var(--theme);
  margin-top: 5px;
}

.testimonial-wrapper {
  margin-left: -15%;
  margin-right: -15%;
}
@media (max-width: 1600px) {
  .testimonial-wrapper {
    margin-left: -40%;
    margin-right: -20%;
  }
}
@media (max-width: 1399px) {
  .testimonial-wrapper {
    margin-left: -40%;
    margin-right: -50%;
  }
}
@media (max-width: 1199px) {
  .testimonial-wrapper {
    margin-left: -25%;
    margin-right: -25%;
  }
}
@media (max-width: 991px) {
  .testimonial-wrapper {
    margin-left: -20%;
    margin-right: -20%;
  }
}
@media (max-width: 767px) {
  .testimonial-wrapper {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.testimonial-card-items {
  border: 1px solid #D4D4D4;
  padding: 30px 22px;
  margin-top: 30px;
}
.testimonial-card-items.style-3 {
  border: none;
  background-color: #2E2E2E;
}
.testimonial-card-items.style-3 p {
  color: #808080;
}
.testimonial-card-items.style-3 .client-info .info-content h3 {
  color: var(--white);
}
.testimonial-card-items.style-3 .client-info .info-content .star {
  color: #FEC300;
}
.testimonial-card-items .quote-icon {
  margin-bottom: 30px;
}
.testimonial-card-items p {
  font-size: 15px;
  color: #424242;
}
.testimonial-card-items .client-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.testimonial-card-items .client-info .info-content h3 {
  font-size: 18px;
}
.testimonial-card-items .client-info .info-content .star {
  font-size: 14px;
  color: var(--theme2);
  margin-top: 5px;
}

.testimonial-section-3 {
  background-color: #121212;
}

.testimonial-slider-3 {
  margin-left: -10%;
  margin-right: -10%;
}
@media (max-width: 1199px) {
  .testimonial-slider-3 {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.testimonial-section-3 .swiper-dot .swiper-pagination-bullet {
  background-color: #fff;
}
.testimonial-section-3 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}
.testimonial-section-3 .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border: 2px solid #fff;
}

.testimonial-box-items-4 {
  text-align: center;
  margin-top: 30px;
}
.testimonial-box-items-4 .quote-icon {
  margin-bottom: 20px;
}
.testimonial-box-items-4 p {
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .testimonial-box-items-4 p {
    font-size: 17px;
  }
}
@media (max-width: 575px) {
  .testimonial-box-items-4 p {
    font-size: 16px;
  }
}
.testimonial-box-items-4 .client-info {
  text-align: center;
  margin-top: 30px;
}
.testimonial-box-items-4 .client-info .info-content {
  margin-top: 15px;
}
.testimonial-box-items-4 .client-info .info-content span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
}
.testimonial-box-items-4 .client-info .info-content .star {
  font-size: 14px;
  color: #FEC300;
}

.testimonial-section-4 {
  position: relative;
}
.testimonial-section-4 .array-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25%;
  right: 25%;
  z-index: 99;
}
@media (max-width: 1600px) {
  .testimonial-section-4 .array-button {
    left: 15%;
    right: 15%;
  }
}
@media (max-width: 991px) {
  .testimonial-section-4 .array-button {
    display: none;
  }
}
.testimonial-section-4 .array-button .array-prev, .testimonial-section-4 .array-button .array-next {
  background-color: var(--white);
  box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.12);
  color: var(--header);
}
.testimonial-section-4 .array-button .array-prev:hover, .testimonial-section-4 .array-button .array-next:hover {
  background-color: var(--theme4);
}

.news-box-items-2 {
  margin-top: 30px;
  border: 1px solid #D4D4D4;
}
.news-box-items-2 .thumb {
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.news-box-items-2 .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.news-box-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);
}
.news-box-items-2 .thumb .date-box {
  background-color: var(--white);
  padding: 12px 15px;
  text-align: center;
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 8;
  transition: all 0.4s ease-in-out;
}
.news-box-items-2 .thumb .date-box .date {
  font-size: 40px;
  font-weight: 700;
  color: var(--header);
  line-height: 1;
}
.news-box-items-2 .thumb .date-box p {
  font-weight: 500;
  font-size: 12px;
  color: var(--header);
  font-weight: 500;
}
.news-box-items-2 .content {
  padding: 30px;
}
.news-box-items-2 .content h3 {
  margin-bottom: 10px;
}
.news-box-items-2 .content h3 a:hover {
  color: var(--theme2);
}
.news-box-items-2 .content .link-btn {
  display: inline-block;
  color: var(--header);
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
  margin-top: 20px;
}
.news-box-items-2 .content .link-btn:hover {
  color: var(--theme2);
}
.news-box-items-2.style-inner .content h3 a:hover {
  color: var(--theme);
}
.news-box-items-2.style-inner .content h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}
@media (max-width: 1199px) {
  .news-box-items-2.style-inner .content h2 {
    font-size: 19px;
  }
}
.news-box-items-2.style-inner .content h2 a:hover {
  color: var(--theme);
}
.news-box-items-2.style-inner .content .link-btn:hover {
  color: var(--theme);
}
.news-box-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);
}
.news-box-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);
}
.news-box-items-2:hover .thumb .date-box {
  background-color: var(--theme);
  color: var(--header);
}

.news-box-items-4 {
  margin-top: 30px;
  border: 1px solid #D4D4D4;
}
.news-box-items-4 .thumb {
  position: relative;
  overflow: hidden;
}
.news-box-items-4 .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.news-box-items-4 .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-box-items-4 .thumb .date-box {
  text-align: center;
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--white);
  width: 80px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
.news-box-items-4 .thumb .date-box .date-text span {
  font-size: 40px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--header);
}
.news-box-items-4 .thumb .date-box .date-text p {
  font-size: 12px;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--header);
}
.news-box-items-4 .content {
  padding: 30px 35px;
  max-width: 525px;
}
.news-box-items-4 .content h3 {
  margin-bottom: 15px;
}
.news-box-items-4 .content h3 a:hover {
  color: var(--theme4);
}
.news-box-items-4 .content .theme-btn {
  background-color: transparent;
  border: 1px solid #808080;
  color: var(--header);
  padding: 16px 30px;
  margin-top: 30px;
}
.news-box-items-4 .content .theme-btn::before, .news-box-items-4 .content .theme-btn::after {
  background-color: var(--theme4);
}
.news-box-items-4 .content .theme-btn:hover {
  color: var(--white);
  border: 1px solid var(--theme4);
}
.news-box-items-4: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);
}
.news-box-items-4: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);
}

.gt-main-sideber .gt-single-sideber-widget {
  margin-bottom: 30px;
  padding: 30px;
  border: 1px solid #D4D4D4;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form {
  width: 100%;
  position: relative;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form input {
  background-color: transparent;
  border: 1px solid #D4D4D4;
  font-size: 16px;
  font-weight: 400;
  padding: 16px 20px;
  width: 100%;
  color: var(--text);
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button {
  position: absolute;
  right: -2px;
  top: 0;
  width: 58px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button:hover {
  background-color: var(--header);
}
.gt-main-sideber .gt-single-sideber-widget .gt-widget-title {
  margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-widget-title h3 {
  font-weight: 600;
  font-size: 18px;
}
.gt-main-sideber .gt-single-sideber-widget .amenities-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}
.gt-main-sideber .gt-single-sideber-widget .amenities-list li:not(:last-child) {
  margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-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: var(--white);
  padding: 18px 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1;
  text-transform: capitalize;
  border: 1px solid #D4D4D4;
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li a {
  color: var(--header);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li i {
  transition: all 0.4s ease-in-out;
  color: var(--header);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:not(:last-child) {
  margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li span b {
  font-weight: 400;
  color: var(--theme);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover {
  background-color: var(--theme);
  border: 1px solid var(--theme);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover a {
  color: var(--white);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover i, .gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover span {
  color: var(--white);
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items:not(:last-child) {
  margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content h4 {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content h4 a:hover {
  color: var(--theme);
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content ul li {
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
}
.gt-main-sideber .gt-single-sideber-widget .tagcloud a {
  display: inline-block;
  padding: 12px 18px;
  line-height: 1;
  font-weight: 600;
  background: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-right: 10px;
  margin-bottom: 10px;
  text-transform: capitalize;
  border: 1px solid #D4D4D4;
}
.gt-main-sideber .gt-single-sideber-widget .tagcloud a:last-child {
  margin-right: 0;
}
.gt-main-sideber .gt-single-sideber-widget .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}

.news-details-area .blog-post-details .single-blog-post .post-featured-thumb img {
  width: 100%;
  height: 100%;
}
.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(--theme);
  margin-right: 5px;
}
.news-details-area .blog-post-details .single-blog-post .post-content h2 {
  margin-bottom: 20px;
  font-size: 38px;
}
@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(--theme);
  padding: 40px;
  background-color: var(--bg);
}
.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%;
}
.news-details-area .blog-post-details .tag-share-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  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(--bg);
  margin-right: 8px;
  text-transform: capitalize;
  font-weight: 500;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@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(--white);
}
.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(--bg);
}
.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: 24px;
  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 #dfdcdc;
}
.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 h5 {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 18px;
}
.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 {
  padding: 5px 15px;
  font-weight: 400;
  background-color: var(--white);
  color: var(--theme);
}
.news-details-area .blog-post-details .comment-form-wrap {
  background-color: var(--bg);
  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: var(--white);
  border: none;
  padding: 16px 20px;
  font-weight: 500;
}
.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;
}

.brand-wrapper {
  border-top: 1px solid #D4D4D4;
  border-bottom: 1px solid #D4D4D4;
  padding: 60px 0;
}
.brand-wrapper.style-2 {
  padding: 0;
  border: none;
  padding-top: 100px;
  padding-bottom: 100px;
}
.brand-wrapper.style-2 p {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
  border: 1px solid #CCCCCC;
  max-width: 240px;
  margin: 0 auto 60px;
  padding: 7px 16px;
  line-height: 1;
}
.brand-wrapper .brand-box-1 {
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 42px;
}
.brand-wrapper .brand-box-1 .brand-img-1 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-wrapper .brand-box-1 .brand-img-1 img {
  transition: all 0.6s ease;
  transform: translateY(0);
}
.brand-wrapper .brand-box-1 .brand-img-1:last-child img {
  transform: translateY(-350%);
  opacity: 0;
}
.brand-wrapper .brand-box-1:hover .brand-img-1:first-child img {
  transform: translateY(100%);
  opacity: 0;
}
.brand-wrapper .brand-box-1:hover .brand-img-1:last-child img {
  transform: translateY(0);
  opacity: 1;
}

.faq-content .accordion-box {
  position: relative;
  margin-top: 50px;
  max-width: 600px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  padding-top: 30px;
}
@media (max-width: 767px) {
  .faq-content .accordion-box {
    margin-top: 30px;
  }
}
.faq-content .accordion-box .block {
  position: relative;
  background-color: transparent;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  margin-bottom: 30px;
  line-height: 1;
  padding-bottom: 32px;
}
.faq-content .accordion-box .block .acc-btn {
  position: relative;
  font-size: 18px;
  color: var(--header);
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media (max-width: 470px) {
  .faq-content .accordion-box .block .acc-btn {
    font-size: 20px;
  }
}
.faq-content .accordion-box .block .acc-btn .number {
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -3px;
  margin-left: -50px;
  margin-right: 15px;
}
.faq-content .accordion-box .block .acc-btn .icon {
  position: absolute;
  right: 0;
  top: 0;
  height: 35px;
  font-size: 18px;
  line-height: 18px;
  color: var(--header);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.faq-content .accordion-box .block .acc-content {
  position: relative;
  display: none;
  margin-top: 22px;
}
@media (max-width: 470px) {
  .faq-content .accordion-box .block .acc-content {
    margin-top: 10px;
  }
}
.faq-content .accordion-box .block .acc-content .content {
  position: relative;
}
.faq-content .accordion-box .block .acc-content .content .text {
  line-height: 175%;
  font-size: 16px;
  font-weight: 400;
  color: #808080;
  max-width: 570px;
}
@media (max-width: 1199px) {
  .faq-content .accordion-box .block .acc-content .content .text {
    font-size: 14px;
  }
}
@media (max-width: 470px) {
  .faq-content .accordion-box .block .acc-content .content .text {
    font-size: 13px;
  }
}
.faq-content .accordion-box .block .acc-content.current {
  display: block;
}
.faq-content .accordion-box .block .acc-btn.active .icon:before {
  content: "\f077";
  color: var(--theme);
}
.faq-content .accordion-box .block .acc-btn.active {
  color: var(--theme);
}
.faq-content .accordion-box .block:last-child {
  margin-bottom: 0;
}

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

.gt-instagram-image {
  position: relative;
  overflow: hidden;
}
.gt-instagram-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #FF914D;
  opacity: 0.4;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: top right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: 9;
}
.gt-instagram-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.gt-instagram-image .gt-icon {
  display: inline-block;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}
.gt-instagram-image:hover .gt-icon {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.gt-instagram-image:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.gt-instagram-image:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}
.gt-instagram-image.style-2::before {
  background-color: rgba(56, 182, 255, 0.4);
}

.cta-subscribe-section {
  padding: 80px 0;
  background-color: #121212;
}

.cta-subscribe-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .cta-subscribe-wrapper {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
  }
}
.cta-subscribe-wrapper h2 {
  color: var(--white);
  font-size: 32px;
}
@media (max-width: 991px) {
  .cta-subscribe-wrapper h2 br {
    display: none;
  }
}
@media (max-width: 575px) {
  .cta-subscribe-wrapper h2 {
    font-size: 26px;
  }
}
.cta-subscribe-wrapper h2 span {
  color: var(--theme);
}
.cta-subscribe-wrapper form {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 565px;
  width: 100%;
}
.cta-subscribe-wrapper form .form-clt {
  max-width: 392px;
  width: 100%;
}
.cta-subscribe-wrapper form .form-clt input {
  width: 100%;
  border: 1.5px solid #424242;
  background-color: transparent;
  line-height: 1;
  padding: 17.5px 20px;
  outline: none;
  color: var(--text);
}
.cta-subscribe-wrapper form .theme-btn {
  padding: 20px 32px;
}
.cta-subscribe-wrapper form .theme-btn::before, .cta-subscribe-wrapper form .theme-btn::after {
  background-color: var(--theme);
}
.cta-subscribe-wrapper form .theme-btn:hover {
  color: var(--white);
}

.cta-wrapper-2 {
  background-color: var(--theme2);
  padding: 70px 60px;
  position: relative;
  border: 5px solid var(--white);
}
@media (max-width: 991px) {
  .cta-wrapper-2 {
    padding: 50px 30px;
  }
}
.cta-wrapper-2 .cta-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 991px) {
  .cta-wrapper-2 .cta-shape {
    display: none;
  }
}
.cta-wrapper-2 .cta-shape img {
  height: 100%;
}
.cta-wrapper-2 .content {
  position: relative;
  z-index: 999;
}
.cta-wrapper-2 .content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cta-wrapper-2 .content h2 {
    font-size: 26px;
  }
}
.cta-wrapper-2 .content p {
  font-size: 16px;
  font-weight: 400;
  color: #121212;
  max-width: 500px;
}
.cta-wrapper-2 .content .cta-btn-items {
  margin-top: 40px;
}
.cta-wrapper-2 .content .theme-btn {
  background-color: var(--white);
  color: var(--header);
}
.cta-wrapper-2 .content .theme-btn::after, .cta-wrapper-2 .content .theme-btn::before {
  background-color: var(--header);
}
.cta-wrapper-2 .content .theme-btn:hover {
  color: var(--white);
}
.cta-wrapper-2 .cta-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
@media (max-width: 991px) {
  .cta-wrapper-2 .cta-image {
    display: none;
  }
}
.cta-wrapper-2 .cta-image img {
  height: 100%;
}

.cta-section-2 {
  position: relative;
  z-index: 9;
}
.cta-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #F0F0F0;
  top: 50%;
  z-index: -1;
}

.gt-instagram-section {
  position: relative;
  z-index: 9;
}
.gt-instagram-section.style-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #121212;
  z-index: -1;
  top: 75%;
  height: initial;
}

.reset-password-form {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  width: 100%;
  max-width: 575px;
  padding: 40px;
  margin: 0 auto;
}
.reset-password-form h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.reset-password-form .description {
  margin-bottom: 10px;
}
.reset-password-form .form-group {
  margin-bottom: 30px;
}
.reset-password-form .form-group label {
  display: block;
  font-size: 16px;
  color: #333333;
  margin-bottom: 8px;
}
.reset-password-form .form-group label span {
  color: #ff914d;
}
.reset-password-form .form-group input {
  width: 100%;
  padding: 15px;
  border: 1px solid #121212;
  outline: none;
  font-size: 16px;
  color: var(--text);
}
.reset-password-form button {
  width: 100%;
  margin-bottom: 25px;
  background-color: var(--header);
  color: var(--white);
  transition: opacity 0.3s ease;
}
.reset-password-form .back-link {
  font-size: 16px;
  color: #777777;
}
.reset-password-form .back-link a {
  color: #000000;
  text-decoration: underline;
  font-weight: 500;
}

.registration-form-items {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  width: 100%;
  max-width: 575px;
  padding: 40px;
  margin: 0 auto;
}
.registration-form-items h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.registration-form-items .description {
  font-size: 15px;
  color: #888888;
  margin-bottom: 25px;
}
.registration-form-items .form-group {
  margin-bottom: 20px;
}
.registration-form-items .form-group label {
  display: block;
  font-size: 14px;
  color: #555555;
  margin-bottom: 8px;
  font-weight: 500;
}
.registration-form-items .form-group label span {
  color: #ff914d;
  margin-left: 2px;
}
.registration-form-items .form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #dcdcdc;
  outline: none;
  font-size: 15px;
  color: #333;
}
.registration-form-items .form-group input:focus {
  border-color: #000000;
}
.registration-form-items .form-group .password-wrapper {
  position: relative;
}
.registration-form-items .form-group .password-wrapper i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #888888;
  cursor: pointer;
  font-size: 18px;
}
.registration-form-items button {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 25px;
  transition: background 0.3s ease;
  background-color: var(--header);
  color: var(--white);
}
.registration-form-items .footer-text {
  font-size: 14px;
  color: #888888;
}
.registration-form-items .footer-text a {
  color: #333333;
  text-decoration: underline;
  font-weight: 500;
  margin-left: 5px;
}

.login-form-items {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  width: 100%;
  max-width: 575px;
  padding: 40px;
  margin: 0 auto;
}
.login-form-items h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.login-form-items .description {
  font-size: 16px;
  color: #808080;
  margin-bottom: 30px;
}
.login-form-items .form-group {
  margin-bottom: 25px;
}
.login-form-items .form-group label {
  display: block;
  font-size: 16px;
  color: #333333;
  margin-bottom: 8px;
  font-weight: 500;
}
.login-form-items .form-group label span {
  color: #ff914d;
  margin-left: 2px;
}
.login-form-items .form-group input {
  width: 100%;
  padding: 15px;
  border: 1px solid #dcdcdc;
  outline: none;
  font-size: 16px;
  color: #333;
}
.login-form-items .form-group input:focus {
  border-color: #000000;
}
.login-form-items .form-group .password-wrapper {
  position: relative;
}
.login-form-items .form-group .password-wrapper i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #888888;
  cursor: pointer;
  font-size: 18px;
}
.login-form-items .remember-forget-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}
.login-form-items .remember-forget-row .custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  color: #333;
  position: relative;
}
.login-form-items .remember-forget-row .custom-checkbox input {
  display: none;
}
.login-form-items .remember-forget-row .custom-checkbox .checkmark {
  height: 20px;
  width: 20px;
  background-color: #000000;
  margin-right: 10px;
  display: inline-block;
  position: relative;
  border-radius: 2px;
}
.login-form-items .remember-forget-row .custom-checkbox .checkmark::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  color: white;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.login-form-items .remember-forget-row .forget-pass {
  color: #000000;
  text-decoration: underline;
  font-size: 15px;
  font-weight: 500;
}
.login-form-items button {
  width: 100%;
  margin-bottom: 30px;
  transition: 0.3s;
  background-color: var(--header);
  color: var(--white);
}
.login-form-items button:hover {
  opacity: 0.9;
}
.login-form-items .footer-text {
  font-size: 15px;
  color: #808080;
}
.login-form-items .footer-text a {
  color: #000000;
  text-decoration: underline;
  font-weight: 600;
  margin-left: 5px;
}

.track-order-form {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  width: 100%;
  max-width: 575px;
  padding: 40px;
  margin: 0 auto;
}
.track-order-form h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.track-order-form .description {
  font-size: 16px;
  margin-bottom: 30px;
}
.track-order-form .form-group {
  margin-bottom: 25px;
}
.track-order-form .form-group label {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 500;
}
.track-order-form .form-group label span {
  color: var(--theme);
  margin-left: 2px;
}
.track-order-form .form-group input {
  width: 100%;
  padding: 15px;
  border: 1px solid #D4D4D4;
  outline: none;
  font-size: 16px;
  color: var(--text);
}
.track-order-form .form-group input:nth-of-type(2) {
  border: 1px solid #dcdcdc;
}
.track-order-form .form-group input:focus {
  border-color: var(--theme);
}
.track-order-form button {
  width: 100%;
  margin-top: 10px;
  transition: 0.3s;
  border: 1px solid var(--header);
}
.track-order-form button:hover {
  opacity: 0.9;
  border: 1px solid var(--theme);
}

.order-confirm-items {
  width: 100%;
  margin: 0 auto;
}
.order-confirm-items .order-header {
  text-align: center;
  margin-bottom: 50px;
}
.order-confirm-items .order-header .success-icon {
  width: 60px;
  height: 60px;
  background-color: var(--theme);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: #ffffff;
  font-size: 24px;
}
.order-confirm-items .order-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}
.order-confirm-items .order-header p {
  font-size: 16px;
  color: #888888;
}
.order-confirm-items .order-info-bar {
  display: flex;
  border: 2px dashed #D4D4D4;
  padding: 25px 0;
  margin-bottom: 40px;
}
.order-confirm-items .order-info-bar .info-item {
  flex: 1;
  text-align: center;
  border-right: 2px dashed #D4D4D4;
}
.order-confirm-items .order-info-bar .info-item:last-child {
  border-right: none;
}
.order-confirm-items .order-info-bar .info-item label {
  display: block;
  font-size: 13px;
  color: #888888;
  margin-bottom: 8px;
}
.order-confirm-items .order-info-bar .info-item span {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}
.order-confirm-items .payment-option-container {
  border: 1px solid #D4D4D4;
  padding: 30px;
}
.order-confirm-items .payment-option-container h3 {
  font-size: 24px;
  margin-bottom: 25px;
}
.order-confirm-items .payment-option-container .table-header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid #D4D4D4;
  font-weight: 700;
  font-size: 16px;
}
.order-confirm-items .payment-option-container .table-row {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #D4D4D4;
  font-size: 14px;
}
.order-confirm-items .payment-option-container .table-row .col-right {
  color: var(--header);
}
.order-confirm-items .payment-option-container .table-row .col-left {
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
}
.order-confirm-items .payment-option-container .table-row strong {
  color: var(--header);
}
.order-confirm-items .payment-option-container .product-list {
  margin-bottom: 10px;
}
.order-confirm-items .payment-option-container .total-row {
  border-bottom: none;
  font-size: 16px;
  padding-top: 20px;
}

@media (max-width: 1599px) {
  .order-confirm-items {
    max-width: 850px;
  }
}
@media (max-width: 768px) {
  .order-confirm-items .order-header h2 {
    font-size: 26px;
  }
  .order-confirm-items .order-info-bar {
    flex-direction: column;
    text-align: left;
    padding: 15px;
  }
  .order-confirm-items .order-info-bar .info-item {
    border-right: none;
    border-bottom: 1px dashed #dcdcdc;
    padding: 15px 0;
    text-align: left;
  }
  .order-confirm-items .order-info-bar .info-item:last-child {
    border-bottom: none;
  }
  .order-confirm-items .payment-option-container {
    padding: 15px;
  }
}
@media (max-width: 991px) {
  .store-list-items {
    margin-bottom: 30px;
  }
}
.store-list-items .thumb img {
  width: 100%;
  height: 100%;
}
.store-list-items .content {
  margin-left: 60px;
  max-width: 500px;
}
@media (max-width: 991px) {
  .store-list-items .content {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .store-list-items .content {
    margin-left: 0;
  }
}
.store-list-items .content.style-2 {
  margin-left: 0;
}
@media (max-width: 991px) {
  .store-list-items .content.style-2 {
    margin-bottom: 30px;
    margin-top: 0;
  }
}
.store-list-items .content h2 {
  font-size: 40px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .store-list-items .content h2 {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .store-list-items .content h2 {
    font-size: 28px;
  }
}
.store-list-items .content ul {
  border-top: 1px solid #D4D4D4;
  padding-top: 30px;
  margin-top: 28px;
  margin-bottom: 40px;
}
.store-list-items .content ul li:not(:last-child) {
  margin-bottom: 28px;
}
.store-list-items .content ul li .text {
  font-size: 24px;
  font-weight: 600;
  color: var(--header);
  display: inline-block;
  margin-bottom: 10px;
}
.store-list-items .content ul li p a {
  color: var(--theme);
}
.store-list-items .content .theme-btn {
  border: 1px solid var(--header);
}
.store-list-items .content .theme-btn:hover {
  border: 1px solid var(--theme);
}

.privacy-policy-wrapper .content h2 {
  font-size: 44px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .privacy-policy-wrapper .content h2 {
    font-size: 34px;
  }
}
@media (max-width: 575px) {
  .privacy-policy-wrapper .content h2 {
    font-size: 30px;
  }
}
.privacy-policy-wrapper .content .date-list {
  font-weight: 500;
  color: #424242;
  display: inline-block;
  margin-top: 25px;
}
.privacy-policy-wrapper .content .date-list i {
  margin-left: 5px;
  margin-right: 4px;
}
.privacy-policy-wrapper .accordion-box {
  position: relative;
  margin-top: 40px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  padding-top: 30px;
}
@media (max-width: 767px) {
  .privacy-policy-wrapper .accordion-box {
    margin-top: 30px;
  }
}
.privacy-policy-wrapper .accordion-box .block {
  position: relative;
  background-color: transparent;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  margin-bottom: 30px;
  line-height: 1;
  padding-bottom: 32px;
}
.privacy-policy-wrapper .accordion-box .block .acc-btn {
  position: relative;
  font-size: 20px;
  color: var(--header);
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media (max-width: 470px) {
  .privacy-policy-wrapper .accordion-box .block .acc-btn {
    font-size: 20px;
  }
}
.privacy-policy-wrapper .accordion-box .block .acc-btn .icon {
  position: absolute;
  right: 0;
  top: 0;
  height: 35px;
  font-size: 18px;
  line-height: 18px;
  color: var(--header);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.privacy-policy-wrapper .accordion-box .block .acc-content {
  position: relative;
  display: none;
  margin-top: 22px;
}
@media (max-width: 470px) {
  .privacy-policy-wrapper .accordion-box .block .acc-content {
    margin-top: 10px;
  }
}
.privacy-policy-wrapper .accordion-box .block .acc-content .content {
  position: relative;
  margin-top: 30px;
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .privacy-policy-wrapper .accordion-box .block .acc-content .content {
    margin-left: 0;
  }
}
.privacy-policy-wrapper .accordion-box .block .acc-content .content .text {
  font-size: 16px;
  font-weight: 400;
  color: #808080;
  position: relative;
  line-height: 1.5;
  padding-left: 20px;
}
.privacy-policy-wrapper .accordion-box .block .acc-content .content .text::before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  background-color: var(--text);
  width: 5px;
  height: 5px;
  border-radius: 5px;
}
@media (max-width: 1199px) {
  .privacy-policy-wrapper .accordion-box .block .acc-content .content .text {
    font-size: 14px;
  }
}
@media (max-width: 470px) {
  .privacy-policy-wrapper .accordion-box .block .acc-content .content .text {
    font-size: 13px;
  }
}
.privacy-policy-wrapper .accordion-box .block .acc-content.current {
  display: block;
}
.privacy-policy-wrapper .accordion-box .block .acc-btn.active .icon:before {
  content: "\f077";
  color: var(--header);
}
.privacy-policy-wrapper .accordion-box .block .acc-btn.active {
  color: var(--header);
}
.privacy-policy-wrapper .accordion-box .block:last-child {
  margin-bottom: 0;
}
.privacy-policy-wrapper .contact-us-box {
  border: 1px solid #D4D4D4;
  padding: 40px 30px;
  text-align: center;
  box-sizing: border-box;
}
.privacy-policy-wrapper .contact-us-box h3 {
  font-size: 32px;
  font-weight: 700;
}
.privacy-policy-wrapper .contact-us-box .icon {
  margin-bottom: 25px;
  font-size: 50px;
  color: var(--header);
  margin-top: 25px;
}
.privacy-policy-wrapper .contact-us-box .label {
  font-size: 16px;
  margin-bottom: 8px;
}
.privacy-policy-wrapper .contact-us-box .email {
  font-size: 20px;
  font-weight: 600;
  color: var(--header);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  display: inline-block;
}

.coming-soon-section {
  position: relative;
  height: 100vh;
  background-color: #121212;
}
@media (max-width: 991px) {
  .coming-soon-section {
    height: initial;
  }
}
.coming-soon-section .coming-soon-image {
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  width: 50%;
}
@media (max-width: 991px) {
  .coming-soon-section .coming-soon-image {
    position: static;
    width: 100%;
    margin-top: 30px;
    height: 550px;
  }
}
.coming-soon-section .coming-soon-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.coming-soon-section .coming-soon-content {
  padding-top: 230px;
}
@media (max-width: 991px) {
  .coming-soon-section .coming-soon-content {
    padding-top: 200px;
  }
}
@media (max-width: 767px) {
  .coming-soon-section .coming-soon-content {
    padding-top: 180px;
  }
}
@media (max-width: 575px) {
  .coming-soon-section .coming-soon-content {
    padding-top: 150px;
  }
}
.coming-soon-section .coming-soon-content .subs {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  display: inline-block;
  margin-bottom: 5px;
}
.coming-soon-section .coming-soon-content h1 {
  color: var(--white);
}
.coming-soon-section .coming-soon-content p {
  color: #808080;
  max-width: 500px;
  margin-top: 30px;
}
.coming-soon-section .coming-soon-content .coming-soon-time {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 35px;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .coming-soon-section .coming-soon-content .coming-soon-time {
    flex-wrap: wrap;
    margin-bottom: 25px;
    margin-top: 25px;
  }
}
.coming-soon-section .coming-soon-content .coming-soon-time .timer-content {
  text-align: center;
  border-top: 1px solid #2E2E2E;
  border-bottom: 1px solid #2E2E2E;
  min-width: 110px;
  padding: 20px 0;
}
.coming-soon-section .coming-soon-content .coming-soon-time .timer-content h2 {
  color: var(--white);
}
.coming-soon-section .coming-soon-content .coming-soon-time .timer-content span {
  display: inline-block;
  margin-top: 5px;
}
.coming-soon-section .coming-soon-content .theme-btn::before, .coming-soon-section .coming-soon-content .theme-btn::after {
  background-color: var(--theme);
}
.coming-soon-section .coming-soon-content .theme-btn:hover {
  color: var(--white);
}

.contact-info-box {
  margin-top: 30px;
  background-color: var(--bg);
  padding: 40px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 9;
}
.contact-info-box .icon {
  max-width: 80px;
  width: 100%;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  font-size: 25px;
  transition: all 0.4s ease-in-out;
}
.contact-info-box .content h3 {
  font-size: 20px;
  color: var(--header);
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.contact-info-box .content p {
  line-height: 162.5%;
}
.contact-info-box .content p a {
  color: var(--text);
}

.contact-wrapper .contact-map iframe {
  width: 100%;
  height: 600px;
}
.contact-wrapper .contact-box-items {
  padding: 50px 50px;
  background-color: var(--bg);
}
@media (max-width: 767px) {
  .contact-wrapper .contact-box-items {
    padding: 30px;
  }
}
.contact-wrapper .contact-box-items.style-2 {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7.5px);
}
.contact-wrapper .contact-box-items.style-2 .contact-form-box .form-clt input, .contact-wrapper .contact-box-items.style-2 .contact-form-box .form-clt textarea {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.contact-wrapper .contact-box-items.style-2 .contact-form-box .form-clt input::placeholder, .contact-wrapper .contact-box-items.style-2 .contact-form-box .form-clt textarea::placeholder {
  color: var(--white);
}
.contact-wrapper .contact-box-items.style-2 .contact-form-box .form-clt textarea {
  padding-bottom: 120px;
}
.contact-wrapper .contact-box-items.style-2 .contact-form-box .form-clt .form .single-select {
  border: none;
  color: var(--header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.contact-wrapper .contact-box-items.style-2 .contact-form-box .form-clt .form .single-select .current {
  color: var(--white);
}
.contact-wrapper .contact-box-items.style-2 .contact-form-box .form-clt .form .single-select::after {
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
}
.contact-wrapper .contact-box-items .contact-form-box {
  margin-top: 30px;
}
.contact-wrapper .contact-box-items .contact-form-box .form-clt input, .contact-wrapper .contact-box-items .contact-form-box .form-clt textarea {
  outline: none;
  width: 100%;
  color: var(--header);
  padding-bottom: 20px;
  border: none;
  background: transparent;
  border-bottom: 1px solid rgba(15, 23, 42, 0.2);
  text-transform: capitalize;
}
.contact-wrapper .contact-box-items .contact-form-box .form-clt input::placeholder, .contact-wrapper .contact-box-items .contact-form-box .form-clt textarea::placeholder {
  color: var(--header);
}
.contact-wrapper .contact-box-items .contact-form-box .form-clt textarea {
  padding-bottom: 120px;
}
.contact-wrapper .contact-box-items .contact-form-box .form-clt .form .single-select {
  border: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.2);
  background-color: transparent;
  width: 100%;
  height: initial;
  line-height: initial;
  text-transform: capitalize;
  color: var(--header);
  padding-bottom: 20px;
  border-radius: 0;
}
.contact-wrapper .contact-box-items .contact-form-box .form-clt .form .single-select .current {
  color: var(--header);
}
.contact-wrapper .contact-box-items .contact-form-box .form-clt .form .single-select::after {
  border-bottom: 2px solid var(--header);
  border-right: 2px solid var(--header);
  width: 8px;
  height: 8px;
  right: 12px;
}
.contact-wrapper .contact-box-items .contact-form-box .form-clt .form .single-select .list {
  width: 100%;
}

.common-newsletter-modal {
  border-radius: 0;
}
.common-newsletter-modal .close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 24px;
}
.common-newsletter-modal .modal-content {
  border-radius: 0px;
}
.common-newsletter-modal .modal-content .offer-modal-img img {
  width: 100%;
  height: 100%;
}
.common-newsletter-modal .offer-modal-right {
  text-align: center;
  padding: 20px 20px 20px 0;
}
@media (max-width: 500px) {
  .common-newsletter-modal .offer-modal-right {
    padding-right: 0;
  }
}
.common-newsletter-modal .offer-modal-right h3 {
  color: var(--black);
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
@media (max-width: 500px) {
  .common-newsletter-modal .offer-modal-right h3 {
    font-size: 30px;
  }
}
.common-newsletter-modal .offer-modal-right p {
  line-height: 150%;
  padding: 14px 8px 30px 0;
}
@media (max-width: 500px) {
  .common-newsletter-modal .offer-modal-right p {
    padding: 8px 0px 20px 0;
  }
}
.common-newsletter-modal .offer-modal-right p span {
  color: var(--theme);
}
.common-newsletter-modal .offer-modal-right .input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  border-top-left-radius: 0;
  border-radius: 0 !important;
}
.common-newsletter-modal .offer-modal-right .input-group .form-control {
  height: 65px;
  border-radius: 0 !important;
  outline: none;
}
.common-newsletter-modal .offer-modal-right .input-group .input-group-append {
  position: absolute;
  right: 4px;
  bottom: 3px;
  z-index: 99;
}
.common-newsletter-modal .offer-modal-right .input-group .input-group-append button.theme-btn.style-2 {
  background-color: var(--theme2);
}
.common-newsletter-modal .offer-modal-right .check-boxed-modal {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 500px) {
  .common-newsletter-modal .offer-modal-right .check-boxed-modal {
    margin-top: 30px;
  }
}

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

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.page-nav-wrap {
  margin-top: 60px;
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 0;
  background: transparent;
  border: 1px solid #D4D4D4;
  color: var(--header);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border-radius: 50%;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers:hover i {
  color: var(--white);
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.array-button {
  display: flex;
  align-items: center;
  gap: 12px;
}
.array-button.style-2 .array-prev, .array-button.style-2 .array-next {
  background-color: var(--header);
  color: var(--white);
}
.array-button.style-2 .array-prev:hover, .array-button.style-2 .array-next:hover {
  background-color: var(--theme2);
  color: var(--header);
}
.array-button .array-prev, .array-button .array-next {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 0;
  transition: all 0.4s ease-in-out;
}
.array-button .array-prev:hover, .array-button .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}
.array-button .array-prev {
  background-color: var(--white);
}
.array-button .array-next {
  background-color: var(--header);
  color: var(--white);
}

.swiper-dot {
  position: relative;
}
.swiper-dot .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  transition: 0.6s;
  background-color: #121212;
  opacity: 1;
  border-radius: 10px;
}
.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 8px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #121212;
  transition: 0.6s;
  position: relative;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 19px;
  height: 19px;
  line-height: 19px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #808080;
  content: "";
}

.choose-us-section {
  background-color: #121212;
}/*# sourceMappingURL=main.css.map */