@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Spartan", sans-serif;
}

* {
  --ks-global-color-1: #311f15;
  --ks-global-color-2: #624616;
  --ks-global-color-3: #8b6e06;
  --ks-global-color-4: #934217;
  --ks-global-color-p: #666666;
  --ks-global-color-h: #3a3a3a;
  --ks-global-color-border: #ebebeb;
  --ks-global-color-header-bgc: #fff;
}

/* Colors */
* {
  --1: #675e55;
  --2: #584f46;
  --3: #934217;
  --4: #675e55;
  --5: #6d3420;
  --6: #624616;
  --7: #8b6e06;
  --8: #311f15;
}
/*  */

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

/* Global Styles */

::-moz-selection {
  background-color: var(--ks-global-color-3);
  color: #fff;
}

::selection {
  background-color: var(--ks-global-color-3);
  color: #fff;
}

h1 {
  font-size: 50px;
  line-height: 64px;
  color: var(--ks-global-color-h);
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: var(--ks-global-color-h);
}

h4 {
  font-size: 20px;
  color: var(--ks-global-color-h);
}

h6 {
  font-weight: 700;
  font-size: 12px;
  color: var(--ks-global-color-h);
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

button.normal {
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  color: #fff;
  background-color: transparent;
  background-image: -webkit-gradient(
    linear,
    left top, right top,
    from(var(--ks-global-color-2)),
    to(var(--ks-global-color-1))
  );
  background-image: -o-linear-gradient(
    left,
    var(--ks-global-color-2) 0%,
    var(--ks-global-color-1) 100%
  );
  background-image: linear-gradient(
    90deg,
    var(--ks-global-color-2) 0%,
    var(--ks-global-color-1) 100%
  );
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

button.normal:hover {
  background-image: -webkit-gradient(
    linear,
    left top, right top,
    from(var(--ks-global-color-1)),
    to(var(--ks-global-color-2))
  );
  background-image: -o-linear-gradient(
    left,
    var(--ks-global-color-1) 0%,
    var(--ks-global-color-2) 100%
  );
  background-image: linear-gradient(
    90deg,
    var(--ks-global-color-1) 0%,
    var(--ks-global-color-2) 100%
  );
}

button.white {
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  color: #fff;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid #fff;
  outline: none;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

button.white:hover {
  background-image: -webkit-gradient(
    linear,
    left top, right top,
    from(var(--ks-global-color-1)),
    to(var(--ks-global-color-2))
  );
  background-image: -o-linear-gradient(
    left,
    var(--ks-global-color-1) 0%,
    var(--ks-global-color-2) 100%
  );
  background-image: linear-gradient(
    90deg,
    var(--ks-global-color-1) 0%,
    var(--ks-global-color-2) 100%
  );
  border: 1px solid var(--ks-global-color-3);
}

body {
  width: 100%;
  height: 100%;
}

.header-main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 18px;
  background-color: var(--ks-global-color-header-bgc);
  -webkit-box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.05);
  z-index: 999;
  position: sticky;
  top: 0;
}

#top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background-color: var(--ks-global-color-3);
  padding: 10px 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#top a {
  font-size: 12px;
  color: #fff;
  text-decoration: none;
  padding: 0 5px;
}

#top i {
  color: var(--ks-global-color-3);
  font-size: 12px;
  background-color: #fff;
  padding: 5px;
  border-radius: 50px;
  margin-right: 3px;
}

#nav-menu {
  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;
}

#nav-menu li {
  list-style: none;
  padding: 0 15px;
  position: relative;
}

#nav-menu li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

#nav-menu li a::after {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

#nav-menu li a:hover,
#nav-menu li.current-menu-item a {
  color: var(--ks-global-color-2);
}

#nav-menu li a:hover::after,
#nav-menu li.current-menu-item a::after {
  content: "";
  position: absolute;
  width: 30%;
  height: 2px;
  background: var(--ks-global-color-2);
  bottom: -4px;
  left: 15px;
}

