/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #078d3d;
  --secondary: #17161b;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Inter", sans-serif;
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  margin: 0;
  color: #828282;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.preLoader.black {
  background-color: var(--white);
  z-index: 11113;
}

.preLoader.white {
  z-index: 11112;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  font-size: 1rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 500;
  display: inline-block;
  padding: 0.75rem 1.5625rem;
  line-height: normal;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.themeBtn::before {
  position: absolute;
  content: "";
  inset: 0;
  background: var(--primary);
  z-index: -2;
}

.themeBtn::after {
  position: absolute;
  content: "";
  background: var(--secondary);
  width: 100%;
  top: 100%;
  left: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: -1;
  box-shadow: 0 0 0 1rem #ffff inset, 0 0 0 2rem #cccc inset;
  transition: 1.3s ease;
}

.themeBtn:hover::after {
  top: -30%;
  left: 0%;
  transform: scale(3);
}

.themeBtn:hover {
  color: var(--white);
}

/* NAV HEADER CSS */

header {
  margin: 0 auto;
  width: 100%;
  transition: 0.3s ease-in-out;
}

.navbar-brand {
  padding: 0.4375rem 0;
  margin: 0;
}
.navbar-brand img{
  width: 130px;
}

.navbar-nav {
  align-items: center;
  gap: 2.8125rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: #222222;
  text-transform: capitalize;
  font-weight: 500;
  padding: 0 0;
  display: inline-block;
  position: relative;
}
.navbar-nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  background-color: var(--secondary);
  bottom: -4px;
}

.navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
  transition: 0.6s ease;
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
  height: 820px;
}

.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
  overflow: hidden;
}

.homeSlider .swiper-pagination {
  bottom: 8rem;
  width: fit-content;
  left: 18rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
  width: 4.35rem;
  height: 4.35rem;
  font-size: 1rem;
  color: #fff;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.28);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.homeSlider .swiper-button-next {
  right: 1rem;
}

.homeSlider .swiper-button-prev {
  left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
  background: var(--white);
  color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  display: inline-block;
  margin: 0 0.5rem !important;
  opacity: 1;
  border: 1px solid var(--white);
  background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
  background: var(--white);
  position: relative;
}

.homeSlider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.main-slider h1 {
  margin: 0;
  color: var(--secondary);
  font-size: 3.75rem;
  line-height: 1.4;
  font-weight: 600;
  text-transform: capitalize;
}

.main-slider p {
  color: var(--secondary);
  font-weight: 500;
  line-height: 1.2;
  margin: 1rem 0 1.5rem;
  font-size: 1.25rem;
}

/* !MAIN HERO SLIDER CSS */

/* New Css Start */
.top-bar p {
  line-height: 1.5;
  font-weight: 500;
  color: var(--white);
  text-align: center;
}

.top-bar {
  background-color: var(--primary);
  padding: 0.625rem 0;
}

.form-inline ul li a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.form-inline ul li a i {
  color: var(--secondary);
}

.form-inline ul li a h5 {
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--secondary);
}

.form-inline ul li a h5 span {
  background-color: var(--primary);
  padding: 0.3125rem 0.5625rem;
  border-radius: 50px;
  color: var(--white);
  margin-left: 0.625rem;
}

.form-inline .themeBtn {
  margin-left: 1.7rem;
}

.slideOne {
  text-align: center;
}
/* New Css End  */

/* Brand-Sec  Css Start */
section.brand-sec {
  padding: 6.25rem 0 5rem;
}
.mainHead {
  font-size: 36px;
  font-weight: bold;
  color: var(--secondary);
  line-height: 1.3;
}

.mainPara {
  font-weight: 500;
  color: var(--secondary);
  line-height: 1.375;
}

.brand-top {
  text-align: center;
  margin-bottom: 2rem;
}

.brand-top .mainHead {
  margin-bottom: 0.225rem;
}

.brand-content {
  text-align: center;
}

