/* Glance | HTML Template

Template Name: Glance
Version: 1.0.0
License: copyright commercial

/************ TABLE OF CONTENTS ***************
01. Header
02. Section Title
03. Banner
04. About 
05. Products
06. Footer
07. 404
08. Accessories
09. Account
11. Blog
12. Brands
13. Cart
14. Categories
15. Collection
16. Contact
17. FAQs
18. Login
19. Lookbook
20. Main Slider
21. Marquee
22. Pagination
23. Popups
24. Preloader
25. Shop Single
26. Shop
27. Team
28. Terms
29. Testimonials
30. Trending
31. Video
**********************************************/
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("../css/animate.css");
@import url("../css/jquery.fancybox.min.css");
@import url("../css/all.min.css");
@import url("../css/flaticon.css");
:root {
  --theme-color1: #000000;
  --theme-color2: #B88669;
  --text-color: #3E3E3E;
  --headings-color: var(--theme-color1);
  --link-color: var(--theme-color1);
  --link-hover-color: var(--theme-color1);
  --text-font: "Poppins", sans-serif;
  --title-font: "Orbitron", sans-serif;
  --body-font-size: 16px;
  --body-line-height: 30px;
  --body-font-weight: 400;
  --body-font-weight-bold: 700;
  --line-height-heading-h1: 1em;
  --line-height-heading: 1.2em;
  --line-height-heading-small: 1.4em;
  --h1-font-size: 90px;
  --h2-font-size: 46px;
  --h3-font-size: 36px;
  --h4-font-size: 24px;
  --h5-font-size: 22px;
  --h6-font-size: 20px;
  --h1-font-weight: 700;
  --h2-font-weight: 700;
  --h3-font-weight: 700;
  --h4-font-weight: 700;
  --h5-font-weight: 700;
  --h6-font-weight: 700;
  --sec-title-subtitle-color: var(--text-color);
  --sec-title-subtitle-font-size: 18px;
  --sec-title-subtitle-font-family: var(--text-font);
  --sec-title-subtitle-font-weight: 400;
  --sec-title-subtitle-line-height: 1.2em;
  --sec-title-color: var(--headings-color);
  --sec-title-font-size: var(--h2-font-size);
  --sec-title-font-family: var(--title-font);
  --sec-title-font-weight: var(--h2-font-weight);
  --theme-light-background: #f8f6f1;
  --theme-light-background-text-color: var(--headings-color);
  --theme-black: #222429;
  --container-width: 1536px;
  --small-container-width: 1000px;
  --large-container-width: 1550px;
}

/*
 * typography.scss
 * -----------------------------------------------
*/
::-moz-selection {
  background: var(--theme-color1);
  color: #fff;
  text-shadow: none;
}
::selection {
  background: var(--theme-color1);
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: var(--theme-color1); /* Firefox */
  color: #fff;
  text-shadow: none;
}

::-webkit-selection {
  background: var(--theme-color1); /* Safari */
  color: #fff;
  text-shadow: none;
}

:active,
:focus {
  outline: none !important;
}

::-webkit-input-placeholder {
  color: #7c858c;
}

::-moz-input-placeholder {
  color: #7c858c;
}

::-ms-input-placeholder {
  color: #7c858c;
}

body {
  background-color: #fff;
  background-attachment: fixed;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  counter-reset: my-sec-counter;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--text-font);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
  overflow-x: hidden;
}
/* width */
body::-webkit-scrollbar {
  width: 2px;
}
.cart-popup::-webkit-scrollbar, .cart-popup-detail::-webkit-scrollbar{
  width: 0px;
}
/* Track */
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
body::-webkit-scrollbar-thumb {
  background: #B88669; 
  border-radius: 10px;
}

/* Handle on hover */
body::-webkit-scrollbar-thumb:hover {
  background: #B88669; 
}
p, .text {
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--text-font);
  line-height: var(--body-line-height);
}

/* -------- Headings ---------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--headings-color);
  font-family: var(--title-font);
  position: relative;
  line-height: var(--line-height-heading-);
  margin: 0;
}
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small {
  font-weight: normal;
  line-height: 1;
  color: var(--headings-color);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  font-weight: inherit;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--h1-font-weight);
  line-height: var(--line-height-heading-h1);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--h2-font-weight);
  line-height: var(--line-height-heading);
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--h3-font-weight);
  line-height: var(--line-height-heading);
}

h4 {
  font-size: var(--h4-font-size);
  font-weight: var(--h4-font-weight);
  line-height: var(--line-height-heading);
}

h5 {
  font-size: var(--h5-font-size);
  font-weight: var(--h5-font-weight);
  line-height: var(--line-height-heading);
}

h6 {
  font-size: var(--h6-font-size);
  font-weight: var(--h6-font-weight);
  line-height: var(--line-height-heading-small);
}

/* -------- Body Text ---------- */
table p {
  margin-bottom: 0;
}

p a:not(.button):not(.btn):hover, p a:not(.button):not(.btn):focus {
  text-decoration: underline;
}

/* -------- other ---------- */
a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: var(--body-font-weight);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover, a:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
}
a b, a strong {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a img {
  border: none;
}

pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset {
  margin-bottom: 10px;
}

ol, ul {
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

b, strong {
  color: #333;
  font-weight: var(--body-font-weight-bold);
}

iframe {
  border: none !important;
}

body p {
  font-weight: 400;
  margin-bottom: 0;
}

/*
 * container.scss
 * -----------------------------------------------
*/
.container .container {
  width: 100%;
}

.container .container,
.container .container-fluid,
.container-fluid .container,
.container-fluid .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

section > .container,
section > .container-fluid {
  padding-top: var(--container-pt);
  padding-bottom: var(--container-pt);
}

@media (min-width: 1536px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: var(--container-width);
  }
}
/*=== Default Form ===*/
.form-control, .input-text {
  height: calc(2.25rem + 27px);
  padding: 14px 30px;
  outline: 0;
  background-color: #f4f5f8;
  border: 1px solid #f4f5f8;
  color: #686a6f;
  font-size: 0.9rem;
  width: 100%;
}
.form-control::-webkit-input-placeholder, .input-text::-webkit-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::-moz-placeholder, .input-text::-moz-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control:-ms-input-placeholder, .input-text:-ms-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::-ms-input-placeholder, .input-text::-ms-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::placeholder, .input-text::placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control:-ms-input-placeholder, .input-text:-ms-input-placeholder {
  color: #686a6f;
}
.form-control::-ms-input-placeholder, .input-text::-ms-input-placeholder {
  color: #686a6f;
}

textarea.form-control {
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}

/*** 

====================================================================
Reset
====================================================================

***/
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
}

/*** 

====================================================================
Global Settings
====================================================================

***/
textarea {
  overflow: hidden;
  resize: none;
}