#lg-search::after{
  width: 0;
  height: 0;
}

#mobile {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#close {
  display: none;
}

.logo {
  width: 170px;
}

.sub-menu {
  display: none;
}

/* Home page */
#hero,
#home-hero-slider .swiper-slide {
  background-image: url("assets/images/hero_bg.jpg");
  height: 70vh;
  width: 100%;
  background-position: top 25% right 0%;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#hero h4,
#home-hero-slider .swiper-slide h4 {
  padding-bottom: 15px;
}

#hero h1,
#home-hero-slider .swiper-slide h1 {
  color: var(--ks-global-color-2);
}

#hero h2,
#home-hero-slider .swiper-slide h2 {
  color: var(--ks-global-color-3);
}

.swiper-container {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  z-index: 1!important;
}

#home-hero-slider .swiper-button-next,
#home-hero-slider .swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.5) !important;
  padding: 22px !important;
  color: var(--ks-global-color-1) !important;
  fill: var(--ks-global-color-1) !important;
  stroke: var(--ks-global-color-1) !important;
  border-radius: 5px;
  top: calc(100% - 40px) !important;
  -webkit-transition: 500ms all ease;
  -o-transition: 500ms all ease;
  transition: 500ms all ease;
}

#home-hero-slider .swiper-button-next:hover,
#home-hero-slider .swiper-button-prev:hover {
  background-color: var(--ks-global-color-1) !important;
  color: #ffffff !important;
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

#home-hero-slider .swiper-button-next {
  right: 20px;
}

#home-hero-slider .swiper-button-prev {
  left: calc(100% - 124px) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px!important;
}

.product-slider .swiper-button-next,
.product-slider .swiper-button-prev {
  background-color: var(--ks-global-color-4) !important;
  color: #ffffff !important;
  fill: #ffffff !important;
  stroke: #ffffff !important;
  padding: 22px !important;
  border-radius: 5px;
  border: 1px solid var(--ks-global-color-2);
  top: calc(100% - 10px) !important;
  -webkit-transition: 500ms all ease;
  -o-transition: 500ms all ease;
  transition: 500ms all ease;
  z-index: 10!important;
}

.product-slider .swiper-button-next:hover,
.product-slider .swiper-button-prev:hover {
  background-color: rgba(255, 255, 255, 0.8) !important;
  color: var(--ks-global-color-4) !important;
  fill: var(--ks-global-color-4) !important;
  stroke: var(--ks-global-color-4) !important;
}

.product-slider .swiper-button-next {
  right: 20px;
}

.product-slider .swiper-button-prev {
  left: calc(100% - 124px) !important;
}

#feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#feature .fe-box {
  width: 180px;
  text-align: center;
  padding: 25px 15px;
  -webkit-box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
          box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--ks-global-color-border);
  border-radius: 5px;
  margin: 15px 0;
}

#feature .fe-box:hover {
  -webkit-box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
          box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
}

#feature .fe-box img {
  width: 100%;
  margin-bottom: 10px;
}

#feature .fe-box h6 {
  display: inline-block;
  padding: 8px 9px 6px 8px;
  background-color: var(--ks-global-color-1);
  color: #fff;
  line-height: 1;
  border-radius: 2px;
}

#feature .fe-box:nth-child(2) h6,
#feature .fe-box:nth-child(5) h6 {
  background-color: var(--ks-global-color-3);
}

#feature .fe-box:nth-child(3) h6,
#feature .fe-box:nth-child(6) h6 {
  background-color: var(--ks-global-color-2);
}

.product1 {
  text-align: center;
}

.product1 .pro-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.product1 .product {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc(20% - 40px);
          flex: 1 0 calc(20% - 40px);
  max-width: 260px;
  padding: 10px 10px;
  border: 1px solid var(--ks-global-color-border);
  border-radius: 15px;
  cursor: pointer;
  -webkit-box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
          box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 10px;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
}