.brand-content p {
  line-height: 1.375;
  color: var(--seconadt);
  text-transform: capitalize;
  margin: 0.525rem 0 0.225rem;
}

.brand-content h5 {
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--seconadry);
  line-height: 1.4;
}

.brand-content h5 span {
  display: block;
  font-size: 1.125rem;
  color: var(--primary);
  margin-top: 0.75rem;
}

/* Brand-Sec  Css End  */

/* Review-Sec Css Start */

.review-overlay {
  background-color: #f7f3ee;
}
section.review-sec {
  padding-bottom: 6.375rem;
}

.review-wrapp {
  padding: 5rem 2.5rem 5rem 5rem;
}

.review-wrapp p {
  color: var(---secondary);
  font-weight: bold;
  font-size: 1.625rem;
  line-height: 1.3;
}

.review-bottom {
  margin-top: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-bottom ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.review-bottom ul li a i {
  color: #f3d768;
  font-size: 1.3rem;
}

figure.review-img {
  display: flex;
  align-items: center;
  gap: 1rem;
}

figure.review-img h5 {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--secondary);
}

figure.review-img h5 span {
  display: block;
  font-size: 1rem;
  font-weight: 500;
}

/* Review-Sec Css End  */

/* Market-Sec Css Start */
.market-overlay .themeBtn {
  margin-top: 3.1875rem;
  color: var(--primary);
  background-color: var(--white);
}
section.market-sec {
  padding: 6rem 0 1.5rem;
}

section.market-sec .market-overlay .col-md-3:nth-child(4) .market-content {
  border: unset;
}
section.market-sec .mainHead {
  text-align: center;
  color: var(--white);
  margin-bottom: 3.125rem;
}

.market-overlay {
  background-color: var(--primary);
  padding: 6.25rem 4.5625rem 5rem;
  text-align: center;
}

.market-content {
  border-right: 1px solid #fff;
  text-align: center;
  padding-right: 2.5rem;
}

.market-content h2 {
  font-size: 1.875rem;
  line-height: 1.6;
  text-transform: capitalize;
  color: var(--white);
  margin-bottom: 1.375rem;
}

.market-content h5 {
  font-size: 1.125rem;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--white);
  line-height: 1.3;
}

.market-content h5 span {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.25rem;
}
/* Market-Sec Css End  */

/* Shop-Sec Css Start */

.secondBtn {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 500;
  font-size: 1rem;
  color: var(--black);
  justify-content: end;
}
.shop-slider {
  padding-top: 2.5rem;
}
.shop-wrapp {
  text-align: center;
}
section.shop-sec {
  padding: 0 1.6875rem;
}

.shop-wrapp h2 {
  font-size: 1.625rem;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--secondary);
  margin-top: 0.75rem;
}

/* Shop-Sec Css End  */

/* Blog-Sec Css Start */

.blog-top {
  text-align: center;
  margin-bottom: 1.875rem;
}

.blog-top .mainHead {
  margin-bottom: 0.125rem;
}

.blog-content p {
  font-weight: 500;
  color: var(--secondary);
  line-height: 1.375;
  margin: 0.625rem 0 0.25rem;
}

.blog-content h4 {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--secondary);
  line-height: 1.4;
}

/* Blog-Sec Css End  */

/* Footer-Sec Css Start */
footer {
  background-color: #f7f3ee;
  padding-top: 3.9375rem;
}

