@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?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("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
/* #### Generated By: http://font.download #### */

@font-face {
  font-family: "Helvetica";
  font-style: normal;
  font-weight: normal;
  src: local("Helvetica"),
    url("../fonts/helvetica/Helvetica.woff") format("woff");
}

@font-face {
  font-family: "Helvetica Oblique";
  font-style: normal;
  font-weight: normal;
  src: local("Helvetica Oblique"),
    url("../fonts/helvetica/Helvetica-Oblique.woff") format("woff");
}

@font-face {
  font-family: "Helvetica Compressed";
  font-style: normal;
  font-weight: normal;
  src: local("Helvetica Compressed"),
    url("../fonts/helvetica/helvetica-compressed-5871d14b6903a.woff")
      format("woff");
}

@font-face {
  font-family: "Helvetica Rounded Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Helvetica Rounded Bold"),
    url("../fonts/helvetica/helvetica-rounded-bold-5871d05ead8de.woff")
      format("woff");
}

@font-face {
  font-family: "Helvetica";
  font-style: normal;
  font-weight: normal;
  src: local("Helvetica"),
    url("../fonts/helvetica/Helvetica-Bold.woff") format("woff");
}

@font-face {
  font-family: "Helvetica Bold Oblique";
  font-style: normal;
  font-weight: normal;
  src: local("Helvetica Bold Oblique"),
    url("../fonts/helvetica/Helvetica-BoldOblique.woff") format("woff");
}

@font-face {
  font-family: "Helvetica Light";
  font-style: normal;
  font-weight: normal;
  src: local("Helvetica Light"),
    url("../fonts/helvetica/helvetica-light-587ebe5a59211.woff") format("woff");
}