.product1 .product:hover {
  -webkit-box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
          box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}
.product1 .product img {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}

.product1 .product .pro-info {
  text-align: start;
  padding: 10px 0;
  max-width: calc(100%-40px);
}

.product1 .product .pro-info span {
  color: var(--ks-global-color-p);
  font-size: 12px;
}

.product1 .product .pro-info h5 {
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 14px;
}

.product1 .product .pro-info i {
  font-size: 12px;
  color: rgba(243, 181, 25);
}

.product1 .product .pro-info h4 {
  padding-top: 7px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ks-global-color-3);
}

.product1 .product .product-bag {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  background-color: #fff;
  color: var(--ks-global-color-3);
  border: 1px solid var(--ks-global-color-3);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  position: absolute;
  bottom: 20px;
  right: 12px;
}

.product1 .product .product-bag:hover {
  background-color: var(--ks-global-color-3);
  color: #fff;
}

#banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background-image: url(assets/images/banner_bg.jpeg);
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
}

#banner h4 {
  color: var(--ks-global-color-2);
  font-size: 16px;
}

#banner h2 {
  color: var(--ks-global-color-h);
  font-size: 30px;
  padding: 10px 0;
}

#banner h2 span {
  color: var(--ks-global-color-3);
}

#sm-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* flex-direction: row; */
}

#sm-banner .banner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: center;
  background-image: url(assets/images/banner_3.jpg);
  min-width: 580px;
  width: 48%;
  height: 50vh;
  background-size: cover;
  background-position: center;
  padding: 30px;
  position: relative;
  z-index: 1;
  text-align: left;
}

#sm-banner .banner-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.1;
  background-blend-mode: color-burn;
  z-index: -1;
}

#sm-banner .banner-box:nth-child(2) {
  background-image: url(assets/images/banner_2.jpg);
}

#sm-banner h4 {
  /* color: var(--ks-global-color-3); */
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

#sm-banner h2 {
  /* color: var(--ks-global-color-h); */
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}

#sm-banner span {
  /* color: var(--ks-global-color-p); */
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 15px;
}

#sm-banner .banner-box button {
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

#sm-banner .banner-box:hover button {
  background-image: -webkit-gradient(
    linear,
    left top, right top,
    from(var(--ks-global-color-1)),
    to(var(--ks-global-color-2))
  );
  background-image: -o-linear-gradient(
    left,
    var(--ks-global-color-1) 0%,
    var(--ks-global-color-2) 100%
  );
  background-image: linear-gradient(
    90deg,
    var(--ks-global-color-1) 0%,
    var(--ks-global-color-2) 100%
  );
  border: 1px solid var(--ks-global-color-3);
}

#banner3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 80px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#banner3 .banner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: center;
  background-image: url(assets/images/cat-1.jpeg);
  min-width: 30%;
  height: 30vh;
  background-size: cover;
  background-position: center;
  padding: 30px;
  position: relative;
  z-index: 1;
}

#banner3 h2 {
  color: #fff;
  font-weight: 900;
  font-size: 22px;
}

#banner3 h3 {
  color: var(--ks-global-color-2);
  font-weight: 800;
  font-size: 15px;
  background-color: #ffffff88;
  padding: 8px 9px 6px 8px;
  border-radius: 2px;
}

#banner3 .banner-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.15;
  background-blend-mode: color-burn;
  z-index: -1;
}

#newsletter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-image: url(assets/images/newsletter_bg.jpg);
  background-repeat: no-repeat;
  background-position: 20% 30%!important;
  background-size: cover!important;
}

#newsletter .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40%;
}

#newsletter h4 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

#newsletter p {
  color: #ccc;
  font-size: 14px;
  font-weight: 600;
}

#newsletter p span {
  color: #ffffff;
}

#newsletter input {
  height: 3.125rem;
  padding: 0 1.25em;
  font-size: 14px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px 0 0 4px;
  outline: none;
}