footer h2 {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--secondary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

ul.footer-img {
  display: flex;
  align-items: center;
  gap: 1rem;
}

ul.footer-link li a {
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #444444;
}

ul.footer-link {
  display: flex;
  flex-flow: column wrap;
  max-height: 8.125rem;
  gap: 0.25rem;
}

footer p {
  font-weight: 500;
  color: var(--secondary);
  width: 80%;
  line-height: 1.5;
  margin-bottom: 0.875rem;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.375;
  text-align: center;
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid;
  padding: 0.625rem 0;
  margin-top: 3.9375rem;
}

form.footer-form .form-control {
  border: 1px solid #e9e9e9;
  height: 3.125rem;
  outline: unset;
  box-shadow: unset;
  background-color: var(--white);
  color: var(--blcak);
  border-radius: unset;
}

form.footer-form button {
  height: 2.625rem;
  width: 6.471875rem;
  padding: 0;
  border: unset;
}
form.footer-form .form-control::placeholder {
  font-size: 1rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  color: var(--blcak);
}

/* Footer-Sec Css End  */

/* Inner-Pages Css Start */
/* Maerket-Page Css Start */
.inner-banner {
  position: relative;
}

.inner-banner .overlay {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
}

.overlay h2 {
  font-size: 3.75rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--secondary);
  text-align: center;
}
section.market-sec.market-page {
  padding: 6.4375rem 0;
}

section.shop-sec.market-shop {
  padding: 0 1.6875rem 6.4375rem;
}
/* Maerket-Page Css End  */

/* Keep-Sec Css Start */
.keep-content {
  text-align: center;
}

.keep-content h2 {
  font-size: 2.3125rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.4;
}

.keep-content p {
  line-height: 1.9;
  font-size: 0.9375rem;
  color: #777777;
}

.keep-bottom {
  border-top: 1px solid #ebebeb;
  padding: 3.875rem 0 4.4375rem;
  margin-top: 4.9375rem;
  border-bottom: 1px solid #ebebeb;
}

.keep-bottom a h5 {
  color: #7fa15a;
  font-size: 0.9375rem;
  font-weight: 500;
  text-transform: capitalize;
}

.keep-bottom a i {
  font-size: 5.6875rem;
  color: #7fa15a;
}
.keep-bottom a {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.keep-bottom a h5 span {
  display: block;
  font-size: 1rem;
  color: #9b9b9b;
  margin-top: 0.1875rem;
}
section.map-sec {
  padding: 0;
}
/* Keep-Sec Css End  */

/* Contact-Sec Css Start */
.contact-top {
  text-align: center;
  margin-bottom: 4.375rem;
}

.contact-top h2 {
  font-size: 2.25rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #333333;
  line-height: 1.4;
}

.contact-top p {
  font-size: 0.9375rem;
  color: #9b9b9b;
  line-height: 1.8;
  margin-top: 0.12rem;
}

form.contact-form .form-control {
  height: 4rem;
  border-radius: unset;
  background-color: #f8f8f8;
  border: unset;
  outline: unset;
  box-shadow: unset;
  color: #ababab;
}

form.contact-form button {
  height: 4.0625rem;
  padding: 0;
  width: 14.288125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  gap: 1rem;
  border: unset;
  margin-top: 2.375rem;
}

form.contact-form button::before {
  background: #7fa15a;
}

form.contact-form textarea.form-control {
  height: 11.0625rem;
}
form.contact-form .form-control::placeholder {
  font-size: 0.8125rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #ababab;
}
/* Contact-Sec Css End  */

/* Blog-Page Css Start */
.blog-left h3 {
  color: #333333;
  text-transform: capitalize;
  line-height: 1.4;
  font-size: 1.3475rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
}

.blog-left p {
  color: #aaaaaa;
  font-size: 0.9375rem;
  line-height: 1.8;
  width: 74%;
}

.blog-left a {
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: 500;
  color: #7fa15a;
  margin: 1rem 0;
}

ul.blog-categories li a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #333333;
  margin: 0;
}

ul.blog-categories li + li {
  margin: 0.4375rem 0;
}

ul.blog-categories {
  margin-bottom: 1.5rem;
}

ul.blog-post li a {
  display: flex;
  gap: 0.625rem;
  align-items: start;
  margin: 0;
}

ul.blog-post li a h5 {
  font-size: 0.875rem;
  font-weight: 500;
}