button {
  outline: none !important;
  cursor: pointer;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

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

.blockquote-one {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: #242323;
  font-weight: 700;
  -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 20px 40px;
}
.blockquote-one::before {
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  background-color: var(--bg-theme-color2);
  content: "";
  border-radius: 5px;
}

.title a {
  color: inherit;
}

.color1 {
  color: var(--theme-color1);
}

.color2 {
  color: var(--theme-color2);
}

.color3 {
  color: var(--theme-color3);
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow-x: hidden;
  z-index: 99;
  background-color: #ffffff;
}

.large-container {
  position: static;
  max-width: var(--large-container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.auto-container {
  position: static;
  max-width: var(--container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.small-container {
  position: static;
  max-width: var(--small-container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.dropdown-toggle::after {
  display: none;
}

.style-font {
  font-family: var(--style-font);
}

.bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bg-black:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 375px;
  background: #131313;
}

.fixed-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
}

section {
  position: relative;
}

/*=======================
    Preloader
=======================*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
}

.loading-text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  width: 100%;
  height: 100px;
  line-height: 100px;
}

.loading-text span {
  display: inline-block;
  margin: 0 5px;
  color: #fff;
  font-family: "Quattrocento Sans", sans-serif;
}

.loading-text span:nth-child(1) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 1.5s 0s infinite linear alternate;
  animation: blur-text 1.5s 0s infinite linear alternate;
}

.loading-text span:nth-child(2) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 1.5s 0.2s infinite linear alternate;
  animation: blur-text 1.5s 0.2s infinite linear alternate;
}

.loading-text span:nth-child(3) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 1.5s 0.4s infinite linear alternate;
  animation: blur-text 1.5s 0.4s infinite linear alternate;
}

.loading-text span:nth-child(4) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 1.5s 0.6s infinite linear alternate;
  animation: blur-text 1.5s 0.6s infinite linear alternate;
}

.loading-text span:nth-child(5) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 1.5s 0.8s infinite linear alternate;
  animation: blur-text 1.5s 0.8s infinite linear alternate;
}

.loading-text span:nth-child(6) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 1.5s 1s infinite linear alternate;
  animation: blur-text 1.5s 1s infinite linear alternate;
}

.loading-text span:nth-child(7) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-animation: blur-text 1.5s 1.2s infinite linear alternate;
  animation: blur-text 1.5s 1.2s infinite linear alternate;
}

@-webkit-keyframes blur-text {
  0% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  100% {
    -webkit-filter: blur(4px);
            filter: blur(4px);
  }
}
@keyframes blur-text {
  0% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  100% {
    -webkit-filter: blur(4px);
            filter: blur(4px);
  }
}
/*=======================
Scroll To Top style
=======================*/
.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  font-size: 16px;
  line-height: 40px;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  background-color: var(--theme-color2);
  z-index: 100;
  display: none;
  border-radius: 50%;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.scroll-to-top:hover {
  background: var(--theme-color1);
  color: #ffffff;
}

/*=== List Style One ===*/
.list-style-one {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
}
.list-style-one li {
  position: relative;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #8f8f8f;
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.list-style-one li i {
  margin-right: 10px;
  color: var(--theme-color2);
  font-size: 14px;
  line-height: 20px;
}
.list-style-one li a {
  display: inline-block;
  color: #8f8f8f;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.list-style-one li a:hover {
  color: #ffffff;
}

/*=== List Style Two ===*/
.list-style-two {
  position: relative;
}
.list-style-two li {
  position: relative;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: var(--theme-color1);
  padding-left: 35px;
  margin-bottom: 10px;
}
.list-style-two li i {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--theme-color2);
  font-size: 18px;
  line-height: 26px;
}
.list-style-two li a {
  display: inline-block;
  color: var(--theme-color1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.list-style-two li a:hover {
  color: #ffffff;
}

/*=== List Style Three ===*/
.list-style-three {
  position: relative;
}
.list-style-three li {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--theme-color1);
  padding-left: 25px;
  margin-bottom: 10px;
}
.list-style-three li:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "\f058";
  font-weight: 900;
  font-family: "FontAwesome";
  color: var(--theme-color2);
}
.list-style-three li a {
  display: inline-block;
  color: #ffffff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.list-style-three li a:hover {
  color: #ffffff;
}
.list-style-three.two-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list-style-three.two-column li {
  width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding-right: 10px;
}

/*Social Icon One*/
.social-icon-one {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.social-icon-one li {
  position: relative;
  margin-left: 27px;
}
.social-icon-one li:first-child {
  margin-left: 0;
}
.social-icon-one li a {
  position: relative;
  display: block;
  line-height: 40px;
  height: 40px;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.social-icon-one li a:hover {
  color: var(--theme-color2);
}

/*Social Icon Two*/
.social-icon-two {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.social-icon-two li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 10px;
}
.social-icon-two li:first-child {
  margin-left: 0;
}
.social-icon-two li a {
  position: relative;
  display: block;
  line-height: 42px;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  border-radius: 50%;
  background-color: var(--bg-theme-color1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.social-icon-two li a:hover {
  color: #ffffff;
  background-color: var(--bg-theme-color2);
}

/*Social Icon Three*/
.social-icon-three {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.social-icon-three li {
  position: relative;
  margin-left: 20px;
}

.social-icon-three li a {
  position: relative;
  display: block;
  line-height: 40px;
  text-align: center;
  font-size: 15px;
  color: #2f3529;
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.social-icon-three li a:hover {
  color: var(--theme-color2);
}

/*======================
    Tabs Box
======================*/
.tabs-box {
  position: relative;
}

.tabs-box .tab {
  display: none;
}

.tabs-box .active-tab {
  display: block;
}

/*======================
    Media Play Button 
======================*/
.play-now {
  position: relative;
  display: block;
  z-index: 9;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.play-now .icon {
  position: relative;
  display: inline-block;
  height: 100px;
  width: 100px;
  text-align: center;
  line-height: 100px;
  background-color: #ff7607;
  color: #ffffff;
  z-index: 1;
  font-size: 24px;
  display: block;
  border-radius: 50%;
  -webkit-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
          box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.play-now .ripple,
.play-now .ripple:before,
.play-now .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 70px;
  width: 70px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
          box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -webkit-animation: ripple 3s infinite;
          animation: ripple 3s infinite;
}

.play-now .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.play-now .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.play-now-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  font-size: 16px;
  line-height: 23px;
  font-weight: 800;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.play-now-two i {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 64px;
  width: 64px;
  border-radius: 50%;
  font-size: 14px;
  padding-left: 5px;
  overflow: hidden;
  background-color: var(--bg-theme-color2-dark);
  color: #ffffff;
  margin-right: 20px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.play-now-two:hover {
  color: var(--theme-color2);
}
.play-now-two:hover i {
  background-color: var(--bg-theme-color1);
}

/*==========================
	Default Tabs
===========================*/
.default-tabs {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.default-tabs .tab-buttons {
  position: relative;
  margin-bottom: 40px;
}

.default-tabs .tab-buttons li {
  position: relative;
  float: left;
  font-weight: 600;
  font-size: 14px;
  padding: 15px 35px;
  color: var(--theme-color1);
  line-height: 20px;
  border-radius: 5px;
  letter-spacing: 0.05em;
  background-color: #ffffff;
  cursor: pointer;
  margin-right: 20px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.default-tabs .tab-buttons li:last-child {
  margin-right: 0;
}

.default-tabs .tab-buttons li.active-btn {
  background-color: var(--theme-color2);
  color: #ffffff;
}

.default-tabs .tabs-content {
  position: relative;
  width: 100%;
}

/*========================
  Select2 Dropdown Plugin
========================*/
.select2-results__option {
  padding: 0 10px;
  color: #7c858c;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #7c858c;
  padding-left: 0;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--bg-theme-color1);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  height: 30px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  bottom: 1px;
  height: auto;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  color: #7c858c;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:before {
  position: relative;
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default .select2-selection--single {
  border-radius: 0;
}

.default-dots .owl-dots {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.default-dots .owl-dots .owl-dot {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #b1b1b1;
  border: 3px solid transparent;
  margin-left: 5px;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.default-dots .owl-dots .owl-dot:first-child {
  margin-left: 0;
}
.default-dots .owl-dots .owl-dot.active {
  border: 3px solid var(--border-theme-color2);
  background-color: var(--bg-theme-color2);
  -webkit-transform: scale(1);
          transform: scale(1);
}

p {
  color: #777777;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
}

.theme-btn {
  display: inline-block;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  height: 56px;
  line-height: 56px;
  border: 1px solid #B88669;
  border-radius: 30px;
  text-transform: uppercase;
  padding: 0 58px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  font-family: var(--title-font);
}
.theme-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, right top, color-stop(27.92%, #C98663), color-stop(109.42%, #B88689));
  background: linear-gradient(90deg, #C98663 27.92%, #B88689 109.42%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 30px;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.theme-btn:hover {
  color: #fff;
  background: #b88769;
}
.theme-btn:hover:before {
  opacity: 1;
  visibility: visible;
}

.custom-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  cursor: pointer;
}

.full-container {
  max-width: 100%;
}

button {
  cursor: pointer;
}

.container-fluid {
  max-width: 1730px;
  padding: 0 15px;
}

.slick-dots li.slick-active button {
  background: var(--theme-color2);
}

.slick-dots li:first-child {
  margin-left: 0;
}

.slick-dots li:last-child {
  margin-right: 0;
}

.slick-prev,
.slick-next {
  width: 86px;
  height: 42px;
  border: 1px solid #b88769;
  border-radius: 30px;
  z-index: 9;
  top: auto;
  -webkit-transform: inherit;
          transform: inherit;
  cursor: pointer;
  bottom: 40px;
}
.slick-prev:hover,
.slick-next:hover {
  background: #b88769;
}
.slick-prev:hover:before,
.slick-next:hover:before {
  color: #fff;
}
.slick-prev:before,
.slick-next:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.slick-next:before {
  content: "\f30b";
}

.slick-prev:before {
  content: "\f30a";
}

.slick-next {
  right: 40px;
}

.slick-prev {
  right: 136px;
  left: auto;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  background: transparent;
  bottom: 26px;
}

.swiper-horizontal > .swiper-scrollbar.v2, .swiper-scrollbar.v2.swiper-scrollbar-horizontal,
.swiper-horizontal > .swiper-scrollbar.v3, .swiper-scrollbar.v3.swiper-scrollbar-horizontal {
  bottom: 46px;
}

.swiper-horizontal > .swiper-scrollbar.v4, .swiper-scrollbar.v4.swiper-scrollbar-horizontal {
  bottom: 46px;
}

.swiper-scrollbar > span {
  cursor: pointer;
  background: transparent;
  display: inline-block;
  height: 30px;
  text-align: center;
}
.swiper-scrollbar .drag-inner {
  cursor: pointer;
  width: auto !important;
  background: transparent;
  display: inline-block;
  color: #000000;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--title-font);
  text-transform: uppercase;
  border: 1.5px solid #000000;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.28);
  padding: 0 18px;
  height: 30px;
  min-width: 200px;
}

.bb-0 {
  border-bottom: 0;
}

.theme-btn.v2 {
  background: -webkit-gradient(linear, left top, right top, color-stop(27.92%, #C98663), color-stop(109.42%, #B88689));
  background: linear-gradient(90deg, #C98663 27.92%, #B88689 109.42%);
  color: #fff;
}
.theme-btn.v2.full {
  width: 100%;
}

.empty-space {
  background: rgba(247, 231, 222, 0.81);
  height: 105px;
}

.border-bottom {
  border-bottom: 1px solid #C7C7C7;
}

.beforeAfter img {
  -o-object-fit: cover;
     object-fit: cover;
}

.page-overlay {
  position: relative;
}
.page-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: rgba(0, 0, 0, 0.6);
}

a {
  text-decoration: none;
  color: var(--color-link);
  outline: none;
}

a:hover,
a:focus {
  color: var(--color-link-hover);
  outline: none;
}

.slider-dots-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
}

.slider-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 40px;
}

.slider-dots button {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
  border: 0;
  background-color: transparent;
  margin: 0 10px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  position: relative;
  z-index: 0;
}

.slider-dots-box .slick-active button {
  width: 40px;
  height: 40px;
}

.slider-dots button:after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fff;
}

.slider-dots-box .slick-active button:after {
  content: none;
  display: none;
}

.slider-dots-box .slick-active button:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: 50%;
}

.circle-bg {
  fill: rgba(255, 255, 255, 0);
  stroke: rgba(0, 0, 0, 0.05);
  stroke-width: 2;
  stroke-linecap: butt;
}

.circle-go {
  fill: rgba(255, 255, 255, 0);
  stroke: var(--theme-color2);
  stroke-width: 2;
  stroke-linecap: round;
  -webkit-animation: progress 22s;
          animation: progress 22s;
  stroke-dasharray: 360px;
  stroke-dashoffset: 360;
}

.circle-tx {
  fill: #fff;
  stroke-width: 1;
  font: bold 16px "Arial";
  text-anchor: middle;
}

@-webkit-keyframes progress {
  from {
    stroke-dashoffset: 360;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes progress {
  from {
    stroke-dashoffset: 360;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@font-face {
  font-family: "flaticon_mycollection";
  src: url("./flaticon_mycollection.ttf?9aa1bc077fea09b2077a361d4d3c0aa9") format("truetype"), url("../webfonts/flaticon_mycollection.woff?9aa1bc077fea09b2077a361d4d3c0aa9") format("woff"), url("../webfonts/flaticon_mycollection.woff2?9aa1bc077fea09b2077a361d4d3c0aa9") format("woff2"), url("../webfonts/flaticon_mycollection.eot?9aa1bc077fea09b2077a361d4d3c0aa9#iefix") format("embedded-opentype"), url("../webfonts/flaticon_mycollection.svg?9aa1bc077fea09b2077a361d4d3c0aa9#flaticon_mycollection") format("svg");
}
i[class^=flaticon-]:before, i[class*=" flaticon-"]:before {
  font-family: flaticon_mycollection !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.flaticon-search-interface-symbol:before {
  content: "\f101";
}

.flaticon-share:before {
  content: "\f102";
}

.flaticon-shopping-cart:before {
  content: "\f103";
}

.overlay {
  position: relative;
}
body.overlay {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
body.overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
  z-index: 999;
}
.overlay.overlay-remove:before {
  opacity: 0;
  visibility: hidden;
}

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

.map-section-full iframe {
  width: 100%;
}

body.active header .menu {
  z-index: 9999;
}
/* ul.sub-menu-mobile {
  height: 100px;
  overflow-y: scroll;
  overflow-x: hidden;
} */
/*==============================================
01. HEADER
==============================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.6);
  /* height: 78px;
  line-height: 78px; */
  transition: 0.5s;
}

header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #000;
  transition: 0.5s;
}
header .container {
  max-width: 1750px;
  padding: 0 15px;
}
header .header-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  justify-content: space-between; 
}
body.home1 header .header-content {
  padding: 15px 0;
  transition: 0.5s;
}
header .header-content {
  padding: 15px 0;
  transition: 0.5s;
}
header.sticky_header  .header-content {
  padding: 8px 0;
  transition: 0.5s;
}
body.home1 header.sticky_header  .header-content {
  padding: 8px 0;
  transition: 0.5s;
} 
header .menu-other-links {
  margin-left:0;
}
header .menu-other-links li {
 
  position: relative;
  margin-right: 20px;
}
header .menu-other-links li:last-child {
  margin-right: 0;
}
header .menu-other-links li a {
  color: #fff;
  font-size: 16px;
}
header .menu-other-links li .cart-btn {
  position: relative;
}
header .menu-other-links li .cart-btn .cart-number {
  display: inline-block;
  position: absolute;
  top: -10px;
  right: -12px;
  width: 22px;
  height: 22px;
  background: #B88669;
  border-radius: 50%;
  line-height: 22px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
header .menu {
  margin-left: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .menu-btn {
  margin-left: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
header .menu-btn > span {
  display: block;
  width: 22px;
  height: 2px;
  margin-bottom: 6px;
  background-color: #fff;
  border-radius: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .menu-btn > span:last-child {
  margin-bottom: 0;
}
header .menu-btn.active span.bar1 {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}
header .menu-btn.active span.bar2 {
  opacity: 0;
  visibility: hidden;
}
header .menu-btn.active span.bar3 {
  -webkit-transform: translateY(-8px) rotate(-135deg);
  transform: translateY(-8px) rotate(-135deg);
}

section {
  position: relative;
}

.banner-social {
  position: absolute;
  bottom: 5px;
  right: 100px;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 15px 15px 22px;
  height: 78px;
  line-height: 0;
  border-radius: 70px;
  min-width: 280px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(30%);
          transform: translateX(30%);
}
.banner-social:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.47);
  border-radius: 70px;
  border: 1px solid #FFFFFF;
  opacity: 0.2;
}
.banner-social.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.banner-social h3 {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 29px;
}
.banner-social .social-links {
  position: relative;
  z-index: 99;
}
.banner-social .social-links li {
  display: inline-block;
  margin-right: 11px;
}
.banner-social .social-links li:last-child {
  margin-right: 0;
}
.banner-social .social-links li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.47);
  text-align: center;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  border-radius: 50%;
}
.banner-social .social-links li a:hover {
  background-color: #B88669;
}

.next-page-slides {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 99;
}
.next-page-slides ul li {
  display: inline-block;
  margin-right: 20px;
}
.next-page-slides ul li:last-child {
  margin-right: 0;
}
.next-page-slides ul li a {
  display: inline-block;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.next-page-slides ul li a:hover {
  color: #B88669;
}

.overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-image: url(../images/background/overlay-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.overlay-menu:before, .overlay-menu:after {
  content: "";
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(175, 127, 100, 0.7);
  border-bottom-left-radius: 200%;
  z-index: -1;
  -webkit-transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
  transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
  -webkit-transition: border-radius linear 0.8s, -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
  transition: border-radius linear 0.8s, -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s, -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
  -webkit-transform: translateX(100%) translateY(-100%);
  transform: translateX(100%) translateY(-100%);
}
.overlay-menu:before {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.overlay-menu:after {
  background: rgba(0, 0, 0, 0.7);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.overlay-menu .marquee3 {
  position: absolute;
  bottom: -30px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.overlay-menu .marquee3 ul li {
  margin-right: 50px;
  display: inline-block;
  color: #B88669;
  font-size: 150px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.1;
  font-family: var(--title-font);
}

.menu-links {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translate(-50%, 60px);
  width: 937px;
  z-index: 9999;
}
.menu-links > li {
  margin-bottom: 15px;
  display: block;
  position: relative;
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
  opacity: 0;
  -webkit-transform: translate(100px, 0%);
  transform: translate(100px, 0%);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.2s ease, transform 0.3s ease;
  transition: opacity 0.2s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.menu-links > li.menu-item-has-children.active > a {
  background: rgba(255, 255, 255, 0.3);
}
.menu-links > li.menu-item-has-children.active > a:after {
  content: "-";
}
.menu-links > li.menu-item-has-children > a:before {
  opacity: 1;
  visibility: visible;
}
.menu-links > li.menu-item-has-children > a:after {
  opacity: 1;
  visibility: visible;
}
.menu-links > li:last-child {
  margin-bottom: 0;
}
/* .menu-links > li a {
  height: 80px;
  border-radius: 70px;
  display: block;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
  padding: 25px 50px 0;
  font-family: var(--title-font);
} */
.menu-links > li a {
  height: 80px;
  border-radius: 70px;
  display: block;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
  padding: 25px 50px 0;
  font-family: var(--title-font);
}
.menu-links > li a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.menu-links > li a:after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 30px;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.menu-links > li a:hover {
  background: rgba(255, 255, 255, 0.3);
}
.menu-links ul {
  padding: 20px 0 0;
  display: none;
}

.menu-links ul li {
  margin-bottom: 10px;
}
.menu-links ul li:last-child {
  margin-bottom: 0;
}
.menu-links ul li a {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  padding: 0 50px;
  height: auto;
  height: auto;
  border: 0;
  background: transparent;
}
.menu-links ul li a:hover {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
  background: transparent;
}
.menu-links ul li a:before {
  display: none;
}
.menu-links ul li a:after {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 22px;
}

body.active {
  overflow: hidden;
}
body.active header {
  z-index: 9999;
  background: transparent;
  top: 20px;
}
body.active header .logo {
  opacity: 0;
}
body.active header .menu-other-links {
  display: none;
}
body.active header .menu {
  margin-left: 0;
}
body.active header .menu-btn {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  line-height: 78px;
  padding-top: 28px;
  padding-left: 28px;
  margin-left: 20px;
}
body.active header .header-social {
  display: inline-block;
  position: relative;
  top: 3px;
}
body.active .overlay-menu:before,
body.active .overlay-menu:after {
  -webkit-transform: translateX(0%) translateY(0%);
  transform: translateX(0%) translateY(0%);
  border-radius: 0;
}
body.active .overlay-menu:before {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
body.active .overlay-menu:after {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
body.active .overlay-menu {
  z-index: 999;
  opacity: 1;
  visibility: visible;
}
body.active .menu-links > li {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: opacity 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
}
body.active .menu-links > li:nth-child(1) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
body.active .menu-links > li:nth-child(2) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
body.active .menu-links > li:nth-child(3) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
body.active .menu-links > li:nth-child(4) {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
body.active .menu-links > li:nth-child(5) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
body.active .menu-links > li:nth-child(6) {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
body.active .menu-links > li:nth-child(7) {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
body.active .menu-links > li:nth-child(8) {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
body.active .menu-links > li:nth-child(9) {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
body.active .overlay-menu .marquee3 {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.header-social {
  display: none;
  margin-left: auto;
  position: relative;
}
.header-social .share-btn {
  display: inline-block;
  color: #fff;
  font-size: 22px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  line-height: 84px;
  text-align: center;
}
.header-social:hover .banner-social {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*==============================================
02. SECTION TITLE 
==============================================*/
.sec-title {
  text-align: center;
  max-width: 525px;
  margin: -16px auto 89px;
}
.sec-title.space-v2 {
  margin-bottom: 63px;
}
.sec-title.v2 {
  margin-bottom: 55px;
}
.sec-title.text-left {
  text-align: left;
  margin: 0 0 89px;
}
.sec-title h2 {
  color: #000000;
  font-size: 30px;
  line-height: 55px;
  font-weight: 700;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.sec-title p {
  color: #3E3E3E;
  font-size: 14px;
  line-height: 25px;
}

/*==============================================
03. BANNER
==============================================*/
.glance-banner .video-intro #video1 {
  width: 100%;
}
.glance-banner .video-intro {
  margin: 0;
}
.glance-banner .video-intro video {
  width: 100%;
}
.glance-banner .video-intro video source {
  width: 100%;
}

.page-banner {
  background-image: url(../images/contact/page-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
  height: 310px;
  background-position: center;
  position: relative;
}
.page-banner::after{
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.521);

}
.full-screen-preview.product .page-banner {
  padding: 100px 0;
  height: 480px;
}
.full-screen-preview.product .page-banner .page-banner-content {
  padding-top: 100px;
}
.page-banner .page-banner-content {
  padding-top: 100px;
}
.page-banner .page-banner-content .page-title {
  font-size: 80px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  color: transparent;
}
.page-banner .page-banner-content p {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 25px;
}

.full-banner > img {
  width: 100%;
}

.sml-banner {
  position: relative;
  overflow: hidden;
}
.sml-banner > img {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sml-banner:hover > img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.sml-banner .banner-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
.sml-banner .banner-caption h3 {
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sml-banner .banner-caption p {
  font-size: 15px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 26px;
  font-weight: 400;
}
.sml-banner .banner-caption .theme-btn {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--title-font);
  background-color: rgba(0, 0, 0, 0.14);
}

/*==============================================
04. ABOUT
==============================================*/
.about-section {
  padding: 120px 0;
}

.about-text {
  padding-right: 70px;
}
.about-text .title {
  font-size: 38px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 28px;
}
.about-text .title span {
  color: var(--theme-color2);
}
.about-text p {
  color: #3E3E3E;
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 44px;
}

.about-images .row {
  margin: 0 -5px;
}
.about-images .col-lg-4 {
  padding: 0 5px;
}
.about-images .abt-img {
  position: relative;
}
.about-images .abt-img img {
  width: 100%;
}

.about-section-v2 {
  padding: 129px 0 120px;
}
.about-section-v2 .container {
  max-width: 1550px;
}

.about-content-v2 {
  text-align: center;
}
.about-content-v2 > h2 {
  color: #000;
  font-size: 60px;
  line-height: 90px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 57px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about-content-v2 > h2 img {
  margin: 0 15px;
}
.about-content-v2 p {
  color: #3E3E3E;
  font-size: 14px;
  line-height: 25px;
  max-width: 623px;
  margin: 0 auto 44px;
}

.about-section-v3 {
  padding-bottom: 82px;
}
.about-section-v3 .container-fluid {
  max-width: 100%;
  padding: 0;
}
.about-section-v3 .images-slider-v3 .image-slide-v3 {
  margin: 0 10px;
}
.about-section-v3 .about-content-v3 {
  max-width: 830px;
  margin: 72px auto 0;
  text-align: center;
}
.about-section-v3 .about-content-v3 p {
  color: #3E3E3E;
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 42px;
}

.page-content {
  padding: 80px 0 80px;
}
.page-content .container-fluid {
  padding: 0 108px;
  max-width: 100%;
}
.page-content .about-top {
  margin-bottom: 105px;
}
.page-content .text-column h2 {
  color: #000000;
  font-size: 80px;
  line-height: 90px;
  font-weight: 700;
  text-transform: uppercase;
}
.page-content .text-column h2 span {
  display: inline-block;
  color: #B88669;
}
.page-content .text-para p {
  padding-left: 134px;
  color: #3E3E3E;
  font-size: 14px;
  line-height: 25px;
  padding-right: 80px;
}
.page-content .images-row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 103px;
}
.page-content .images-row .row {
  margin: 0 -5px;
}
.page-content .images-row .row .col-lg-4 {
  padding: 0 5px;
}
.page-content .images-row .image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-content .title-column .inner-column {
  padding-left: 38px;
}
.page-content .title-column h2 {
  color: #000000;
  font-size: 38px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 46px;
}
.page-content .title-column h2 span {
  display: inline-block;
  color: #B88669;
}
.page-content .title-column p {
  color: #3E3E3E;
  font-size: 20px;
  line-height: 38px;
  font-weight: 500;
  font-style: italic;
  position: relative;
  padding-left: 20px;
  padding-top: 16px;
}
.page-content .title-column p:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 112px;
  height: 86px;
  background-image: url(../images/quote.png);
  background-repeat: no-repeat;
}
.page-content .about-bottom {
  padding: 109px 55px 0 55px;
}
.page-content .about-bottom h2 {
  color: #000;
  font-size: 38px;
  line-height: 50px;
  text-transform: uppercase;
  margin-bottom: 39px;
  max-width: 931px;
}
.page-content .about-bottom p {
  color: #3E3E3E;
  font-size: 14px;
  line-height: 25px;
  padding-right: 45px;
}

/*==============================================
05. PRODUCTS
==============================================*/
.collection-section {
  padding: 110px 0 70px;
  border-bottom: 1px solid #C7C7C7;
}
.collection-section .container-fluid {
  padding: 0;
  max-width: 100%;
}
.collection-section .sec-title {
  margin-bottom: 66px;
}

.product-categories.v2 {
  border-left: 1px solid #eaeaea;
}
.product-categories.v2 .product-img {
  margin-bottom: 12px;
  position: relative;
}
.product-categories.v2 .product-img .pro-category {
  display: inline-block;
  color: #000000;
  font-size: 9px;
  font-weight: 600;
  background: #fff;
  border: 1px solid #B88669;
  min-width: 50px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  position: absolute;
  top: 20px;
  left: 20px;
  text-transform: uppercase;
  font-family: var(--title-font);
}
.product-categories.v2 .product-img > img {
  width: 100%;
  margin-bottom: 0;
}
.product-categories.v2 .product-cat {
  padding: 40px 40px 30px 40px;
  position: relative;
  border: 0;
  border: 1px solid #eaeaea;
}
.product-categories.v2 .product-cat:before {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.product-categories.v2 .product-cat:hover .product-cat:before {
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.product-categories.v2 .product-cat:hover .product-hover-info {
  opacity: 1;
  visibility: visible;
  height: 100%;
  display: flex;
}
.custom-tab-content .product-categories.v2 .product-cat:hover .product-hover-info {
  display: flex;
  align-items: center;
}
.product-categories.v2 .product-cat .product-hover-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid rgba(184, 134, 105, 0.23);
  -webkit-box-shadow: 0px 10px 90px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 90px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;

}
.shop-page .product-categories.v2 .product-cat .product-hover-info {
  flex-direction: column;

}
.product-categories.v2 .product-cat .product-hover-info .product-hover-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-categories.v2 .product-cat .product-hover-info .product-hover-head .pt-links li {
  display: inline-block;
  color: #000000;
  font-size: 9px;
  font-weight: 600;
  background: #fff;
  border: 1px solid #B88669;
  min-width: 50px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  text-transform: uppercase;
  font-family: var(--title-font);
  margin-right: 10px;
  padding: 0px 5px;
}
.product-categories.v2 .product-cat .product-hover-info .product-hover-head .pt-links li:last-child {
  margin-right: 0;
}
.product-categories.v2 .product-cat .product-hover-info .product-hover-head .fvrt-product {
  margin-left: auto;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: #b88568;
}
.product-categories.v2 .product-cat .product-hover-info .product-info-hover > h3 {
  color: #000000;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  font-family: var(--text-font);
  margin-bottom: 4px;
}
.product-categories.v2 .product-cat .product-hover-info .product-info-hover > span {
  display: block;
  color: #3E3E3E;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 5px;
  margin-top: 5px;
}
.product-categories.v2 .product-cat .product-hover-info .product-info-hover .pricee {
  margin-bottom: -2px;
}
.product-categories.v2 .product-cat .product-hover-info .product-info-hover .pricee > span {
  display: block;
  color: #CE6934;
  font-size: 17px;
  font-weight: 500;
}
.product-categories.v2 .product-cat .product-hover-info .product-info-hover .pro-colors {
  margin-bottom: -4px;
}
.product-categories.v2 .product-cat .product-hover-info .product-info-hover .pro-colors li {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.product-categories.v2 .product-cat .product-hover-info .product-info-hover .pro-colors li.active {
  width: 16px;
  height: 16px;
}
.product-categories.v2 .product-cat .product-hover-info .product-info-hover .pro-colors li.clr1 {
  background: #FBC814;
}
.product-categories.v2 .product-cat .product-hover-info .product-info-hover .pro-colors li.clr2 {
  background: #6F31F4;
}
.product-categories.v2 .product-cat .product-hover-info .product-info-hover .pro-colors li.clr3 {
  background: #F43131;
}
.product-categories.v2 .product-cat .product-hover-info .product-info-hover .pro-colors li.clr4 {
  background: #F48331;
}
.product-categories.v2 .product-cat .product-hover-info .product-info-hover .variations {
  margin-bottom: 39px;
}
.product-categories.v2 .product-cat .product-hover-info .product-info-hover .variations li {
  display: inline-block;
  color: #3E3E3E;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  margin-right: 4px;
  cursor: pointer;
}
.product-categories.v2 .product-cat .product-hover-info .product-info-hover .variations li:last-child {
  margin-right: 0;
}
.product-categories.v2 .product-cat .product-hover-info .product-info-hover .variations li.active {
  color: #B88669;
}
.product-categories.v2 .product-cat .product-hover-info .product-info-hover .pro-buttons li {
  margin-bottom: 14px;
}
.product-categories.v2 .product-cat .product-hover-info .product-info-hover .pro-buttons li:last-child {
  margin-bottom: 0;
}
.product-categories.v2 .product-cat .product-hover-info .product-info-hover .pro-buttons li .theme-btn {
  width: 100%;
  height: 52px;
  line-height: 52px;
  font-family: var(--title-font);
}
.product-categories.v2 .product-cat > img {
  margin-bottom: 12px;
}
.product-categories.v2 .product-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
}
.product-categories.v2 .product-info h3 {
  color: #222222;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--text-font);
  text-transform: capitalize;
  overflow: hidden;
  margin-bottom: 4px;
}
.product-categories.v2 .product-info .product-price {
  display: inline-block;
  margin-left:0;
  color: #B88669;
  font-size: 15px;
  font-weight: 500;
}

.featured-products-section {
  padding: 0 0 100px;
}
.featured-products-section .container-fluid {
  max-width: 1776px;
}

.featured {
  position: relative;
}
.featured > img {
  width: 100%;
}

.featured-hover {
  position: absolute;
  top: 210px;
  right: 210px;
}
.featured-hover.v2 {
  top: auto;
  bottom: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.featured-hover.v3 {
  top: 180px;
  left: 150px;
}
.featured-hover:hover .hvr-content {
  opacity: 1;
  visibility: visible;
  bottom: calc(100% + 20px);
}
.featured-hover:hover .hvr:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: -1px;
  left: 4px;
  color: #fff;
}
.featured-hover:hover .hvr:before {
  background: #CE6933;
  border: 5px solid rgba(255, 255, 255, 0.5);
}

.hvr {
  display: inline-block;
  width: 23px;
  height: 23px;
  line-height: 24px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  position: relative;
  cursor: pointer;
}
.hvr:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 33px;
  height: 33px;
  background: #fff;
  opacity: 0.5;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hvr:after {
  content: "+";
  color: #000;
  font-size: 22px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-top: 1px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hvr-content {
  position: absolute;
  bottom: calc(100% + 40px);
  left: -20px;
  background: rgba(255, 255, 255, 0.7);
  padding: 20px 0;
  text-align: center;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hvr-content:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 28px;
  border-bottom: 10px solid rgba(255, 255, 255, 0.5);
  border-right: 10px solid transparent;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.hvr-content > h3 {
  color: #000000;
  font-size: 17px;
  font-weight: 400;
  font-family: var(--text-font);
  text-transform: capitalize;
}
.hvr-content .price {
  display: block;
  color: #CE6934;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: -7px;
}
.hvr-content .varies li {
  display: inline-block;
  color: #3E3E3E;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  margin-right: 5px;
}
.hvr-content .varies li:last-child {
  margin-right: 0;
}
.hvr-content .quick-add {
  display: inline-block;
  font-family: var(--title-font);
  color: #000;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  min-width: 115px;
  text-align: center;
  border-radius: 30px;
  height: 26px;
  line-height: 24px;
  border: 1px solid #B88669;
}
.hvr-content .quick-add:hover {
  border-color: transparent;
  background: #B88669;
  color: #fff;
}

.product-view-section .product-view-banner {
  background-image: url(../images/background/product-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}
.product-view-section .product-view-banner > h2 {
  color: #B88669;
  font-size: 240px;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.1;
  margin-bottom: 25px;
  position: absolute;
  top: 100px;
  left: 100px;
}
.product-view-section .product-view-banner > h2.v2 {
  top: auto;
  left: 50%;
  bottom: 100px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.product-view-section .container-fluid {
  padding: 0 50px;
  max-width: 100%;
}
.product-view-section .product-view-slider .prod-card-info {
  position: absolute;
  top: 70px;
  left: 50%;
  background-color: #fff;
  padding: 30px 25px;
  max-width: 556px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 10px;
}
.product-view-section .product-view-slider .prod-card-info .prod-card-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 35px;
}
.product-view-section .product-view-slider .prod-card-info .prod-card-details h3 {
  color: #000000;
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  font-family: var(--text-font);
  margin-bottom: 15px;
}
.product-view-section .product-view-slider .prod-card-info .prod-card-details p {
  color: #2E2E2E;
  font-size: 15px;
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 27px;
}
.product-view-section .product-view-slider .prod-card-info .prod-card-details p:last-child {
  margin-bottom: 0;
}
.product-view-section .product-view-slider .slick-prev,
.product-view-section .product-view-slider .slick-next {
  right: auto;
  left: 25%;
  bottom: 86px;
}
.product-view-section .product-view-slider .slick-next {
  margin-left: 100px;
}
.product-view-section .product-view-slider .product-view-slide {
  position: relative;
  height: 674px;
  margin-bottom: 170px;
}
.product-view-section .product-view-slider .product-view-slide.slick-active .product-card {
  opacity: 1;
  visibility: visible;
  display: block;
  -webkit-transform: translateY(0) translateX(0);
          transform: translateY(0) translateX(0);
}
.product-view-section .product-view-slider .product-view-slide.slick-active .product-card span,
.product-view-section .product-view-slider .product-view-slide.slick-active .product-card h3,
.product-view-section .product-view-slider .product-view-slide.slick-active .product-card p,
.product-view-section .product-view-slider .product-view-slide.slick-active .product-card .price,
.product-view-section .product-view-slider .product-view-slide.slick-active .product-card .cart-items-add {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.product-view-section .product-view-slider .product-view-slide .product-view-image img {
  width: 100%;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-transform: scale(1.25, 1.25);
          transform: scale(1.25, 1.25);
  opacity: 0;
}
.product-view-section .product-view-slider .product-view-slide.slick-active .product-view-image img {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  opacity: 1;
}
.product-view-section .product-view-slider .product-view-slide .product-card {
  opacity: 1;
  visibility: visible;
  top: 70px;
  left: 20%;
  display: none;
}
.product-view-section .product-view-slider .product-view-slide .product-view-image {
  position: absolute;
  top: 0;
  right: 0;
}

.prod-section {
  padding: 110px 0 0;
}

.prod-section .container-fluid .row {
  margin: 0 -11px;
}
.prod-section .container-fluid .row .col-lg-4 {
  padding: 0 11px;
}
.prod-section .prod-col {
  position: relative;
  overflow: hidden;
}
.prod-section .prod-col:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9;
}
.prod-section .prod-col > img {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.prod-section .prod-col:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.prod-section .prod-col .prod-caption {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 0 15px;
  z-index: 9;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.prod-section .prod-col .prod-caption > h3 {
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.prod-section .prod-col .prod-caption p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 26px;
}
.prod-section .prod-col .prod-caption .theme-btn {
  color: #fff;
}

.border-top-0 {
  border-top: 0;
}

.cart-section.v3 {
  padding: 98px 0 82px;
}
.cart-section.v3 .cart-product {
  background: transparent;
}
.cart-section.v3 .cart-product .cart-product-large-image > img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
.cart-section.v3 .cart-product .cart-product-large-slider {
  max-width: 800px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 800px;
          flex: 0 0 800px;
  top: 0;
}
.cart-section.v3 .cart-product-content {
  max-width: calc(100% - 800px);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 800px);
          flex: 0 0 calc(100% - 800px);
  padding-right: 70px;
}
.cart-section.v3 .cart-product-content .cart-product-info {
  margin-left: 100px;
}
.cart-section.v3 .circle {
  width: 300px;
  height: 300px;
}
.cart-section.v3 .cart-product-thumb-slider {
  width: 500px;
  margin-left: 100px;
  margin-right: 48px;
}
.cart-section.v3 .cart-product-thumb-slider .cart-product-thumb {
  height: 152px;
}

.products-slider-section.v3 {
  padding: 200px 0 120px;
}
.products-slider-section.v3 .product-slider {
  background-image: url(https://placehold.co/1872x718);
  background-repeat: no-repeat;
  background-size: cover;
  height: 700px;
  border: 0;
}
.products-slider-section.v3 .product-slider .slick-next,
.products-slider-section.v3 .product-slider .slick-prev {
  bottom: -100px;
}
.products-slider-section.v3 .product-slider .product-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 999;
  border: 0;
}
.products-slider-section.v3 .product-slider .product-slide .product-card {
  position: relative;
  -webkit-transform: unset;
          transform: unset;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  top: 0;
}
.products-slider-section.v3 .product-slider .product-slide:nth-child(2) .product-card {
  right: unset;
  left: 100px;
}

.product-slider .product-slide {
  position: relative;
  border: 1px solid rgba(199, 199, 199, 0.32);
}
.product-slider .product-slide.slick-active .product-card {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0) translateX(0);
          transform: translateY(0) translateX(0);
}
.product-slider .product-slide.slick-active .product-card span,
.product-slider .product-slide.slick-active .product-card h3,
.product-slider .product-slide.slick-active .product-card p,
.product-slider .product-slide.slick-active .product-card .price,
.product-slider .product-slide.slick-active .product-card .cart-items-add {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.product-slider .product-slide > img {
  width: 100%;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-transform: scale(1.25, 1.25);
          transform: scale(1.25, 1.25);
}
.product-slider .product-slide.slick-active img {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.product-card {
  position: absolute;
  top: 100px;
  left: 100px;
  width: 533px;
  background-color: #fff;
  -webkit-box-shadow: 0px 11px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 11px 50px rgba(0, 0, 0, 0.1);
  padding: 59px 70px 68px;
  z-index: 99;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100px) translateX(-50px);
          transform: translateY(100px) translateX(-50px);
}
.product-card:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 32px;
  width: calc(100% - 64px);
  height: 100%;
  background: #fff;
  opacity: 0.6;
  z-index: -9;
}
.product-card:after {
  content: "";
  position: absolute;
  top: 40px;
  left: 64px;
  width: calc(100% - 128px);
  height: 100%;
  background: #fff;
  opacity: 0.6;
  z-index: -8;
}
.product-card > span {
  display: block;
  color: #B88669;
  letter-spacing: 0.12em;
  font-size: 15px;
  text-transform: uppercase;
  font-family: var(--title-font);
  margin-bottom: -6px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.product-card > h3 {
  color: #000000;
  font-size: 30px;
  line-height: 45px;
  font-weight: 600;
  margin-bottom: 6px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.product-card p {
  color: #2E2E2E;
  font-size: 15px;
  line-height: 28px;
  font-weight: 300;
  margin-bottom: 22px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.product-card .price {
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.product-card .cart-items-add {
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

.price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 44px;
}
.price > span {
  display: inline-block;
  color: #B88669;
  font-size: 28px;
  font-weight: 500;
}
.price del {
  display: inline-block;
  color: #C7C7C7;
  font-size: 28px;
  font-weight: 500;
  margin-left: 29px;
}

.cart-items-add {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cart-items-add .theme-btn {
  line-height: 46px;
  height: 46px;
  margin-left: 40px;
}
.cart-items-add .theme-btn:hover {
  background: #b88769;
  color: #fff;
}
.cart-items-add .quantity {
  width: 128px;
  height: 41px;
  border: 1px solid #b88769;
  position: relative;
  padding: 3px;
}
.cart-items-add .quantity input {
  width: 100%;
  text-align: center;
  color: #0A0A0A;
  font-size: 18px;
  font-weight: 500;
  padding-top: 2px;
}
.cart-items-add .quantity button {
  position: absolute;
  width: 39px;
  height: 33px;
  background-color: #e2e2e2;
  text-align: center;
  line-height: 33px;
  color: #000000;
  top: 3px;
  z-index: 99;
}
.cart-items-add .quantity button.plus-btn {
  left: 3px;
}
.cart-items-add .quantity button.minus-btn {
  right: 3px;
}

/*==============================================
06. FOOTER
==============================================*/
footer .container-fluid {
  max-width: 1620px;
}

.main-footer {
  padding: 100px 0 100px;
  position: relative;
}
.main-footer .section-bg-title {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  text-align: center;
  color: rgba(0, 0, 0, 0.02);
  font-size: 13vw;
  font-weight: 600;
  text-transform: uppercase;
  z-index: -1;
}
.main-footer .footer-widgets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.main-footer .footer-widgets .widget {
  max-width: 24%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24%;
          flex: 0 0 24%;
}
.main-footer .footer-widgets .widget-title {
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
  padding-right: 10px;
}
.main-footer .footer-widgets .wd-links li {
  margin-bottom: 15px;
}
.main-footer .footer-widgets .wd-links li:last-child {
  margin-bottom: 0;
}
.main-footer .footer-widgets .wd-links li a {
  display: inline-block;
  color: #262626;
  font-size: 15px;
}
.main-footer .footer-widgets .wd-links li a:hover {
  color: #B88669;
  padding-left: 5px;
}
.main-footer .footer-widgets .widget-newsletter {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24%;
          flex: 0 0 24%;
  max-width: 24%;
  margin-left: auto;
}
.main-footer .footer-widgets .widget-newsletter p {
  color: #262626;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 3px;
}
.main-footer .footer-widgets .widget-newsletter form {
  position: relative;
}
.main-footer .footer-widgets .widget-newsletter form input {
  width: 100%;
  background: transparent;
  color: #666666;
  font-size: 12px;
  font-weight: 500;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: 29px;
  padding: 10px 25px 8px;
}
.main-footer .footer-widgets .widget-newsletter form button.theme-btn {
  width: 100%;
  font-family: var(--title-font);
  background: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.main-footer .footer-widgets .widget-newsletter form button.theme-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(27.92%, #C98663), color-stop(109.42%, #B88689));
  background: linear-gradient(90deg, #C98663 27.92%, #B88689 109.42%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 30px;
  z-index: -1;
}
.main-footer .footer-widgets .widget-newsletter form button.theme-btn:hover:before {
  opacity: 1;
  visibility: visible;
}

.bottom-footer {
  background: #F9F9F9;
  padding: 23px 0 19px;
}
.bottom-footer .copyright {
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bottom-footer .copyright p {
  color: #767676;
  font-size: 12px;
  text-transform: uppercase;
}
.bottom-footer .copyright p a{
  text-decoration: underline;
}
/*==============================================
01. 404
==============================================*/
.error-page {
  background-image: url(https://placehold.co/1920x1080);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
}
.error-page .error-page-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1123px;
  height: 538px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url(https://placehold.co/1122x537);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -100px;
}
.error-page .error-page-content h2 {
  font-size: 150px;
  line-height: 150px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  color: transparent;
}
.error-page .error-page-title {
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-weight: 600;
  font-size: 150px;
  line-height: 188px;
  text-transform: uppercase;
  color: #FAFAFA;
  opacity: 0.1;
}
.error-page .marquee {
  position: absolute;
  bottom: 140px;
  left: 0;
  width: 100%;
}
.error-page .marquee h2 {
  font-weight: 600;
  font-size: 100px;
  line-height: 125px;
  text-transform: uppercase;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #B88669;
  color: transparent;
}

/*==============================================
08. ACCESSORIES
==============================================*/
.accessories-section.prod-section {
  margin-bottom: -80px;
}
.accessories-section.prod-section .prod-col .prod-caption {
  padding: 0 30px;
}
.accessories-section.prod-section .arriavls-items-column {
  padding-left: 10px;
}
.accessories-section.prod-section .arriavls-items-column .sec-title {
  margin-bottom: 46px;
}
.accessories-section.prod-section .arriavls-items-column .sec-title h2 {
  margin-bottom: 0;
  position: relative;
  top: 7px;
}
.accessories-section.prod-section .acc-slider .slick-prev,
.accessories-section.prod-section .acc-slider .slick-next {
  top: -84px;
  bottom: auto;
  -webkit-transform: unset;
          transform: unset;
}
.accessories-section.prod-section .slick-prev, .accessories-section.prod-section .slick-next {
  width: 50px;
  height: 50px;
  border: 1px solid #b88769;
  border-radius: 30px;
  z-index: 9;
  transform: inherit;
  cursor: pointer;
}
.accessories-section.prod-section .acc-slider .slick-prev {
  left: 0;
  right: auto;
}
.accessories-section.prod-section .acc-slider .slick-next {
  right: 0;
}
.accessories-section.prod-section .acc-slider .slick-slide {
  margin: 0 25px;
}
.accessories-section.prod-section .acc-slider .slick-list {
  margin: 0 -25px;
}
.accessories-section.prod-section .acc-slider .acc-slide {
  padding: 35px 35px 27px 35px;
  border: 1px solid #C7C7C7;
}
.accessories-section.prod-section .acc-slider .acc-slide .acc-img {
  margin-bottom: 7px;
}
.accessories-section.prod-section .acc-slider .acc-slide .acc-img img {
  width: 100%;
}
.accessories-section.prod-section .acc-slider .acc-slide .acc-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
}
.accessories-section.prod-section .acc-slider .acc-slide .acc-info > h4 {
  font-family: var(--text-font);
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  color: #222;
}
.accessories-section.prod-section .acc-slider .acc-slide .acc-info .acc-price {
  display: inline-block;
  margin-left: auto;
  color: #B88669;
  font-size: 15px;
  font-weight: 500;
}

/*==============================================
09. ACCOUNT
==============================================*/
.account-section {
  padding: 110px 0 30px;
}

.account-sidebar .account-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.account-sidebar .account-user .account-user-img {
  position: relative;
}
.account-sidebar .account-user .account-user-img .edit {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 20px;
  width: 23px;
  height: 23px;
  background-color: #fff;
  border: 1px solid #B88669;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
}
.account-sidebar .account-user .account-user-info {
  padding-left: 30px;
}
.account-sidebar .account-user .account-user-info h3 {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.account-sidebar .account-user .account-user-info span {
  display: block;
  color: #3E3E3E;
  font-size: 14px;
}
.account-sidebar .account-list {
  margin-top: 100px;
}
.account-sidebar .account-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 47px;
}
.account-sidebar .account-list li:last-child {
  margin-bottom: 0;
}
.account-sidebar .account-list li .ac-icon {
  width: 50px;
  margin-right: 13px;
}
.account-sidebar .account-list li h4 {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--text-font);
}
.account-sidebar .account-list li h4:hover {
  color: #B88669;
}

.personal-information-column .personal-information {
  margin-bottom: 133px;
}
.personal-information-column .personal-information h3 {
  color: #000000;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.personal-information-column .personal-information p {
  color: #3E3E3E;
  font-size: 14px;
  line-height: 25px;
}
.personal-information-column .user_info {
  background: #FDFDFD;
  border: 1px solid rgba(199, 199, 199, 0.35);
  padding: 30px 30px 23px 30px;
  position: relative;
  margin-bottom: 50px;
}
.personal-information-column .user_info .us-icon {
  position: absolute;
  top: 30px;
  right: 30px;
}
.personal-information-column .user_info h4 {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--text-font);
  margin-bottom: 7px;
}
.personal-information-column .user_info span {
  display: block;
  font-size: 16px;
  color: #919191;
  font-weight: 500;
}
.personal-information-column .user-details {
  margin: 0 -25px;
}
.personal-information-column .user-details .col-lg-6,
.personal-information-column .user-details .col-lg-12 {
  padding: 0 25px;
}
.personal-information-column .user-details .full-button {
  margin-top: 0;
}

/*==============================================
03. BANNER
==============================================*/
.glance-banner .video-intro #video1 {
  width: 100%;
}
.glance-banner .video-intro {
  margin: 0;
}
.glance-banner .video-intro video {
  width: 100%;
}
.glance-banner .video-intro video source {
  width: 100%;
}

.contact-page.page-banner {
  /* background-image: url(../images/contact/page-banner.jpg); */
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
  height: 310px;
  position: relative;
}
.contact-page.page-banner::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000009e;
}
.page-banner .page-banner-content {
  padding-top: 80px;
  position: relative;
  z-index: 1;
}
.page-banner .page-banner-content .page-title {
  font-size: 80px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  color: transparent;
}
.page-banner .page-banner-content p {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 25px;
}

.full-banner > img {
  width: 100%;
}

.sml-banner {
  position: relative;
  overflow: hidden;
}
.sml-banner > img {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sml-banner:hover > img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.sml-banner .banner-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
.sml-banner .banner-caption h3 {
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sml-banner .banner-caption p {
  font-size: 15px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 26px;
  font-weight: 400;
}
.sml-banner .banner-caption .theme-btn {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--title-font);
  background-color: rgba(0, 0, 0, 0.14);
}

/*==============================================
11. BLOG
==============================================*/
.latest-news-section {
  padding: 110px 0 45px;
  background-color: rgba(247, 231, 222, 0.81);
}

.blog-posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.blog-posts .post {
  max-width: calc(20% - 22px);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(20% - 22px);
          flex: 0 0 calc(20% - 22px);
  margin-right: 22px;
}
.blog-posts .post .post-thumb {
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}
.blog-posts .post .post-thumb > img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}
.blog-posts .post .post-thumb:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.blog-posts .post .post-info h3 {
  color: #000000;
  font-size: 15px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 2px;
  font-family: var(--text-font);
}

.meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.meta li {
  display: inline-block;
  color: #7D7D7D;
  font-size: 11px;
  margin-right: 15px;
}
.meta li:last-child {
  margin-right: 0;
}
.meta li img {
  margin-right: 2px;
  position: relative;
  top: -1px;
}
.meta li a,
.meta li span {
  font-weight: 400;
}

.full-button {
  margin-top: 69px;
}
.full-button .theme-btn {
  min-width: 223px;
  font-family: var(--title-font);
}

.blog-posts-section .sec-title h2 {
  line-height: 50px;
  margin-bottom: 20px;
}
.blog-posts-section .blog_posts .blog_post .blog_post_thumb {
  margin-bottom: 55px;
}
.blog-posts-section .blog_posts .blog_post .blog_post_thumb > img {
  width: 100%;
}
.blog-posts-section .blog_posts .blog_post .blog_post_info h3 {
  color: #000000;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 17px;
}
.blog-posts-section .blog_posts .blog_post .blog_post_info p {
  color: #3E3E3E;
  font-size: 14px;
  line-height: 25px;
}

.blog-page-section {
  padding-bottom: 100px;
}
.blog-page-section .sec-title {
  margin-bottom: 54px;
}
.blog-page-section .container-fluid {
  max-width: 1920px;
  padding: 0;
}
.blog-page-section .blog-page-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.blog-page-section .today-articles {
  background: #F8EBE4;
  padding: 50px 177px;
  max-width: 57%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 57%;
          flex: 0 0 57%;
}
.blog-page-section .blog-posts {
  margin: 0 -10px;
}
.blog-page-section .blog-posts .post {
  max-width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  margin-right: 0;
  padding: 0 10px;
  margin-bottom: 35px;
}
.blog-page-section .trending-column {
  max-width: 43%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 43%;
          flex: 0 0 43%;
}
.blog-page-section .newsletter {
  padding: 63px 100px 80px;
  background-color: #fafafa;
}
.blog-page-section .newsletter-form input {
  width: 100%;
  border: 1px solid #C7C7C7;
  height: 58px;
  color: #666666;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 21px;
}
.blog-page-section .newsletter-form button {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, color-stop(27.92%, #C98663), color-stop(109.42%, #B88689));
  background: linear-gradient(90deg, #C98663 27.92%, #B88689 109.42%);
  border: 1px solid #B88669;
  border-radius: 50px;
  width: 100%;
}
.blog-page-section .trending-posts {
  padding: 63px 80px;
}
.blog-page-section .trending-posts .sec-title {
  padding: 0 25px;
}
.blog-page-section .trending-posts .td-posts > li {
  border-bottom: 1px solid #C4C4C4;
  padding: 51px 25px 49px;
}
.blog-page-section .trending-posts .td-posts > li:first-child {
  padding-top: 0;
}
.blog-page-section .trending-posts .td-posts > li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.blog-page-section .trending-posts .td-posts > li .post-title {
  color: #000000;
  font-size: 15px;
  line-height: 28px;
  font-weight: 500;
  font-family: var(--text-font);
  margin-bottom: 0;
}

.blog-posts-section-v3 {
  padding: 127px 0;
  border-top: 1px solid #C7C7C7;
}
.blog-posts-section-v3 .container-fluid {
  max-width: 100%;
  padding: 0;
}
.blog-posts-section-v3 .blog-posts-v3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.blog-posts-section-v3 .blog-posts-v3 .blog-posts-left-content {
  max-width: 70%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70%;
          flex: 0 0 70%;
  padding: 0 70px;
}
.blog-posts-section-v3 .blog-posts-v3 .blog-posts-left-content .blog-posts {
  margin: 0 -15px;
}
.blog-posts-section-v3 .blog-posts-v3 .blog-posts-left-content .blog-posts .post {
  margin-right: 0;
  max-width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding: 0 15px;
  margin-bottom: 57px;
}
.blog-posts-section-v3 .blog-posts-v3 .blog-posts-left-content .blog-posts .post .post-thumb {
  margin-bottom: 17px;
}
.blog-posts-section-v3 .blog-posts-v3 .blog-posts-left-content .blog-posts .post .post-info {
  padding: 0 15px;
}
.blog-posts-section-v3 .blog-posts-v3 .blog-posts-left-content .blog-posts .post .post-info p {
  color: #3E3E3E;
  font-size: 13px;
  line-height: 25px;
  margin-top: 12px;
}
.blog-posts-section-v3 .blog-posts-v3 .blog-posts-right-sidebar {
  max-width: 30%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  padding: 0 45px;
  border-left: 1px solid #C7C7C7;
}
.blog-posts-section-v3 .blog-posts-v3 .blog-posts-right-sidebar .widget-title {
  color: #000000;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.blog-posts-section-v3 .blog-posts-v3 .blog-posts-right-sidebar .blog-posts .post {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin-bottom: 60px;
}
.blog-posts-section-v3 .blog-posts-v3 .blog-posts-right-sidebar .blog-posts .post .post-info {
  padding: 0 15px;
}
.blog-posts-section-v3 .blog-posts-v3 .blog-posts-right-sidebar .blog-posts .post .post-info p {
  color: #3E3E3E;
  font-size: 13px;
  line-height: 25px;
  margin-bottom: 25px;
  margin-top: 12px;
}
.blog-posts-section-v3 .blog-posts-v3 .blog-posts-right-sidebar .blog-add {
  position: relative;
}
.blog-posts-section-v3 .blog-posts-v3 .blog-posts-right-sidebar .blog-add > img {
  width: 100%;
}
.blog-posts-section-v3 .blog-posts-v3 .blog-posts-right-sidebar .blog-add .blog-add-info {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  padding: 0 40px;
}
.blog-posts-section-v3 .blog-posts-v3 .blog-posts-right-sidebar .blog-add .blog-add-info h3 {
  color: #FFFFFF;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.blog-posts-section-v3 .blog-posts-v3 .blog-posts-right-sidebar .blog-add .blog-add-info p {
  color: #FFFFFF;
  font-size: 13px;
  line-height: 25px;
  margin-bottom: 19px;
}

.blog-post-single {
  padding-top: 110px;
}
.blog-post-single .main-single-image {
  max-width: 100%;
  margin-bottom: 72px;
}
.blog-post-single .post-info {
  padding: 0 45px;
}
.blog-post-single .post-info h3 {
  color: #000000;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 4px;
  font-family: var(--text-font);
}
.blog-post-single .post-info .meta {
  margin-bottom: 25px;
}
.blog-post-single p {
  color: #3E3E3E;
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 9px;
}
.blog-post-single blockquote {
  border: 1px solid #C7C7C7;
  padding: 85px 50px 78px;
  text-align: center;
  margin-top: 51px;
  margin-bottom: 80px;
}
.blog-post-single blockquote p {
  position: relative;
  color: #3E3E3E;
  font-size: 20px;
  line-height: 38px;
  font-weight: 400;
  font-style: italic;
  max-width: 803px;
  margin: 0 auto;
}
.blog-post-single blockquote p:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 112px;
  height: 86px;
  background-image: url(../images/quote.png);
  background-repeat: no-repeat;
}
.blog-post-single img.mw-100 {
  margin-bottom: 36px;
}
.blog-post-single .bb-info {
  margin-bottom: 66px;
}
.blog-post-single .main-single-v2 {
  max-width: 100%;
  margin-bottom: 33px;
}
.blog-post-single .main-single-v2 + p {
  padding: 0 45px;
}

.swiper2.blog-posts {
  border-bottom: 1px solid #c7c7c7;
  padding-bottom: 46px;
}
.swiper2.blog-posts .swiper-slide {
  padding: 0 11px;
}
.swiper2.blog-posts .post {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin: 0;
}

/*==============================================
12. BRANDS
==============================================*/
.flex-container {
  height: 689px;
  /* Safari */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .flex-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.flex-slide {
  /* Safari 6.1+ */
  -ms-flex: 1;
  /* IE 10 */
  -webkit-box-flex: 1;
          flex: 1;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  height: 100%;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media screen and (max-width: 768px) {
  .flex-slide {
    overflow: auto;
    overflow-x: hidden;
  }
}
.flex-slide:hover {
  -webkit-box-flex: 3;
      -ms-flex-positive: 3;
          flex-grow: 3;
}

@media screen and (min-width: 768px) {
  .flex-slide {
    -moz-animation: aboutFlexSlide;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: 1;
    -moz-animation-delay: 0s;
    -webkit-animation: aboutFlexSlide;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-delay: 0s;
    animation: aboutFlexSlide;
    animation-duration: 3s;
    animation-iteration-count: 1;
    animation-delay: 0s;
  }
}
@-webkit-keyframes aboutFlexSlide {
  0% {
    -webkit-box-flex: 1;
            flex-grow: 1;
  }
  50% {
    -webkit-box-flex: 3;
            flex-grow: 3;
  }
  100% {
    -webkit-box-flex: 1;
            flex-grow: 1;
  }
}
@keyframes aboutFlexSlide {
  0% {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  50% {
    -webkit-box-flex: 3;
        -ms-flex-positive: 3;
            flex-grow: 3;
  }
  100% {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.accessories {
  background-image: url(https://placehold.co/681x689);
}

.fashion {
  background-image: url(https://placehold.co/681x689);
}

.sneekers {
  background-image: url(https://placehold.co/681x689);
}

.blazer {
  background-image: url(https://placehold.co/681x689);
}

.polo {
  background-image: url(https://placehold.co/681x689);
}

.bag {
  background-image: url(https://placehold.co/681x689);
}

.brand-section {
  padding: 119px 0 120px;
}
.brand-section .container {
  max-width: 1435px;
}

.brands {
  margin: 0;
  border: 1px solid #C7C7C7;
  border-right: 0;
}
.brands .col-lg-3 {
  padding: 0;
}

.brand-col {
  border-right: 1px solid #C7C7C7;
  padding: 21px 34px 26px;
  height: 100%;
}
.brand-col .brand-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 14px;
  height: 34px;
}
.brand-col .brand-head img {
  margin-right: 18px;
  height: 28px;
}
.brand-col .brand-head h3 {
  color: #000000;
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  font-family: var(--text-font);
  text-transform: capitalize;
}
.brand-col p {
  color: #3E3E3E;
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 0;
}

.pt-logos {
  margin-top: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 43px;
}
.pt-logos .pt-logo {
  max-width: 20%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  text-align: center;
}
.product-top-section {
  justify-content: space-between;
}
.product-top-section .left{
  display: flex;
  align-items: center;
  gap: 20px;
  width: 60%;
}
.product-top-section .right{
  display: flex;
  align-items: center;
  gap: 20px;
  width: 40%;
  justify-content: flex-end;
}
/*==============================================
13. CART
==============================================*/
.cart-section {
  padding-bottom: 100px;
}
.cart-section .container-fluid {
  max-width: 1776px;
}

.cart-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #F7F7F7;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cart-product .cart-product-large-slider {
  max-width: 679px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 679px;
          flex: 0 0 679px;
  position: relative;
  top: 100px;
}
.cart-product .cart-product-large-image > img {
  width: 100%;
}

.cart-product-content {
  margin-top: 80px;
  max-width: calc(100% - 679px);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 679px);
          flex: 0 0 calc(100% - 679px);
  margin-left: auto;
}
.cart-product-content .cart-product-info {
  max-width: 548px;
}
.cart-product-content .cart-product-info > h2 {
  color: #000000;
  font-size: 38px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 26px;
}
.cart-product-content .cart-product-info p {
  color: #3E3E3E;
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 40px;
}

@-webkit-keyframes zoom-in-zoom-out {
  0% {
    -webkit-transform: scale(0.7, 0.7) translate(-50%);
            transform: scale(0.7, 0.7) translate(-50%);
  }
  50% {
    -webkit-transform: scale(1.2, 1.2) translate(-50%);
            transform: scale(1.2, 1.2) translate(-50%);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(-50%);
            transform: scale(1, 1) translate(-50%);
  }
}

@keyframes zoom-in-zoom-out {
  0% {
    -webkit-transform: scale(0.7, 0.7) translate(-50%);
            transform: scale(0.7, 0.7) translate(-50%);
  }
  50% {
    -webkit-transform: scale(1.2, 1.2) translate(-50%);
            transform: scale(1.2, 1.2) translate(-50%);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(-50%);
            transform: scale(1, 1) translate(-50%);
  }
}
.cart-product-thumb-slider {
  margin-top: 92px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cart-product-thumb-slider .cart-product-thumb {
  max-width: calc(33.3333333333% - 15px);
          flex: 0 0 calc(33.3333333333% - 15px);
  border: 1px solid rgba(0, 0, 0, 0.09);
  margin-right: 15px;
  background: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 276px;
}
.shop-single-section .cart-product-thumb-slider .cart-product-thumb {
  max-width: inherit;
}
.cart-product-thumb-slider .cart-product-thumb > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.cart-product-thumb-slider .cart-product-thumb.slick-active {
  border-color: #B88669;
}

.cart-section-v2 {
  padding: 160px 0 0;
}
.cart-section-v2 .container-fluid {
  max-width: 1660px;
  padding: 0 15px;
}

.card-product-content-v2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.card-product-content-v2 .card-product-thumb-slider {
  max-width: 1000px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1000px;
          flex: 0 0 1000px;
  position: relative;
}
.card-product-content-v2 .card-product-thumb-slider .cart-slider-thumb {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 99;
  width: 100px;
  overflow: hidden;
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
}
.card-product-content-v2 .card-product-thumb-slider .cart-slider-thumb .cart-product-thumb-slide {
  width: 100%;
  margin-bottom: 5px;
  cursor: pointer;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.card-product-content-v2 .card-product-thumb-slider .cart-slider-thumb .cart-product-thumb-slide > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-product-content-v2 .card-product-thumb-slider .cart-slider-thumb .cart-product-thumb-slide:last-child {
  margin-bottom: 0;
}
.card-product-content-v2 .card-product-thumb-slider .cart-product-slider {
  max-width: 478px;
  margin-left: auto;
  margin-right: 7%;
  margin-bottom: -2px;
}
.card-product-content-v2 .card-product-thumb-slider .cart-product-slider .circle {
  width: 300px;
  height: 300px;
}
.card-product-content-v2 .card-product-thumb-slider .cart-product-slider .circle-container {
  left: 200px;
}
.card-product-content-v2 .card-product-thumb-slider .cart-product-slider .cart-product-slider-slide {
  position: relative;
  z-index: 9;
}
.card-product-content-v2 .cart-product-info-v2 {
  margin-left: auto;
  max-width: 548px;
  padding-left: 40px;
}
.card-product-content-v2 .cart-product-info-v2 .cart-product-content {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin: 0;
}

.cart-page {
  padding: 110px 0;
}
.cart-page .cart-table {
  width: 100%;
  border-spacing: 0 15px;
  margin-bottom: 55px;
}
.cart-page .cart-table thead {
  background-color: #F1F2F2;
}
.cart-page .cart-table thead th {
  color: #000000;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 20px;
}
.cart-page .cart-table tbody {
  background: #fff;
}
.cart-page .cart-table tbody tr {
  border: 1px solid #E7E7E7;
}
.cart-page .cart-table tbody td {
  padding: 10px;
  background: #fff;
  margin-bottom: 10px;
}
.cart-page .cart-table .cart_product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cart-page .cart-table .cart_product .cart_product_thumb {
  max-width: 102px;
}
.cart-page .cart-table .cart_product .cart_product_info {
  padding-left: 20px;
  max-width: 180px;
}
.cart-page .cart-table .cart_product .cart_product_info .pro-category {
  display: block;
  color: #959595;
  font-size: 12px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: -4px;
}
.cart-page .cart-table .cart_product .cart_product_info h3 {
  color: #000000;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  font-family: var(--text-font);
}
.cart-page .cart-table .cart_product .cart_product_info .new-product {
  display: block;
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  text-transform: capitalize;
  margin-bottom: -4px;
}
.cart-page .cart-table .cart_product .cart_product_info .edit-product {
  display: inline-block;
  color: #CCCCCC;
  font-size: 12px;
  font-weight: 500;
  text-decoration: underline;
}
.cart-page .cart-table .price {
  margin-bottom: 0;
}
.cart-page .cart-table .price span {
  display: inline-block;
  color: #000000;
  font-size: 16px;
}
.cart-page .gift-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 18px;
}
.cart-page .gift-card > img {
  margin-right: 17px;
}
.cart-page .gift-card h5 {
  color: #000000;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--text-font);
}
.cart-page .gift-card .add {
  display: inline-block;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  height: 38px;
  line-height: 38px;
  padding: 0 15px;
  border: 1px solid #000;
  margin-left: 13px;
}

.quantity {
  width: 98px;
  height: 36px;
  position: relative;
  background: #F1F1F1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.quantity input {
  color: #222222;
  font-size: 20px;
  border: 0;
  height: 100%;
  background: transparent;
  position: relative;
  width: 40px;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  color: #000;
}

.quantity button {
  width: 24px;
  text-align: center;
  color: #000000;
  border: 0;
}
.quantity button i {
  font-size: 15px;
  font-style: inherit;
}

.additiona-comments {
  margin-bottom: 15px;
}
.additiona-comments label {
  display: block;
  color: #000000;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 9px;
}
.additiona-comments textarea {
  height: 131px;
  border: 1px solid #9A9A9A;
  color: rgba(0, 0, 0, 0.5);
  font-size: 13px;
  padding: 10px;
  width: 100%;
}

.secure-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 18px;
}
.secure-info img {
  display: inline-block;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 10px;
}
.secure-info p {
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
}

.sponsor {
  margin-left: auto;
}

.order-summary > h3 {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  border-bottom: 1px solid #000000;
  padding-bottom: 20px;
  font-family: var(--text-font);
  margin-bottom: 36px;
}
.order-summary .sub-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.order-summary .sub-total > h4 {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--text-font);
}
.order-summary .sub-total > span {
  margin-left: auto;
  display: inline-block;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
}
.order-summary .shipping {
  padding: 32px 0;
}
.order-summary .shipping h5 {
  color: #000000;
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--text-font);
  margin-bottom: 27px;
}
.order-summary .shipping .select-field {
  margin-bottom: 20px;
}
.order-summary .shipping .select-field .select2-container {
  width: 100% !important;
}
.order-summary .shipping .select-field .select2-container--default .select2-selection--single {
  height: 65px;
  border: 1px solid #9A9A9A;
  padding: 0 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.order-summary .shipping .select-field .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 13px;
  font-weight: 400;
}
.order-summary .shipping .input-field input {
  height: 65px;
  border: 1px solid #9A9A9A;
  padding: 0 25px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  width: 100%;
}
.order-summary .shipping .input-field p {
  color: #959595;
  font-size: 12px;
  font-weight: 500;
  margin-top: 10px;
  line-height: 20px;
}
.order-summary .shipping .calculate-shipping {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.order-summary .shipping .calculate-shipping a {
  display: block;
  color: #000000;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #000000;
  text-transform: capitalize;
  height: 60px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 60px;
}
.order-summary .shipping .coupan-code {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 18px;
}
.order-summary .shipping .total-amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 20px;
  padding-top: 25px;
}
.order-summary .shipping .total-amount > strong {
  display: inline-block;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.order-summary .shipping .total-amount .price-amount {
  margin-left: auto;
  display: inline-block;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
}
.order-summary .shipping .proceed-buttons a {
  display: block;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 60px;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, color-stop(25.52%, #C98663), to(#B88689));
  background: linear-gradient(90deg, #C98663 25.52%, #B88689 100%);
  border-radius: 30px;
  color: #fff;
  text-transform: uppercase;
  font-family: var(--title-font);
}

.top-msg {
  background: #FFFADC;
  padding: 10px 20px;
  color: #000;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 50px;
  line-height: 20px;
}

.agree-terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0;
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}
.agree-terms .containerr {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  color: #5A5A5A;
  text-transform: capitalize;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.agree-terms .containerr a {
  text-decoration: underline;
}
.agree-terms .containerr input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.agree-terms .checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 16px;
  width: 16px;
  background-color: #eee;
}
.agree-terms .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.agree-terms .containerr input:checked ~ .checkmark:after {
  display: block;
}
.agree-terms .containerr .checkmark:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #B88669;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  height: 40px;
}

.select2-results__option {
  color: #000;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
}

.select2-container--default .select2-selection--single .select2-selection__arrow::before {
  font-family: "Font Awesome 5 Free";
  color: #000;
  font-size: 16px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 10px;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 469px;
  background: #fff;
  height: 100%;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cart-sidebar.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.cart-sidebar .cart-sidebar-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 17px;
  padding: 40px 25px 0;
}
.cart-sidebar .cart-sidebar-header h3 {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--text-font);
  margin-right: auto;
}
.cart-sidebar .cart-sidebar-header .cls-btn {
  display: inline-block;
  width: 38px;
  height: 38px;
  background-color: #B88669;
  border-radius: 50%;
  line-height: 38px;
  text-align: center;
}
.cart-sidebar .cart-sidebar-header .cls-btn svg path {
  fill: #fff;
}
.cart-sidebar .cart-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-right: 1px solid #C5C5C5;
  margin-bottom: 20px;
}
.cart-sidebar .cart-tabs li {
  width: 25%;
  border: 1px solid #C5C5C5;
  text-align: center;
  display: inline-block;
  height: 64px;
  line-height: 64px;
  border-right: 0;
}
.cart-sidebar .cart-tabs li a {
  display: block;
}
.cart-sidebar .cart-tabs li a svg path {
  fill: #C5C5C5;
}
.cart-sidebar .cart-tabs li.active {
  background: #B88669;
}
.cart-sidebar .cart-tabs li.active a svg path {
  fill: #fff;
}
.cart-sidebar .cart-body {
  padding: 0 25px;
}
.cart-sidebar .cart-product-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid #E7E7E7;
  padding: 10px;
}
.cart-sidebar .cart-product-column .card-product-thumb-sd {
  width: 102px;
}
.cart-sidebar .cart-product-column .card-product-thumb-sd > img {
  width: 100%;
}
.cart-sidebar .cart-product-column .card-product-thumb-info {
  padding-left: 13px;
  margin-top: -5px;
  position: relative;
  width: calc(100% - 102px);
}
.cart-sidebar .cart-product-column .card-product-thumb-info .close-cart-product {
  display: inline-block;
  position: absolute;
  top: 5px;
  right: 3px;
  width: 25px;
  height: 25px;
  border: 1px solid #E7E7E7;
  border-radius: 50%;
  text-align: center;
  line-height: 21px;
}
.cart-sidebar .cart-product-column .card-product-thumb-info .edit-btn {
  display: inline-block;
  position: absolute;
  bottom: 4px;
  right: 5px;
  color: #CCCCCC;
  font-size: 12px;
  font-weight: 500;
  text-decoration: underline;
}
.cart-sidebar .cart-product-column .card-product-thumb-info > span {
  font-family: var(--title-font);
  font-size: #959595;
  font-size: 12px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: -5px;
  display: block;
}
.cart-sidebar .cart-product-column .card-product-thumb-info h4 {
  color: #000;
  font-family: var(--text-font);
  font-size: 14px;
  line-height: 25px;
  font-weight: 400;
  margin-bottom: -1px;
}
.cart-sidebar .cart-product-column .card-product-thumb-info .price-sd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 9px;
}
.cart-sidebar .cart-product-column .card-product-thumb-info .price-sd del {
  color: #000;
  font-size: 14px;
  font-weight: 500;
}
.cart-sidebar .cart-product-column .card-product-thumb-info .price-sd span {
  display: inline-block;
  color: #B88669;
  font-size: 14px;
  font-weight: 500;
  margin-left: 12px;
}
.cart-sidebar .cart-sidebar-products li {
  margin-bottom: 20px;
}
.cart-sidebar .cart-sidebar-products li:last-child {
  margin-bottom: 0;
}
.cart-sidebar .cart-footer {
  background: #F0F0F0;
  padding: 13px 60px 20px;
  margin-top: 10px;
}
.cart-sidebar .cart-footer > p {
  color: #6C6C6C;
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 1px;
}
.cart-sidebar .cart-footer > p span {
  display: inline-block;
  color: #5D9560;
}
.cart-sidebar .cart-footer .product-price-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 7px 0 3px;
}
.cart-sidebar .cart-footer .product-price-total > strong {
  display: inline-block;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
}
.cart-sidebar .cart-footer .product-price-total > span {
  margin-left: auto;
  display: inline-block;
  color: #000;
  font-weight: 500;
  font-size: 16px;
}
.cart-sidebar .cart-footer span {
  display: block;
  color: #6C6C6C;
  font-size: 14px;
}
.cart-sidebar .cart-footer span a {
  display: inline-block;
  color: #000;
  text-decoration: underline;
}
.cart-sidebar .cart-footer .agree-terms {
  margin: 8px 0 14px;
}
.cart-sidebar .cart-footer .agree-terms .checkmark {
  background: #fff;
  border-radius: 50%;
}
.cart-sidebar .cart-footer .agree-terms .checkmark:after {
  border-radius: 50%;
}
.cart-sidebar .cart-footer .cart-sidebar-btns li {
  display: inline-block;
  margin-right: 5px;
}
.cart-sidebar .cart-footer .cart-sidebar-btns li:last-child {
  margin-right: 0;
}
.cart-sidebar .cart-footer .cart-sidebar-btns li a {
  display: inline-block;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--title-font);
  border-radius: 50px;
  border: 1px solid #B88669;
  padding: 0 33px;
  height: 48px;
  line-height: 46px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cart-sidebar .cart-footer .cart-sidebar-btns li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: -webkit-gradient(linear, left top, right top, color-stop(25.52%, #C98663), to(#B88689));
  background: linear-gradient(90deg, #C98663 25.52%, #B88689 100%);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cart-sidebar .cart-footer .cart-sidebar-btns li a.checkout, .cart-sidebar .cart-footer .cart-sidebar-btns li a:hover {
  color: #fff;
}
.cart-sidebar .cart-footer .cart-sidebar-btns li a.checkout:before, .cart-sidebar .cart-footer .cart-sidebar-btns li a:hover:before {
  opacity: 1;
  visibility: visible;
}

/*==============================================
14. CATEGORIES
==============================================*/
.category-section-v2 {
  padding: 100px 0 70px;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 120px;
}

.container-full {
  max-width: 100%;
  padding: 0;
}
.container-full .row {
  margin: 0;
}
.container-full .row .col-lg-6,
.container-full .row .col-lg-4 {
  padding: 0;
}

.categories-v2 .category-v2 {
  text-align: center;
  border: 1px solid #C7C7C7;
  padding: 45px 43px 20px;
  margin-right: -1px;
  margin-bottom: -1px;
  overflow: hidden;
}
.categories-v2 .category-v2 .category-v2-img {
  overflow: hidden;
  margin-bottom: 20px;
}
.categories-v2 .category-v2 .category-v2-img > img {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.categories-v2 .category-v2:hover .category-v2-img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.categories-v2 .category-v2 h3 {
  color: #222222;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--text-font);
}

.colletion-section-v2 {
  padding: 100px 0;
}
.colletion-section-v2 .product-categories-v2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.colletion-section-v2 .product-categories-v2 .product-cat {
  max-width: 20%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
}

.top-match-section {
  padding: 115px 0 70px;
}
.top-match-section .container-fluid {
  padding: 0;
  max-width: 100%;
}
.top-match-section .sec-title {
  margin-bottom: 65px;
}
.top-match-section .categories-match-slider .shop-categories-section {
  padding: 0;
  border-bottom: 1px solid #C7C7C7;
  border-top: 1px solid #C7C7C7;
  padding: 30px 0;
}
.top-match-section .categories-match-slider .shop-categories-section .swiper-wrapper .swiper-slide {
  padding: 0 5px;
  opacity: 0.5;
}
.top-match-section .categories-match-slider .shop-categories-section  .swiper-slide.swiper-slide-active{
  opacity: 1;
}
.top-match-section .categories-match-slider .shop-categories-section .shop-category {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.top-match-section .categories-match-slider .shop-categories-section .shop-category > img {
  border-radius: 10px !important;
  height: 60px;
  width: auto;
  margin: 0 auto;
}

.category-section {
  padding: 53px 0;
}
.category-section .container-fluid {
  padding: 0;
  max-width: 100%;
}
.category-section .sec-title {
  margin-bottom: 65px;
}

.product-categories .product-cat,
.product-categories-v2 .product-cat {
  padding: 40px;
  text-align: center;
  border: 1px solid #C7C7C7;
  position: relative;
  margin-right: -1px;
}
.product-categories .product-cat .box-link,
.product-categories-v2 .product-cat .box-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}
.product-categories .product-cat .product-thumb,
.product-categories-v2 .product-cat .product-thumb {
  margin-bottom: 24px;
  overflow: hidden;
}
.product-categories .product-cat .product-thumb > img,
.product-categories-v2 .product-cat .product-thumb > img {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product-categories .product-cat:hover .product-thumb img,
.product-categories-v2 .product-cat:hover .product-thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.product-categories .product-cat > h3,
.product-categories-v2 .product-cat > h3 {
  color: #222222;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--text-font);
  text-transform: capitalize;
}

/*==============================================
15. COLLECTION
==============================================*/
.collection-section.v2 {
  padding-bottom: 85px;
  border-bottom: 0;
}
.collection-section.v2 .container-fluid {
  padding: 0 30px;
}
.collection-section.v2 .product-categories.v2.without-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 0;
}
.collection-section.v2 .product-categories.v2.without-slide .product-cat {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  border: 1px solid #eaeaea;
  height: 100%;
}
.collection-section.v2 .product-categories.v2.without-slide .col-lg-2 {
  max-width: 20%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  margin-bottom: 30px;
}
.collection-section.v2 .product-categories.v2.without-slide .product-cat {
  margin: 0 0 30px;
}

.collection-new {
  padding: 0 0 130px;
}
.collection-new .container-fluid {
  padding: 0 45px;
  max-width: 100%;
}

.flex-slide {
  position: relative;
  overflow: hidden;
}
.flex-slide h2 {
  position: absolute;
  top: 45%;
  left: 10px;
  z-index: 99;
  color: #FFFFFF;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 30px;
  width: 100%;
  text-align: right;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  margin-top: 10px;
}
.flex-slide:hover .flex-content {
  opacity: 1;
  visibility: visible;
}

.flex-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: left;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  max-width: 350px;
  padding: 0 20px;
}
.flex-content > h3 {
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.flex-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 26px;
}
.flex-content .theme-btn {
  background: -webkit-gradient(linear, left top, right top, color-stop(27.92%, #C98663), color-stop(109.42%, #B88689));
  background: linear-gradient(90deg, #C98663 27.92%, #B88689 109.42%);
  border: 1px solid #B88669;
  color: #fff;
}

.title-clt {
  text-align: center;
  margin-bottom: 72px;
}
.title-clt h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000000;
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.title-clt h2 img {
  display: inline-block;
  margin: 0 10px;
}

.collection-section.bg-change {
  background: #f8ebe3;
}
.collection-section.bg-change .product-categories.v2 .product-cat {
  border-right-color: #C7C7C7;
  border-top-color: #C7C7C7;
  border-bottom-color: #C7C7C7;
}

.collection-section.related-posts {
  padding-bottom: 72px;
}
.collection-section.related-posts .container-fluid {
  padding: 0;
}
.collection-section.related-posts .swiper2 {
  padding: 0 38px 46px;
}

/*==============================================
16. CONTACT
==============================================*/
.contact-page-section {
  padding: 80px 0;
}
.contact-page-section .container {
  max-width: 1550px;
}

.contact-links-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 52px;
  flex-wrap: wrap;
  gap: 20px;
}
.contact-links-info li {
  width: 33.33%;
  max-width: 230px;
}
.contact-links-info li .ct-icon {
  height: 50px;
  margin-bottom: 15px;
  margin: 0 auto 15px;
  text-align: center;
  width: 100%;
  max-width: 50px;
}
.contact-links-info li p, .contact-links-info li a {
  color: #000000;
  font-size: 14px;
  line-height: 25px;
  display: block;
  margin-bottom: 0;
}

.map-section-full .container {
  max-width: 1690px;
}

.contact-form-section {
  padding: 110px 0 0;
}
.contact-form-section .contact_form {
  max-width: 880px;
  margin: 0 auto;
}
.contact-form-section .contact_form .form-group {
  margin-bottom: 15px;
}
.contact-form-section .contact_form .form-group label {
  display: block;
  color: #000000;
  font-size: 12px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 0 10px;
}
.contact-form-section .contact_form .form-group input,
.contact-form-section .contact_form .form-group textarea {
  width: 100%;
  background: #F8F8F8;
  height: 52px;
  padding: 0 10px;
  vertical-align: middle;
}
.contact-form-section .contact_form .form-group textarea {
  padding: 10px;
  height: 167px;
}
.contact-form-section .contact_form .form-submit {
  text-align: center;
  margin-top: 25px;
}
.contact-form-section .contact_form .form-submit .theme-btn {
  min-width: 245px;
}

/*==============================================
17. FAQS
==============================================*/
.faqs-section-page {
  background: #FFFCF3;
  padding: 120px 0 160px;
}
.faqs-section-page .container {
  max-width: 1390px;
  padding: 0 15px;
}
.faqs-section-page .sec-title {
  margin-bottom: 103px;
}
.faqs-section-page .sec-title h2 {
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  margin-bottom: 33px;
}
.faqs-section-page .sec-title p {
  max-width: 751px;
  margin: 0 auto;
}
.faqs-section-page .accordion-header button {
  margin-bottom: 0;
}
.faqs-section-page .accordion-header button.collapsed {
  margin-bottom: 20px;
}
.faqs-section-page .accordion-item {
  border: 0;
}
.faqs-section-page .accordion-button {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  background: #F8F4EB;
  overflow: none;
  padding: 11px 76px;
  border: 1px solid #DEDEDE;
  border-radius: 0;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}
.faqs-section-page .accordion-button:after {
  background: transparent;
  content: "-";
  color: #444;
  font-size: 48px;
  font-weight: 400;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  width: unset;
  height: unset;
  left: auto;
  right: 60px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: -7px;
}
.faqs-section-page .accordion-button.collapsed:after {
  content: "+";
}
.faqs-section-page .accordion-body {
  border: 1px solid #DEDEDE;
  margin-bottom: 20px;
  background: #F8F4EB;
  padding: 30px 76px;
}
.faqs-section-page .accordion-body p {
  color: #3E3E3E;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 20px;
}
.faqs-section-page .accordion-body p:last-child {
  margin-bottom: 0;
}

/*==============================================
18. LOGIN
==============================================*/
.lg-popup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(100% - 180px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.lg-popup .lg-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  position: relative;
}
.lg-popup .lg-image .close-pop {
  display: inline-block;
  position: absolute;
  top: 20px;
  right: 20px;
}
.lg-popup .lg-image .close-pop img {
  max-width: 25px;
}
.lg-popup .lg-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}
.lg-popup .lg-content .lg-content-inner {
  max-width: 465px;
  margin: 0 auto;
}
.lg-popup .lg-content .lg-content-inner .close-pop {
  position: absolute;
  top: 20px;
  right: 25px;
}
.lg-popup .lg-content .lg-content-inner h3 {
  color: #000000;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.lg-popup .lg-content .lg-content-inner p {
  color: #3E3E3E;
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 41px;
}
.lg-popup .lg-content .lg-content-inner .lg-social {
  max-width: 398px;
  margin-bottom: 33px;
}
.lg-popup .lg-content .lg-content-inner .lg-social li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #E3E3E3;
  margin-bottom: 15px;
  padding: 10px 0 8px;
}
.lg-popup .lg-content .lg-content-inner .lg-social li:last-child {
  margin-bottom: 0;
}
.lg-popup .lg-content .lg-content-inner .lg-social li a {
  display: inline-block;
  color: #000000;
  font-size: 14px;
  text-transform: capitalize;
}
.lg-popup .lg-content .lg-content-inner .lg-social li a span {
  display: inline-block;
  width: 25px;
  position: relative;
  top: -3px;
  text-align: left;
}
.lg-popup .lg-content .lg-content-inner .or {
  text-align: center;
  margin-bottom: 50px;
}
.lg-popup .lg-content .lg-content-inner .or > span {
  display: inline-block;
  color: #3E3E3E;
  font-size: 14px;
  text-transform: capitalize;
  position: relative;
}
.lg-popup .lg-content .lg-content-inner .or > span:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 156px;
  height: 1px;
  background: #efefef;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-right: 21px;
}
.lg-popup .lg-content .lg-content-inner .or > span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 156px;
  height: 1px;
  background: #efefef;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 20px;
}
.lg-popup .lg-content .lg-content-inner .input-field {
  margin-bottom: 20px;
}
.lg-popup .lg-content .lg-content-inner .input-field:last-child {
  margin-bottom: 0;
}
.lg-popup .lg-content .lg-content-inner .input-field label {
  display: block;
  color: #000000;
  font-size: 13px;
  text-transform: capitalize;
  padding: 0 11px;
}
.lg-popup .lg-content .lg-content-inner .input-field input {
  width: 100%;
  border: 1px solid #E3E3E3;
  height: 60px;
  font-size: 14px;
  color: #000000;
  padding: 0 20px;
}
.lg-popup .lg-content .lg-content-inner .agree-terms {
  margin: 0;
}
.lg-popup .lg-content .lg-content-inner .remember-password {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
}
.lg-popup .lg-content .lg-content-inner .remember-password .recovery-password {
  margin-left: auto;
}
.lg-popup .lg-content .lg-content-inner .remember-password .recovery-password a {
  display: inline-block;
  color: #B88669;
  font-size: 12px;
  font-weight: 500;
  text-transform: capitalize;
}
.lg-popup .lg-content .lg-content-inner .theme-btn {
  margin-top: 17px;
}
.lg-popup .lg-content .btm {
  margin-top: 17px;
}
.lg-popup .lg-content .btm > span {
  display: inline-block;
  color: #999;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}
.lg-popup .lg-content .btm > span a {
  display: inline-block;
  color: #C98663;
  margin-left: 9px;
}

.lg-page {
  background: #EEE1DA;
  padding: 40px;
  height: 100vh;
}

/*==============================================
19. LOOKBOOK
==============================================*/
.lookbook-section-v2 {
  margin-bottom: 150px;
}
.lookbook-section-v2 .container {
  max-width: 100%;
  padding: 0 110px;
}
.lookbook-section-v2 .row {
  margin: 0 -4px;
}
.lookbook-section-v2 .row .col-lg-3 {
  padding: 0 4px;
}
.lookbook-section-v2 .lookbook-inner > img {
  width: 100%;
}

.lookbook-section {
  padding: 0 0 100px;
}
.lookbook-section .lookboo-glance {
  position: relative;
}
.lookbook-section .lookboo-glance .lookbook {
  position: relative;
}
.lookbook-section .lookboo-glance .lookbook img {
  width: 100%;
  max-height: 502px;
}

.pb-text {
  position: absolute;
  bottom: -62px;
  left: 0;
  color: rgba(0, 0, 0, 0.25);
  font-size: 150px;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  font-weight: 600;
}

/*==============================================
20. MAIN SLIDER
==============================================*/
.main-slider {
  height: 100vh;
}
.main-slider .slick-dots {
  display: none;
}

.main-slider-v2 {
  height: 100vh;
}
.main-slider-v2 .slick-list,
.main-slider-v2 .slick-slider,
.main-slider-v2 .slick-track {
  height: 100%;
}
.main-slider-v2 .main-slider-slide {
  position: relative;
  height: 100%;
}
.main-slider-v2 .main-slider-slide > img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-slider-large {
  position: relative;
}
.main-slider-large .main-slider-slide > img {
  max-width: 100%;
  height: 100vh;
  opacity: 1 !important;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-slider-thumb {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.main-slider-thumb .main-slide-thumb {
  margin-right: 50px;
  cursor: pointer;
}
.main-slider-thumb .main-slide-thumb.slick-active span, .main-slider-thumb .main-slide-thumb:hover span {
  background: rgba(184, 134, 105, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.main-slider-thumb .main-slide-thumb.slick-active h3, .main-slider-thumb .main-slide-thumb:hover h3 {
  color: #fff;
}
.main-slider-thumb .main-slide-thumb > span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--title-font);
  padding: 0 12px;
  margin-bottom: 11px;
}
.main-slider-thumb .main-slide-thumb h3 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
  font-family: var(--text-font);
  text-transform: uppercase;
  max-width: 252px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main-slider .animated {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.main-slider [data-animation-in] {
  opacity: 0;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-transition: opacity 0.5s ease 0.3s;
  transition: opacity 0.5s ease 0.3s;
  -webkit-transition: 1s;
  transition: 1s;
}

/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    -webkit-transition: 1s;
    transition: 1s;
  }
  to {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transition: 1s;
    transition: 1s;
  }
}
@keyframes zoomInImage {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    -webkit-transition: 1s;
    transition: 1s;
  }
  to {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transition: 1s;
    transition: 1s;
  }
}
.zoomInImage {
  -webkit-animation-name: zoomInImage;
  animation-name: zoomInImage;
}

@-webkit-keyframes zoomOutImage {
  from {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transition: 1s;
    transition: 1s;
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    -webkit-transition: 1s;
    transition: 1s;
  }
}
@keyframes zoomOutImage {
  from {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transition: 1s;
    transition: 1s;
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    -webkit-transition: 1s;
    transition: 1s;
  }
}
.zoomOutImage {
  -webkit-animation-name: zoomOutImage;
  animation-name: zoomOutImage;
  -webkit-transition: 1s;
  transition: 1s;
}

.main-slider-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
.main-slider-content .theme-btn {
  color: #fff;
}
.main-slider-content > span {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(184, 134, 105, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 22px;
  line-height: 22px;
  padding: 0 10px;
  font-family: var(--title-font);
  margin-bottom: 1px;
}
.main-slider-content h1 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 80px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.main-slider-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin-bottom: 40px;
}
.main-slider-content .theme-btn:hover {
  border-color: transparent;
}

.main-slider.v3 .banner-slide-v3 {
  position: relative;
  height: 100vh;
}
.main-slider.v3 .banner-slide-v3 > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-slider.v3 .banner-slide-v3:hover .banner-cap-v3 h2 {
  margin-top: 0;
}
.main-slider.v3 .banner-slide-v3:hover .banner-cap-v3 h3,
.main-slider.v3 .banner-slide-v3:hover .banner-cap-v3 p,
.main-slider.v3 .banner-slide-v3:hover .banner-cap-v3 .theme-btn {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.main-slider.v3 .banner-slide-v3 .banner-cap-v3 {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.main-slider.v3 .banner-slide-v3 .banner-cap-v3 h2 {
  color: #fff;
  font-size: 200px;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 20px;
  text-transform: uppercase;
  margin-bottom: -14px;
  margin-top: 120px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-slider.v3 .banner-slide-v3 .banner-cap-v3 h3 {
  color: #fff;
  font-size: 30px;
  text-transform: uppercase;
  line-height: 55px;
  font-weight: 700;
  margin-bottom: 8px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
}
.main-slider.v3 .banner-slide-v3 .banner-cap-v3 p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 44px;
  font-weight: 400;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
}
.main-slider.v3 .banner-slide-v3 .banner-cap-v3 .theme-btn {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
  background: #B88669;
  color: #fff;
}
.main-slider.v3 .banner-slide-v3 .banner-cap-v3 .theme-btn:hover {
  border-color: transparent;
}

/* the slides */
.banenr-slider-v3 .slick-slide {
  margin: 0 5px;
}

/* the parent */
.banenr-slider-v3 .slick-list {
  margin: 0 -5px;
}

.add-banner-section {
  padding: 70px 0 80px;
}
.add-banner-section .add-banner-img {
  text-align: center;
}
.add-banner-section .add-banner-img > img {
  max-width: 100%;
}

/*==============================================
21. MARQUEE
==============================================*/
.marquee-section {
  padding: 47px 0 187px;
  border-top: 1px solid #C7C7C7;
  margin-top: 23px;
}
.marquee-section.v2 {
  padding-bottom: 80px;
  border: 0;
  padding-top: 0;
  margin-top: 0;
}
.marquee-section.v_5 {
  position: relative;
  top: 100px;
  z-index: 99;
  border-top: 0;
  margin-top: 0;
  padding-bottom: 0;
}
.marquee-section.v_5 .marquee2 h2 {
  opacity: 0.28;
  color: #fff;
  text-shadow: 0 0 1px #000, 0 0 1px #000, 0 0 1px #000, 0 0 1px #000, 0 0 1px #000, 0 0 1px #000;
}
.marquee-section .marquee h2 {
  font-size: 79px;
  line-height: 99px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 1px #000, 0 0 1px #000, 0 0 1px #000, 0 0 1px #000, 0 0 1px #000, 0 0 1px #000;
}
.marquee-section .marquee2 {
  margin-top: 100px;
  position: relative;
  top: -13px;
}
.marquee-section .marquee2 h2 {
  font-size: 79px;
  line-height: 99px;
  font-weight: 600;
  text-transform: uppercase;
  color: #B88669;
  text-shadow: unset;
}

.web-slides {
  padding-top: 0;
}
.web-slides .marquee6 h2 {
  font-size: 79px;
  line-height: 99px;
  font-weight: 600;
  text-transform: uppercase;
  color: #B88669;
}

.marquee-section.abt {
  padding-bottom: 0;
  margin: 0;
  padding-top: 70px;
  padding-bottom: 39px;
}

.marquee-section.bt-0 {
  border-top: 0;
}

.marquee-section.v2.single-v {
  padding-top: 105px;
  margin-bottom: 120px;
}

/*==============================================
22. PAGINATION
==============================================*/
.pagination {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          margin-top: 50px;
}
.pagination li {
  margin-right: 39px;
}
.pagination li:last-child {
  margin-right: 0;
}
.pagination li .page-link {
  display: inline-block;
  border: 0;
  background: transparent;
  color: #000;
  font-size: 16px;
  padding: 0;
}
.pagination li .page-link.prev, .pagination li .page-link.next {
  width: 86px;
  text-align: center;
  height: 42px;
  border: 1px solid #B88669;
  border-radius: 50px;
  line-height: 42px;
  margin-right: 15px;
  position: relative;
}
.pagination li .page-link.prev:before, .pagination li .page-link.next:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(27.92%, #C98663), color-stop(109.42%, #B88689));
  background: linear-gradient(90deg, #C98663 27.92%, #B88689 109.42%);
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.pagination li .page-link.prev:hover, .pagination li .page-link.next:hover {
  color: #fff;
}
.pagination li .page-link.prev:hover:before, .pagination li .page-link.next:hover:before {
  opacity: 1;
  visibility: visible;
}
.pagination li .page-link.active {
  color: var(--theme-color2);
}
.pagination li .page-link.next {
  margin-right: 0;
  margin-left: 15px;
}

/*==============================================
23. POPUPS
==============================================*/
.popup {
  width: 1404px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 60%;
  border: 1px solid #ccc;
}
.popup .close-popup {
  position: absolute;
  top: 20px;
  right: 20px;
}
.popup .close-popup img {
  max-width: 15px;
}
.popup .row {
  /* -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; */
}
.subscribe-popup .image-popup img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.popup.subscribe-popup, .popup.build-your-popup {
  position: fixed;
  z-index: 99;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  margin-top: 40px;
}
.popup.build-your-popup {
  flex-direction: column;
  padding: 50px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  gap: 25px;
}

.popup.build-your-popup .row {
  justify-content: center;
  align-items: center;
  gap: 25px;
  text-align: center;
}
.popup.build-your-popup button {
  background: linear-gradient(135deg, #C98663 0%, #BA8684 100%);
  border-radius: 50px;
  display: flex;
  width: fit-content;
  font-size: 18px;
  text-transform: uppercase;
  padding: 10px 35px;
}
.popup.build-your-popup select.search-box1.filter-dropdown {
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.25 7.875L10.5 13.125L15.75 7.875' stroke='%23231F20' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: 95% 20px;
  background-repeat: no-repeat;
  appearance: none;
  width: 100%!important;
  max-width: 100%!important;
}
.popup.subscribe-popup.active {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
  z-index: 9999;
}
.popup.build-your-popup.active {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
  z-index: 9999;
 }
.popup.subscribe-popup.remove {
  opacity: 0;
  visibility: hidden;
}
.popup .popup-content .inner-column {
  /* max-width: 460px; */
  margin: 0 auto;
  padding: 0 50px;
}
.popup .popup-content .popup-title {
  margin-bottom: 29px;
}
.popup .popup-content .popup-title h2 {
  color: #000000;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 29px;
}
.popup .popup-content .popup-title p {
  color: #7D7D7D;
  font-size: 15px;
  line-height: 28px;
  font-weight: 500;
  text-transform: capitalize;
}
.popup .popup-content form .input-field {
  position: relative;
  margin-bottom: 16px;
}
.popup .popup-content form .input-field input {
  width: 100%;
  border: 1px solid rgba(199, 199, 199, 0.35);
  height: 65px;
  color: #7D7D7D;
  font-size: 15px;
  font-weight: 500;
  padding: 0 20px;
}
.popup .popup-content form .input-field .mail-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.popup .popup-content form .theme-btn {
  border: 0;
}

.time-counter ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 17px 20px 13px;
}
.time-counter ul li {
  text-align: center;
  position: relative;
  padding: 0 28px;
}
.time-counter ul li:before {
  content: ":";
  position: absolute;
  top: 7px;
  right: -5px;
  margin-left: 10px;
  color: #000;
  font-size: 60px;
}
.time-counter ul li:first-child {
  padding-left: 0;
}
.time-counter ul li:last-child {
  padding-right: 0;
}
.time-counter ul li:last-child:before {
  display: none;
}
.time-counter ul h3 {
  color: #000;
  font-size: 60px;
  font-weight: 700;
  line-height: 50px;
  text-transform: capitalize;
  font-family: Poppins;
  margin-bottom: 3px;
}
.time-counter ul span {
  display: inline-block;
  color: #5E5E5E;
  font-size: 13px;
  font-weight: 500;
  line-height: 25px;
  text-transform: uppercase;
}

.popup.coming-soon-popup {
  position: fixed;
  z-index: 999;
  width: 80%;
  background: #fff;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  opacity: 0;
  visibility: hidden;
  margin-top: 40px;
  max-width: 70%;
  overflow: hidden;
}
.popup.coming-soon-popup.remove-popup.active {
  opacity: 0;
  visibility: hidden;
}
.popup.coming-soon-popup.active {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.popup.coming-soon-popup .image-popup img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.popup.coming-soon-popup .popup-content .inner-column {
  max-width: 530px;
  padding-right: 15px;
}
.popup.coming-soon-popup .popup-content .popup-title {
  margin-bottom: 36px;
}
.popup.coming-soon-popup .popup-content .popup-title h2 {
  font-size: 60px;
  line-height: 70px;
  margin-bottom: 20px;
}
.popup.coming-soon-popup .popup-content .full-btn {
  margin-top: 37px;
  padding: 0 50px;
}
.popup.coming-soon-popup .popup-content .full-btn .theme-btn {
  width: 100%;
  border: 0;
}

.size-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1008px;
  background-color: #F4F5F0;
  padding: 54px 30px 73px;
  overflow-y: auto;
  opacity: 0;
  z-index: 99;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.size-popup.active {
  opacity: 1;
  visibility: visible;
}
.size-popup .close-popup {
  display: inline-block;
  position: absolute;
  top: 30px;
  right: 40px;
}
.size-popup .popup-title {
  text-align: center;
  margin-bottom: 15px;
}
.size-popup .popup-title h2 {
  color: #141126;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.size-popup .popup-title p {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}
.size-popup .size-chart {
  text-align: center;
}
.size-popup .size-chart > img {
  max-width: 100%;
  margin-bottom: 33px;
}
.size-popup .size-chart table {
  max-width: 653px;
  margin: 0 auto;
}
.size-popup .size-chart table tr td {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid #C8C8C8;
  padding: 30px;
}
.size-popup .size-chart table tr td:first-child {
  font-size: 15px;
}

.shop-single-section.popup-quick-view {
  width: 1335px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow-y: auto;
  background: #fff;
  z-index: 99999;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  padding: 0;
}
.shop-single-section.popup-quick-view .cart-product-thumb-slider .cart-product-thumb {
  height: 120px;
}
.shop-single-section.popup-quick-view.active {
  opacity: 1;
  visibility: visible;
}
.shop-single-section.popup-quick-view .close-popup {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 99;
}
.shop-single-section.popup-quick-view .shop-product-single-info > h3 {
  margin-bottom: 5px;
}
.shop-single-section.popup-quick-view .shop-product-single-info .prod-ratings {
  margin-bottom: 4px;
}
.shop-single-section.popup-quick-view .shop-product-single-info .price {
  margin-bottom: 32px;
}
.shop-single-section.popup-quick-view .shop-product-single-info .product-size .size-list {
  margin-top: 10px;
}
.shop-single-section.popup-quick-view .shop-product-single-info .product-colors .colors-list {
  margin-top: 12px;
}
.shop-single-section.popup-quick-view .shop-product-single-info .size-colors {
  margin-bottom: 34px;
}
.shop-single-section.popup-quick-view .cart-items-add .theme-btn {
  margin-left: 30px;
}
.shop-single-section.popup-quick-view .cart-product-thumb-slider {
  margin-top: 44px;
}
.shop-single-section.popup-quick-view .shop-product-single-info .promo {
  margin-top: 30px;
}
.shop-single-section.popup-quick-view .cart-product-large-slider {
  height: 100%;
  top: 0;
}
.shop-single-section.popup-quick-view .cart-product-large-slider .slick-list,
.shop-single-section.popup-quick-view .cart-product-large-slider .slick-track {
  height: 100%;
}
.shop-single-section.popup-quick-view .cart-product-large-slider .cart-product-large-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.shop-single-section.popup-quick-view .cart-product-large-slider .cart-product-large-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.shop-single-section.popup-quick-view .shop-product-main-image {
  position: relative;
}
.shop-single-section.popup-quick-view .shop-product-main-image .pr-bar {
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 20px;
  text-transform: uppercase;
  color: #000;
  font-size: 9px;
  font-weight: 600;
  line-height: 14px;
  padding: 0 5px;
  border: 1px solid #B88669;
}
.shop-single-section.popup-quick-view .shop-product-single-info {
  position: relative;
}
.shop-single-section.popup-quick-view .shop-product-single {
  padding: 43px;
  position: relative;
}

.search-box {
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0;
  z-index: 99;
  background: #000;
  height: 100vh;
  padding: 60px 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.search-box.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.search-box .search-box-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-box .search-box-content form .input_field {
  position: relative;
}
.search-box .search-box-content form .input_field input {
  width: 1000px;
  height: 60px;
  border-radius: 60px;
  border: 1px solid #eaeaea;
  padding: 0 20px;
}
.search-box .search-box-content form .input_field button {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: transparent;
  border: 0;
  font-size: 22px;
}
.search-box .search-box-content form .input_field button img {
  background: #fff;
  width: 24px;
  height: 24px;
}
.search-box .search-box-content .close-search {
  margin-left: 30px;
}
.search-box .search-box-content .close-search img {
  width: 20px;
  height: 20px;
  background: #000;
}

/*==============================================
24. PRELOADER
==============================================*/
.js .loading::before,
.js .loading::after {
  content: "";
  position: fixed;
  z-index: 1000;
}

.js .loading::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
}

.js .loading::after {
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-radius: 50%;
  opacity: 0.4;
  background: var(--color-link);
  -webkit-animation: loaderAnim 0.7s linear infinite alternate forwards;
          animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@-webkit-keyframes loaderAnim {
  to {
    opacity: 1;
    -webkit-transform: scale3d(0.5, 0.5, 1);
            transform: scale3d(0.5, 0.5, 1);
  }
}

@keyframes loaderAnim {
  to {
    opacity: 1;
    -webkit-transform: scale3d(0.5, 0.5, 1);
            transform: scale3d(0.5, 0.5, 1);
  }
}
/*==============================================
25. SHOP SINGLE
==============================================*/
.shop-single-section {
  padding: 100px 0;
}
.shop-single-section .cart-product-thumb-slider .cart-product-thumb {
  height: auto;
}
.shop-single-section .cart-product-thumb-slider {
  margin-top: 15px;
}
.shop-single-section .cart-product-large-slider {
  position: relative;
  /* top: 33px; */
}
.shop-single-section .container-fluid {
  padding: 0 89px;
  max-width: 100%;
}
.shop-single-section .shop-product-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 102px 150px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 102px 150px rgba(0, 0, 0, 0.05);
  padding: 48px;
}
.shop-single-section .shop-product-main-image {
  max-width: 37.4935%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 37.4935%;
          flex: 0 0 37.4935%;
  /* background-color: #F1F1F1; */
  text-align: center;
}
.shop-single-section .shop-product-main-image  .cart-product-large-slider{
  background-color:transparent;
}

.shop-single-section .shop-product-single-info {
  max-width: 62%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 62%;
          flex: 0 0 62%;
  margin-left: auto;
  padding-left: 60px;
  padding-top: 38px;
}
.shop-single-section .shop-product-single-info > h3 {
  color: #000000;
  font-size: 38px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 3px;
  max-width: 600px;
}
.shop-single-section .shop-product-single-info .prod-ratings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 14px;
}
.shop-single-section .shop-product-single-info .prod-ratings .ratings li {
  display: inline-block;
}
.shop-single-section .shop-product-single-info .prod-ratings .ratings li i {
  color: #FFD500;
  font-size: 16px;
}
.shop-single-section .shop-product-single-info .prod-ratings > span {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  margin-left: 10px;
}
.shop-single-section .shop-product-single-info p {
  color: #3E3E3E;
  font-size: 14px;
  line-height: 25px;
  max-width: 680px;
  margin-bottom: 20px;
}
.shop-single-section .shop-product-single-info .price {
  margin-bottom: 40px;
}
.shop-single-section .shop-product-single-info .size-colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 53px;
}
.shop-single-section .shop-product-single-info .product-size > span,
.shop-single-section .shop-product-single-info .product-size > a {
  display: inline-block;
  color: #222222;
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  text-transform: uppercase;
}
.shop-single-section .shop-product-single-info .product-size > a {
  text-decoration: underline;
  margin-left: 32px;
}
.shop-single-section .shop-product-single-info .product-size .size-list {
  margin-top: 15px;
}
.shop-single-section .shop-product-single-info .product-size .size-list li {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #545454;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border: 1px solid #EFEFEF;
  text-transform: uppercase;
  margin-right: 5px;
}
.shop-single-section .shop-product-single-info .product-size .size-list li.active {
  border-color: var(--theme-color2);
  color: var(--theme-color2);
}
.shop-single-section .shop-product-single-info .product-size .size-list li:last-child {
  margin-right: 0;
}
.shop-single-section .shop-product-single-info .product-colors {
  padding-left: 56px;
}
.shop-single-section .shop-product-single-info .product-colors > span {
  display: inline-block;
  color: #222222;
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  text-transform: uppercase;
}
.shop-single-section .shop-product-single-info .product-colors .colors-list {
  margin-top: 15px;
}
.shop-single-section .shop-product-single-info .product-colors .colors-list li {
  display: inline-block;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
}
.shop-single-section .shop-product-single-info .product-colors .colors-list li:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 36px;
  height: 36px;
  border: 1px solid #B88669;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.shop-single-section .shop-product-single-info .product-colors .colors-list li:hover:before, .shop-single-section .shop-product-single-info .product-colors .colors-list li.active:before {
  opacity: 1;
  visibility: visible;
}
.shop-single-section .shop-product-single-info .product-colors .colors-list li:last-child {
  margin-right: 0;
}
.shop-single-section .shop-product-single-info .product-colors .colors-list li > span {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.shop-single-section .shop-product-single-info .product-colors .colors-list li > span.clr1 {
  background-color: #FF3C7C;
}
.shop-single-section .shop-product-single-info .product-colors .colors-list li > span.clr2 {
  background-color: #E74048;
}
.shop-single-section .shop-product-single-info .product-colors .colors-list li > span.clr3 {
  background-color: #F0CE16;
}
.shop-single-section .shop-product-single-info .product-colors .colors-list li > span.clr4 {
  background-color: #47D4F3;
}
.shop-single-section .shop-product-single-info .product-colors .colors-list li > span.clr5 {
  background-color: #276AEF;
}
.shop-single-section .shop-product-single-info .promo {
  margin-top: 40px;
  background-color: #F8EBE4;
  padding: 20px 41px 20px 20px;
  color: #3E3E3E;
  font-size: 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.shop-single-section .shop-product-single-info .promo > img {
  margin-right: 5px;
}

.themes-section {
  padding: 47px 0 62px;
}
.themes-section .container-fluid {
  max-width: 1570px;
  padding: 0 15px;
}
.themes-section .th-image img {
  width: 100%;
}
.themes-section .th-images {
  margin: 0 -6px;
  padding-right: 30px;
}
.themes-section .th-images .col-lg-6 {
  padding: 0 6px;
}
.themes-section .th-info > h2 {
  color: #000000;
  font-size: 38px;
  line-height: 50px;
  margin-bottom: 27px;
}
.themes-section .th-info > h2 span {
  display: inline-block;
  color: #B88669;
}
.themes-section .th-info p {
  color: #3E3E3E;
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 33px;
}
.themes-section .th-info .th-list {
  background: #F8F8F8;
  padding: 32px 23px 30px;
}
.themes-section .th-info .th-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #EAEAEA;
  padding: 20px 37px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.themes-section .th-info .th-list li:first-child {
  padding-top: 0;
}
.themes-section .th-info .th-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.themes-section .th-info .th-list li h4 {
  font-family: var(--text-font);
  color: #222222;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0;
}
.themes-section .th-info .th-list li > span {
  margin-left: auto;
  color: #B88669;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 500;
}

.images-section {
  padding: 81px 0 80px;
}
.images-section .container-fluid {
  max-width: 100%;
  padding: 0 16px;
}
.images-section .images-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px;
}
.images-section .images-sec .image-col {
  max-width: 20%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  padding: 0 5px;
}
.images-section .images-sec .image-col > img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reviews-section {
  padding: 80px 0 0;
}
.reviews-section .container-fluid {
  max-width: 1650px;
  padding: 0 15px;
}
.reviews-section .sec-title {
  max-width: 600px;
  margin-bottom: 73px;
}
.reviews-section .reviews-list {
  border-top: 1px solid #C4C4C4;
}
.reviews-section .reviews-list li {
  border-bottom: 1px solid #C4C4C4;
  padding: 80px 0;
}
.reviews-section .reviews-list li .reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1170px;
  margin: 0 auto;
}
.reviews-section .reviews-list li .reviews .review-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.reviews-section .reviews-list li .reviews .review-user .review-user-img {
  max-width: 130px;
}
.reviews-section .reviews-list li .reviews .review-user .review-user-img > img {
  border-radius: 50%;
}
.reviews-section .reviews-list li .reviews .review-user .review-user-info {
  padding-left: 45px;
}
.reviews-section .reviews-list li .reviews .review-user .review-user-info > h4 {
  color: #000000;
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  font-family: var(--text-font);
  margin-bottom: -2px;
}
.reviews-section .reviews-list li .reviews .review-user .review-user-info > span {
  display: block;
  color: #3E3E3E;
  font-size: 14px;
}
.reviews-section .reviews-list li .reviews .review-info {
  max-width: 550px;
  margin-left: auto;
}
.reviews-section .reviews-list li .reviews .review-info p {
  color: #3E3E3E;
  font-size: 14px;
  line-height: 25px;
  font-weight: 400;
  font-style: italic;
}

/*==============================================
26. SHOP
==============================================*/
.shop-categories-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 50px 0;
}
.shop-categories-section .shop-category {
  margin-right: 20px;
  border-radius: 10px;
  position: relative;
  /* height: 35px; */
}
.shop-categories-section .shop-category:last-child {
  margin-right: 0;
}
.shop-categories-section .shop-category:last-child img {
  border-radius: 60px 0 0 60px;
}
.shop-categories-section .shop-category:first-child img {
  border-radius: 0 60px 60px 0;
}
.shop-categories-section .shop-category > img {
  width: 100%;
  height: 100%;
  border-radius: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
.shop-categories-section .shop-category h3 {
  /* position: absolute; */
  position: relative;
  top: 0%;
  left: 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  transform: translateY(0%);
  margin-top: 10px;
}

.top-match-section.v2 {
  padding: 0;
  margin-bottom: 10px;
 
}
.top-match-section.v2.child-categories-section .shop-categories-section {
  padding: 0px 50px 10px;
  border-top: 0;
}
.categories-match-slider {
  overflow: hidden;
  position: relative;
}
.ml-0{
  margin-left: 0!important;
}
.vendor-list .top-match-section.v2 {
  border-bottom: 1px solid #b88669;
  padding-bottom: 30px;
  margin-bottom: 0;
}
.top-match-section.v2 .shop-categories-section {
  padding: 12px 0;
  border-top: 0;
}

.shop-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 15px;
}
.shop-header h4 {
  color: #000000;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.custom-tab-pane .collection-section {
  padding: 0;
  margin-top: 60px;
}

.custom-tab-pane.grid-view .product-categories.v2 .product-cat {
  max-width: calc(33.33% - 26px);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.33% - 26px);
          flex: 0 0 calc(33.33% - 26px);
}

.custom-tab-pane.grid-view .product-categories.v2 {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  
}

.switch {
  position: relative;
  display: inline-block;
  width: 37px;
  height: 18px;
  border: 1px solid #AFAFAF;
  border-radius: 50px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 2px;
  bottom: 2px;
  background-color: #afafaf;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #fff;
}

input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #2196F3;
          box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  left: -5px;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  transform: translateX(26px);
  background: var(--theme-color2);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.switcher {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 50px;
}
.switcher h4 {
  color: #000000;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 8px;
}

.shop-filters {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.shop-filters .tabs-icons {
  margin-right: 50px;
}
.shop-filters .tabs-icons li {
  display: inline-block;
  margin-right: 20px;
  font-size: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.shop-filters .tabs-icons li:hover, .shop-filters .tabs-icons li.current {
  color: var(--theme-color2);
}
.shop-filters .tabs-icons li:last-child {
  margin-right: 0;
}
.shop-filters .shop-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shop-filters .shop-ul li {
  display: inline-block;
  color: #000000;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--title-font);
  margin-right: 40px;
}
.shop-filters .shop-ul li:last-child {
  margin-right: 0;
}
.shop-filters .check-icon {
  display: inline-block;
  width: 19px;
  height: 19px;
  background: #AFAFAF;
  border-radius: 50%;
  line-height: 19px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  position: relative;
  top: -1px;
  margin-left: 4px;
}
.shop-filters select {
  background: transparent;
  border: 0;
  color: #000000;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--title-font);
  min-width: 55px;
}
.shop-filters .sort-by {
  margin-left: 60px;
}

.custom-tab-pane {
  display: none;
}
.custom-tab-pane.current {
  display: block;
}

.shop-page {
  margin-bottom: 90px;
}
.shop-page .container-fluid {
  max-width: 100%;
  padding: 0 33px;
}
.shop-page .product-categories.v2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 0;
  -ms-grid-columns: auto auto auto auto;
  grid-template-columns: auto auto auto auto;
}
.shop-page .product-categories.v2 .product-cat {
  max-width: calc(20% - 26px);
  margin: 0 13px;
  margin-bottom: 26px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  border: 1px solid #eaeaea;
}

.shop-page.v3 {
  padding-bottom: 54px;
  margin-bottom: 0;
}
.shop-page.v3 .container-fluid {
  padding: 0 15px;
}

.drop-menu {
  position: relative;
  width: 100%;
}
.drop-menu.active .check-icon i:before {
  content: "\f106";
}
.drop-menu .dropeddown {
  position: absolute;
  width: 150px;
  right: 0;
  margin-top: 1px;
  overflow: hidden;
  display: none;
  max-height: 144px;
  overflow-y: auto;
  z-index: 9999;
  background: #fff;
  padding: 0;
  list-style: none;
  border: 1px solid #d3d3db;
  top: 112%;
  padding: 15px 15px;
}
.drop-menu .dropeddown li {
  cursor: pointer;
  color: #242526;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.drop-menu .dropeddown li:hover {
  color: var(--theme-color2);
}
.drop-menu .dropeddown li:last-child {
  margin-bottom: 0;
}

.drop-menu .select {
  background: transparent;
  border: 0;
  color: #000000;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--title-font);
  min-width: 55px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.drop-menu .select > span:first-child {
  padding-right: 10px;
}

.cart-product-slider-column {
  position: relative;
}

.circle-container {
  width: 100%;
  position: absolute;
  top: 200px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.delay1 {
  -webkit-animation: waves 6s linear infinite;
          animation: waves 6s linear infinite;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.delay2 {
  -webkit-animation: waves 6s linear 1.5s forwards infinite;
          animation: waves 6s linear 1.5s forwards infinite;
}

.delay3 {
  -webkit-animation: waves 6s linear 3s forwards infinite;
          animation: waves 6s linear 3s forwards infinite;
}

.delay4 {
  -webkit-animation: waves 6s linear 4.5s forwards infinite;
          animation: waves 6s linear 4.5s forwards infinite;
}

.circle {
  display: block;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  background: #dedede;
  margin: 10px;
  -webkit-transition: 5s ease;
  transition: 5s ease;
  position: absolute;
  top: 128px;
}

@-webkit-keyframes waves {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(3);
            transform: scale(3);
    opacity: 0;
  }
}
.cart-product .cart-product-large-image > img {
  max-height: 820px;
  -o-object-fit: contain;
     object-fit: contain;
}

/*==============================================
27. TEAM
==============================================*/
.team-section-page {
  padding: 80px 0 90px;
  background-color: #F8F8F8;
}
.team-section-page .sec-title {
  margin-bottom: 55px;
}
.team-section-page .container {
  max-width: 100%;
  padding: 0 110px;
}
.team-section-page .teams {
  margin: 0 -5px;
}
.team-section-page .teams .col-lg-2 {
  max-width: 20%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  padding: 0 5px;
}
.team-section-page .teams .team-column .team-img-v2 {
  margin-bottom: 20px;
}
.team-section-page .teams .team-column .team-img-v2 > img {
  width: 100%;
}
.team-section-page .teams .team-column .team-info-v2 {
  text-align: center;
}
.team-section-page .teams .team-column .team-info-v2 h3 {
  color: #000000;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: -2px;
}
.team-section-page .teams .team-column .team-info-v2 span {
  display: block;
  color: #909090;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 400;
}

/*==============================================
28. TERMS
==============================================*/
.terms-banner {
  padding: 110px 0 20px;
}
.terms-banner .terms-content {
  text-align: center;
  max-width: 1060px;
  margin: 0 auto;
}
.terms-banner .terms-content .terms-img {
  margin-bottom: -50px;
}
.terms-banner .terms-content h2 {
  color: #000000;
  font-size: 70px;
  line-height: 90px;
  font-weight: 700;
  margin-bottom: 21px;
  text-transform: uppercase;
}
.terms-banner .terms-content p {
  color: #3E3E3E;
  font-size: 14px;
  line-height: 25px;
  max-width: 760px;
  margin: 0 auto;
}

.terms-conditions-section {
  padding: 100px 0;
}
.terms-conditions-section .terms-col {
  text-align: center;
  background: #FDFDFD;
  border: 1px solid rgba(199, 199, 199, 0.35);
  padding: 60px;
  margin-bottom: 30px;
}
.terms-conditions-section .terms-col .term-icon {
  height: 80px;
  margin-bottom: 37px;
}
.terms-conditions-section .terms-col h3 {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}
.terms-conditions-section .terms-col p {
  color: #3E3E3E;
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 30px;
}

/*==============================================
29. TESTIMONIAL
==============================================*/
.testimonial-section-v2 {
  padding: 100px 0;
}
body.about .testimonial-section-v2 {
  padding: 0px 0 100px;
}
.testimonial-section-v2 .container-full {
  padding: 0 30px;
}
.testimonial-section-v2 .container-full .col-lg-4 {
  padding: 0 15px;
}
.testimonial-section-v2 .testi-v2-slider {
  padding-bottom: 57px;
}
.testimonial-section-v2 .testi-v2-slider .slick-dots {
  bottom: 0;
}
.testimonial-section-v2 .testi2-slide {
  text-align: center;
  border: 1px solid #C7C7C7;
  padding: 64px 90px;
  position: relative;
}
.testimonial-section-v2 .testi2-slide:before {
  content: "";
  position: absolute;
  top: 42px;
  left: 62px;
  width: 112px;
  height: 86px;
  background-image: url(../images/quote.png);
  background-repeat: no-repeat;
}
.testimonial-section-v2 .testi2-slide p {
  color: #3E3E3E;
  font-size: 20px;
  line-height: 38px;
  font-style: italic;
  margin-bottom: 31px;
}
.testimonial-section-v2 .testi2-slide .testi2-info > img {
  border-radius: 100%;
  max-width: 87px;
  margin: 0 auto 15px;
  height: 87px;
  object-fit: cover;
}
.testimonial-section-v2 .testi2-slide .testi2-info h4 {
  color: #000000;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.testimonial-section.v2 {
  padding: 0 0 103px;
}
.testimonial-section.v2 .testimonial-slider {
  max-width: 1170px;
  border: 1px solid #C7C7C7;
  margin-bottom: 60px;
}
.testimonial-section.v2 .testimonial-slider .slick-dots {
  bottom: -75px;
}
.testimonial-section.v2 .testimonial-slider .testi-slide {
  padding: 82px 150px 44px;
}
.testimonial-section.v2 .testimonial-slider .testi-slide:before {
  top: 70px;
  left: 100px;
}
.testimonial-section.v2 .testimonial-slider .testi-slide p {
  color: #3E3E3E;
  font-size: 20px;
  line-height: 38px;
  font-weight: 400;
  margin-bottom: 49px;
}

.testimonials-v3 {
  padding: 55px 0 164px;
  background-image: url(https://placehold.co/715x820);
  background-repeat: no-repeat;
  background-position: left;
}
.testimonials-v3 .sec-title {
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 99px;
}
.testimonials-v3 .testimonial-content-v3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.testimonials-v3 .testimonial-slider-v3 {
  max-width: 1570px;
  margin-left: auto;
}
.testimonials-v3 .testimonial-slider-v3 .slick-slide {
  margin: 0 5px;
}
.testimonials-v3 .testimonial-slider-v3 .slick-list {
  margin: 0 -5px;
}
.testimonials-v3 .testimonial-slider-v3 .slick-dots {
  bottom: -62px;
}
.testimonials-v3 .testimonial-slider-v3 .testimonial-slide-v3 {
  width: 506px;
  background-color: #F8F8F8;
  padding: 112px 40px 82px;
  text-align: center;
  border: 1px solid transparent;
}
.testimonials-v3 .testimonial-slider-v3 .testimonial-slide-v3.slick-center {
  border-color: #B88669;
}
.testimonials-v3 .testimonial-slider-v3 .testimonial-slide-v3 p {
  color: #3E3E3E;
  font-size: 20px;
  line-height: 38px;
  margin-bottom: 27px;
  font-style: italic;
  position: relative;
}
.testimonials-v3 .testimonial-slider-v3 .testimonial-slide-v3 p:before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  background-image: url(../images/quote.png);
  background-repeat: no-repeat;
  width: 112px;
  height: 86px;
}
.testimonials-v3 .testimonial-slider-v3 .testimonial-slide-v3 h4 {
  font-family: var(--text-font);
  font-size: #000000;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.testimonial-section {
  padding: 130px 0 127px;
  background-color: #ffffff;
}
.testimonial-section .sec-title {
  margin-bottom: 119px;
}

.testimonial-slider {
  max-width: 840px;
  margin: 0 auto;
  padding: 15px;
}

.testi-slide {
  width: 100%;
  text-align: center;
  position: relative;
  padding-left: 10px;
  padding-top: 10px;
}
.testi-slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 5px;
  width: 112px;
  height: 86px;
  background-image: url(../images/icons/quotes.png);
  background-repeat: no-repeat;
}
.testi-slide p {
  color: #3E3E3E;
  font-size: 30px;
  line-height: 45px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 32px;
}
.testi-slide .testi-footer > img {
  border-radius: 50%;
  max-width: 103px;
  margin-bottom: 19px;
  display: inline-block;
}
.testi-slide .testi-footer h4 {
  color: #000000;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.team-column .inner-column {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.team-section-page .teams .team-column .team-img-v2 {
  height: 100%;
}
.team-section-page .teams .team-column .team-img-v2 > img {
  height: 500px;
  object-fit: cover;
  object-position: top;
}
.slick-dots {
  bottom: -2px;
  margin-left: -10px;
}

/*==============================================
30. TRENDING
==============================================*/
.trending-section-v2 {
  padding-bottom: 0;
  margin-bottom: -36px;
}
.trending-section-v2 .container {
  max-width: 1428px;
  padding: 0 15px;
}

.trending-slide {
  position: relative;
  padding-bottom: 140px;
}
.trending-slide .trending-img-v2 {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: scale(1) translateX(-50%);
          transform: scale(1) translateX(-50%);
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.trending-slide .trending-img-v2 .featured-hover {
  top: 40px;
  left: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.trending-slide .trending-img-v2 .featured-hover.v2 {
  left: 50%;
  top: 50px;
  margin-left: 30px;
}
.trending-slide .trending-img-v2 .featured-hover.v3 {
  left: 50%;
  top: 120px;
  margin-left: -40px;
}
.trending-slide .trending-img-v2 .featured-hover.v4 {
  right: 50px;
  left: auto;
  top: 25px;
}
.trending-slide .trending-img-v2 .featured-hover.v5 {
  top: 180px;
  left: auto;
  right: 100px;
}
.trending-slide .trending-img {
  position: relative;
}
.trending-slide .trending-img > img {
  width: 100%;
}
.trending-slide .trending-img .trending-caption-v2 {
  position: absolute;
  top: 54px;
  right: 35px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 20px 20px 41px 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 99;
}
.trending-slide .trending-img .trending-caption-v2 .trending-thumb {
  margin-bottom: 21px;
}
.trending-slide .trending-img .trending-caption-v2 .trending-thumb > img {
  width: 100%;
}
.trending-slide .trending-img .trending-caption-v2 h3 {
  color: #000000;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  font-family: var(--text-font);
}
.trending-slide .trending-img .trending-caption-v2 p {
  color: #000000;
  font-size: 15px;
  margin-bottom: 6px;
}
.trending-slide .trending-img .trending-caption-v2 .price {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.trending-slide .trending-img .trending-caption-v2 .price > span {
  color: #B88669;
  font-size: 22px;
  font-weight: 500;
}
.trending-slide .trending-img .trending-caption-v2 .price > span del {
  display: inline-block;
  color: #808080;
  font-size: 22px;
  margin-left: 15px;
}

.brand-section.v2 {
  padding-top: 0;
  padding-bottom: 100px;
}
.brand-section.v2 .container {
  max-width: 1230px;
}

.trending-section-v3 {
  padding: 96px 0;
}

.trending-section {
  padding: 100px 0;
}
.trending-section .container-fluid {
  max-width: 1776px;
}

.trending-products {
  position: relative;
}
.trending-products:hover .tp-title {
  z-index: -1;
}
.trending-products .tp-title {
  color: rgba(0, 0, 0, 0.1);
  font-size: 120px;
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9;
  margin-top: -60px;
}

.trending-product {
  position: relative;
  height: 428px;
}
.trending-product.center {
  height: 1000px;
}
.trending-product:hover {
  z-index: 99;
}
.trending-product:hover .trending-product-hover {
  opacity: 1;
  visibility: visible;
}
.trending-product:hover .trending-caption {
  opacity: 0;
  visibility: hidden;
}
.trending-product > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.trending-product .trending-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 80%;
  margin: 0 auto;
  padding: 16px 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.trending-product .trending-caption h3 {
  color: #222222;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 500;
  font-family: var(--text-font);
}
.trending-product .trending-product-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 999;
}
.trending-product .trending-product-hover .cart-product {
  display: inline-block;
  position: absolute;
  top: 30px;
  right: 30px;
  background: #B88669;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
}
.trending-product .trending-product-hover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(254, 254, 254, 0.95)), to(rgba(254, 254, 254, 0.95)));
  background: linear-gradient(0deg, rgba(254, 254, 254, 0.95), rgba(254, 254, 254, 0.95));
  z-index: -1;
}
.trending-product .trending-product-hover h3 {
  color: #000000;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: -2px;
}
.trending-product .trending-product-hover .price {
  color: #B88669;
  font-size: 15px;
  font-weight: 500;
  display: block;
  margin-top: 10px;
  margin-bottom: 22px;
}
.trending-product .trending-product-hover .pd-btns {
  width: 246px;
  margin: 0 auto;
}
.trending-product .trending-product-hover .pd-btns li {
  width: 100%;
  display: block;
  margin-bottom: 10px;
}
.trending-product .trending-product-hover .pd-btns li:last-child {
  margin-bottom: 0;
}
.trending-product .trending-product-hover .pd-btns li a {
  width: 100%;
  text-align: center;
  display: block;
  border: 1px solid #B88669;
  border-radius: 50px;
  color: #000000;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--title-font);
  height: 52px;
  line-height: 52px;
  position: relative;
  z-index: 1;
}
.trending-product .trending-product-hover .pd-btns li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(27.92%, #C98663), color-stop(109.42%, #B88689));
  background: linear-gradient(90deg, #C98663 27.92%, #B88689 109.42%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  border-radius: 50px;
  z-index: -1;
}
.trending-product .trending-product-hover .pd-btns li a:hover {
  border-color: transparent;
  color: #fff;
}
.trending-product .trending-product-hover .pd-btns li a:hover:before {
  opacity: 1;
  visibility: visible;
}

/*==============================================
31. VIDEO
==============================================*/
.video-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -40px;
}
.video-intro #video1 {
  width: 80%;
  height: 576px;
}

video::-webkit-media-controls {
  display: none;
}

.intro-video {
  border: 1px solid #C7C7C7;
  padding: 20px;
}
.intro-video > img {
  width: 100%;
}

.intro-section-v2 {
  padding: 81px 0 60px;
}
.intro-section-v2 .intro-video {
  position: relative;
}
.intro-section-v2 .intro-video .play-button {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.intro-section {
  background: rgba(247, 231, 222, 0.81);
  padding: 120px 0;
}
.intro-section .sec-title {
  margin-bottom: 71px;
}

.video-sec {
  position: relative;
}
.video-sec > img {
  width: 100%;
}
.video-sec .play-btn {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  border: 5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%) matrix(1, 0, 0, -1, 0, 0);
          transform: translate(-50%, -50%) matrix(1, 0, 0, -1, 0, 0);
  text-align: center;
  line-height: 55px;
}
.video-sec .play-btn img {
  opacity: 0.5;
}

.index4_main header {
  background-color: rgb(255, 255, 255);
}
.index4_main header .menu-other-links li a img {
  -webkit-filter: invert(100%);
          filter: invert(100%);
}
.index4_main header .menu-btn > span {
  background-color: black;
}
.index4_main .i4_banner_slider_wrapper .main-slider-large .main-slider-slide .slides_content {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
.index4_main .i4_banner_slider_wrapper .main-slider-large .main-slider-slide .slides_content span {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--title-font);
  padding: 0 25px;
  margin-bottom: 11px;
  background: rgba(184, 134, 105, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.index4_main .i4_banner_slider_wrapper .main-slider-large .main-slider-slide .slides_content h2 {
  color: var(--theme-color1);
  text-align: center;
  font-size: 55px;
  font-weight: 800;
  line-height: 80px;
  text-transform: uppercase;
}
.index4_main .i4_banner_slider_wrapper .main-slider-large .main-slider-slide .slides_content p {
  color: var(--theme-color1);
  text-align: center;
  font-family: var(--text-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}
.index4_main .i4_banner_slider_wrapper .main-slider-large .main-slider-slide .slides_content .theme-btn {
  margin-top: 33px;
}
.index4_main .i4_category_wrapper {
  padding-top: 100px;
}
.index4_main .i4_marquee_wrapper {
  padding: 100px 0 180px;
}
.index4_main .i4_marquee_wrapper .marquee2 {
  margin-top: 0px;
}
.index4_main .s_lift_wrapper {
  position: relative;
  padding: 0 0 100px;
}
.index4_main .s_lift_wrapper .s_lift_container .s_lift_row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.index4_main .s_lift_wrapper .s_lift_container .s_lift_row .right_content {
  max-width: 550px;
}
.index4_main .top_furniture_wrapper {
  position: relative;
  padding: 100px 0 180px;
  background-color: #fdf8f3;
}
.index4_main .top_furniture_wrapper .sec-title {
  position: relative;
  z-index: 6;
  margin: -16px auto 140px;
}
.index4_main .top_furniture_wrapper .top-furniture-swiper-container .swiper-slide {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.index4_main .top_furniture_wrapper .top-furniture-swiper-container .swiper-slide .top_furniture_item .item_img {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}
.index4_main .top_furniture_wrapper .top-furniture-swiper-container .swiper-slide .top_furniture_item .item_img .circle-container {
  top: 5%;
  left: 0 !important;
}
.index4_main .top_furniture_wrapper .top-furniture-swiper-container .swiper-slide .top_furniture_item .item_img > img {
  position: relative;
  z-index: 5;
}
.index4_main .top_furniture_wrapper .top-furniture-swiper-container .swiper-slide .top_furniture_item .item_detail {
  text-align: center;
}
.index4_main .top_furniture_wrapper .top-furniture-swiper-container .swiper-slide .top_furniture_item .item_detail h3 {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--text-font);
}
.index4_main .top_furniture_wrapper .top-furniture-swiper-container .swiper-slide .top_furniture_item .item_detail h6 {
  font-family: var(--text-font);
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: var(--theme-color2);
  margin: 6px 0 20px;
}
.index4_main .top_furniture_wrapper .top-furniture-swiper-container .swiper-slide.swiper-slide-active {
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
  opacity: 1 !important;
}
.index4_main .top_furniture_wrapper .top-furniture-swiper-container .swiper-pagination {
  bottom: 90px;
}
.index4_main .top_furniture_wrapper .top-furniture-swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--theme-color2);
}
.index4_main .i4_vedio_wrapper .video-intro #i4_video {
  width: 100%;
  height: 573px;
}
.index4_main .i4_new_collection_wrapper .product-categories.v2.without-slide {
  max-width: 1150px;
  margin: 0 auto;
}
.index4_main .i4_new_collection_wrapper .product-categories.v2.without-slide .col-lg-2 {
  max-width: 33.3333333333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
  margin-bottom: 30px;
}
.index4_main .i4_testimonial_wrapper {
  position: relative;
  background-color: #fdf8f3;
  padding: 100px 0 200px;
}
.index4_main .i4_testimonial_wrapper .i4_testimonial_container .swiper-wrapper .swiper-slide {
  opacity: 0.5;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.index4_main .i4_testimonial_wrapper .i4_testimonial_container .swiper-wrapper .swiper-slide .testi_item {
  position: relative;
  background-color: #ffffff;
  min-height: 516px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 50px;
}
.index4_main .i4_testimonial_wrapper .i4_testimonial_container .swiper-wrapper .swiper-slide .testi_item .item_img {
  width: 103px;
  height: 103px;
  border-radius: 50%;
  overflow: hidden;
}
.index4_main .i4_testimonial_wrapper .i4_testimonial_container .swiper-wrapper .swiper-slide .testi_item .item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.index4_main .i4_testimonial_wrapper .i4_testimonial_container .swiper-wrapper .swiper-slide .testi_item h4.name {
  color: #000;
  text-align: center;
  font-size: 13px;
  font-weight: var(--h4-font-weight);
  text-transform: uppercase;
  margin: 15px 0;
}
.index4_main .i4_testimonial_wrapper .i4_testimonial_container .swiper-wrapper .swiper-slide .testi_item .para p {
  color: #3e3e3e;
  text-align: center;
  font-family: var(--text-font);
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  line-height: 45px;
  max-width: 606px;
  margin: 0 auto;
}
.index4_main .i4_testimonial_wrapper .i4_testimonial_container .swiper-wrapper .swiper-slide .testi_item .item_rating {
  margin-top: 22px;
}
.index4_main .i4_testimonial_wrapper .i4_testimonial_container .swiper-wrapper .swiper-slide .testi_item::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 16%;
  width: 76px;
  height: 58px;
  background-image: url("../images/quote.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.index4_main .i4_testimonial_wrapper .i4_testimonial_container .swiper-wrapper .swiper-slide-active {
  opacity: 1;
}
.index4_main .i4_testimonial_wrapper .i4_testimonial_container .swiper-pagination {
  bottom: 100px;
}
.index4_main .i4_testimonial_wrapper .i4_testimonial_container .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--theme-color2);
}
.index4_main .i4_marquee_wrapper2 {
  border: none !important;
}
.index4_main .new_collection_drag {
  padding-top: 0 !important;
}
.index4_main .i4_video_slider_wrapper {
  position: relative;
  background-color: #f0f0f0;
}
.index4_main .i4_video_slider_wrapper .i4_video_slider_container .i4_video_slider_row {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.index4_main .i4_video_slider_wrapper .i4_video_slider_container .i4_video_slider_row .left_content p {
  margin-top: 11px;
}
.index4_main .i4_video_slider_wrapper .i4_video_slider_container .i4_video_slider_row .left_content .i4_video_slider_container {
  margin-top: 45px;
  max-width: 582px;
}
.index4_main .i4_video_slider_wrapper .i4_video_slider_container .i4_video_slider_row .left_content .i4_video_slider_container .v_slider .v_slide .s_video {
  position: relative;
  z-index: 1;
  width: 100%;
}
.index4_main .i4_video_slider_wrapper .i4_video_slider_container .i4_video_slider_row .left_content .i4_video_slider_container .v_slider .v_slide .custom-button {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: transparent;
}
.index4_main .i4_video_slider_wrapper .i4_video_slider_container .i4_video_slider_row .left_content .i4_video_slider_container .v_slider .v_slide .playing {
  opacity: 0;
}
.index4_main .i4_video_slider_wrapper .i4_video_slider_container .i4_video_slider_row .left_content .i4_video_slider_container .v_slider ul.slick-dots {
  bottom: -45px;
  left: 10px;
  text-align: left;
}
.index4_main .i4_video_slider_wrapper .i4_video_slider_container .i4_video_slider_row .left_content .i4_video_slider_container .v_slider ul.slick-dots li {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.index4_main .i4_video_slider_wrapper .i4_video_slider_container .i4_video_slider_row .left_content .i4_video_slider_container .v_slider ul.slick-dots li button {
  width: 77px;
  height: 4px;
  border-radius: 50px;
}
.index4_main .i4_video_slider_wrapper .i4_video_slider_container .i4_video_slider_row .left_content .i4_video_slider_container .v_slider ul.slick-dots li.slick-active {
  background-color: #b88669;
}

.index5_main header {
  background-color: rgba(0, 0, 0, 0);
}
.index5_main header .menu-other-links li a img {
  -webkit-filter: invert(100%);
          filter: invert(100%);
}
.index5_main header .menu-btn > span {
  background-color: black;
}
.index5_main .i5_banner_main_wrapper {
  position: relative;
  padding: 230px 0 170px;
  /* background-image: url("../images/home/i5_banner_bg.jpg"); */
  background-size: cover;
  background-position: center;
}
.index5_main .i5_banner_main_wrapper .verticalslider .vrt_slides {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
.index5_main .i5_banner_main_wrapper .verticalslider .vrt_slides .slides_content {
  text-align:left;
}
.index5_main .i5_banner_main_wrapper .verticalslider .vrt_slides .slides_content h2 {
  color: #000;
  text-align: right;
  font-family: var(--title-font);
  font-size: 52px;
  font-style: normal;
  font-weight: 900;
  line-height: 60px;
  text-transform: uppercase;
  max-width: 800px;
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  opacity: 0;
  -webkit-transform: translateX(-70px);
          transform: translateX(-70px);
}
.index5_main .i5_banner_main_wrapper .verticalslider .vrt_slides .slides_content a {
  margin-top: 15px;
}
.index5_main .i5_banner_main_wrapper .verticalslider .vrt_slides .slides_img img {
  opacity: 0;
  -webkit-transition: 0.8s linear;
  transition: 0.8s linear;
}
.index5_main .i5_banner_main_wrapper .verticalslider .vrt_slides.slick-active .slides_content h2 {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  opacity: 1;
}
.index5_main .i5_banner_main_wrapper .verticalslider .vrt_slides.slick-active .slides_img img {
  opacity: 1;
}
.index5_main .i5_banner_main_wrapper .verticalslider ul.slick-dots {
  top: 25%;
  max-width: 20px;
}
.index5_main .i5_banner_main_wrapper .verticalslider ul.slick-dots li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 7px 0;
}
.index5_main .i5_banner_main_wrapper .verticalslider ul.slick-dots li button {
  width: 6px;
  height: 40px;
  border-radius: 80px;
}
.index5_main .i5_s_lift_wrapper {
  position: relative;
  padding: 10px 0 80px;
}
.index5_main .i5_s_lift_wrapper .container .s_lift_container .s_lift_row .left_img {
  position: relative;
}
.index5_main .i5_s_lift_wrapper .container .s_lift_container .s_lift_row .left_img > img {
  position: relative;
  z-index: 5;
}
.index5_main .i5_s_lift_wrapper .container .s_lift_container .s_lift_row .left_img .circle-container {
  z-index: 1;
  top: 150px;
  left: -75px;
}
.index5_main .i5_s_lift_wrapper .container .s_lift_container .s_lift_row .left_img .circle-container .circle {
  height: 250px;
  width: 250px;
}
.index5_main .i5_s_lift_wrapper .container .s_lift_container .s_lift_row .right_content {
  margin-left: 0;
  max-width: 464px;
}
.index5_main .i5_s_lift_wrapper .container .s_lift_container .s_lift_row .right_content .cart-product-info .price > span {
  font-size: 40px;
}
.index5_main .i5_s_lift_wrapper .container .s_lift_container .s_lift_row .right_content .cart-product-info .cart-items-add a.theme-btn {
  margin-left: 0;
}
.index5_main .i5_new_arr_wrapper {
  position: relative;
  padding: 90px 0 20px;
  margin: 0;
}
.index5_main .i5_new_arr_wrapper .container-fluid {
  max-width: 1520px;
}
.index5_main .i5_new_arr_wrapper .container-fluid .row .arriavls-items-column .sec-title {
  text-align: left;
  margin: 0 0 65px;
}
.index5_main .i5_new_arr_wrapper .container-fluid .row .arriavls-items-column .sec-title h2 {
  text-align: left;
}
.index5_main .i5_new_arr_wrapper .container-fluid .row .arriavls-items-column .acc-slideri5 .product-cat {
  border: 1px solid #eaeaea;
}
.index5_main .i5_new_arr_wrapper .container-fluid .row .arriavls-items-column .acc-slideri5 .product-cat .product-hover-info .product-hover-head .fvrt-product {
  display: -ms-grid;
  display: grid;
  place-items: center;
}
.index5_main .i5_new_arr_wrapper .container-fluid .row .arriavls-items-column .acc-slideri5 .product-cat .product-hover-info .product-hover-head .fvrt-product img {
  width: 20px;
}
.index5_main .i5_new_arr_wrapper .container-fluid .row .arriavls-items-column .acc-slideri5 .product-cat .product-img img {
  min-height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
.index5_main .i5_new_arr_wrapper .container-fluid .row .arriavls-items-column .acc-slideri5 .slick-prev {
  left: auto;
  right: 60px;
  top: -100px;
}
.index5_main .i5_new_arr_wrapper .container-fluid .row .arriavls-items-column .acc-slideri5 .slick-next {
  top: -100px;
}
.index5_main .i5_s_lift2_wrapper .container .s_lift_container .s_lift_row .left_img .circle-container {
  top: 110px;
  left: 17px;
}
.index5_main .i5_custom_image_gallery_wrapper {
  position: relative;
  padding: 100px 0 30px;
}
.index5_main .i5_custom_image_gallery_wrapper .custom_img_gall_row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.index5_main .i5_custom_image_gallery_wrapper .custom_img_gall_row .left_image_content .gallery .main-image img {
  width: 100%;
  height: 100%;
  max-height: 567px;
}
.index5_main .i5_custom_image_gallery_wrapper .custom_img_gall_row .left_image_content .gallery .myp {
  padding: 8px;
}
.index5_main .i5_custom_image_gallery_wrapper .custom_img_gall_row .right_content {
  max-width: 100%;
  margin-top: 0;
  padding-left: 40px;
}
.index5_main .i5_prod_section .container-fluid .row .full_prod {
  margin-top: 22px;
}
.index5_main .i5_n_c_wrapper .product-categories .product-cat .product-img > img {
  height: 330px;
  -o-object-fit: contain;
     object-fit: contain;
}
.index5_main .i5_marquee_wrapper {
  padding: 100px 0 200px;
  border: 0;
  margin: 0;
}
.index5_main .i5_marquee_wrapper .marquee2 {
  margin-top: 0;
  top: 0;
}
.index5_main .i5_marquee_wrapper .marquee2 h2 span {
  color: #685656;
  position: relative;
  top: 8px;
  margin: 0 30px;
}
.index5_main .i5_video_review_wrapper {
  position: relative;
  padding: 120px 0;
  background: #fdf8f3;
}
.index5_main .i5_video_review_wrapper .container-fluid .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.index5_main .i5_video_review_wrapper .container-fluid .row .sec-title {
  text-align: left;
  max-width: 382px;
  margin: -16px auto 89px;
}
.index5_main .i5_video_review_wrapper .container-fluid .row .i5_video_review_slider_container .v_slider {
  position: static;
}
.index5_main .i5_video_review_wrapper .container-fluid .row .i5_video_review_slider_container .v_slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.index5_main .i5_video_review_wrapper .container-fluid .row .i5_video_review_slider_container .v_slider .slick-track .v_slide {
  position: relative;
  background: #fff;
}
.index5_main .i5_video_review_wrapper .container-fluid .row .i5_video_review_slider_container .v_slider .slick-track .v_slide .vr_video {
  position: relative;
}
.index5_main .i5_video_review_wrapper .container-fluid .row .i5_video_review_slider_container .v_slider .slick-track .v_slide .vr_video .s_video {
  width: 100%;
}
.index5_main .i5_video_review_wrapper .container-fluid .row .i5_video_review_slider_container .v_slider .slick-track .v_slide .vr_video .custom-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: transparent;
  display: none;
}
.index5_main .i5_video_review_wrapper .container-fluid .row .i5_video_review_slider_container .v_slider .slick-track .v_slide .vr_content {
  position: relative;
  padding: 40px 20px 40px 30px;
}
.index5_main .i5_video_review_wrapper .container-fluid .row .i5_video_review_slider_container .v_slider .slick-track .v_slide .vr_content p {
  color: #707070;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 32px;
}
.index5_main .i5_video_review_wrapper .container-fluid .row .i5_video_review_slider_container .v_slider .slick-track .v_slide .vr_content h3 {
  color: #000;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin-top: 11px;
}
.index5_main .i5_video_review_wrapper .container-fluid .row .i5_video_review_slider_container .v_slider .slick-prev {
  right: unset;
  left: 112px;
  bottom: 35%;
}
.index5_main .i5_video_review_wrapper .container-fluid .row .i5_video_review_slider_container .v_slider .slick-next {
  right: unset;
  left: 220px;
  bottom: 35%;
}
.index5_main .brand_sec .container-fluid {
  max-width: 100%;
  padding: 0;
}
.index5_main .brand_sec .container-fluid .brands .brand-col {
  padding: 21px 95px 26px;
}
.index5_main .s_lift_bottom_wrapper {
  position: relative;
  padding: 110px 0 190px;
}
.index5_main .s_lift_bottom_wrapper .container-fluid {
  max-width: 100%;
  padding: 0;
}
.index5_main .s_lift_bottom_wrapper .container-fluid .s_lift_container .s_lift_row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.index5_main .s_lift_bottom_wrapper .container-fluid .s_lift_container .s_lift_row .left_img {
  position: relative;
}
.index5_main .s_lift_bottom_wrapper .container-fluid .s_lift_container .s_lift_row .left_img img.mac_mon {
  position: absolute;
  left: 7%;
  bottom: -65px;
}
.index5_main .s_lift_bottom_wrapper .container-fluid .s_lift_container .s_lift_row .left_img img.mac_mon_resp {
  display: none;
}
.index5_main .s_lift_bottom_wrapper .container-fluid .s_lift_container .s_lift_row .right_content {
  max-width: 100%;
  margin-top: 0;
}
.index5_main .s_lift_bottom_wrapper .container-fluid .s_lift_container .s_lift_row .right_content .cart-product-info {
  margin-left: 100px;
}
.shop-headright {
  margin-top: 60px;
  margin-bottom: 20px;
}
.vendor-item {
  border: 1px solid #B88669;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  overflow: hidden;
  margin-bottom: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.vendor-name {
  color: #B88669;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
.vendor-detail {
  padding-left: 10px;
  padding-right: 10px;
}
.vendor-detail p {
  font-size: 14px;
  line-height: 20px;
  color: #424242;
  padding-bottom: 0px;
}
.vendor-brands {
  background: #f1f1f1;
  color: #424242;
  padding: 5px 10px;
  margin-top: 15px;
}
.vendor-brands span {
  font-weight: bold;
  color: #B88669;
}
.price-filter.dropdown {
  width: 200px;
  border-radius: 4px;
  height: 45px;
  background-color: #f5f5f5;
  border: 1px solid #B88669;
}
.contact-form-section{
  border-bottom: 1px solid #B88669;
  padding-bottom: 50px;
}
.price-filter.dropdown select {
  width: 100%;
  color: #424242;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  padding: 10px;
  height: 40px;
  background-color: transparent;
}
.product-top-section select.filter-dropdown {
  width: 45%;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23F3F3F3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: 95% 13px;
  background-repeat: no-repeat;
  appearance: none;
  background-size: 20px;
}
.pt-logo img {
  width: 100px;
  height: auto;
  margin: 0 auto;
}
.product-list-main img{
  object-fit: contain!important;
}
/**************cart-popup*************/
.cart-container h2 {
  text-align: left;
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 38px;
}
.cart-container a.close-popup {
  position: absolute;
  right: 25px;
  top: 25px;
}
.cart-container .cart-items {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}
.cart-container .cart-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  width: 100%;
}
.cart-container .cart-item img {
  width: 80px;
  border-radius: 5px;
  margin-right: 15px;
}
.cart-container .item-details h3 {
  margin: 0;
  font-size: 16px;
  padding-right: 10px;
  width: 70%;
}
.cart-container .cart-summary {
  text-align: center;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}
.cart-container .cart-item:nth-last-child(1){
  border-bottom: 0;
}
.cart-container .item-details p, .cart-summary  p{
  font-size: 18px;
  font-weight: bold;
  color: #000; 
}
.cart-container .item-details p{
  font-size: 16px;
}

.cart-container .checkout-btn {
  background: linear-gradient(135deg, #C98663 0%, #BA8684 100%);
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
}
.cart-container .checkout-btn:hover {
  background: darkred;
}
.cart-container .continue-shopping {
  display: block;
  margin-top: 10px;
  color: #C98663;
  text-decoration: none;
}
.cart-container .continue-shopping:hover {
  text-decoration: underline;
}
.cart-popup{
  width: 100%;
  /* background-color: #000000a3; */
  transform: translateX(100%);
  transition: 0.5s;
  position: absolute;
  right: 0;
  height:100vh;
  top: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}
.cart-popup.active{
  transform: translateX(0%);
  transition: 0.5s;
  opacity: 1;
  visibility:visible;
}
.cart-popup-detail {
  position: absolute;
  right: 0;
  width: 30%;
  padding: 75px 35px;
  background-color: #fff;
  height:100vh;
  top: 0;
  z-index: 999;
  margin-top: 0;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  border-radius: 0;
}
.cart-popup.active .cart-popup-detail{
  transform: translateX(0%);
  transition: 0.5s;
  opacity: 1;
  visibility: visible;
}
.item-details{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.mobile-next-pre{
  display: none!important;
}
.mobile-product-img{
  display: none;
}
.relative.my-cart-bottom {
  position: relative;
}
.view-cart-mobile{
  display: none;
}
img#category-image {
  height: 585px;
  object-fit: contain;
  object-position: top;
}
.cart-input {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cart-input input{
  border: 1px solid #dee2e6;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
}
.cart-form {
  margin-top: 40px;
}
.full-screen-preview.build-pc .page-wrapper{
  overflow: hidden;
}
.tab-content .product-top-section {
  align-items: center;
}
.product-top-section select.filter-dropdown {
  padding-top: 10px;
  padding-bottom: 10px;
}
.my-cart-bottom .cart-item-details h3, .my-cart-bottom .cart-item-details p{
  display: none;
}
.my-cart-bottom .cart-item {
    flex-direction: column;
}
.my-cart-bottom .cart-item h2{
  color: white;
}
.my-cart-bottom  .remove-item{
   display: none;
}
.cart-popup-detail div#cart-items {
  flex-direction: column;
  width: 100%;
  gap: 10px!important;
}
.cart-popup-detail div#cart-items .cart-item {
  border: 0!important;
  padding-bottom: 5px!important;
  padding-top: 0!important;
}
.cart-popup-detail div#cart-items .cart-item img{
   display: none;
}
.cart-item-details {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 0px;
  align-items: center;
}
.cart-popup-detail  .remove-item {
  background: #000;
  border-radius: 100%;
  width: 33px;
  height: 30px;
  color: #fff;
}
.cart-popup-detail .item-details {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  width: 100%;
  height: 365px;
  overflow-x: hidden;
}

.cart-popup-detail .item-details::-webkit-scrollbar {
  width: 2px;
} 
/* Track */
.cart-popup-detail .item-details::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
/* Handle */
.cart-popup-detail .item-details::-webkit-scrollbar-thumb {
  background: #B88669; 
  border-radius: 10px;
}
/* Handle on hover */
.cart-popup-detail .item-details::-webkit-scrollbar-thumb:hover {
  background: #B88669; 
}
.categories-match-slider.child-category-detail .shop-categories-section{
  border-bottom: 0;
}
.categories-match-slider.child-category-detail.active .shop-categories-section{
  border-bottom: 1px solid #C7C7C7;
}
.shop-product-single h3.mobile-title{
  display: none;
}
.search-results-container {
  position: absolute;
  background: #fff;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  z-index: 1000;
}
.search-results-container .product-cat {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #eee;
}
.search-results-container .product-img img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 10px;
}
.search-results-container .product-hover-info h3 {
  font-size: 14px;
  margin: 0;
}
.search-results-container .product-price {
  font-size: 14px;
}
div#searchResults {
  margin-top: 19px;
  padding: 0 16%;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
div#searchResults h3 {
  color: #fff;
  font-size: 22px;
  line-height: 22px;
}
div#searchResults h3 a{
  transition: 0.5s;
}
div#searchResults h3 a:hover{
  color: #C98663;
  transition: 0.5s;
}
div#searchResults .product-cat {
  margin-bottom: 15px;
}
#tab-nav li.tab-link.current {
  background-color: white;
}
#tab-nav li.tab-link.current a{
  color: #C98663;
}
.build-pc-left h2{
  padding-left: 20px!important;
}
@media only screen and (max-width: 1700px) {
  .popup.coming-soon-popup {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1600px) {
  .shop-page .container-fluid {
    padding: 0 15px;
  }
  .shop-page .product-categories.v2 .product-cat {
    padding: 40px 15px 30px 15px;
  }
  .testimonials-v3 .testimonial-slider-v3 {
    max-width: 100%;
    padding: 0 30px;
  }
  .card-product-content-v2 .card-product-thumb-slider {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .card-product-content-v2 .card-product-thumb-slider .cart-product-slider {
    margin-right: 0;
  }
  .product-top-section select.filter-dropdown {
    width: 50%;
  }
  .product-top-section{
    gap: 10px!important;
  }
  .tab-content .product-top-section {
    padding-right: 0;
  }  
  .max-w-\[450px\] {
    max-width: 250px!important;
  }
  .w-\[450px\] {
    width: 250px!important;
  }
  img#category-image {
    height: 440px;
  }
  .product-list-main {
    height: 370px;
  }
  .tab-link a {
    font-size: 14px;
    line-height: 16px;
  }
  .build-pc-left h2{
    margin-bottom: 10px!important;
  }
}
@media only screen and (max-width: 1500px) {
  .blog-page-section .today-articles {
    padding: 50px;
  }
  .blog-page-section .newsletter {
    padding: 63px 50px 80px;
  }
  .blog-posts-section-v3 .blog-posts-v3 .blog-posts-left-content {
    padding: 0 50px;
  }
  .blog-page-section .trending-posts {
    padding: 63px 50px;
  }
  .product_image {
    max-width: 50%;
  }
  .page-content .text-column h2 {
    font-size: 50px;
    line-height: 60px;
  }
  .page-content .text-para p {
    padding: 0;
  }
  .page-content .title-column h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .popup {
    width: calc(100% - 50px);
  }
  .popup .popup-content .popup-title h2 {
    color: #000000;
    font-size: 26px;
    line-height: 34px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.theme-btn {
  padding: 0 15px;
}
  
}
@media only screen and (max-width: 1366px) {
  .page-banner .page-banner-content {
    padding-top: 80px;
  }
  .main-slider-thumb {
    padding: 0 50px;
  }
  .page-banner .page-banner-content .page-title {
    font-size: 60px;
  }
  .shop-page .product-categories.v2 .product-info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .shop-page .product-categories.v2 .product-info .product-price {
    margin-left: 0;
    margin-top: 5px;
  }
  .product-categories.v2 .product-cat .product-hover-info .product-info-hover .pro-buttons li .theme-btn {
    padding: 0 10px;
  }
  .cart-section.v3 .cart-product-content {
    max-width: 40%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  }
  .cart-product-slider-column {
    max-width: 50%;
  }
  .testimonials-v3 .sec-title {
    margin-right: auto;
  }
  .products-slider-section.v3 .product-slider .product-slide .product-card {
    left: 0;
  }
  .products-slider-section.v3 {
    padding: 170px 0 120px;
  }
  .shop-single-section .shop-product-single {
    display: block;
  }
  .shop-single-section .shop-product-single-info {
    max-width: 100%;
    padding-left: 0;
  }
  .shop-single-section .cart-product-large-slider {
    top: 0;
  }
  .page-content .container-fluid {
    padding: 0 50px;
  }
  .team-section-page .container {
    padding: 0 50px;
  }
  .lg-popup .lg-content .lg-content-inner {
    max-width: 100%;
    padding-right: 100px;
    margin: unset;
  }
  .about-content-v2 > h2 {
    font-size: 42px;
  }
  .shop-single-section.popup-quick-view {
    width: 100%;
  }
  .shop-single-section.popup-quick-view .shop-product-single-info {
    max-width: calc(100% - 450px);
  }
  .shop-single-section.popup-quick-view .shop-product-single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .shop-filters .shop-ul li {
    margin-right: 20px;
  }
  .shop-filters .sort-by {
    margin-left: 30px;
  }
  .shop-header {
    padding: 0;
  }
  .shop-single-section .shop-product-single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .shop-single-section .shop-product-single-info {
    max-width: calc(100% - 420px);
  }
  .cart-items-add .theme-btn {
    padding: 0 25px;
    margin-left: 25px;
  }
  .blog-posts-section-v3 .blog-posts-v3 .blog-posts-right-sidebar .blog-add .blog-add-info {
    bottom: 20px;
  }
  .testimonial-section-v2 .testi2-slide {
    padding: 60px 50px;
  }
  .card-product-content-v2 {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .lg-popup {
    width: 100%;
  }
  .lg-popup .lg-content .lg-content-inner {
    padding: 0 30px;
  }
  .collection-section.v2 .product-categories.v2.without-slide .col-lg-2 {
    max-width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
  .popup.subscribe-popup {
    min-width: 90%;
  }
  .popup.coming-soon-popup .popup-content .popup-title h2 {
    font-size: 42px;
    line-height: 50px;
  }
  .time-counter ul h3 {
    font-size: 36px;
  }
  .time-counter ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cart-popup-detail {
    width: 45%;
  } 
}
@media only screen and (max-width: 1200px) {
  .blog-posts .post {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 0 15px;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .blog-posts {
    margin: 0 -15px;
  }
  .full-button {
    margin-top: 30px;
  }
  .pt-logos .pt-logo > img {
    padding: 0 10px;
  }
  .cart-product .cart-product-large-slider {
    left: -100px;
  }
  .circle-container {
    left: -100px;
  }
  .cart-product .cart-product-content {
    max-width: 450px;
    position: absolute;
    top: 0;
    right: 0;
    padding-right: 50px;
  }
  .cart-product-thumb-slider .cart-product-thumb {
    height: auto;
  }
  .about-text {
    margin-bottom: 50px;
  }
  .lookbook-section .lookboo-glance .pb-text {
    font-size: 100px;
  }
  .product-slider .product-slide .product-card {
    left: 30px;
    top: 30px;
  }
  .trending-products .tp-title {
    font-size: 60px;
    margin-top: -30px;
  }
  .video-intro {
    margin-top: -70px;
  }
  .product-slider .product-slide > img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-slider .product-slide {
    height: 750px;
  }
  .sec-title h2 {
    line-height: 46px;
  }
  .terms-banner .terms-content h2 {
    font-size: 60px;
  }
  .terms-conditions-section {
    padding: 70px 0;
  }
  .terms-conditions-section .terms-col {
    padding: 50px 15px;
  }
  .shop-header {
    padding: 0 15px;
  }
  .shop-filters .shop-ul li {
    margin-right: 10px;
  }
  .shop-filters .sort-by {
    margin-left: 20px;
  }
  .switcher {
    margin-left: 20px;
  }
  .shop-page .product-categories.v2 .product-cat {
    max-width: calc(25% - 26px);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(25% - 26px);
            flex: 0 0 calc(25% - 26px);
  }
  .prod-section .prod-col .prod-caption > h3 {
    font-size: 24px;
  }
  .cart-product-slider-column {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .cart-section.v3 .cart-product-content {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .testimonials-v3 .sec-title {
    margin-bottom: 60px;
  }
  .shop-page .product-categories.v2 .product-cat {
    max-width: calc(33.3333333333% - 26px);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.3333333333% - 26px);
            flex: 0 0 calc(33.3333333333% - 26px);
  }
  .shop-page .product-categories.v2 .product-info .product-price {
    margin-left: auto;
  }
  .product_image {
    max-width: 35%;
  }
  .products-slider-section.v3 {
    padding: 20px 0 120px;
  }
  .products-slider-section.v3 .product-slider .slick-next, .products-slider-section.v3 .product-slider .slick-prev {
    bottom: 0;
  }
  .shop-page.v3 .collection-section {
    padding-top: 0;
  }
  .products-slider-section.v3 .product-slider .product-slide .product-card {
    margin-left: auto;
    right: 15px;
    left: auto;
  }
  .main-slider.v3 .banner-slide-v3 .banner-cap-v3 h3 {
    font-size: 24px;
  }
  .themes-section .th-images {
    padding-right: 0;
    margin-bottom: 50px;
  }
  .error-page .error-page-content {
    width: 900px;
  }
  .error-page .error-page-content h2 {
    font-size: 100px;
    line-height: 100px;
  }
  .page-content .container-fluid {
    padding: 0 15px;
  }
  .page-content .images-row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .page-content .about-bottom {
    padding-left: 0;
    padding-right: 0;
  }
  .team-section-page .container {
    padding: 0 15px;
  }
  .team-section-page {
    padding: 100px 0;
  }
  .size-popup {
    width: calc(100% - 50px);
  }
  .popup .close-popup {
    right: 20px;
  }
  .popup.coming-soon-popup .popup-content .popup-title h2 {
    font-size: 42px;
    line-height: 50px;
  }
  .time-counter ul li {
    padding: 0 20px;
  }
  .lg-popup .lg-content .lg-content-inner {
    padding-right: 0;
  }
  .lg-content {
    padding: 50px 0;
  }
  .lg-popup {
    width: 100%;
  }
  .personal-information-column .personal-information {
    margin-bottom: 90px;
  }
  .about-content-v2 > h2 {
    font-size: 22px;
  }
  .lg-popup .lg-content .lg-content-inner {
    padding: 0 20px;
  }
  .shop-single-section.popup-quick-view .shop-product-single {
    display: block;
  }
  .shop-single-section.popup-quick-view .shop-product-single-info {
    max-width: 100%;
  }
  .product-view-section .product-view-slider .product-view-slide .product-card {
    left: 0;
  }
  .product-view-section .product-view-slider .product-view-slide .product-view-image > img {
    max-width: 50%;
    margin-left: auto;
  }
  .shop-single-section .shop-product-single {
    display: block;
  }
  .shop-single-section .shop-product-single-info {
    max-width: 100%;
  }
  .blog-posts-section-v3 .blog-posts-v3 .blog-posts-left-content {
    max-width: 60%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
  }
  .blog-posts-section-v3 .blog-posts-v3 .blog-posts-right-sidebar {
    max-width: 40%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  }
  .pb-text {
    font-size: 100px;
    line-height: 110px;
  }
  .swiper-scrollbar > span {
    min-width: 200px !important;
  }
  .collection-section.v2 .product-categories.v2.without-slide .col-lg-2 {
    max-width: 33.33%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33%;
            flex: 0 0 33.33%;
  }
  .title-clt h2 {
    font-size: 40px;
  }
  .title-clt h2 img {
    margin-bottom: 10px;
  }
  .lookbook-section-v2 {
    margin-bottom: 180px;
  }
  .card-product-content-v2 .cart-product-info-v2 {
    max-width: 50%;
  }
  .shop-filters {
    margin-left:auto;
    margin-top: 25px;
  }
  .lg-image {
    display: none;
  }
  .swiper2.blog-posts .post {
    padding: 0;
  }
  .search-box .search-box-content form .input_field input {
    width: 100%;
  }
  .popup .popup-content .popup-title h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .popup .popup-content .inner-column {
    padding-right: 15px;
  }
  .popup.coming-soon-popup .popup-content .popup-title h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 1023px) {
  .tab-content .product-top-section {
    margin-bottom: 10px;
    flex-wrap: wrap;
  }
  .product-top-section h2 {
    width: 100%;
  }
  .max-w-\[450px\] {
    max-width: 320px!important;
  }
  .w-\[450px\] {
    width: 320px!important;
  }
  .product-top-section select.filter-dropdown {
    background-position: 95% 12px;
  }
  .popup.build-your-popup {
    padding: 50px 40px;
  }
  .popup.build-your-popup .close-popup {
    top: 20px;
  }
  .cart-container h2 {
    font-size: 26px;
    line-height: 34px;
  }
  
}
@media only screen and (max-width: 991px) {
  .main-footer {
    padding: 90px 0;
  }
  .brand-col {
    border-bottom: 1px solid #c7c7c7;
  }
  .brands {
    border-bottom: 0;
  }
  .about-section {
    padding: 90px 0;
  }
  .about-text {
    padding-right: 0;
  }
  .marquee-section .marquee h2, .marquee-section .marquee2 h2 {
    font-size: 50px;
    line-height: 60px;
  }
  .marquee-section .marquee2 {
    margin-top: 75px;
  }
  .marquee-section {
    padding: 47px 0 105px;
  }
  .product-slider .product-slide:nth-child(2) .product-card {
    left: 30px;
    right: auto;
  }
  .trending-product.center {
    height: 600px;
  }
  .trending-product {
    height: 250px;
  }
  .trending-products .tp-title {
    font-size: 48px;
  }
  .trending-product .trending-product-hover .pd-btns li a {
    display: block;
    width: auto;
    padding: 0 30px;
    height: 40px;
    line-height: 40px;
  }
  .trending-product .trending-product-hover .pd-btns {
    width: auto;
  }
  .trending-product .trending-product-hover .cart-product {
    top: 10px;
    right: 10px;
  }
  .trending-product .trending-caption {
    display: block;
  }
  .video-intro #video1 {
    height: auto;
    margin-top: 60px;
  }
  .intro-section {
    padding: 90px 0;
  }
  .testimonial-section .sec-title {
    margin-bottom: 50px;
  }
  .testi-slide p {
    font-size: 24px;
    line-height: 36px;
  }
  .featured .featured-hover {
    right: 50px;
  }
  .menu-links {
    width: 100%;
    padding: 50px;
  }
  .swiper-scrollbar > span {
    width: auto !important;
  }
  .product-categories.v2 .product-cat .product-hover-info .product-hover-head {
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
  .page-banner {
    height: auto;
    padding: 70px 0 120px;
  }
  .page-banner .page-banner-content .page-title {
    font-size: 50px;
    line-height: 60px;
  }
  .order-summary {
    margin-top: 50px;
  }
  .order-summary .shipping .calculate-shipping {
    margin-top: 20px;
  }
  .cart-page {
    padding-bottom: 0;
  }
  .account-sidebar .account-list {
    margin-top: 50px;
  }
  .account-sidebar .account-list li {
    margin-bottom: 20px;
  }
  .account-sidebar {
    margin-bottom: 70px;
  }
  .personal-information-column .personal-information h3 {
    font-size: 30px;
  }
  .personal-information-column .personal-information {
    margin-bottom: 50px;
  }
  .blog-page-section .today-articles, .blog-page-section .trending-column, .blog-posts-section-v3 .blog-posts-v3 .blog-posts-left-content, .blog-posts-section-v3 .blog-posts-v3 .blog-posts-right-sidebar {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .top-match-section .categories-match-slider .shop-categories-section .shop-category {
    height: 100px;
  }
  .blog-posts-section-v3 .blog-posts-v3 .blog-posts-left-content {
    padding: 0 15px;
  }
  .blog-page-section .newsletter {
    padding-left: 15px;
    padding-right: 15px;
  }
  .blog-posts-section-v3 .blog-posts-v3 .blog-posts-right-sidebar {
    margin-top: 70px;
  }
  .terms-banner .terms-content h2 {
    line-height: 60px;
    font-size: 50px;
  }
  .shop-filters {
    margin-left:auto;
    margin-top: 30px;
  }
  .shop-page .collection-section {
    padding-top: 70px;
  }
  .shop-page .product-categories.v2 .product-cat {
    max-width: calc(33.3333333333% - 26px);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.3333333333% - 26px);
            flex: 0 0 calc(33.3333333333% - 26px);
  }
  .product-view-section .product-view-banner > h2 {
    font-size: 100px;
  }
  .product-view-section .product-view-banner > h2.v2 {
    bottom: 150px;
  }
  .prod-section .prod-col {
    margin-bottom: 30px;
  }
  .cart-section.v3 .cart-product .cart-product-large-slider {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .cart-section.v3 .cart-product .cart-product-large-image > img {
    margin-right: 0;
    margin-left: auto;
  }
  .cart-section.v3 .circle-container {
    left: 0;
  }
  .testimonials-v3 {
    background: transparent;
    padding-bottom: 70px;
  }
  .shop-page .product-categories.v2 .product-cat {
    max-width: calc(50% - 26px);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 26px);
            flex: 0 0 calc(50% - 26px);
  }
  .product_image {
    max-width: 50%;
    margin: 0 auto;
  }
  .products-slider-section.v3 .product-slider .product-slide .product-card {
    margin: 0 auto;
    right: 0;
  }
  .products-slider-section.v3 {
    padding: 100px 0 270px;
  }
  .products-slider-section.v3 .product-slider .slick-next, .products-slider-section.v3 .product-slider .slick-prev {
    bottom: -150px;
  }
  .products-slider-section.v3 .product-slide {
    height: auto;
  }
  .products-slider-section.v3 .product-slider .product-slide {
    padding-bottom: 50px;
  }
  .marquee-section.v_5 {
    top: 70px;
    margin-top: 50px;
  }
  .accessories-section.prod-section .arriavls-items-column {
    margin-top: 50px;
  }
  .reviews-section .reviews-list li .reviews .review-info {
    margin-left: 0;
    margin-top: 30px;
  }
  .reviews-section .reviews-list li .reviews .review-info {
    max-width: 100%;
  }
  .reviews-section .reviews-list li {
    padding: 50px 0;
  }
  .product-view-section .product-view-slider .product-view-slide .product-view-image {
    display: none;
  }
  .blog_post {
    margin-bottom: 50px;
  }
  .blog_posts {
    margin-bottom: -50px;
  }
  .product-view-section.shop-single-view .product-view-slider .product-view-slide {
    margin-bottom: 0;
  }
  .product-view-section.shop-single-view .product-view-slider .prod-card-info {
    width: 100%;
  }
  .testimonial-section.v2 .testimonial-slider .testi-slide {
    padding: 82px 50px 44px;
  }
  .cart-items-add {
    display: block;
  }
  .cart-items-add .theme-btn {
    margin-left: 0;
    margin-top: 20px;
  }
  .error-page .error-page-content {
    width: calc(100% - 60px);
  }
  .error-page .error-page-title {
    font-size: 100px;
    line-height: 100px;
    bottom: -10px;
  }
  .error-page .marquee {
    bottom: 100px;
  }
  .faqs-section-page .sec-title h2 {
    font-size: 42px;
    line-height: 50px;
  }
  .faqs-section-page .accordion-button {
    padding: 11px 25px;
    padding-right: 120px;
    line-height: 30px;
  }
  .faqs-section-page .accordion-body {
    padding: 30px 25px;
  }
  .faqs-section-page {
    padding-bottom: 90px;
  }
  .image-popup > img {
    max-width: 50%;
  }
  .image-popup {
    text-align: center;
    margin-bottom: 40px;
  }
  .popup .popup-content .inner-column {
    max-width: 100%;
  }
  .time-counter ul li {
    padding: 0 28px;
  }
  .page-content .text-column h2 {
    margin-bottom: 50px;
  }
  .page-content .title-column .inner-column {
    padding-left: 0;
    margin-top: 50px;
  }
  .order-summary .shipping {
    margin-bottom: 70px;
  }
  .popup .close-popup {
    top: 0;
  }
  .about-content-v2 > h2 img {
    display: none;
  }
  .about-content-v2 > h2 {
    font-size: 42px;
    line-height: 56px;
  }
  .lg-popup .lg-content {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .lg-popup .lg-image {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .shop-single-section.popup-quick-view .cart-items-add .theme-btn {
    margin-left: 0;
    margin-right: 20px;
  }
  .shop-categories-section .shop-category h3 {
    font-size: 15px;
  }
  .shop-categories-section .shop-category {
    height: 100px;
  }
  .shop-single-section .container-fluid {
    padding: 0 15px;
  }
  .blog-page-section .trending-posts .sec-title {
    padding: 0;
  }
  .blog-page-section .trending-posts .td-posts > li {
    padding-left: 0;
    padding-right: 0;
  }
  .blog-posts-section-v3 .blog-posts-v3 .blog-posts-right-sidebar .blog-add .blog-add-info {
    bottom: 40px;
  }
  .blog-posts-section-v3 .blog-posts-v3 .blog-posts-right-sidebar {
    padding: 0 15px;
  }
  .product-view-section .product-view-slider .product-view-slide .product-card {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .product-view-section .product-view-slider .product-view-slide.slick-active .product-card {
    -webkit-transform: translateY(0) translateX(-50%);
            transform: translateY(0) translateX(-50%);
  }
  .collection-section.v2 .product-categories.v2.without-slide .col-lg-2 {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .title-clt h2 img {
    display: none;
  }
  .title-clt h2 {
    font-size: 50px;
    line-height: 60px;
  }
  .trending-slide .trending-img-v2 {
    position: static;
    -webkit-transform: unset;
            transform: unset;
  }
  .trending-slide.slick-active .trending-img-v2 {
    -webkit-transform: unset;
            transform: unset;
    margin-top: 150px;
  }
  .popup.coming-soon-popup {
    padding-bottom: 50px;
  }
  .custom-tab-pane .collection-section {
    margin-top: 0;
  }
  .card-product-content-v2 .card-product-thumb-slider .cart-product-slider {
    margin-bottom: -20px;
  }
  .search-box-content form {
    width: 80%;
  }
  .image-popup {
    display: none;
  }
  .popup .popup-content .inner-column {
    padding-right: 0;
  }
  .popup {
    padding: 50px 15px;
  }
}
@media only screen and (max-width: 767px) {
  .main-footer .footer-widgets .widget {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    margin-bottom: 50px;
  }
  .main-footer .footer-widgets {
    margin-bottom: -50px;
  }
  .sec-title {
    margin: -16px auto 55px;
  }
  .blog-posts .post {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
  }
  .pt-logos .pt-logo {
    max-width: 33.33%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33%;
            flex: 0 0 33.33%;
    margin-bottom: 20px;
  }
  .pt-logos {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: -20px;
  }
  .brand-section {
    padding: 60px 0 70px;
  }
  .cart-product .cart-product-content {
    max-width: 100%;
    padding: 0 30px;
  }
  .lookbook-section .lookboo-glance .pb-text {
    font-size: 70px;
    bottom: -18px;
  }
  .lookbook-section {
    padding: 0 0 50px;
  }
  .product-slider .product-slide .product-card {
    width: 450px;
  }
  .cart-items-add {
    display: block;
  }
  .cart-items-add .theme-btn {
    margin-left: 0;
    margin-top: 20px;
  }
  .trending-product.center {
    height: auto;
  }
  .trending-product {
    height: auto;
    margin-bottom: 30px;
  }
  .trending-product .trending-caption {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .trending-products .tp-title {
    display: none;
  }
  .testimonial-section {
    padding: 90px 0;
  }
  .featured {
    margin-bottom: 30px;
  }
  .featured-products-section {
    padding: 0 0 70px;
  }
  .sml-banner {
    margin-bottom: 30px;
  }
  .cart-product .cart-product-large-slider {
    left: 0;
  }
  .menu-links > li a {
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    font-size: 16px;
  }
  .menu-links > li a:after {
    top: -2px;
  }
  .menu-links {
    padding-top: 120px;
  }
  .menu-links ul li a {
    line-height: unset;
  }
  .banner-social {
    right: 80px;
  }
  .header-social .share-btn, body.active header .menu-btn {
    width: 50px;
    height: 50px;
    line-height: 56px;
  }
  body.active header .menu-btn {
    padding: 15px;
  }
  .product-categories.v2 .product-cat .product-hover-info .product-info-hover .pro-buttons li .theme-btn {
    font-size: 12px;
    line-height: 36px;
    height: 36px;
  }
  .blog-post-single .post-info {
    padding: 0;
  }
  .blog-post-single .main-single-v2 + p {
    padding: 0;
  }
  .marquee-section.v2.single-v {
    padding-top: 50px;
  }
  .about-content-v2 > h2 {
    font-size: 40px;
    line-height: 55px;
  }
  .blog-page-section .trending-posts {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 0;
  }
  .blog-posts-section-v3 {
    padding: 70px 0;
  }
  .blog-posts-section-v3 .blog-posts-v3 .blog-posts-right-sidebar {
    padding: 0 15px;
  }
  .blog-page-section .today-articles {
    padding-left: 15px;
    padding-right: 15px;
  }
  .shop-categories-section .shop-category {
    width: calc(50% - 20px);
    margin-bottom: 30px;
  }
  .shop-categories-section .shop-category:first-child img {
    border-radius: 60px;
  }
  .shop-categories-section {
    padding: 50px 15px;
  }
  .shop-filters {
    display: block;
  }
  .shop-filters .shop-ul {
    margin-bottom: 10px;
  }
  .shop-page .product-categories.v2 .product-cat {
    max-width: calc(50% - 37px);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 37px);
            flex: 0 0 calc(50% - 37px);
  }
  .product-view-section .product-view-slider .product-view-slide .product-card {
    left: 0;
  }
  .product-card {
    width: 100%;
  }
  .product-view-section .product-view-slider .product-view-slide .product-card {
    top: 60%;
  }
  .product-view-section .product-view-banner > h2 {
    left: 0;
  }
  .product-view-section .product-view-slider .slick-prev, .product-view-section .product-view-slider .slick-next {
    bottom: -70px;
  }
  .shop-page + .product-view-section {
    padding-bottom: 80px;
  }
  .shop-categories-section .shop-category:last-child img {
    border-radius: 60px;
  }
  .trending-section-v3 {
    padding: 96px 0 50px;
  }
  .cart-section.v3 .circle {
    width: 100%;
    height: 100%;
  }
  .collection-section .container-fluid {
    padding: 0 15px;
  }
  .top-match-section .categories-match-slider .shop-categories-section .shop-category {
    margin-bottom: 0;
  }
  .product-view-section.shop-single-view .product-view-slider .product-view-slide {
    height: 600px;
  }
  .shop-single-section .shop-product-main-image {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .shop-single-section .container-fluid {
    padding: 0 15px;
  }
  .shop-single-section .shop-product-single-info .size-colors {
    display: block;
    margin-bottom: 30px;
  }
  .shop-single-section .shop-product-single-info .product-colors {
    padding-left: 0;
    margin-top: 30px;
  }
  .error-page .error-page-content {
    height: 400px;
  }
  .error-page .error-page-content h2 {
    font-size: 70px;
    line-height: 80px;
  }
  .page-content .text-column h2 {
    margin-bottom: 30px;
  }
  .page-content .title-column .inner-column {
    padding-left: 0;
    margin-top: 50px;
  }
  .page-content .about-bottom h2 {
    font-size: 30px;
    line-height: 42px;
  }
  .page-content .about-bottom p {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .page-content {
    padding-bottom: 80px;
  }
  .team-section-page .teams .col-lg-2 {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .team-column {
    margin-bottom: 40px;
  }
  .team-section-page {
    padding-bottom: 60px;
  }
  .size-popup .size-chart table tr td {
    font-size: 14px;
    padding: 15px;
  }
  .lg-popup .lg-content {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 50px 50px;
  }
  .lg-popup .lg-content .lg-content-inner .or > span:before {
    width: 100px;
  }
  .lg-popup .lg-content .lg-content-inner .or > span:after {
    width: 100px;
  }
  .page-content {
    padding-top: 80px;
  }
  .page-content .about-top {
    margin-bottom: 50px;
  }
  .marquee-section.v2.single-v {
    margin-bottom: 80px;
  }
  .shop-filters .sort-by {
    margin-left: 0;
    width: 100%;
    margin-top: 20px;
  }
  .product-view-section .product-view-slider .product-view-slide {
    height: unset;
    margin-bottom: 50px;
  }
  .product-card {
    position: static;
    -webkit-transform: unset;
            transform: unset;
  }
  .cart-items-add .theme-btn + .theme-btn {
    margin-left: 20px;
  }
  .main-slider-content h1 {
    font-size: 50px;
    line-height: 60px;
  }
  .about-section-v2 {
    padding: 100px 0;
  }
  .pb-text {
    font-size: 50px;
    line-height: 60px;
    bottom: -30px;
  }
  .lookbook-section-v2 .container {
    padding: 0 15px;
  }
  .lookbook-section-v2 {
    margin-bottom: 120px;
  }
  .web-slides .marquee6 h2 {
    font-size: 50px;
    line-height: 60px;
  }
  .product-view-section .product-view-slider .product-view-slide.slick-active .product-card {
    -webkit-transform: unset;
            transform: unset;
  }
  .product-card {
    padding: 0;
    -webkit-box-shadow: unset;
            box-shadow: unset;
  }
  .product-view-section {
    margin-bottom: 130px;
  }
  .trending-slide {
    padding-bottom: 350px;
  }
  .title-clt h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .card-product-content-v2 {
    display: block;
  }
  .card-product-content-v2 .cart-product-info-v2 {
    max-width: 100%;
    margin-top: 150px;
    padding-left: 0;
  }
  .card-product-content-v2 .card-product-thumb-slider {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .card-product-content-v2 .card-product-thumb-slider .cart-product-slider .circle-container {
    left: 0;
  }
  .card-product-content-v2 .card-product-thumb-slider {
    background: #eaeaea;
  }
  .cart-product-slide {
    position: relative;
    top: 15px;
  }
  .card-product-content-v2 .cart-product-info-v2 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .cart-section-v2 {
    padding-top: 100px;
  }
  .trending-slide {
    padding-bottom: 150px;
  }
  .trending-slide .trending-img .trending-caption-v2 {
    position: static;
  }
  .trending-slide.slick-active .trending-img-v2 {
    margin-top: 50px;
  }
  .popup.coming-soon-popup .popup-content .inner-column {
    padding-right: 0;
    padding: 0 15px;
  }
  .overlay-menu .marquee3 ul li {
    font-size: 100px;
  }
  .shop-filters .tabs-icons {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .shop-page + .product-view-section {
    margin-bottom: 0;
  }
  .products-slider-section.v3 .product-slider .product-slide .product-card {
    padding: 30px;
  }
  .products-slider-section.v3 {
    padding: 100px 0 100px;
  }
  .popup .close-popup {
    top: 20px;
  }
  .time-counter ul li {
    padding: 0 15px;
  }
  .time-counter ul li::before {
    font-size: 45px;
  }
}
@media only screen and (max-width: 576px) {
  .sec-title h2 {
    line-height: 40px;
    margin-bottom: 20px;
  }
  .about-text .title {
    font-size: 30px;
    line-height: 40px;
  }
  .lookbook-section .lookboo-glance .pb-text {
    font-size: 50px;
  }
  .category-section .sec-title {
    padding: 0 15px;
  }
  .marquee-section .marquee h2, .marquee-section .marquee2 h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .marquee-section {
    padding: 47px 0 85px;
  }
  .product-slider .product-slide .product-card {
    width: 380px;
    padding: 30px;
  }
  .trending-section {
    padding: 70px 0;
  }
  .sml-banner .banner-caption .theme-btn {
    height: 40px;
    line-height: 40px;
  }
  .cart-product-thumb-slider .cart-product-thumb {
    height: 100px;
  }
  .page-banner .page-banner-content .page-title {
    font-size: 40px;
    line-height: 40px;
  }
  .page-banner {
    padding: 20px 0 40px;
  }
  .personal-information-column .user_info {
    margin-bottom: 20px;
  }
  .blog-post-single {
    padding-top: 70px;
  }
  .blog-post-single .main-single-image {
    margin-bottom: 50px;
  }
  .contact-links-info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contact-links-info li {
    width: 100%;
    margin-bottom: 30px;
  }
  .contact-links-info li:last-child {
    margin-bottom: 0;
  }
  .blog-posts-section-v3 .blog-posts-v3 .blog-posts-left-content .blog-posts .post {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .blog-posts-section-v3 .blog-posts-v3 .blog-posts-right-sidebar .widget-title {
    font-size: 24px;
  }
  .sec-title h2 {
    font-size: 24px;
    line-height: 34px;
  }
  .blog-page-section .blog-posts .post {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .blog-page-section .trending-posts .sec-title {
    padding: 0;
  }
  .blog-page-section .trending-posts .td-posts > li {
    padding-left: 0;
    padding-right: 0;
  }
  .terms-banner .terms-content h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .shop-page .collection-section {
    padding-bottom: 30px;
  }
  .product-view-section .product-view-banner > h2 {
    font-size: 60px;
  }
  .product-view-section .product-view-slider .product-view-slide .product-card {
    top: 50%;
  }
  .product-card {
    padding: 30px;
  }
  .cart-section.v3 .cart-product-thumb-slider {
    width: 100%;
  }
  .shop-page .product-categories.v2 .product-cat {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .product_image {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .products-slider-section.v3 {
    margin-bottom: 120px;
  }
  .products-slider-section.v3 .product-slider .slick-next, .products-slider-section.v3 .product-slider .slick-prev {
    bottom: -290px;
  }
  .accessories-section.prod-section .arriavls-items-column .sec-title h2 {
    top: 0;
  }
  .intro-section-v2 + .marquee-section.v2 + .collection-section {
    padding-top: 50px;
  }
  .blog-posts-section .sec-title h2 {
    line-height: 40px;
  }
  .sec-title.text-left {
    margin-bottom: 50px;
  }
  .themes-section .th-info .th-list li {
    padding: 20px 0;
  }
  .images-section {
    padding: 40px 0 80px;
  }
  .themes-section .th-info > h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .shop-single-section .shop-product-single-info > h3 {
    font-size: 30px;
    line-height: 40px;
  }
  .error-page .error-page-title {
    font-size: 70px;
    line-height: 70px;
    bottom: 0;
  }
  .faqs-section-page .sec-title h2 {
    font-size: 34px;
    line-height: 42px;
  }
  .faqs-section-page .accordion-button::after {
    right: 25px;
  }
  .page-content .about-top {
    margin-bottom: 50px;
  }
  .page-content .images-row {
    margin-top: 50px;
  }
  .page-content {
    padding-top: 80px;
  }
  .size-popup .size-chart table tr td {
    padding: 10px;
  }
  .image-popup > img {
    max-width: 100%;
  }
  .popup .popup-content .popup-title h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .time-counter ul li {
    padding: 0 12px;
  }
  .time-counter ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page-content .text-column h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .bb-info .col-lg-6 {
    margin-bottom: 50px;
  }
  .blog-post-single .bb-info {
    margin-bottom: 0;
  }
  .popup {
    width: 100%;
    padding: 50px 15px;
  }
  .map-section-full iframe {
    height: 400px;
  }
  .product-card {
    padding: 0;
  }
  .collection-section.v2 .product-categories.v2.without-slide .col-lg-2 {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .trending-slide .trending-img .trending-caption-v2 {
    position: static;
  }
  .trending-slide {
    padding-bottom: 120px;
  }
  .collection-new .container-fluid {
    padding: 0 15px;
  }
  .main-footer .footer-widgets .widget {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .overlay-menu .marquee3 ul li {
    font-size: 80px;
  }
  .shop-page .product-categories.v2 .product-cat {
    margin-left: 0;
  }
  .lg-popup .lg-content {
    padding: 50px 15px;
  }
  .products-slider-section.v3 {
    padding-bottom: 180px;
  }
  .cart-section.v3 {
    padding-bottom: 170px;
  }
  .image-popup {
    display: none;
  }
  .collection-section.v2 {
    padding-bottom: 0;
  }
  .collection-new {
    padding-bottom: 80px;
  }
  .cart-section-v2 {
    padding-top: 70px;
  }
  .popup {
    max-width: calc(100% - 30px);
  }
  .popup .close-popup {
    top: 10px;
  }
  .main-slider-large .main-slider-slide > img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  header {
    position: static;
  }
  body.home1 header{
    position: fixed;
  }
  .lookbook-section .lookboo-glance .pb-text {
    bottom: -30px;
  }
  .product-slider .product-slide > img {
    height: auto;
  }
  .product-slider .product-slide .product-card {
    width: 100%;
  }
  .product-slider .slick-prev {
    right: auto;
    left: 15px;
  }
  .product-slider .slick-next {
    right: 15px;
  }
  .testimonial-section-v2 .testi2-slide {
    padding: 50px 15px;
  }
  .trending-slide .trending-img .trending-caption-v2 {
    padding: 0;
    margin-top: 15px;
  }
  .trending-slide .trending-img {
    display: none;
  }
  .trending-slide .trending-img-v2 .featured-hover {
    display: none;
  }
  .trending-slide {
    padding-bottom: 30px;
  }
  .trending-section-v2 .sec-title {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .main-footer .footer-widgets .widget {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .blog-posts .post {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
  }
  .full-button {
    margin-top: 0;
  }
  .latest-news-section {
    padding: 80px 0;
  }
  .sec-title h2 {
    margin-bottom: 10px;
    font-size: 30px;
  }
  .pt-logos .pt-logo {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .cart-items-add {
    display: block;
  }
  .cart-items-add .theme-btn {
    margin-left: 0;
    margin-top: 20px;
  }
  .logo a img {
    max-width: 150px;
  }
  .lookbook-section .lookboo-glance .pb-text {
    font-size: 40px;
  }
  .product-slider .product-slide .product-card {
    width: 100%;
    padding: 30px;
    left: 15px;
  }
  .product-slider .product-slide:nth-child(2) .product-card {
    left: 15px;
  }
  .price > span {
    font-size: 20px;
  }
  .price del {
    font-size: 20px;
    margin-left: 10px;
  }
  .product-slider .product-slide .product-card > h3 {
    font-size: 24px;
    line-height: 32px;
  }
  .sec-title h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .testi-slide p {
    font-size: 20px;
    line-height: 30px;
  }
  .cart-product .cart-product-content .cart-product-info > h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .cart-product .cart-product-content {
    margin-top: 30px;
  }
  .cart-product-thumb-slider {
    margin-top: 50px;
  }
  .cart-product .cart-product-large-image > img {
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    display: inline-block;
  }
  .cart-product .cart-product-large-image {
    height: 400px;
    text-align: center;
  }
  .cart-product .cart-product-large-image > img {
    width: auto;
  }
  .circle-container {
    left: 50px;
    width: 150px;
  }
  .circle {
    width: 100px;
    height: 100px;
  }
  .cart-items-add .theme-btn {
    height: 36px;
    line-height: 36px;
    font-size: 12px;
    padding: 0 30px;
  }
  .cart-product-slider-column {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 50px;
  }
  .cart-product-content {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .cart-product .cart-product-content {
    position: static;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .cart-product .cart-product-content .cart-product-info > h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .cart-product .cart-product-large-slider {
    position: static;
  }
  .cart-product-thumb-slider {
    position: absolute;
    bottom: 50px;
  }
  .cart-product {
    margin-bottom: 100px;
  }
  .circle-container {
    top: 50px;
  }
  .banner-social {
    min-width: 150px;
    border: 0;
    top: 8px;
    right: 60px;
    height: 50px;
  }
  .banner-social .social-links li a {
    width: auto;
    height: auto;
    line-height: unset;
    background: transparent;
  }
  .banner-social h3 {
    display: none;
  }
  .banner-social .social-links li a:hover {
    background: transparent;
    color: #B88669;
  }
  .page-banner .page-banner-content .page-title {
    font-size: 30px;
    line-height: 30px;
  }
  .page-banner .page-banner-content p {
    font-size: 14px;
    line-height: 20px;
  }
  .account-sidebar .account-user .account-user-info {
    padding-left: 0;
    margin-top: 30px;
  }
  .about-content-v2 > h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .terms-banner .terms-content h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .terms-conditions-section .terms-col h3 {
    font-size: 18px;
  }
  .shop-categories-section .shop-category h3 {
    font-size: 12px;
  }
  .shop-page .product-categories.v2 .product-cat {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .shop-page .product-categories.v2 .product-info {
    display: block;
  }
  .product-categories.v2 .product-img {
    margin-bottom: 10px;
  }
  .pagination li {
    margin-right: 15px;
  }
  .product-view-section .product-view-slider .product-view-slide .product-card {
    top: 35%;
  }
  .cart-section.v3 .cart-product-thumb-slider {
    bottom: 20px;
    left: 7px;
  }
  .cart-section.v3 .cart-product-thumb-slider .cart-product-thumb {
    height: 70px;
  }
  .testimonials-v3 .testimonial-slider-v3 .slick-dots {
    margin-left: 0;
    text-align: center;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .products-slider-section.v3 {
    margin-bottom: 60px;
  }
  .products-slider-section.v3 .product-slider .slick-next, .products-slider-section.v3 .product-slider .slick-prev {
    bottom: -220px;
  }
  .accessories-section.prod-section .arriavls-items-column .sec-title {
    margin-bottom: 120px;
  }
  .reviews-section .reviews-list li .reviews .review-user .review-user-info {
    padding-left: 0;
    margin-top: 30px;
  }
  .reviews-section .reviews-list {
    margin-bottom: 50px;
  }
  .product-view-section.shop-single-view .product-view-slider .product-view-slide {
    height: 620px;
  }
  .product-view-section.shop-single-view .product-view-slider .prod-card-info {
    padding: 0;
  }
  .testimonial-section.v2 .testimonial-slider .testi-slide {
    padding: 50px 15px;
  }
  .themes-section .th-info .th-list li {
    display: block;
  }
  .shop-single-section .shop-product-single {
    padding: 30px 15px;
  }
  .shop-single-section .cart-product-thumb-slider {
    position: static;
  }
  .error-page .error-page-content h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .error-page .error-page-content {
    height: 250px;
  }
  .error-page .error-page-title {
    font-size: 50px;
    line-height: 60px;
  }
  .error-page .marquee h2 {
    font-size: 80px;
    line-height: 90px;
  }
  .page-content .text-column h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .team-section-page .teams .col-lg-2 {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .size-popup .size-chart table tr td {
    padding: 3px;
    font-size: 12px;
  }
  .size-popup .size-chart table tr td:first-child {
    font-size: 12px;
  }
  .size-popup .popup-title h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .popup .popup-content .popup-title h2 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 10px;
  }
  .time-counter ul li {
    margin-bottom: 20px;
    padding: 0;
  }
  .time-counter ul {
    padding-bottom: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .time-counter ul li:before {
    display: none;
  }
  .lg-popup .lg-content .lg-content-inner .or > span:before {
    display: none;
  }
  .lg-popup .lg-content .lg-content-inner .or > span:after {
    display: none;
  }
  .lg-popup .lg-content {
    padding: 50px 15px;
  }
  .page-content .about-bottom h2 {
    font-size: 24px;
    line-height: 36px;
  }
  .personal-information-column .personal-information h3 {
    font-size: 26px;
  }
  .blog-post-single blockquote {
    padding: 50px 30px;
  }
  .cart-page .cart-table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .cart-page .cart-table tr th {
    width: 100%;
    text-align: center;
  }
  .faqs-section-page .sec-title {
    margin-bottom: 50px;
  }
  .lg-popup .lg-content .lg-content-inner .remember-password .recovery-password {
    margin-left: 0;
    width: 100%;
  }
  .switcher {
    margin-left: 0;
    margin-top: 20px;
  }
  .product-card {
    padding: 0;
  }
  .cart-items-add .theme-btn + .theme-btn {
    margin-left: 0;
  }
  .main-slider.v2 .slick-dots {
    display: none !important;
  }
  .main-slider-content h1 {
    font-size: 40px;
    line-height: 50px;
  }
  .lookbook-section-v2 {
    margin-bottom: 70px;
  }
  .category-section-v2 {
    padding: 50px 0 70px;
  }
  .collection-section {
    padding: 60px 0 70px;
  }
  .testimonial-section-v2 .container-full {
    padding: 0;
  }
  .trending-slide .trending-img-v2 {
    position: static;
    -webkit-transform: unset;
            transform: unset;
  }
  .trending-slide.slick-active .trending-img-v2 {
    -webkit-transform: unset;
            transform: unset;
  }
  .title-clt h2 {
    font-size: 28px;
    line-height: 40px;
  }
  .card-product-content-v2 .card-product-thumb-slider .cart-slider-thumb .cart-product-thumb-slide > img {
    height: 50px;
  }
  .card-product-content-v2 .card-product-thumb-slider .cart-slider-thumb {
    width: 50px;
  }
  .cart-product-content .cart-product-info > h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .flex-slide h2 {
    left: 0;
    top: 50%;
    -webkit-transform-origin: unset;
            transform-origin: unset;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin: 0;
    width: 100%;
    text-align: center;
  }
  .flex-slide:hover h2 {
    opacity: 0;
    visibility: hidden;
  }
  .lg-page {
    padding: 15px;
  }
  .products-slider-section.v3 {
    padding-bottom: 130px;
  }
  .cart-section.v3 .cart-product-content .cart-product-info {
    margin-left: 0;
  }
  .cart-section.v3 .cart-product {
    margin-bottom: 0;
  }
  .cart-section.v3 .cart-product-thumb-slider {
    margin-left: 0;
  }
  .circle-container {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .cart-product-thumb-slider {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .search-box {
    padding: 25px 0;
  }
  .cart-sidebar {
    width: 100%;
  }
  .cart-sidebar .cart-footer {
    padding: 15px 20px;
  }
  .cart-sidebar .cart-footer .cart-sidebar-btns li {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .cart-sidebar .cart-footer .cart-sidebar-btns li a {
    width: 100%;
    display: block;
    text-align: center;
  }
  .popup.coming-soon-popup {
    width: 95%;
  }
  .time-counter ul li {
    margin-right: 15px;
  }
  .time-counter ul li:last-child {
    margin-right: 0;
  }
  .product-view-section .container-fluid {
    padding: 0 15px;
  }
  .product-view-section .product-view-banner .product-card {
    background: #ddd;
    padding: 30px 20px;
  }
  .product-view-section .product-view-slider .slick-prev {
    right: auto;
    left: 5px;
  }
  .product-view-section .product-view-slider .slick-next {
    left: auto;
    right: 5px;
  }
  .card-product-content-v2 .card-product-thumb-slider .cart-product-slider .circle-container {
    display: none;
  }
  .card-product-content-v2 .card-product-thumb-slider .cart-slider-thumb {
    top: auto;
    bottom: -150px;
    width: 100%;
    -webkit-transform: unset !important;
            transform: unset !important;
  }
  .card-product-content-v2 .card-product-thumb-slider .cart-slider-thumb .cart-product-thumb-slide > img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .card-product-content-v2 .card-product-thumb-slider .cart-slider-thumb .cart-product-thumb-slide {
    height: 120px;
    margin: 0 5px;
  }
  .card-product-content-v2 .cart-product-info-v2 {
    margin-top: 200px;
  }
  .shop-single-section .cart-product-thumb-slider {
    -webkit-transform: unset;
            transform: unset;
  }
  .cart-page .cart-table .cart_product .cart_product_info {
    padding-left: 0;
  }
  .popup .popup-content .popup-title {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 1730px) {
  .index5_main .s_lift_bottom_wrapper .container-fluid .s_lift_container .s_lift_row .left_img img.mac_mon {
    left: 2%;
    max-width: 80%;
  }
  .index5_main .i5_video_review_wrapper .container-fluid .row .i5_video_review_slider_container .v_slider .slick-prev {
    left: 10px;
  }
  .index5_main .i5_video_review_wrapper .container-fluid .row .i5_video_review_slider_container .v_slider .slick-next {
    left: 115px;
  }
}
@media only screen and (max-width: 1499px) {
  .index4_main .i4_testimonial_wrapper .i4_testimonial_container .swiper-wrapper .swiper-slide .testi_item::before {
    top: 41%;
    left: 10%;
  }
  .index4_main .i4_video_slider_wrapper {
    padding: 40px 0 80px;
  }
  .index5_main .brand_sec .container-fluid .brands .brand-col {
    padding-inline: 40px;
  }
  .index5_main .s_lift_bottom_wrapper .container-fluid .s_lift_container .s_lift_row .left_img img.mac_mon {
    bottom: -40px;
  }
  .index5_main .s_lift_bottom_wrapper .container-fluid .s_lift_container .s_lift_row .right_content .cart-product-info {
    margin-left: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .index5_main .i5_s_lift_wrapper .container .s_lift_container .s_lift_row .left_img .circle-container {
    left: -15px;
  }
  .index5_main .i5_s_lift2_wrapper .container .s_lift_container .s_lift_row .left_img .circle-container {
    top: 110px;
    left: 17px;
  }
  .index5_main .i5_banner_main_wrapper {
    padding: 150px 0;
  }
  .index5_main .i5_banner_main_wrapper .verticalslider .vrt_slides .slides_content h2 {
    font-size: 50px;
    line-height: 70px;
  }
  .index5_main .i5_custom_image_gallery_wrapper .custom_img_gall_row .right_content {
    padding-left: 0px;
  }
  
 
}
@media only screen and (max-width: 991px) {
  .index4_main .top_furniture_wrapper .top-furniture-swiper-container .swiper-slide .top_furniture_item .item_img .circle-container {
    display: none;
  }
  .index4_main .top_furniture_wrapper .sec-title {
    margin: 0px auto 70px;
  }
  .index4_main .i4_video_slider_wrapper {
    padding: 0px 0 100px;
  }
  .index4_main .i4_video_slider_wrapper .i4_video_slider_container .i4_video_slider_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .index4_main .i4_video_slider_wrapper .i4_video_slider_container .i4_video_slider_row .left_content h2 {
    font-size: 30px;
  }
  .index4_main .i4_video_slider_wrapper .i4_video_slider_container .i4_video_slider_row .left_content .i4_video_slider_container {
    margin: 40px auto 0;
  }
  .index4_main .i4_video_slider_wrapper .i4_video_slider_container .i4_video_slider_row .left_content .i4_video_slider_container .v_slider ul.slick-dots {
    bottom: -30px;
    left: 0;
    text-align: center;
  }
  .index4_main .i4_vedio_wrapper .video-intro #i4_video {
    height: 100%;
  }
  .index5_main .s_lift_bottom_wrapper {
    padding: 0px 0 70px;
  }
  .index5_main .s_lift_bottom_wrapper .container-fluid .s_lift_container .s_lift_row .left_img {
    margin-bottom: 60px;
  }
  .index5_main .s_lift_bottom_wrapper .container-fluid .s_lift_container .s_lift_row .left_img img {
    display: none;
  }
  .index5_main .s_lift_bottom_wrapper .container-fluid .s_lift_container .s_lift_row .left_img img.mac_mon_resp {
    display: block;
  }
  .index5_main .i5_video_review_wrapper .container-fluid .row .sec-title {
    text-align: center;
  }
  .index5_main .i5_video_review_wrapper .container-fluid .row .i5_video_review_slider_container .v_slider .slick-prev {
    left: 50%;
    bottom: 5%;
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
  }
  .index5_main .i5_video_review_wrapper .container-fluid .row .i5_video_review_slider_container .v_slider .slick-next {
    left: 51%;
    bottom: 5%;
  }
  .index5_main .i5_s_lift_wrapper {
    padding: 50px 0;
  }
  .index5_main .i5_s_lift_wrapper .container .s_lift_container .s_lift_row .left_img {
    text-align: center;
  }
  .index5_main .i5_s_lift_wrapper .container .s_lift_container .s_lift_row .left_img .circle-container {
    left: 0px;
  }
  .index5_main .i5_s_lift2_wrapper .container .s_lift_container .s_lift_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .index5_main .i5_s_lift2_wrapper .container .s_lift_container .s_lift_row .left_img .circle-container {
    top: 110px;
    left: 17px;
  }
  .index5_main .i5_custom_image_gallery_wrapper {
    padding: 50px 0 10px;
  }
  .index5_main .i5_custom_image_gallery_wrapper .custom_img_gall_row .left_image_content .gallery {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 50px;
  }
  .index5_main .i5_custom_image_gallery_wrapper .custom_img_gall_row .left_image_content .gallery .myp {
    padding: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .index4_main .top_furniture_wrapper {
    padding: 70px 0 100px;
  }
  .index4_main .top_furniture_wrapper .top-furniture-swiper-container .swiper-pagination {
    bottom: 30px;
  }
  .index5_main .i5_s_lift_wrapper .container .s_lift_container .s_lift_row .left_img .circle-container {
    display: none;
  }
  .index5_main .i5_banner_main_wrapper {
    padding: 70px 0;
  }
  .index5_main .i5_banner_main_wrapper .verticalslider .vrt_slides {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
  .index5_main .i5_banner_main_wrapper .verticalslider .vrt_slides .slides_content {
    text-align: center;
  }
  .index5_main .i5_banner_main_wrapper .verticalslider .vrt_slides .slides_content h2 {
    opacity: 1;
    font-size: 30px;
    line-height: 40px;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    text-align: center;
  }
  .index5_main .i5_banner_main_wrapper .verticalslider .vrt_slides .slides_content a {
    margin-top: 15px;
    height: 40px;
    width: 183px;
    font-size: 11px;
    padding: 0;
    text-align: center;
    line-height: 40px;
    margin-bottom: 15px;
  }
  .index5_main .i5_banner_main_wrapper .verticalslider .vrt_slides .slides_img img {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  .index5_main .i5_banner_main_wrapper .verticalslider ul.slick-dots li button {
    width: 4px;
    height: 25px;
  }
  .popup.build-your-popup select.search-box1.filter-dropdown {
    width: 100%;
    font-size: 13px;
    padding-right: 35px!important;
    background-position: 95% 17px;
  }
  .popup.build-your-popup {
    padding: 50px 20px;
    gap: 15px;
  }
  .cart-popup-detail {
    padding: 75px 15px;
    width: 100%;
  }
  .cart-container h2 {
    font-size: 22px;
    line-height: 30px;
  }
  .cart-container .item-details h3 {
    font-size: 12px;
  }
  .cart-container .item-details p {
    font-size: 12px;
  }
  .cart-btn a {
    font-size: 14px;
    line-height: 18px;
  }
  .product-top-section select.filter-dropdown {
    display: none;
  }
  .tab-content .product-top-section {
    justify-content: space-between;
    align-items: center;
  }
  .view-cart-mobile a{
    display: flex;
    align-items: center;
    gap: 7px;
  }
  .cart-icon-box{
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 100%;
    padding: 9px;
  }
  .my-cart-bottom .view-cart-content button {
    background: transparent;
    border-radius: 0px;
    color: #E6A42C;
    text-decoration: underline;
    font-weight: 700;
  }
  .dsk-cart{
    display: none;
  }
  .dsk-price-cart{
    display: none;
  }
  .mobile-next-pre{
    display:flex!important;
    gap: 10px;
  }
  .mobile-next-pre .pb-10 {
    padding-bottom: 1.5rem;
  }
  .my-cart-mobile{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .my-cart-bottom #cart-items {
    display: none;
  }
  .product-top-section h2 {
    font-size: 14px;
  }
  .cart-popup-detail .item-details {
    height: 240px;
  }
  .cart-form {
    margin-top: 15px;
  }
  .cart-input input {
    padding: 10px 15px;
    font-size: 12px;
  }
  .full-screen-preview.build-pc .page-wrapper {
    overflow: hidden;
    height: 100vh;
  }    
  .tab-content .product-box img {
    height: 100px;
  }
}
@media only screen and (max-width: 576px) {
  .index4_main .i4_banner_slider_wrapper {
    height: 65vh;
  }
  .index4_main .i4_banner_slider_wrapper .main-slider-large .main-slider-slide img {
    -o-object-fit: fill;
       object-fit: fill;
    height: 65vh;
  }
  .index4_main .i4_banner_slider_wrapper .main-slider-large .main-slider-slide .slides_content h2 {
    font-size: 32px;
    line-height: 45px;
  }
  .index4_main .i4_banner_slider_wrapper .main-slider-large .main-slider-slide .slides_content p {
    font-size: 14px;
  }
  .index4_main .i4_banner_slider_wrapper .main-slider-large .main-slider-slide .slides_content a.theme-btn {
    height: 40px;
    line-height: 35px;
    padding: 0 40px;
  }
  .index4_main .i4_marquee_wrapper {
    padding: 60px 0 100px;
  }
  .index4_main .s_lift_wrapper .price {
    margin-bottom: 20px;
  }
  .index4_main .i4_new_collection_wrapper {
    padding-bottom: 55px !important;
  }
  .index4_main .i4_testimonial_wrapper {
    padding: 90px 0 130px;
  }
  .index4_main .i4_testimonial_wrapper .i4_testimonial_container .swiper-pagination {
    bottom: 50px;
  }
  .index4_main .i4_testimonial_wrapper .i4_testimonial_container .swiper-wrapper .swiper-slide .testi_item {
    padding: 40px 20px;
    min-height: 100%;
  }
  .index4_main .i4_testimonial_wrapper .i4_testimonial_container .swiper-wrapper .swiper-slide .testi_item .item_img {
    width: 70px;
    height: 70px;
  }
  .index4_main .i4_testimonial_wrapper .i4_testimonial_container .swiper-wrapper .swiper-slide .testi_item .para p {
    font-size: 14px;
    line-height: 30px;
  }
  .index4_main .i4_testimonial_wrapper .i4_testimonial_container .swiper-wrapper .swiper-slide .testi_item::before {
    top: 42%;
    left: 6%;
    width: 50px;
    height: 35px;
  }
  .index4_main .i4_video_slider_wrapper {
    padding: 50px 0 80px;
  }
  .index4_main .i4_video_slider_wrapper .i4_video_slider_container .i4_video_slider_row .left_content {
    margin-top: 30px;
  }
  .index4_main .i4_video_slider_wrapper .i4_video_slider_container .i4_video_slider_row .left_content h2 {
    font-size: 24px;
  }
  .index4_main .i4_video_slider_wrapper .i4_video_slider_container .i4_video_slider_row .left_content p {
    font-size: 14px;
    line-height: 28px;
  }
  .index4_main .i4_video_slider_wrapper .i4_video_slider_container .i4_video_slider_row .left_content .i4_video_slider_container .v_slider ul.slick-dots li button {
    width: 50px;
    height: 3px;
  }
  .index4_main .i4_video_slider_wrapper .i4_video_slider_container .i4_video_slider_row .left_content .i4_video_slider_container .v_slider .v_slide .custom-button {
    width: 35px;
  }
  .index4_main .i4_new_collection_wrapper .product-categories.v2.without-slide .product-cat {
    padding: 0;
  }
  .index5_main .cart-product-content .cart-product-info .price {
    margin-bottom: 15px;
  }
  .index5_main .cart-product-content .cart-product-info p {
    margin-bottom: 20px;
  }
  .index5_main .cart-product-content .cart-product-info > h2 {
    margin-bottom: 15px;
  }
  .index5_main .s_lift_bottom_wrapper .container-fluid .s_lift_container .s_lift_row .right_content .cart-product-info {
    margin-left: 15px;
  }
  .index5_main .i5_n_c_wrapper .product-categories .product-cat .product-img > img {
    height: 250px;
  }
  .index5_main .i5_marquee_wrapper {
    padding: 30px 0 80px;
  }
  .index5_main .i5_prod_section .container-fluid .row .prod-col {
    min-height: 315px;
  }
  .index5_main .i5_prod_section .container-fluid .row .full_prod {
    margin-top: 0px;
  }
  .index5_main .i5_prod_section .container-fluid .row .full_prod .prod-col img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 315px;
  }
  .index5_main .i5_video_review_wrapper {
    padding: 80px 0 130px;
  }
  .index5_main .i5_video_review_wrapper .container-fluid .row .i5_video_review_slider_container .v_slider .slick-track .v_slide .vr_content {
    padding: 20px 12px 25px 20px;
  }
  .index5_main .i5_video_review_wrapper .container-fluid .row .i5_video_review_slider_container .v_slider .slick-track .v_slide .vr_content p {
    font-size: 13px;
    line-height: 28px;
  }
  .index5_main .i5_video_review_wrapper .container-fluid .row .i5_video_review_slider_container .v_slider .slick-track .v_slide .vr_content h3 {
    font-size: 15px;
  }
  .index5_main .i5_s_lift_wrapper {
    padding: 0;
  }
  .index5_main .i5_s_lift_wrapper .container .s_lift_container .s_lift_row .right_content {
    margin-top: 50px;
  }
  .index5_main .i5_s_lift_wrapper .container .s_lift_container .s_lift_row .right_content .cart-product-info .price > span {
    font-size: 32px;
  }
  .index5_main .i5_s_lift_wrapper .container .s_lift_container .s_lift_row .right_content p {
    font-size: 13px;
  }
  .index5_main .mymarque {
    padding-top: 50px;
  }
  .index5_main .i5_new_arr_wrapper .container-fluid .row .arriavls-items-column .acc-slideri5 .slick-prev,
  .index5_main .i5_new_arr_wrapper .container-fluid .row .arriavls-items-column .acc-slideri5 .slick-next {
    top: unset;
    bottom: -60px;
    left: 0;
  }
  .index5_main .i5_new_arr_wrapper .container-fluid .row .arriavls-items-column .acc-slideri5 .slick-next {
    left: 90px;
  }
  .index5_main .i5_new_arr_wrapper {
    padding: 0px 0 115px;
  }
  .index5_main .i5_custom_image_gallery_wrapper .custom_img_gall_row .left_image_content .gallery .main-image img {
    padding: 0 11px;
  }
}
body.overlay-hidden{
  overflow: hidden;
}
header.sticky_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.9);
  /* height: 78px;
  line-height: 78px; */
  transition: 0.5s;
}
.index5_main header.sticky_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.9);
  transition: 0.5s;
  -webkit-box-shadow: 1px 27px 35px -15px rgba(0,0,0,0.58);
  -moz-box-shadow: 1px 27px 35px -15px rgba(0,0,0,0.58);
  box-shadow: 1px 27px 35px -15px rgba(0,0,0,0.58);
}
body.active header.sticky_header {
  background-color: transparent;
}
.header-content .logo a img{
  height: auto;
  width: 100%;
}
.logo-white{
  display: inline-block;
}
.header-dsk-menu {
  width: auto;
  display: flex;
  justify-content: center;
  padding-left: 0px;
}
.header-dsk-menu .menu-dsk {
  display: flex;
  gap: 35px;
  color: #fff;
}
.header-dsk-menu .menu-dsk li a{
  display: flex;
  gap: 5px;
  align-items: center;
  transition: 0.5s;
  text-transform: capitalize;
}
.header-dsk-menu .menu-dsk li a:hover{
  color:#b88669;
  transition: 0.5s;
}
.header-dsk-menu .menu-dsk li.sub-menu-dsk .sub-menu-mobile  a{
  font-size: 14px;
  line-height: 32px;
}
.header-dsk-menu .menu-dsk li.sub-menu-dsk a img{
  width: 20px;
  height: 20px;
}
.header-dsk-menu .menu-dsk  ul.sub-menu-mobile {
  background: #fff;
  color: #000;
  padding: 10px 10px 10px 15px;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  box-shadow: -1px 4px 5px 0px rgba(0,0,0,0.75);
  border-radius: 10px;
  width: 175px;
}
.header-dsk-menu .menu-dsk li.sub-menu-dsk:hover  ul.sub-menu-mobile {
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
}


body.home1 img.down-arrow-white {
  display: block;
}
body.home1 img.down-arrow-white {
   display: none;
}
img.down-arrow-black{
  display: none;
}
body.home1 img.down-arrow-black{
  display: block;
}
ul.child-menu {
  position: absolute;
  left: 180px;
  background-color: #fff;
  padding: 10px 25px;
  border-radius: 10px;
  display: none;
  transition: 0.5s;
  top: 0;
  width: 220px;
  box-shadow: -1px 4px 5px 0px rgba(0,0,0,0.75);
}
li.has-children {
  position: relative;
}
.header-dsk-menu .menu-dsk li.sub-menu-dsk li.has-children a {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}
li.has-children img.down-arrow-black{
  transform: rotate(-90deg);
}
li.has-children img.down-arrow-black {
  display: block;
}
.index5_main .logo-white{
  display: none;
}
.logo-black{
  display: none;
}
.index5_main .logo-black{
  display: block;
}
.shop-headright {
  margin-top: 60px;
  margin-bottom: 45px;
  display: flex;
  width: 100%;
  justify-content: end;
}
.index5_main .i5_banner_main_wrapper .verticalslider .vrt_slides .slides_img img {
  height: 557px;
  margin: 0 auto;
  overflow: hidden;
}
.prod-section .prod-col > img {
  height: 400px;
 overflow: hidden;
 object-fit: cover;
}
.service-station-section{
  margin-top: 80px!important;
  border-bottom: 1px solid #b88669;
  padding-bottom: 30px;
}
.service-station-detail{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
  justify-content: space-between;
}
.service-station-detail .vendor-item{
  width: 32%;
}
.service-station-img {
  width: 100%;
  padding: 0 20px;
  margin-bottom: 15px;
  margin-top: -46px;
}
.service-station-img img{
   height: 65px;
   width: auto;
   background-color: #fff;
   border-radius: 10px;
}
.vendor-box {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
  /* justify-content: space-between; */
}
.vendor-item {
  width: 32.45%;
  overflow: visible;
}
.vendor-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 0;
}
.service-station-detail .vendor-item{
  padding-bottom: 20px;
}
header .menu{
  display:none;
}
@media only screen and (max-width: 1190px) {
  .service-station-detail, .vendor-box{
    gap: 15px;
  }
  .header-dsk-menu {
    padding-left: 0px;
  }
  .header-dsk-menu .menu-dsk {
    gap: 20px;
  } 
  .child-categories-section .swiper-button-prev, .child-categories-section .swiper-button-next {
    bottom: 35px;
  }
}
@media only screen and (max-width: 990px) {
  .service-station-detail, .vendor-box{
    gap: 13px;
  }
  .header-dsk-menu {
    padding-left: 0px;
    display: none;
  }
  header .menu{
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .service-station-detail .vendor-item,  .vendor-item{
    width: 48%;
  }   
  .service-station-section {
    margin-top: 60px;
  }
  .main-footer {
    padding: 45px 0;
  }
  .main-footer .footer-widgets .widget-title {
    margin-bottom: 15px;
  }
  .main-footer .footer-widgets .wd-links li {
    margin-bottom: 5px;
  }
  body.home1 header .header-content {
    padding: 8px 0;
  }
}
@media only screen and (max-width: 420px) {
  .service-station-detail .vendor-item, .vendor-item  {
    width: 100%;
  }   
  .bottom-footer .copyright {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
}
footer {
  overflow: hidden;
}
.index5_main .i5_s_lift_wrapper .container .s_lift_container .s_lift_row .left_img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.index5_main .i5_s_lift_wrapper .container .s_lift_container .s_lift_row .left_img .circle-container {
  z-index: 1;
  top: 70px;
  left: 0px;
}
.subscribe-popup .popup-content.full-width {
  width: 100% !important;
}
/* Optional: To make sure the content div takes the full width and centers the text */
.subscribe-popup .popup-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
.product-categories.v2 .product-img > img {
  width: auto;
  margin: 0 auto;
  height: 150px;
  object-fit: contain;
}
.cart-product-thumb-slider .cart-product-thumb > img {
  width: 150px;
  height:90px;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0 auto;
}
.cart-product-large-image {
  padding: 20px 0;
}
.cart-product-large-image img {
  display: block;
  width: auto;
  height: 500px;
  margin: 0 auto;
  object-fit: contain;
}
.top-match-section .categories-match-slider .shop-categories-section .shop-category {
  width: 100%;
  position: relative;
  filter: grayscale(1);
  cursor: pointer;
  /* overflow: hidden; */
}
.top-match-section .categories-match-slider .shop-categories-section .shop-category.active{
  filter: none;
}
.top-match-section .categories-match-slider .shop-categories-section .shop-category.active h3 {
  color: #CE6934;
}
/* .top-match-section .categories-match-slider .shop-categories-section .shop-category::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000008f;
} */
.top-match-section .categories-match-slider .shop-categories-section .shop-category h3{
  /* position: relative; */
  z-index: 11;
  font-size: 12px;
}
.top-match-section .categories-match-slider .shop-categories-section .swiper-wrapper .swiper-slide {
  padding: 0 5px;
  opacity: 1;
  width: 11%;
  max-width: 285px;
}
.top-match-section .categories-match-slider .shop-categories-section .swiper-wrapper .swiper-slide.swiper-slide-active{
  opacity: 1;
}
/* .top-match-section .categories-match-slider .shop-categories-section .swiper-wrapper .swiper-slide.swiper-slide-active .shop-category::before{
  opacity: 1;
  background-color:#b88769;
} */
.build-pc-left{
  background: linear-gradient(135deg, #C98663 0%, #BA8684 100%);
}
.my-cart-bottom button{
  background: linear-gradient(135deg, #C98663 0%, #BA8684 100%);
  border-radius: 50px;
}
.product-top-section button{
  background: linear-gradient(135deg, #C98663 0%, #BA8684 100%);
  border-radius: 50px;
}
.product-next a,
.product-skip a{
  background: linear-gradient(135deg, #C98663 0%, #BA8684 100%);
  border-radius: 50px;
  font-weight: 700;
  color: #ffffff;
}
.product-list-main {
  height: 510px;
  overflow-x: hidden;
}
.product-skip.text-right {
  padding-top: 0px;
}
.overlay-menu .menu-links{
  height: 550px;
  overflow-x: hidden;
  overflow-y: scroll;
}
.overlay-menu .menu-links::-webkit-scrollbar {
  width: 0px;
} 
/* Track */
.overlay-menu .menu-links::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
/* Handle */
.overlay-menu .menu-links::-webkit-scrollbar-thumb {
  background: #B88669; 
  border-radius: 10px;
}
/* Handle on hover */
.overlay-menu .menu-links::-webkit-scrollbar-thumb:hover {
  background: #B88669; 
}
.product-list-main::-webkit-scrollbar {
  width: 2px;
}
/* Track */
.overlay-menu .menu-links::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
/* Handle */
.overlay-menu .menu-links::-webkit-scrollbar-thumb {
  background: #B88669; 
  border-radius: 10px;
}
/* Handle on hover */
.overlay-menu .menu-links::-webkit-scrollbar-thumb:hover {
  background: #B88669; 
}
.tab-link a{
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding: 0 20px;
}
.tab-link a::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #fff;
  display: none;
}
.tab-link a::after{
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #fff;
  display: none;
}
.tab-link.current a{
 font-weight: 800;
}
.tab-link.current a::before{
  display: block;
}
.tab-link.current a::after{
  display: block;
}
.puild-your-pc-section .tab-content{
  display: none;
}
.puild-your-pc-section .tab-content.current{
  display: inline-block;
}
.product-box.active {
  border: 2px solid #c98663ba!important; 
  box-shadow: 1px 2px 17px -4px rgba(0,0,0,0.75);
  -webkit-box-shadow: 1px 2px 17px -4px rgba(0,0,0,0.75);
  -moz-box-shadow: 1px 2px 17px -4px rgba(0,0,0,0.75);
  /* background-color: #c98663ba; */
}
.d-flex.justify-content-between.dsk-next-prev {
    padding: 10px 0;
}
.product-box.active  h3, .product-box.active p{
  color: #000;
}
.puild-your-pc-section{
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.puild-your-pc-section ul li{
   margin-top: 0px!important;
   padding: 4px 0!important;
}
/* Add this to your CSS file */
.shop-category.child-category-filter.active {
  border: 0px solid #007bff;
  /* box-shadow: 0 0 10px rgba(0, 123, 255, 0.5); */
}
.blog-posts .post .post-thumb img {
  height: 250px;
  object-fit: cover;
}
.meta li {
  display: flex;
  align-items: center;
  gap: 2px;
}
section.accessories-section.prod-section.i5_new_arr_wrapper {
  margin-bottom: 50px;
  background-color: #fff;
}


.top-match-section .categories-match-slider .shop-categories-section  .shop-category.active::before {
  opacity: 1;
  background-color: #b88769;
}

.top-match-section.child-categories-section .swiper-wrapper .swiper-slide {
  opacity: 1!important;
}
body.build-pc footer{
  display: none;
}
.child-categories-section .swiper-button-prev, .child-categories-section .swiper-button-next {
  width: 50px;
  height: 50px;
  border: 1px solid #b88769;
  border-radius: 30px;
  z-index: 9;
  top: auto;
  -webkit-transform: inherit;
  transform: inherit;
  cursor: pointer;
  bottom: 40px;
}
.child-categories-section .swiper-button-prev:before, .child-categories-section .swiper-button-next:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.child-categories-section .swiper-button-next:after {
 display: none;
}
.child-categories-section .swiper-button-prev:after {
  display: none;
 }
.child-categories-section .swiper-button-next:before {
  content: "\f30b";
}
.child-categories-section .swiper-button-prev:before {
  content: "\f30a";
}
.child-categories-section .swiper-button-prev{
  left: var(--swiper-navigation-sides-offset,0px);
}
.child-categories-section .swiper-button-next {
  right: var(--swiper-navigation-sides-offset,0px);
}
.child-categories-section .swiper-button-prev:hover, .child-categories-section .swiper-button-next:hover {
  background: #b88769;
}
.child-categories-section .swiper-button-prev:hover:before, .child-categories-section .swiper-button-next:hover:before {
  color: #fff;
}
.child-categories-breadcrumb .breadcrumb {
  background-color: transparent; /* No background */
  padding: 10px 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
}
.child-categories-breadcrumb .breadcrumb-item+.breadcrumb-item{
  padding-left: 0;
}
.child-categories-breadcrumb .breadcrumb-item a {
  text-decoration: none;
  color: #000; /* Bootstrap primary color */
  transition: color 0.3s ease-in-out;
  font-weight: 500;
}
.child-categories-breadcrumb .breadcrumb-item a:hover {
  color: #CE6934; /* Darker shade on hover */
}
.child-categories-breadcrumb .breadcrumb-item.active {
  color: #CE6934; /* Gray color for the active item */
  font-weight: bold;
}
.child-categories-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";  /* Change default slash (/) to › */
  color: #000;
  font-weight: normal;
  padding: 0 8px;
}
.custom-tab-content .product-categories.v2 .product-info{
  flex-direction: column;
  justify-content: center;
}
.custom-tab-content .product-categories.v2 .product-info .product-price {
  display: inline-block;
  margin-left: 0;
}

.i5_banner_main_wrapper {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
}
.verticalslider {
  width: 100%;
  height: 100%;
}
.vrt_slides {
  width: 100%;
  height: 100vh!important; /* Fullscreen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slides_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding-left: 10%;
}

.slides_content {
  color: #fff; /* White text */
  z-index: 2;
}
.index5_main .i5_banner_main_wrapper .verticalslider .vrt_slides .slides_content h2 {
  text-align: left;
}
.slides_content h2 {
  margin-bottom: 20px;
  color: #fff!important;
}
body.home1 .i5_banner_main_wrapper {
  position: relative;
  padding: 0px 0 0px!important;
}
.index5_main .i5_banner_main_wrapper .verticalslider ul.slick-dots {
  top: 42%;
  max-width: 20px;
  z-index: 1;
  margin-left: 30px;
}
.verticalslider {
  position: relative;
}
.header-dsk-menu .menu-dsk li a {
  padding: 10px 0;
}
.header-dsk-menu .menu-dsk li .sub-menu-mobile li a{
  padding: 0;
}
.slick-vertical .slick-slide {
  border: 0px solid transparent;
}
.index5_main .logo-white {
  display: block;
}
.index5_main .logo-black {
  display: none;
}
body.home1 img.down-arrow-white {
  display: block;
}
body.home1 .parent-category img.down-arrow-black {
  display:none;
}
body.home1 .sticky_header .parent-category img.down-arrow-black {
  display:block;
}
body.home1 .sticky_header img.down-arrow-white {
  display:none;
}
body.home1 .sticky_header .header-dsk-menu .menu-dsk {
  color: #000;
}
.index5_main .sticky_header .logo-white {
  display: none;
}
.index5_main .sticky_header .logo-black {
  display: block;
}
img.search-white {
  display: none;
}
img.search-black {
  display: none;
}
body.home1 img.search-white {
  display:block;
}
body.home1 .sticky_header img.search-white {
  display:none;
}
body.home1 .sticky_header img.search-black {
  display: block;
  filter: invert(100%);
}
.index5_main header .menu-other-links li a img {
  filter:none; 
  width: 22px;
  height: 22px;
}
img.search-white {
  display: block;
  width: 22px;
  height: 22px;
}
.child-categories-breadcrumb .breadcrumb-item a {
  font-size: 16px;
}
.index5_main .i5_banner_main_wrapper .verticalslider .vrt_slides .slides_content a{
  transition: 0.5s;
}
.index5_main .i5_banner_main_wrapper .verticalslider .vrt_slides .slides_content a:hover{
  background: #fff!important;
  color: #000;
  transition: 0.5s;
}
.product-categories.v2 .product-price {
    display: inline-block;
    margin-left: 0;
    color: #B88669;
    font-size: 15px;
    font-weight: 500;
}
.cart-btn {
  display: flex;
  justify-content: center;
  margin-top: 0px;
  gap: 10px;
}
.cart-btn a, .cart-btn button{
  background: linear-gradient(135deg, #C98663 0%, #BA8684 100%);
  border-radius: 50px;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  color: #fff;
  text-transform: uppercase;
  padding: 14px 25px;
  font-weight: 700;
}
div#cart-popup-form {
  width: 100%;
  max-width: 600px;
  background-color: #fff;
  position: relative;
  padding: 50px 30px;
  margin: 0 auto;
  border-radius: 21px;
}
.w-third{
width: 33%;
}
/* .index5_main .i5_banner_main_wrapper.home-banner .verticalslider .vrt_slides .slides_content {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 400px;
    width: 100%;
    padding-right: 30px;
} */
.home-banner .btn-banner{
  position:absolute;
  bottom: 20px;
  right: 20px;
}
.home-banner .btn-banner .theme-btn {
    height: 45px;
    line-height: 45px;
    padding: 0 25px;
}
.team-section-page .swiper-button-prev, .team-section-page .swiper-button-next {
    width: 50px;
    height: 50px;
    border: 1px solid #b88769;
    border-radius: 30px;
    z-index: 9;
    transform: inherit;
    cursor: pointer;
}
.team-section-page .swiper-button-prev:hover, .team-section-page .swiper-button-next:hover {
    background: #b88769;
}
.team-section-page .swiper-button-prev:before, .team-section-page .swiper-button-next:before {
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.team-section-page .swiper-button-prev:before {
    content: "\f30a";
}
.team-section-page .swiper-button-next:before {
    content: "\f30b";
}
.team-section-page .swiper-button-next::after{
  display: none;
}
.team-section-page .swiper-button-prev::after{
  display: none;
}
@media only screen and (max-width: 1640px){
  .child-categories-section .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset,5px);
  }
  .child-categories-section .swiper-button-next {
    right: var(--swiper-navigation-sides-offset,5px);
  }
  .child-categories-section .swiper-button-prev, .child-categories-section .swiper-button-next {
    width: 35px;
    height: 35px;
    bottom: 50px;
  }
}
@media only screen and (max-width: 1550px) {
  .build-pc-left{
    padding: 10px!important;
  }
  .build-pc-left h2 {
    margin-bottom: 10px!important;
  }
  .tab-link a {
    font-size: 14px;
    line-height: 15px;
  }
  .puild-your-pc-section ul li {
    padding: 2px 0!important;
  }
  .product-list-main {
    height: 400px;
    overflow-x: hidden;
  }
  .tab-content .col-7.pl-5 {
    padding-left: 5px;
  }
  .tab-content .product-box img{
    height: 60px;
  }
  .product-skip.text-right {
    padding-top: 0px;
  }
  .tab-content .product-list-detail{
    gap: 5px!important;
  }
  .puild-your-pc-section .tab-content.current {
    padding-top: 10px!important;
  }
  .tab-content .col-12 .mb-20 {
    margin-bottom: 0px;
  }
  .tab-content .product-top-section {
    margin-bottom: 10px;
  }
  img#category-image {
    height: 476px;
    width: 100%;
    object-fit: contain;
  }
  .my-cart-bottom .left{
    padding-top: 10px!important;
  }
  .my-cart-bottom .right{
    padding-top: 10px!important;
  }
  .puild-your-pc-section .tab-content .mb-20 {
    margin-bottom: 0rem;
  }  
}
@media only screen and (max-width: 1180px){
  .vendor-item {
    width: 32%;
    overflow: visible;
  }
}
@media only screen and (max-width: 1040px){
  .tab-link a {
    padding: 0 10px;
  }
  .child-categories-section .swiper-button-prev, .child-categories-section .swiper-button-next {
    width: 35px;
    height: 35px;
    bottom: 35px;
  }
  .top-match-section .categories-match-slider .shop-categories-section .shop-category h3 {
    font-size: 11px;
  }
  .product-top-section .left {
    gap: 5px;
    width: 50%;
  }
  .product-top-section .right {
    gap: 5px;
    width: 48%;
    justify-content: flex-end;
  }
  .product-top-section select.filter-dropdown {
    width: 55%;
  }
  .build-pc-left h2 {
    padding-left: 10px !important;
  }
}
@media only screen and (max-width: 990px){
  header .menu-other-links {
    margin-left: auto;
  }
  .product-list-main {
    height: 355px;
  }
  img#category-image {
    height: 350px;
  }
  .product-next.text-right,  .product-skip.text-right{
    padding-bottom: 0!important;
  }
}
@media only screen and (max-width: 767px){
  .product-list-main {
    height: 395px;
    overflow-x: hidden;
  }
  img#category-image {
    height: 66px;
    width: 100%;
    object-fit: cover;
    margin-top: 0px;
  }
  ul#tab-nav {
    display: flex;
    align-items: center;
    /* overflow-x: scroll;
    overflow-y: hidden; */
  }
  .tab-link a {
    padding: 0 10px;
    width: max-content;
    display: flex;
  }
  .puild-your-pc-section ul li {
    padding: 8px 0!important;
  }
  .menu-links {
    padding-top: 0px;
  }
  .menu-links {
    padding: 15px;
  }
  .puild-your-pc-section{
    padding: 56px 0 0!important;
  }
  .index5_main .i5_banner_main_wrapper .verticalslider ul.slick-dots {
    margin-left: 10px;
    top: 34%;
  }
  .i5_banner_main_wrapper {
    height: 56vh; /* Full viewport height */
  }
  .vrt_slides {
    height: 56vh!important; /* Fullscreen */
  }
  .child-categories-breadcrumb .breadcrumb-item a {
    font-size: 12px;
  }
  .child-categories-breadcrumb .breadcrumb-item+.breadcrumb-item {
    font-size: 12px;
  }
  .child-categories-breadcrumb .breadcrumb {
    padding: 10px 0px;
  }
  .child-categories-breadcrumb .breadcrumb-item.active {
    font-size: 12px;
  }
  .top-match-section.v2.child-categories-section .shop-categories-section {
    padding: 0px 0px 10px;
    border-top: 0;
  }
  .child-categories-section .swiper-button-prev, .child-categories-section .swiper-button-next {
    bottom: 50px;
  }
  .child-categories-section .swiper-button-next {
    right: var(--swiper-navigation-sides-offset,0px);
  }
  .child-categories-section .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset,0px);
  }
  .shop-page.mt-5 {
    margin-top: 0rem!important;
  }
  .shop-page .collection-section {
    padding-top: 30px;
  }
  .shop-filters {
    display: flex;
    justify-content: space-between;
    margin-top: 0px;
  }
  .shop-page .product-categories.v2 .product-cat {
    padding: 15px 10px 15px 10px;
  }
  .shop-filters .shop-ul {
    margin-bottom: 0px;
  }
  .shop-filters .tabs-icons {
    margin-right: 0;
    margin-bottom: 0px;
    display: none;
  }
  .shop-header {
    padding: 0 0px;
  }
  .main-footer .footer-widgets .widget-newsletter form button.theme-btn {
    color: #000;
    line-height: 0;
  }
  .shop-page {
    margin-bottom: 10px;
  }
  .full-screen-preview.product .page-banner {
    padding: 30px 0;
    height: 220px;
  }
  .breadcrumb {
    margin-bottom: 5px;
  }
  .shop-page .collection-section {
    padding-top: 15px!important;
  }
  .product-categories.v2 .product-img > img {
    height: 150px;
    margin: 0 auto;
  }
  .dsk-next-prev{
    display: none!important;
  }
  .my-cart-bottom .left {
    position: relative;
    padding-left: 5px!important;
    padding-right: 5px!important;
    z-index: 11;
  }
  .mobile-next-pre {
    position: relative;
    gap:8px;
    z-index: 11;
    padding-right: 5px;
  }
  .product-next a, .product-skip a {
    margin: 0!important;
  }
  .product-skip.text-right {
    padding-bottom: 0!important;
  }
  .mobile-next-pre .pb-10 {
    padding-bottom: 0;
  }
  .relative.my-cart-bottom {
    align-items: center;
    padding: 10px 0;
  }
  .my-cart-bottom::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #00000094;
    z-index: 1;
  }
  .cart-icon-box{
    position: relative;
  }
  .cart-number {
    position: absolute;
    top: -5px;
    right: 0;
    color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background-color: #E6A42C;
    font-size: 10px;
    line-height: 8px;
    padding: 4px;
    display: flex;
    justify-content: center;
  }
  .view-cart-mobile {
    display:block;
  }
  .product-top-section h2 {
    width: auto;
  }
  .product-top-section .left {
    width: auto;
  }
  .product-top-section .right {
    width: auto;
    justify-content: flex-end;
  }
  .tab-content .product-box img {
    height: 100px;
  }
  .prod-section {
    padding: 45px 0 0;
  }
  .prod-section .prod-col > img {
    height: auto;
    overflow: hidden;
    object-fit: cover;
  }
  .index5_main .i5_prod_section .container-fluid .row .prod-col {
    min-height: auto;
  }
  body.home1 header.sticky_header  .header-content {
    padding: 14px 0;
    transition: 0.5s;
    
  }
  .prod-section .prod-col {
    margin-bottom: 10px;
  }
  body.home1.index5_main header .menu-btn > span {
    background-color: #fff;
  }
  body.home1.index5_main header.sticky_header .menu-btn > span {
    background-color: #000;
  }
  .index5_main .i5_new_arr_wrapper .container-fluid .row .arriavls-items-column .sec-title {
    margin: 0 0 30px;
  }
  .accessories-section.prod-section .arriavls-items-column {
    margin-top: 30px;
  }
  .index5_main .i5_new_arr_wrapper {
    padding: 0px 0 80px;
  }
  section.accessories-section.prod-section.i5_new_arr_wrapper {
    margin-bottom: 20px;
  }
  .pt-logos .pt-logo {
    max-width: 35%;
    flex: 0 0 35%;
  }
  .pt-logos {
    gap: 15px;
  }
  .brand-section {
    padding: 85px 0 70px;
  }
  .index5_main .i5_s_lift_wrapper .container .s_lift_container .s_lift_row .right_content {
    margin-top: 0px;
  }
  .index5_main .i5_new_arr_wrapper .container-fluid .row .arriavls-items-column .acc-slideri5 .slick-next {
    left: 52%;
  }
  .index5_main .i5_new_arr_wrapper .container-fluid .row .arriavls-items-column .acc-slideri5 .slick-prev{
    left: 35%;
  }
  .cart-product-content .cart-product-info {
    max-width: 548px;
    text-align: center;
  }
  .slides_overlay {
    padding-left: 7%;
    padding-right: 7%;
  }
  .cart-btn a, .cart-btn button {
    font-size: 14px;
    line-height: 14px;
    padding: 12px 14px;
  }
  .page-content {
    padding-top: 45px;
  }
  .page-content .about-top {
    margin-bottom: 30px;
  }
  .page-content .title-column p {
    font-size: 14px;
    line-height: 20px;
  }
  .page-content .title-column h2 {
    margin-bottom: 25px;
  }
  .sec-title.space-v2 {
    margin-bottom: 30px;
  }
  .testimonial-section-v2 .testi2-slide p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 31px;
  }
  body.about .testimonial-section-v2 {
    padding: 0px 0 45px;
  }
  .team-section-page {
    padding: 55px 0;
  }
  .team-section-page .sec-title {
    margin-bottom: 30px;
  }
  .contact-page-section {
    padding: 15px 0;
  }
  .contact-links-info li {
    max-width: 230px;
  }
  header .container {
    padding: 7px 15px;
  }
  section.map-section-full {
    margin-top: 20px;
  }
  .map-section-full iframe {
    height: 100%;
  }  
  .contact-form-section .contact_form .form-group textarea {
    padding: 10px;
    height: 110px;
  }
  .contact-form-section .contact_form .form-group input, .contact-form-section .contact_form .form-group textarea {
    height: 40px;
  }
  .contact-form-section {
    padding: 60px 0 45px;
  }
  header {
    position: fixed;
  }
  .contact-page.page-banner {
    padding: 80px 0;
    height: auto;
  }
  header .header-content {
    padding: 8px 0;
  }
  .vendor-item {
    width: 100%;
    overflow: visible;
  }
  .shop-headright {
    margin-top: 40px;
    margin-bottom: 46px;
  }
  .shop-page .product-categories.v2 {
    gap: 10px;
  }
  .shop-page .product-categories.v2 .product-cat {
    max-width: 48%;
    margin-bottom: 0;
  }
  .custom-tab-content .product-categories.v2 .product-info {
    padding: 0;
  }
  .product-categories.v2 .product-info h3 {
    color: #222222;
    font-size: 12px;
  }
  .product-categories.v2 .product-info .product-price {
    font-size: 13px;
  }
  .popup .popup-content .inner-column {
    padding: 0 4px;
  }
  .subscribe-popup .popup-content {
    padding: 15px 0;
  }
  .accessories-section.prod-section .arriavls-items-column {
    padding-left: 0px;
  }
  .accessories-section.prod-section .arriavls-items-column {
    overflow: hidden;
    padding-bottom: 80px;
  }
  .index5_main .i5_new_arr_wrapper {
    padding: 0px 0 0px;
  }
  .blog-posts {
    overflow: hidden;
  }
  .accessories-section.prod-section .arriavls-items-column {
    padding-left: 0px;
  }
  .blog-posts {
    margin: 0 0px;
  }
  .blog-posts .post {
    padding: 0 0px;
  }
  .sec-title {
    margin: -16px auto 30px;
  }
  .prod-section .prod-col {
    margin-bottom: 0px;
  }
  .prod-section .container-fluid .row .col-lg-4 {
    padding: 0 5px;
    width: 50%;
    margin-bottom: 12px!important;
  }
  .prod-section .prod-col .prod-caption > h3 {
    font-size: 12px;
  }
  .prod-section .prod-col .prod-caption .theme-btn {
    font-size: 12px;
    height: 35px;
    line-height: 35px;
    padding: 0 15px;
  }
  .latest-news-section {
    padding: 55px 0;
  }
  .index5_main .i5_new_arr_wrapper .container-fluid .row .arriavls-items-column .acc-slideri5 .product-cat .product-img img {
    min-height: 150px;
  }
  .menu-links ul li a {
    padding: 0 20px;
    display: inline-block;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: auto;
  }
  li.has-children .mobile-arrow {
    width: 25px;
    position: absolute;
    right: 20px;
    top: -1px;
    z-index: 1;
    transition: 0.5s;
  }
  .menu-links ul li a:hover {
    transform: translateX(0px);
  }
  .menu-links ul li {
    margin-bottom: 15px;
  }
  .menu-links ul li.active  img.down-arrow-black {
    transform: rotate(0deg);
    transition: 0.5s;
  }
  .menu-links ul li.active ul.child-menu {
    display: block!important;
    position: relative!important;
    background-color: transparent!important;
    box-shadow: unset!important;
    left: 6px!important;
    width: 100%!important;
    transition: 0.5s;
    overflow: visible!important;
  }
  
  ul.child-menu {
    transition: 0.5s;
  }
  li.sub-menu-dsk.menu-item-has-children.active ul.sub-menu-mobile {
    display: block;
  }
  .service-station-section {
    margin-top: 55px!important;
  }
  .page-banner {
    padding: 80px 0 80px;
    background-size: cover;
    background-position: center;
  }
  .shop-product-single h3.mobile-title {
    display: block;
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 25px;
  }
  .shop-single-section .shop-product-single-info > h3 {
    display: none;
  }  
  .cart-product-large-image img {
    height: 230px;
  }
  .sec-title {
    margin: 0px auto 30px;
  }
  .shop-single-section {
    padding: 98px 0 50px;
  }
  .accessories-section.prod-section .arriavls-items-column {
    margin-top: 0px;
  }
  .shop-single-section .cart-product-thumb-slider {
    margin-top: 35px;
  }
  .shop-single-section .shop-product-single-info .price {
    margin-bottom: 14px;
  }
  .index5_main .i5_banner_main_wrapper .verticalslider .vrt_slides .slides_content h2 {
    opacity: 1;
    font-size: 25px;
    line-height: 30px;
  }
  #tab-nav {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Enables smooth scrolling on mobile */
    justify-content: flex-start;
  }

  #tab-nav::-webkit-scrollbar {
      display: none; /* Hide scrollbar for a cleaner UI */
  }
  .puild-your-pc-section ul li.tab-link.current {
     order: 0;
  }
  .puild-your-pc-section ul li{
    order: 1;
  }
  div#searchResults {
    margin-top: 19px;
    padding: 0 0%;
  }
  div#searchResults h3 {
    font-size: 14px;
    line-height: 18px;
  }
  .accessories-section.prod-section .arriavls-items-column .sec-title {
    margin-bottom: 30px;
}
.accessories-section.prod-section .acc-slider .slick-prev, .accessories-section.prod-section .acc-slider .slick-next {
  top: 116px;
 
}
#tab-nav li.tab-link.current {
  background-color: transparent;
}
#tab-nav li.tab-link.current a {
  color: #fff;
}
.index5_main .i5_banner_main_wrapper.home-banner .verticalslider .vrt_slides .slides_content {
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    padding-right: 0px;
}
.home-banner .btn-banner{
  justify-content:flex-start;
}

}
header .menu-other-links {
  margin-left: 0;
  display: flex;
  gap: 5px;
}
.get-in-touch {
  border: 1px solid;
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.5s;
}
.get-in-touch:hover {
color: #fff;
background-color: #b88769;
transition: 0.5s;
}
.sticky_header .get-in-touch {
  color: #fff;
  background-color: #b88769;
  transition: 0.5s;
}
.sticky_header .get-in-touch:hover {
  color: #000;
  background-color: #fff;
  transition: 0.5s;
}
.latest-news-section .testimonial-section-v2 {
  padding: 0px 0;
}
.team-section-page .team-info-v2 {
    display: block;
    width: 100%;
    padding: 20px 20px;
    text-align: left;
}
.team-section-page .swiper::before {
  content: "";
  position: absolute;
  top: -70px;
  left: -10%;
  width: 120%;
  height: 100px;
  background: #F8F8F8;
  border-radius: 100%;
  z-index: 100;
}
/* .team-info-v2 h3, .team-info-v2 span{
  color: #fff;
} */
.team-section-page{
  position: relative;
}
.team-section-page .team-section-bg{
    content: "";
    position: absolute;
    left: 0;
    top: 335px;
    width: 100%;
    height: 150px;
    background-color: #B88669;
    z-index: 0;
}
.team-section-page .container {
    position: relative;
    z-index: 1;
}
.team-section-page .swiper::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -10%;
  width: 120%;
  height: 100px;
  background: #F8F8F8;
  border-radius: 100%;
  z-index: 1000;
}
/* .team-section-page .team-info-v2 {
    display: none;
} */
.team-section-page .sec-title {
    text-align: left;
    width: 100%;
    margin: 0 0 50px;
    display: flex;
    justify-content: space-between;
    max-width: 100%;
}
.team-section-page .swiper-slide {
   overflow: hidden;
   border-radius: 40px 0 40px 0;
}
.team-section-page .swiper-slide-active  .team-info-v2 {
    display: block;
}
.pr-35{
  padding-right: 35px;
}
.team-section-page .swiper-button-next, .team-section-page .swiper-button-prev {
    color: rgb(184, 135, 105);
    position: relative;
    top: 7px;
    left: inherit;
    right: inherit;
}
.team-section-page .team-arrows {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 0 0px;
}
.team-section-page .team-img-v2 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
    border-radius: 15px;
    overflow: hidden;
}
.team-img-v2 {
    width: 100%;
}
.team-section-page .swiper::after {
  display: none;
}
.team-section-page .swiper::before {
  display: none;
}
.teams {
    display: flex;
    width: 100%;
    gap: 35px;
    flex-wrap: wrap;
    position: relative;
}
.teams .inner-column {
    display: flex;
    width: 17%;
    padding: 0;
    flex-direction: column;
}
.teams .inner-column:nth-child(2n){
  margin-top: 85px;
}
.footer-widgets ul.social-icon {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.footer-widgets ul li img{
width: 20px;
}
.footer-widgets ul li a {
  display: inline-block;
  transition: 0.5s;
  padding-left: 0!important;
}
.footer-widgets ul li a:hover{
 transform: scale(1.5);
 transition: 0.5s;
 padding-left: 0!important;
}

@media only screen and (max-width: 990px){
  .get-in-touch {
    display: none;
  }
  header .menu-other-links {
    display: none;
  }
}
@media only screen and (max-width: 767px){
  .team-section-page .swiper-slide-active  .team-info-v2 {
      bottom: 0px;
  }
  .team-section-page .swiper::after {
    display: none;
  }
  .team-section-page .swiper::before {
    display: none;
  }
  .pr-35{
    padding-right: 0px;
  }
  .team-section-page .team-arrows {
    display: none;
  }
  .team-section-page .sec-title {
      margin: 0 0 25px;
  }
.team-section-page .team-img-v2 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top;
}
.teams .inner-column:nth-child(2n){
  margin-top: 0px;
}
}
.drop-menu .dropeddown {
  height: 100px;
}
.shop-filters {
  padding-bottom: 50px;
}
.hero-video-container{
 position: relative;
}
video.hero-video {
    width: 100%;
   
}
.hero-video-container::after{
  content: "";
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Darkened overlay for better text visibility */
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testi-v2-slider .slick-track {
    display: flex!important;
}
.testimonial-section-v2 .container-full .col-lg-4 {
    height: auto;
}
.testimonial-section-v2 .testi2-slide {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.testimonial-section-v2 .testi2-slide .testi2-info p{
  font-size: 16px;
  line-height: 22px;
  font-style: normal;
}
.cart-popup-detail .cart-item-details h2{
  display: none;
}
.build-cart{
  display: none;
}
body.build-pc .build-cart{
  display: block;
}
.team-section-page .swiper {
  position: relative;
	width: 100%;
	margin-inline: auto;
}
.product-list-main h3 {
    font-family: var(--text-font);
}
.my-cart-bottom .cart-item h2 {
    font-family: var(--text-font);
}
.shop-product-single-info ul, .shop-product-single-info ol {
  margin: 0 5px;
  padding-left: 18px;
}
.shop-product-single-info ul li, .shop-product-single-info ol li{
  list-style: disc;
  margin-bottom: 5px;
}
.shop-product-single-info h2{
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 10px;
}
.shop-single-section .shop-product-single-info .price {
    margin-top: 20px;
}
.puild-your-pc-section .product-box{
  border-radius: 15px;
}
@media only screen and (max-width: 1480px) {
  .teams .inner-column {
      width: 18%;
  }
  .teams {
    gap: 28px;
  }
}
@media only screen and (max-width: 1280px) {
  .teams .inner-column {
      width: 18%;
  }
  .team-section-page .team-img-v2 img {
    height: 260px;
  }
  .team-section-page::before {
    top: 287px;
    width: 100%;
    height: 130px;
  }
  .teams {
    gap: 24px;
  }
}
@media only screen and (max-width: 918px) {
  .teams .inner-column {
      width: 23%;
  }
  .teams {
      gap: 19px;
  }
  .team-section-page .team-img-v2 img {
    height: 300px;
  }
  .team-section-page::before {
    content: "";
    position: absolute;
    left: 0;
    top: 287px;
    width: 100%;
    height: 130px;
  }
   
}
@media only screen and (max-width: 767px) {
    .i5_banner_main_wrapper {
        height: auto;
    }
    .shop-page .product-categories.v2 .product-cat {
      margin: 0 0px;
    }
    .shop-product-single-info h2{
      font-size: 14px;
      line-height: 20px;
    }
   
    .teams {
      gap: 14px;
    }
    .team-section-page::before {
      top: 205px;
      width: 100%;
      height: 130px;
    }
    .teams .inner-column {
      width: 31.6%;
    }
   
}
@media only screen and (max-width: 680px) {
    .teams .inner-column {
      width: 48%;
    }
}
@media only screen and (max-width: 480px) {
    .teams .inner-column {
      width: 100%;
    }
    .team-section-page .team-img-v2 img {
      height: 320px;
      max-width: 320px;
      margin: 0 auto;
    }
    .team-section-page .team-info-v2 {
      max-width: 320px;
      margin: 0 auto;
    }
}
 