#newsletter button {
  border-radius: 0 4px 4px 0;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .col {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 20px;
}

footer .logo {
  margin-bottom: 20px;
  width: 200px;
  border: 1px solid var(--ks-global-color-border);
  border-radius: 4px;
}

footer h4 {
  font-size: 14px;
  padding-bottom: 20px;
}

footer p {
  font-size: 13px;
  margin: 0 0 8px 0;
}

footer a {
  font-size: 13px;
  text-decoration: none;
  color: var(--ks-global-color-p);
  margin: 0 0 10px 0;
}

footer .follow {
  margin-top: 20px;
}

footer .follow i {
  color: var(--ks-global-color-3);
  padding: 0 4px 0 0;
  cursor: pointer;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

footer .follow i:hover,
footer a:hover {
  color: var(--ks-global-color-2);
}

footer .install .row img {
  border: 1px solid var(--ks-global-color-border);
  border-radius: 6px;
}

footer .install img {
  margin: 10px 0 15px 0;
}

footer .pay {
  height: 30px;
}

footer .copyright {
  margin-top: 20px;
  padding-top: 40px;
  border-top: 1px solid var(--ks-global-color-border);
  width: 100%;
  text-align: center;
  position: relative;
}

footer .scroll-to-top {
  /* background-color: var(--ks-global-color-1); */
  background-color: #25D366!important;
  /* border: 1px solid var(--ks-global-color-1); */
  border: 1px solid #25D366!important;
  color: #fff;
  font-size: 16px;
  padding: 10px 10px 7px 10px;
  border-radius: 5px;
  position: fixed;
  right: 20px;
  bottom: 10px;
  -webkit-transition: 500ms all ease;
  -o-transition: 500ms all ease;
  transition: 500ms all ease;
  z-index: 9999999;
}

footer .scroll-to-top:hover {
  color: var(--ks-global-color-1);
  background-color: #ffffff;
}

/* Shop Page */
#inner-page-header {
  background-image: url(assets/images/banner_bg.jpeg);
  height: 40vh;
  width: 100%;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px;
}

#inner-page-header p,
#inner-page-header h2 {
  color: var(--ks-global-color-h);
}

#pagination {
  text-align: center;
}

#pagination a {
  text-decoration: none;
  background-color: var(--ks-global-color-3);
  padding: 15px 20px;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
}

#pagination a i {
  font-size: 16px;
  font-weight: 600;
}

#pagination a:hover {
  background-color: var(--ks-global-color-2);
}

/* Single Product */
#pro-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2px;
}

#pro-details .product-images {
  width: 30%;
  margin-right: 50px;
  padding: 0 5px;
}

#MainImg {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
}

.product-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product-gallery-img-col {
  -ms-flex-preferred-size: 24%;
      flex-basis: 24%;
  cursor: pointer;
}

#pro-details .single-pro-details {
  width: 70%;
  padding: 30px 5px 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#pro-details .single-pro-details h4 {
  padding: 40px 0 20px 0;
}

#pro-details .single-pro-details h2 {
  font-size: 26px;
}

#pro-details .single-pro-details select {
  display: block;
  padding: 5px 10px;
  margin-bottom: 10px;
}

#pro-details .single-pro-details input {
  width: 50px;
  height: 47px;
  padding-left: 10px;
  font-size: 16px;
  margin-right: 10px;
  border: 1px solid var(--ks-global-color-border);
}

#pro-details .single-pro-details input:focus {
  outline: none;
}

#pro-details .single-pro-details span {
  line-height: 25px;
}

.error-404 {
  min-height: 540px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -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;
  margin-bottom: -40px;
}

article.section-p1 {
  margin-bottom: -40px;
}