ul.blog-post li a i {
  color: var(--black);
}

ul.blog-post li a h5 span {
  display: block;
  font-size: 13px;
  color: #ababab;
  margin-top: 3px;
}

ul.blog-post li + li {
  margin: 1rem 0;
}

.blog-left h4 {
  font-size: 1.375rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #333333;
  margin: 2rem 0 5rem;
}

.tag-content h2 {
  font-size: 1.1875rem;
  font-weight: 500;
  color: #333333;
  text-transform: capitalize;
}

.tag-content p {
  color: #ababab;
  line-height: 1.5625;
  font-size: 0.9375rem;
  width: 90%;
}

.blog-pages {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.blog-ctn a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: #ababab;
  font-size: 14px;
  font-weight: 500;
}

.thirdBtn {
  border-bottom: 1px solid;
  width: fit-content;
}

.blog-ctn h3 {
  font-size: 28px;
  font-weight: 500;
  color: #333333;
  margin: 0.425rem 0;
}

.blog-ctn {
  flex: 1;
}

section.blog-page {
  padding: 6rem 135px 6rem 119px;
}

.blog-main {
  padding-left: 112px;
}

.blog-ctn p {
  width: 89%;
  margin-bottom: 2.5rem;
  font-size: 0.9375rem;
  color: #777777;
}
.blog-pages + .blog-pages {
  margin: 2.5rem 0;
}
.blog-p-slider .swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.blog-p-slider .swiper-button-prev {
  bottom: 0;
  top: unset;
  left: 0;
  right: 9%;
  margin: auto;
  color: #c2c2c2;
  height: 2.8125rem;
  width: 2.8125rem;
  border-radius: 50px;
  border: 1px solid;
}

.blog-p-slider {
  padding-bottom: 3.1875rem;
}

.blog-p-slider .swiper-button-next {
  bottom: 0;
  top: unset;
  color: #c2c2c2;
  left: 0;
  right: -2%;
  margin: auto;
  height: 2.8125rem;
  width: 2.8125rem;
  border-radius: 50px;
  border: 1px solid;
}

.blog-p-slider .swiper-button-prev:hover {
  height: 2.8125rem;
  border: 1px solid #7fa15a;
  transition: 0.6s ease;
  color: #7fa15a;
  border-radius: 50px;
  width: 2.8125rem;
}

.blog-p-slider .swiper-button-next:hover {
  height: 2.8125rem;
  width: 2.8125rem;
  border: 1px solid #7fa15a;
  color: #7fa15a;
  transition: 0.6s ease;
  border-radius: 50px;
}
.blog-p-slider
  .swiper-wrapper
  .swiper-slide
  .blogg-images
  .blog-pages:nth-child(8) {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 6rem;
}
/* Blog-Page Css End  */

/* Shop-page Css Start */
section.shop-page {
  padding: 6rem 230px;
}

.shop-overlay figure span {
  height: 2.75rem;
  width: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  background-color: #f0524b;
  color: var(--white);
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
}

.shop-overlay figure {
  position: relative;
}

.shop-ctn {
  text-align: center;
  padding-top: 1rem;
}

.shop-ctn h3 {
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  color: #333333;
}

.shop-ctn span {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  color: #333333;
  margin-top: 0.3125rem;
}

figure.shopp-imag span {
  background: #f5cc63;
}
section.shop-page
  .row
  .col-md-9
  .row
  .col-md-4
  .shop-overlay:nth-child(3)
  figure
  h5 {
  background: #f5cc63;
  color: var(--white);
  font-size: 12px;
  font-weight: bold;
  height: 2.75rem;
  width: 2.75rem;
  display: grid;
  place-items: center;
  margin: auto;
  border-radius: 50px;
  position: absolute;
  top: 3.75rem;
  left: 0.625rem;
}
section.shop-page
  .row
  .col-md-9
  .row
  .col-md-4
  .shop-overlay:nth-child(4)
  figure
  h5 {
  background: #f5cc63;
  color: var(--white);
  font-size: 12px;
  font-weight: bold;
  height: 2.75rem;
  width: 2.75rem;
  display: grid;
  place-items: center;
  margin: auto;
  border-radius: 50px;
  position: absolute;
  top: 3.75rem;
  left: 0.625rem;
}