@font-face {
  font-family: "HighriseDemo";
  src: url("../fonts/highrisedemo/HighriseDemoRegular.woff2") format("woff2"),
    url("../fonts/highrisedemo/HighriseDemoRegular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HighriseDemo Condensed";
  src: url("../fonts/highrisedemo/HighriseDemoCondensed.woff2") format("woff2"),
    url("../fonts/highrisedemo/HighriseDemoCondensed.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HighriseDemo";
  src: url("../fonts/highrisedemo/HighriseDemoBold.woff2") format("woff2"),
    url("../fonts/highrisedemo/HighriseDemoBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  /*** theme colors ***/
  --theme-color: #c89d6e;
  --theme-color-2: #212123;
  --gradient-1: linear-gradient(
    0deg,
    rgba(155, 162, 171, 1) 10%,
    rgba(255, 255, 255, 1) 50%,
    rgba(155, 162, 171, 1) 90%
  );
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: "Instrument Sans", sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Helvetica";
}

p {
  font-family: "Plus Jakarta Sans";
}

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

a {
  color: var(--theme-color-2);
  text-decoration: none;
  font-family: "Plus Jakarta Sans";
}

/* Header */
section.header-main {
  padding: 25px 0;
  border-bottom: 2px solid #333333;
  background-color: var(--theme-color-2);
}

.header-social {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 0 10px;
  padding-left: 10px;
}

.header-offer p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*.header-logo a img {*/
/*  width: 100%;*/
/*}*/
.header-logo h2 {
  text-align: center;
  font-size: 80px;
  font-family: "HighriseDemo";
  margin: 0;
  line-height: 60px;
  font-weight: 700;
}

.header-logo {
  position: relative;
}

.header-logo img {
  width: 60%;
  margin: 0 auto;
  display: block;
}

.header-logo::before {
  content: "";
  background: var(--theme-color);
  position: absolute;
  top: -31px;
  left: 50%;
  width: 170px;
  height: 73px;
  transform: translateX(-50%);
  z-index: -1;
}


.header-lang {
  position: relative;
  cursor: pointer;
}

.header-lang select {
  border: none;
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 80%;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.header-lang::before {
  content: "\f0d7"; /* initial icon (down arrow) */
  font-family: 'FontAwesome';
  position: absolute;
  display: block;
  top: -4px;
  left: 68%;
  width: 100%;
  height: 100%;
  font-size: 22px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  transition: transform 0.3s ease, content 0.3s ease;
}
.header-lang select option {
  color: var(--theme-color);
  background-color: var(--theme-color-2);
}

/* .header-lang select option:hover {
  color: var(--theme-color-2);
  background-color: var(--theme-color);
} */

.my-account {
  display: flex;
  align-items: center;
  justify-content: start;
  padding-right: 10px;
  gap: 0 14px;
}

.my-account a img {
  width: 21px;
  height: 21px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.main-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: space-around;
}

.main-nav ul li {
  list-style: none;
}

section.header-nav {
  padding: 40px 0;
  background-color: var(--theme-color);
}

.main-nav ul li a {
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  transition: all 0.3s ease-in-out;
  color: var(--theme-color-2);
}

/* Header */
/* Footer */
section.footer {
  background: url(../images/footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 0px;
}

.newletter h2 {
  text-transform: uppercase;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 60px;
  font-family: "Helvetica Compressed";
  margin-bottom: 20px;
}

.newletter p {
  color: #fff;
  width: 88%;
  text-align: center;
  margin: 20px auto 30px;
}

.newsletter-input {
  text-align: center;
}

.newsletter-input input[type="email"] {
  padding: 15px 30px;
  width: 33%;
  border: 1px solid #e0e0e0;
  outline: none;
}

.newsletter-input input[type="submit"] {
  padding: 15px 60px;
  background: var(--theme-color);
  border: 1px solid var(--theme-color);
  border-radius: 40px;
  margin-left: -30px;
}

.newletter {
  padding: 50px 0;
  border-bottom: 2px solid #ffffff20;
}

.payment-method {
  text-align: center;
  padding: 30px 0;
  border-bottom: 2px solid #ffffff20;
}

.footer-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.footer-nav ul li {
  list-style: none;
}

.footer-nav ul li a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.footer-nav {
  padding: 30px 0;
  border-bottom: 2px solid #ffffff20;
}

.copyright {
  padding: 20px;
}

.copyright p {
  margin: 0;
  text-align: center;
  color: #fff;
  font-weight: 500;
}

/* Footer */
/* main-banner */
section.main-banner {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 176px 0;
}

.banner-cont h1 {
  font-family: "Helvetica Compressed";
  font-size: 90px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  line-height: 80px;
}

.banner-cont p {
  color: #fff;
  width: 73%;
  margin: 20px 0 30px;
}

a.theme-btn {
  background: var(--theme-color);
  padding: 16px 50px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-right: 20px;
  position: relative;
  z-index: 1;
}

a.transparent-btn {
  color: #fff;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #fff;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
a
/* main-banner */
/* Categires */
section.pro-category {
  margin: 50px 20px;
}

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

.pro-cat::before {
  content: "";
  background: #00000030;
  position: absolute;
  width: 0%;
  height: 0%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  z-index: -1;
}

.pro-cat:hover:before {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.pro-cat-one {
  background: url(../images/cat-one.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0;
  margin-bottom: 25px;
}

.pro-cat-one h2 {
  font-size: 72px;
    background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Helvetica Compressed";
  text-align: center;
  margin: 0;
}

.pro-cat-one h3 {
  text-align: center;
    background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 45px;
  font-family: "Helvetica Compressed";
  margin: 0;
}

.pro-cat-one a.theme-btn {
  margin: 10px auto;
  display: block;
  width: fit-content;
}

.pro-cat-two {
    background: url(../images/cat-two.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0;
    background-position: center;
}

.pro-cat-two h2 {
  text-align: center;
  font-size: 72px;
  font-family: "Helvetica Compressed";
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.pro-cat-two h3 {
  text-align: center;
  font-size: 45px;
  font-family: "Helvetica Compressed";
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.pro-cat-two a.theme-btn {
  margin: 10px auto;
  display: block;
  width: fit-content;
}

.pro-cat-three {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: url(../images/cat-three.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 50px;
  margin-bottom: 20px;
}

.pro-cat-three h3 {
  font-size: 45px;
  font-family: "Helvetica Compressed";
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.pro-cat-three h2 {
  font-size: 72px;
  font-family: "Helvetica Compressed";
  margin: 0;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pro-cat-four {
  background: url(../images/cat-four.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 142px 0;
}

.pro-cat-four h2 {
  font-size: 72px;
    background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Helvetica Compressed";
  text-align: center;
  margin: 0;
}

.pro-cat-four h3 {
  text-align: center;
    background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 45px;
  font-family: "Helvetica Compressed";
  margin: 0;
}

.pro-cat-four a.theme-btn {
  margin: 10px auto;
  display: block;
  width: fit-content;
}

/* Categires */
/* Shop by Category */
.section-heading h2 {
  font-family: "HighriseDemo";
  font-size: 75px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
  font-weight: 600;
  color: var(--theme-color-2);
}

section.shop-category {
  padding: 30px 20px 140px;
  background-color: var(--theme-color);
}

.category-card-one {
  background: var(--theme-color-2);
  padding: 25px;
  text-align: center;
  margin: 0 5px;
  width: 440px;
}

.section-heading::after {
    display: none !important;
}

.category-card-two {
  background: #00000040;
}

.category-card-one h2 {
  font-family: "Helvetica Compressed";
  font-size: 45px;
  margin: 0;
  margin-top: 30px;
  color: var(--theme-color);
}

.category-card-one img {
  height: 400px;
  width: 100%;
  object-fit: none;
}

.catergory-slider .slick-next:before {
  content: "\f054";
  color: var(--theme-color-2);
  font-weight: 700 !important;
  font-family: "Font Awesome 6 Free";
  background: #00000020;
  padding: 25px 27px;
  font-size: 14px;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}

.catergory-slider .slick-next:hover:before {
  background: var(--theme-color);
}

.catergory-slider .slick-prev:before {
  content: "\f053";
  color: var(--theme-color-2);
  font-weight: 700 !important;
  font-family: "Font Awesome 6 Free";
  background: #00000020;
  padding: 25px 27px;
  font-size: 14px;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}

.catergory-slider .slick-prev:hover:before {
  background: var(--theme-color);
}

.catergory-slider .slick-prev {
  top: 39rem !important;
  left: 45%;
}

.catergory-slider .slick-next {
  top: 39rem !important;
  left: 51%;
}

/* Shop by Category */
/* Shop by brand */
section.shop-brand {
  padding: 50px 0;
  background-color: var(--theme-color-2);
}

section.shop-brand .section-heading h2 {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Shop by brand */
/* Promotion */
section.promotion {
  background-image: url(../images/promotion-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  padding: 89px 0;
  background-color: #212123;
  background-position: center;
}

.promotion-content h5 {
  font-family: "Plus Jakarta Sans";
  text-transform: uppercase;
  text-align: center;
  font-size: 15px;
  margin-bottom: 0;
  color: #fff;
}

.promotion-content h2 {
  font-family: "HighriseDemo";
  font-weight: 600;
  font-size: 97px;
  text-align: center;
  margin: 20px 0;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 100px;
}

.promotion-content p {
  text-align: center;
  width: 42%;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
}

.promotion-content .theme-btn {
  margin: 30px auto 0;
  display: block;
  width: fit-content;
  border: 1px solid #4c4c4d;
  padding: 10px 60px;
}

/* Promotion */
/* Offer */
section.offer {
  background: var(--theme-color);
  padding: 40px 20px;
}

.offer-content h5 {
  font-family: "Plus Jakarta Sans";
  text-transform: uppercase;
  font-size: 15px;
  color: #fff;
}

.offer-content h2 {
  font-size: 65px;
  font-family: "Helvetica Compressed";
  text-transform: uppercase;
  width: 52%;
  margin-bottom: 10px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.offer-content p {
  font-size: 15px;
  width: 65%;
  color: #fff;
}

.offer-content a.theme-btn {
  padding: 10px 50px;
  border: 1px solid var(--theme-color-2);
  margin-top: 15px;
}

div#countdown {
  background: var(--theme-color-2);
  padding: 20px;
  border: 1px solid transparent;
  position: absolute;
  width: 100%;
  top: 86px;
  left: -50px;
}

div#countdown ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

div#countdown ul li {
  list-style: none;
  font-family: "Plus Jakarta Sans";
  color: #fff;
}

div#countdown ul li span {
  font-family: "Helvetica Compressed";
  font-size: 60px;
  margin-right: 10px;
  color: #fff;
}

.offer-timer {
  position: relative;
}

.offer-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* Offer */
/* shop */
.product-img img {
  height: 430px;
  object-fit: none;
  width: 100%;
  padding: 20px;
}

.product-card-one {
  text-align: center;
  margin: 0 5px;
  width: 415px;
}
.product-img {
  background: var(--theme-color-2);
}

section.shop {
  padding: 40px 20px;
  background: var(--theme-color);
  position: relative;
}

.shop-tab ul#pills-tab {
  justify-content: center;
  margin: 10px 0 40px !important;
}

section.shop .section-heading h2 {
  margin-bottom: 35px;
}

.shop-tab ul#pills-tab li button {
  color: var(--theme-color-2);
  text-transform: uppercase;
  font-weight: 400;
  padding: 0;
}

.shop-tab ul#pills-tab li button.active {
  background: none !important;
  font-weight: 700;
}

.shop-tab .nav-link:focus-visible {
  box-shadow: none;
}

.product-desc {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--theme-color-2);
  text-align: left;
  background: var(--theme-color);
}

.shop-slider .slick-next:before {
  content: "\f054";
  color: var(--theme-color-2);
  font-weight: 700 !important;
  font-family: "Font Awesome 6 Free";
  background: var(--theme-color);
  padding: 25px 27px;
  font-size: 14px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  border: 1px solid var(--theme-color-2);
}

.shop-slider .slick-next:hover:before {
  background: #00000020;
}

.shop-slider .slick-prev:before {
  content: "\f053";
  color: var(--theme-color-2);
  font-weight: 700 !important;
  font-family: "Font Awesome 6 Free";
  background: var(--theme-color);
  padding: 25px 27px;
  font-size: 14px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  border: 1px solid var(--theme-color-2);
}

.shop-slider .slick-prev:hover:before {
  background: #00000020;
}

.shop-slider .slick-prev {
  z-index: 1;
  left: -15px;
}

.shop-slider .slick-next {
  z-index: 1;
  right: 20px;
}

.product-desc h2 {
  font-family: "Helvetica Compressed";
  font-size: 30px;
  text-transform: uppercase;
}

.product-desc p {
  font-size: 14px;
  margin: 10px 0;
}

.product-desc h5 {
  font-family: "Helvetica Compressed";
  font-size: 45px;
}

.viewall-btn {
  text-align: center;
  margin-top: 30px;
}

.viewall-btn a.transparent-btn {
  color: var(--theme-color-2);
  border-color: var(--theme-color-2);
}

.viewall-btn a.transparent-btn:hover {
  color: #fff;
  background-color: var(--theme-color-2);
  border-color: transparent;
}

.viewall-btn a.transparent-btn::before {
  background: var(--theme-color-2);
}

/* shop */
a.theme-btn:before {
  content: "";
  background: #efefef;
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

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

.main-nav ul li a::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  border-radius: 10px;
  background: var(--theme-color-2);
  transition: all 0.3s ease-in-out;
}

.main-nav ul li a:hover:before {
  width: 100%;
}

/* .main-nav ul li a:hover {
  color: var(--theme-color-2);
} */

.header-social a:hover svg {
  color: var(--theme-color);
}

.header-social a svg {
  transition: all 0.3s ease-in-out;
  color: #fff;
}

a.transparent-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--theme-color);
  width: 0%;
  height: 100%;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

a.transparent-btn:hover:before {
  width: 100%;
}

a.transparent-btn:hover {
  color: var(--theme-color-2);
}

.category-card-one:hover img {
  transform: scale(1.15);
}

.category-card-one {
  overflow: hidden;
}

.category-card-one img {
  transition: all 0.3s ease-in-out;
}

.category-card-two h2 {
  color: var(--theme-color-2);
}

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

.product-card-one:hover .product-img {
  background: #21212370;
  box-shadow: 0 0 20px 1px #00000050;
}

.product-card-one:hover .product-desc {
  background: var(--theme-color);
}

.product-card-one:hover .product-desc {
  background-color: var(--theme-color-2);
}

.product-card-one:hover .product-desc h2,
.product-card-one:hover .product-desc p,
.product-card-one:hover .product-desc h5 {
  color: #fff;
}

.product-card-one .product-img {
  transition: all 0.3s ease-in-out;
}

.product-card-one .product-desc {
  transition: all 0.3s ease-in-out;
}

section.shop-brand img {
  transition: all 0.3s ease-in-out;
}

section.shop-brand img:hover {
  transform: translateY(-10px);
}
section.pro-category {
  padding: 50px 20px;
  background-color: var(--theme-color-2);
}
.shop-tab ul#pills-tab li {
  color: var(--theme-color-2);
  text-transform: uppercase;
  font-weight: 400;
  padding: 8px 16px;
}
/*Innerpage banner*/
section.innerpage-banner {
  padding: 150px 0;
  background: url(../images/inner-bannner.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.innerpage-title h1 {
  font-size: 80px;
  color: #fff;
  font-family: "Helvetica Compressed";
  text-align: center;
  text-transform: uppercase;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section.product-page {
  padding: 20px 20px 50px;
}
section.product-page .product-card-one {
  margin: 10px 0;
}
.filter-left {
  display: flex;
  justify-content: space-between;
  gap: 0 90px;
  align-items: center;
}

.fiter-right {
  display: flex;
  justify-content: space-between;
}

section.pro-filter {
  background: var(--theme-color);
  padding: 20px;
  margin-top: 20px;
}

.filter-left select {
  background: #f000;
  border: none;
  color: var(--theme-color-2);
  font-family: "Instrument Sans";
  font-size: 16px;
  font-weight: 500;
}

.filter-left select option {
  color: var(--theme-color-2);
  background-color: var(--theme-color);
}

.fiter-right label,
.fiter-right span {
  margin-right: 5px;
  font-family: "Instrument Sans";
  font-weight: 500;
  color: var(--theme-color-2);
}

.fiter-right select {
  background: #f000;
  border: none;
  color: var(--theme-color-2);
  font-family: "Instrument Sans";
  font-weight: 500;
}

.fiter-right select option {
  color: var(--theme-color-2);
  background-color: var(--theme-color);
}
.search-pro {
  width: 100%;
  position: relative;
}

.search-pro input {
  width: 100%;
  padding: 7px 30px;
  border-radius: 30px;
  border: 1px solid #fff;
}

.search-pro button {
  position: absolute;
  right: 17px;
  bottom: 15%;
  font-size: 20px;
  background: none;
  border: none;
}
/*Innerpage banner*/
.range-slider {
  width: 340px;
  text-align: center;
  position: relative;
  background: #fff;
  border: 1px solid var(--theme-color);
  padding: 20px 30px 30px 30px;
  box-shadow: 0 0 20px 1px #00000050;
}
.range-slider .rangeValues {
  display: block;
  color: var(--theme-color);
}

input[type="range"] {
  -webkit-appearance: none;
  border: 1px solid white;
  width: 300px;
  position: absolute;
  left: 20px;
  top: 50px;
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 300px;
  height: 5px;
  background: #ddd;
  border: none;
  border-radius: 3px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--theme-color);
  margin-top: -4px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

input[type="range"]:focus {
  outline: none;
}

input[type="range"]:focus::-webkit-slider-runnable-track {
  background: #ccc;
}

input[type="range"]::-moz-range-track {
  width: 300px;
  height: 5px;
  background: #ddd;
  border: none;
  border-radius: 3px;
}

input[type="range"]::-moz-range-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--theme-color);
}

/*hide the outline behind the border*/
input[type="range"]:-moz-focusring {
  outline: 1px solid white;
  outline-offset: -1px;
}

input[type="range"]::-ms-track {
  width: 300px;
  height: 5px;
  /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
  background: transparent;
  /*leave room for the larger thumb to overflow with a transparent border */
  border-color: transparent;
  border-width: 6px 0;
  /*remove default tick marks*/
  color: transparent;
  z-index: -4;
}

input[type="range"]::-ms-fill-lower {
  background: #777;
  border-radius: 10px;
}

input[type="range"]::-ms-fill-upper {
  background: #ddd;
  border-radius: 10px;
}

input[type="range"]::-ms-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--theme-color);
}

input[type="range"]:focus::-ms-fill-lower {
  background: #888;
}

input[type="range"]:focus::-ms-fill-upper {
  background: #ccc;
}
.result {
  position: relative;
}

.result .range-slider {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: -100px;
  top: 30px;
  transition: all 0.3s ease-in-out;
  z-index : 99999;
}

.result:hover .range-slider {
  display: block;
  visibility: visible;
  opacity: 1;
  background-color: var(--theme-color-2);
}
.result p {
  margin: 0;
  font-weight: 600;
}

.modal-header {
    border: 0;
}

.modal-body {
    background: url(../images/footer-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.modal-body .newletter {
    border: 0;
}

.modal-body .newsletter-input input {
    padding: 15px 30px;
    width: 60%;
    border: 1px solid #e0e0e0;
    outline: none;
    display: block;
    border-radius: 10px;
    margin: 0 auto 20px;
}

.modal-body .newsletter-input button {
    padding: 15px 60px;
    background: var(--theme-color);
    border: 1px solid var(--theme-color);
    border-radius: 40px;
    margin-left: -30px;
}
body.js {
    overflow-x: hidden !important;
}

/*menu mobile css start*/
.collapse-content {
  transition: all .6s ease;
  background-color: black;
  padding: 0 15px;
  opacity: 0;
  position: absolute;
  visibility: hidden;
  top: 0;
  z-index: 999999;
  height: 0;
  width: 0;
  transform: translate(-50%, -50%);
  left: 50%;
  right: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collapse-content.open {
  padding: 10px 15px;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
}

/*.collapse-toggle {*/
/*  padding: 10px 15px;*/
/*  background-color: #007bff;*/
/*  color: white;*/
/*  border: none;*/
/*  cursor: pointer;*/
/*}*/

.collapse-content ul li {
    color: white;
    font-size: 36px;
    padding: 22px 0;
    text-align: center;
}

.collapse-content ul li a {
    color: white;
}

button.collapse-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    color: white;
    padding: 2px 3px;
    border: 1px solid white;
}

.collapse-content ul {
    padding: 0;
}
button.collapse-toggle {
    background: black !important;
    margin: 0 auto !important;
    text-align: center !important;
    width: 96px !important;
    opacity: 1;
    padding: 11px 0;
    font-weight: 300;
    font-size: 15px;
}
button.collapse-toggle {
    display: none;
}
@media only screen and (min-width: 768px) {
}

@media only screen and (max-width: 1200px) {
}

@media only screen and (max-width: 1024px) {
}

@media only screen and (max-width: 991px) {
}

@media only screen and (max-width: 767px) {
    .banner-cont h1 {
    font-size: 44px;
    line-height: normal;
}

section.main-banner {
    padding: 80px 0;
}

a.theme-btn {
    padding: 12px 29px;
}
   section{
       overflow:hidden;
   } 
    section.header-nav .main-nav {
    display: none;
}
button.collapse-toggle {
    display: block;
    color: white;
    float:none ;
}
.pro-cat {
    flex-direction: column;
    width: 100%;
    border: 1px solid white;
    margin: 30px 0 0 0;
}

.promotion-content h2 {
    font-size: 34px;
    line-height: normal;
}
.header-offer {
    padding: 17px 0;
    text-align: center;
}

.promotion-content p {
    text-align: center;
    width: 100%;
}
.offer-content h2 {
    width: 100%;
}

div#countdown {left: 0;position: relative;top: 20px;}

div#countdown ul li span {
    font-size: 29px;
}

div#countdown ul {
    flex-direction: column;
}

.product-card-one {
    width: 100%;
}

section.shop {
    overflow: hidden;
}
.category-card-one {
    width: 100%;
}
.footer-nav {
    display: none;
}
a.transparent-btn {
    padding: 12px 9px;
}
section.shop-brand img {
    transition: all 0.3s ease-in-out;
    width: 100%;
    margin: 11px 0 0 0;
}
.section-heading h2 {
    font-size: 55px;
}
.pro-cat {
    padding: 20px 0 !important;
}
.newsletter-input input[type="submit"] {
    padding: 21px 12px;
    background: var(--theme-color);
    border: 1px solid var(--theme-color);
    border-radius: 40px;
    margin-left: -30px;
    text-align: center;
    font-size: 14px;
}
section.footer {
    padding: 0px 0 0px;
}
.newletter h2 {
    font-size: 37px;
}   
.offer-content h2 {
    font-size: 54px;
}
.offer-content p {
    font-size: 15px;
    width: 100%;
}
section.shop-brand img {
    width: 100%;
    margin: 7px 0 0;
}
}