/* Tablet media query */
@media only screen and (min-width: 767px) and (max-width: 1023px) {
  /* Styles for tablets */
  .section-p1 {
    padding: 40px;
  }

  #hero,
  #home-hero-slider .swiper-slide {
    height: 450px;
    padding: 0 80px;
    background-position: top 30% right 30%;
  }

  #feature {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  #feature .fe-box {
    margin: 15px 15px;
  }

  .product1 .pro-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .product1 .product {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(33.33% - 20px);
            flex: 1 0 calc(33.33% - 20px);
    max-width: 220px;
  }

  .product1 .product img {
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
  }

  #banner {
    height: 25vh;
  }

  #sm-banner .banner-box {
    min-width: 100%;
    height: 35vh;
  }

  #banner3 {
    padding: 0 40px;
  }

  #banner3 .banner-box {
    width: 28%;
  }

  #newsletter .form {
    width: 70%;
  }

  footer .copyright {
    padding-top: 28px;
  }
}

/* Mobile Media Query */
@media only screen and (max-width: 767px) {
  /* Styles for mobile devices */
  header .header-main-nav {
    padding: 10px;
  }

  #top {
    height: 0px;
    padding: 5px;
  }

  #top a,
  #top i {
    display: none;
  }

  #nav-menu {
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 300px;
    background-color: #fff;
    -webkit-box-shadow: 0 40px 60px rgba(0, 0, 0, 0.01);
            box-shadow: 0 40px 60px rgba(0, 0, 0, 0.01);
    padding: 80px 0 0 10px;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
  }

  #nav-menu .current-menu-item a {
    right: 0;
  }

  #nav-menu li {
    margin-bottom: 20px;
  }

  #mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  #mobile i {
    color: #1a1a1a;
    font-size: 24px;
    padding-left: 20px;
  }

  #close {
    display: initial;
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--ks-global-color-h);
    font-size: 24px;
  }

  #lg-search {
    display: none;
  }

  header .logo {
  }

  h1 {
    font-size: 38px;
    line-height: 45px;
  }

  h2 {
    font-size: 32px;
  }

  #hero,
  #home-hero-slider .swiper-slide {
    height: 70vh !important;
  }

  #hero h4,
  #home-hero-slider .swiper-slide h4 {
    font-size: 18px;
  }

  #hero,
  #home-hero-slider .swiper-slide {
    padding: 0 20px;
    background-position: 55%;
  }

  #home-hero-slider .swiper-slide {
    height: auto;
  }

  .section-p1 {
    padding: 20px 10px;
  }

  #feature {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }

  #feature .fe-box {
    width: 155px;
    margin: 0 0 15px 0;
  }

  .product1 .product {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(50% - 20px);
            flex: 1 0 calc(50% - 20px);
  }

  .product1 .product img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }

  #banner {
    height: 40vh;
  }

  #sm-banner .banner-box {
    height: 40vh;
    margin-bottom: 20px;
  }

  #sm-banner .banner-box h2 {
    line-height: 35px;
  }

  #banner3 {
    padding: 0 20px;
  }

  #banner3 .banner-box {
    width: 100%;
    margin: 10px 0;
  }

  #newsletter {
    padding: 40px 20px;
  }

  #newsletter .form {
    width: 100%;
  }

  /* Single Product */
  #pro-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  #pro-details .product-images {
    width: 100%;
    margin-right: 0px;
  }

  #pro-details .single-pro-details {
    width: 100%;
  }

  footer .col {
    width: 100%;
    padding: 0 10px;
  }

  footer .col:nth-child(2),
  footer .col:nth-child(3),
  footer .col:nth-child(4) {
    width: 50%;
  }

  footer .col img.pay {
    height: 30px;
    /* align-self: center; */
  }

  /* footer .col .install p:nth-child(2) {
    width: 100%;
    text-align: center;
  } */
}

/* Large screens */
@media only screen and (width: 1920px) {
  .product1 .pro-container {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }

  .product1 .product {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(16.666% - 20px);
            flex: 1 0 calc(16.666% - 20px);
    max-width: 280px;
  }
}