.shop-ctn span del {
  font-size: 15px;
  font-weight: 500;
  color: #ababab;
}

.shop-overlay + .shop-overlay {
  margin: 3rem 0;
}

ul.nav-tabs {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  margin-bottom: 4.4375rem;
  border-bottom: unset;
}

ul.nav-tabs li a {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: #ababab;
}

.shop-categories h3 {
  font-size: 21px;
  font-weight: 500;
  color: #333333;
  text-transform: capitalize;
  margin-bottom: 1rem;
  border-bottom: 1px solid #f8f8f8;
  padding-bottom: 1rem;
}

ul.shop-list li a {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

ul.shop-list li + li {
  margin: 9px 0;
}

.shop-categories h4 {
  font-size: 21px;
  font-weight: 500;
  text-transform: capitalize;
  color: #333333;
  margin: 1rem 0;
  border-bottom: 1px solid #f8f8f8;
  padding-bottom: 1rem;
}

.insta h4 {
  margin-bottom: 4rem;
  font-size: 22px;
  border: unset;
}

.insta h2 {
  font-size: 19px;
  font-weight: 500;
  text-transform: capitalize;
  color: #333333;
  margin-bottom: 35px;
}

.insta p {
  font-size: 14px;
  color: #ababab;
  line-height: 1.7;
}

.shop-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-secondary {
  background: unset;
  border: unset;
  color: #000;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  background: unset;
  border: unset;
}

.btn-secondary.focus,
.btn-secondary:focus {
  background: unset;
  box-shadow: unset;
  border: unset;
  color: #000;
}

.btn-secondary:hover {
  border: unset;
  background: unset;
  color: #000;
}

.btn-secondary.focus,
.btn-secondary:focus {
  box-shadow: unset;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
  color: #000;
  background: unset;
  border: unset;
}

.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: unset;
}
.rang-bottom a {
  background: #222222;
  padding: 11px 25px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}

.rang-bottom {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rang-bottom span {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: #333333;
  letter-spacing: 1px;
}
section.shop-page::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #f8f8f8;
  top: 9rem;
}
/* Shop-page Css End  */

/* Inner-Pages Css End  */

.rabge-set p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.rabge-set p input {
  width: 63px;
  height: 33px;
  border: 1px solid #c1c1c1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
}

.rabge-set .ui-slider .ui-slider-handle {
  width: 10px;
  height: 10px;
  background: #828282;
  border-radius: 50%;
  border: 0;
}

.rabge-set .ui-slider-horizontal .ui-slider-range {
  height: 1px;
  background: #828282;
  border: 0;
  width: 100% !important;
  left: 0 !important;
}

.rabge-set .ui-widget.ui-widget-content {
  border: 0;
  margin: 0;
}

/* Revision-Css Start */
.blogctn h2 {
  font-size: 1.5625rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--black);
  margin-top: 1rem;
}

.blogctn h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0.625rem 0;
}

.blogctn p {
  color: #aaaaaa;
  font-size: 0.9375rem;
  line-height: 1.8;
  width: 80%;
}

.privacy-content h2 {
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
}

.privacy-content h3 {
  font-size: 25px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0.625rem 0;
}

.privacy-content p {
  color: #aaaaaa;
  font-size: 0.9375rem;
  line-height: 1.8;
}

ul.privacy-list li a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
}

ul.privacy-list li + li {
  margin: 7px 0;
}

ul.privacy-list {
  margin: 8px 0;
}

ul.privacy-list li {
  list-style: disc;
}

/* Revision-Css End  */
