/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  padding-top: 190px;
    position: relative;
    background: linear-gradient( #ffffff, #ffffffed ), url(../img/kashi-temple.jpg) no-repeat top center;
    /* background: linear-gradient( #ffffff8c, #ffffff8c ), url(../img/kashi-temple.jpg) no-repeat top center; */
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    z-index: 1;
}

::selection {
  background: #ff5301;
  color: #fff;
}

:root {
  scroll-behavior: smooth;
}
.container, .container-sm, .container-md, .container-lg, .container-xl {
  max-width: 1330px;
}

  /* width */
  ::-webkit-scrollbar {
    width: 4px;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 4px;
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
  }

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
  }
a {
  color: var(--color-links);
  text-decoration: none;
  overflow-wrap: anywhere;
}

a:hover {
  color: var(--color-links-hover);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 5px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.section-header p {
  margin: 0 auto;
  color: var(--color-secondary-light);
}
.hidden-sm{
  display: block;
}
.hidden-lg{
  display: none;
}

@media (max-width: 1024px) {
  body {
    padding-top: 75px;
  }
  .hidden-sm{
    display: none;
  }
  .hidden-lg{
    display: block;
  }

}


@media (min-width: 1280px) {
  .section-header p {
    max-width: 80%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(var(--color-secondary-rgb), 0.05);
  min-height: 40px;
  margin-top: 76px;
}

.breadcrumbs h2 {
  font-size: 30px;
  font-weight: 300;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary-light);
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 80px;
  z-index: 995;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

.btn-submit {
  background: var(--color-primary);
  color: var(--color-white);
  display: block;
  width: 90%;
  margin: auto;
}
.btn-submit:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

/* ==== Top Bar ==== */

.top-bar {
  background: #ff5301;
  padding: 6px 0px;
}
span.call-icon {
  font-size: 20px;
  margin-right: 2px;
  color: var(--color-white);
}
.top-bar a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--color-white);
}
.top-bar a:hover{
  letter-spacing: 1px;
  -webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
:focus-visible {
  outline: -webkit-focus-ring-color auto 0px !important;
}
.social-links a {
  font-size: 14px;
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 30px;
  height: 30px;
  transition: 0.3s;
}

.social-links a:hover {
  background:  rgba(var(--color-white-rgb), 0.5);
  color: var(--color-primary);
  text-decoration: none;
}

.social-links{
  float: right;
}


/* === Middle Header === */

.middle-header {
  background: var(--color-white);
  padding: 20px 0px;
}

.middle-header nav.navbar {
  float: right;
}

input.search-control {
  height: 40px;
  width: 80%;
  color: var(--color-primary);
  border-radius: 0;
  border: none;
  font-size: 14px;
  font-weight: 500;
  padding: 0 20px 0 13px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border: 1px solid #ad0502;
}
button.btnn {
  position: absolute;
  padding: 8px 24px;
  border: 0;
  background:  var(--color-primary);
  color: var(--color-white);
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.middle-header .btn-getstarted,
.middle-header .btn-getstarted:focus {
  font-size: 14px;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 6px 12px;
  border-radius: 4px;
  transition: 0.3s;
  font-family: var(--font-secondary);
  text-transform: uppercase;
}

.middle-header .btn-getstarted:hover,
.middle-header .btn-getstarted:focus:hover {
  color: var(--color-white);
  /* background: rgba(var(--color-primary-rgb), 0.85); */
}
a.cart {
  margin-right: 15px;
  padding: 5px 5px 5px 15px !important;
  background: var(--color-white) !important;
}

span.cart-icon i {
  font-size: 24px !important;
  color: var(--color-primary);
}
span.count {
  background: var(--color-primary);
  border-radius: 50px;
  width: 22px;
  height: 22px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 1px;
  margin-top: -30px;
  color: var(--color-white);
}
span.user-img i {
  font-size: 24px !important;
  margin-right: 10px;
  margin-left: 0px !important;
}


.sticked .top-bar{
  display: none !important;

}
.sticked .middle-header{
  padding: 10px 0px !important;
}

.sticked span.count {
    margin-top: -25px;
}





.header {
  transition: all 0.5s;
  z-index: 997;
  background: var(--color-primary);
  box-shadow: 0 0 10px 0 rgba(183,192,206,.2);
  -webkit-box-shadow: 0 0 10px 0 rgba(183,192,206,.2);
  -moz-box-shadow: 0 0 10px 0 rgba(183,192,206,.2);
  -ms-box-shadow: 0 0 10px 0 rgba(183,192,206,.2);
}

.header.sticked {
  background: var(--color-primary);

}

.header .logo img {
  max-height: 70px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 32px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
  font-weight: 500;
}


@media (max-width: 1279px) {

  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    margin-right: 50px;
  }
}


/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
    position: relative;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    margin-right: 10px;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    transform: scaleX(0.7);
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-white);
  }

  .navbar .dropdown a:hover:before,
  .navbar .dropdown:hover>a:before,
  .navbar .dropdown .active:before {
    visibility: hidden;
  }

  .navbar .dropdown a:hover,
  .navbar .dropdown .active,
  .navbar .dropdown .active:focus,
  .navbar .dropdown:hover>a {
    color: var(--color-white);
    background: var(--color-secondary);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-primary);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: var(--color-white);
    width: 96%;
    margin: 3px;
}

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-white);
    background: var(--color-secondary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
  }

  .navbar .megamenu {
    position: static;
  }

  .navbar .megamenu ul {
    /* right: 0; */
    padding: 10px;
    display: flex;
  }

  .navbar .megamenu ul li {
    flex: 1;
  }

  .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover>a {
    color: var(--color-white);
    background: none;
  }

  .navbar .megamenu ul li a:hover,
  .navbar .megamenu ul li .active,
  .navbar .megamenu ul li .active:hover {
    color: var(--color-white);
    background: var(--color-secondary);
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100% - 70px);
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    background: rgba(var(--color-secondary-rgb), 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(var(--color-white-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-white);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-primary);
    font-size: 35px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top: 20px;
    z-index: 9999;
    right: 20px;
  }

  .mobile-nav-toggle.bi-x {
    color: var(--color-white);
  }

  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }

  .mobile-nav-active .navbar {
    left: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(var(--color-secondary-rgb), 0.8);
    z-index: 9996;
  }
  h4.user-name {
    background: var(--color-secondary);
    padding: 10px 20px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
}
}


.footerMob {
  position: fixed;
  bottom: 0;
  color: var(--color-white);
  width: 100%;
  background: var(--color-primary);
  z-index: 1;
  transition: all .5s;
}
.hide {
  opacity:0;

}
.show {
  opacity:1;

}
ul.f-m1 {
  padding-left: 0px;
    list-style-type: none;
    display: flex;
    justify-content: space-evenly;
    padding-top: 15px;
}
ul.f-m1 li a {
  color: #fff;
  font-size: 20px;
}
span.count1 {
  background: var(--color-secondary);
  font-size: 14px;
  padding-left: 7px;
  position: absolute;
  top: 4px;
  border-radius: 50px;
  width: 22px;
  height: 22px;
}
div#myID {
  display: none;
}


@media (min-width: 0px) and (max-width: 1024px) {
  .scroll-top {bottom: 70px;}
  div#myID {display: block;}
  .middle-header {padding: 16px 0px;}
  .pr-0{
    padding-right: 10px !important;
  }

}



/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Banner Section
--------------------------------------------------------------*/
.img-card {
  margin-bottom: 5.5px;
  background: #fbb71900;
  padding: 3px;
}
.banner .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 20px;
  background: var(--color-primary);
  height: 6px;
  border-radius: 0px;
}
.pr-0 {
  padding-right: 0px;
}


/*--------------------------------------------------------------
# Categories Section
--------------------------------------------------------------*/

.categories {
  background: linear-gradient(0deg, #ffffff00 60%, #f5d9cca6 50%);
  padding: 8px 4px 0px 20px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
h5.heading {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 15px;
}
a.btn-view {
  float: right;
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 3px 8px;
  font-size: 13px;
  border-radius: 3px;
  margin-right: 15px;
}
.categories-slider{
  margin-top: -5px;
}
.categories-card {
    margin: 10px 0px;
    text-align: center;
    background: #ffffff;
    padding: 0px 0px 5px;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(183,192,206,.2);
    -webkit-box-shadow: 0 0 10px 0 rgba(183,192,206,.2);
    -moz-box-shadow: 0 0 10px 0 rgba(183,192,206,.2);
    -ms-box-shadow: 0 0 10px 0 rgba(183,192,206,.2);
}
.categories-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid #ad0502;
  margin: 10px 0px 0px;
}
.categories-card:hover img {
  -webkit-transform: scale(1.03);
	transform: scale(1.03);
  -webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}


.categories-card h5 {
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

/*--------------------------------------------------------------
# Adds Section
--------------------------------------------------------------*/
.adds-card {
  background: var(--color-white);
  padding: 5px;
  box-shadow: 0 0 10px 0 rgba(183,192,206,.2);
  -webkit-box-shadow: 0 0 10px 0 rgba(183,192,206,.2);
  -moz-box-shadow: 0 0 10px 0 rgba(183,192,206,.2);
  -ms-box-shadow: 0 0 10px 0 rgba(183,192,206,.2);
  margin: 3px;
  border-radius: 5px;
}
.adds-card img{
  border-radius: 5px;
}

/*--------------------------------------------------------------
# Product Section
--------------------------------------------------------------*/

.box {
    text-align: center;
    background-image: url(../img/temple-card.png), linear-gradient(#ad0502, #000000);
    background-repeat: no-repeat;
    background-position: bottom right;
    height: 100%;
    color: #fff;
    padding: 45px 0px;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(183,192,206,.2);
    -webkit-box-shadow: 0 0 10px 0 rgba(183,192,206,.2);
    -moz-box-shadow: 0 0 10px 0 rgba(183,192,206,.2);
    -ms-box-shadow: 0 0 10px 0 rgba(183,192,206,.2);
}
.cardImg img {
  border-radius: 5px;
}
.product-img:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.box h4{
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 10px;
}
a.btn-viewall {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 4px 16px;
  border-radius: 3px;
  font-size: 14px;
}

.product-card {
  background: var(--color-white);
  border-radius: 6px;
  padding: 10px;
  box-shadow: 0 0 10px 0 rgba(183,192,206,.2);
  -webkit-box-shadow: 0 0 10px 0 rgba(183,192,206,.2);
  -moz-box-shadow: 0 0 10px 0 rgba(183,192,206,.2);
  -ms-box-shadow: 0 0 10px 0 rgba(183,192,206,.2);
  margin: 5px;
  text-align: center;
}

.product-content p {
  font-size: 13px;
  margin-top: 5px;
  margin-bottom: 5px;
  font-weight: 600;
  text-transform: uppercase;
  overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 1; /* number of lines to show */
           line-clamp: 1;
   -webkit-box-orient: vertical;
}
.product-content h6 {
  text-transform: lowercase;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 14px;
  color: #565252;
  margin-bottom:2px;
}
span.price {
  font-size: 14px;
  font-weight: 500;
  color: #7e7d7d;
}
del.del {
  font-size: 13px;
  margin-left: 5px;
  font-weight: 500;
  color: #ff0000;
}
a.btn.add-cart {
  font-size: 14px;
  font-weight: 400;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 5px;
  text-align: center;
  display: block;
  margin-top: 10px;
}

.slide-arrow {

  cursor: pointer;
}
.slide-arrow:hover {
  opacity: 0.6;
}
.slide-arrow.swiper-button-disabled {
  display: none;
}
.slide-arrow__prev {
  left: 0;
}
.slide-arrow__next {
  right: 0;
}
.slide-arrow .material-icons {
  font-size: 50px;
  color: #fff;
  text-shadow: 0 0 5px #333;
  line-height: 1;
}


.bottom-nav__item {
  background-color: var(--color-primary);
  color: var(--color-white);
  cursor: pointer;
  position: absolute;
  z-index: 9;
  top: 45%;
  right: 0;
}
.bottom-nav__item:not(.swiper-button-disabled):hover {
  opacity: 0.8;
}
.bottom-nav__item.swiper-button-disabled {
  background-color: #999;
  color: #ccc;
  cursor: not-allowed;
}
.slidePrev-btn{
  position: absolute;
  z-index: 9;
  top: 45%;
  left: 0;
  padding: 6px;
    width: 30px;
    font-size: 16px;
    color: #fff;
    border-radius: 4px;
}
.slideNext-btn{
  position: absolute;
  z-index: 9;
  top: 45%;
  right: 0;
  padding: 6px;
    width: 30px;
    font-size: 16px;
    color: #fff;
    border-radius: 4px;
}


@media (min-width: 0px) and (max-width: 768px) {
  .box h4 {
    margin-bottom: 15px;
    margin-top: 0px;
    float: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
}
a.btn-viewall {
  font-size: 12px;
  float: right;
}
}


a.btn-readmore {
    background-color: #fff0;
    color: #ad0502 !important;
    padding: 6px 16px;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #ad0502;
    text-transform: uppercase;
}
#about h1 {
    font-size: 36px;
    font-weight: 600;
    color: #ad0502;
}
#about p{
    font-size: 16px;
    text-align: justify;
    width: 99%;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.info {
  padding: 30px;
  box-shadow: 0 0 10px 0 rgba(183,192,206,.2);
  -webkit-box-shadow: 0 0 10px 0 rgba(183,192,206,.2);
  -moz-box-shadow: 0 0 10px 0 rgba(183,192,206,.2);
  -ms-box-shadow: 0 0 10px 0 rgba(183,192,206,.2);
  overflow: hidden;
  border-radius: 4px;
  background: #ffffffeb;
}
.info h3 {
  font-size: 34px;
  font-weight: 700;
  color: #ad0502;
}
.info p {
  font-size: 16px;
  color: #6a6a6a;
  text-align: justify;
}
.info a {
  color: #6a6a6a;
}
.info a:hover {
  color: #ad0502;
  letter-spacing: 0.1px;
}
.info-item i {
  font-size: 24px;
  color: var(--color-primary);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
  margin-top: -5px;
}
 .info-item h4 {
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #ad0502;
}

.info iframe{
  width: 100%;
  height: 360px;

}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--color-white);
  font-size: 14px;
  width: 100%;
  float: left;
  background-color: #222;
  background: url(../img/footer-bg.png)no-repeat;
  background-size: cover;
}

.footer .footer-content {
  /* background: var(--color-secondary); */
  padding: 60px 0 30px 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: var(--color-white);
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer .footer-content h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 35px;
  height: 2px;
  background: var(--color-secondary);
  bottom: 0;
  left: 0;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul i {
  padding-right: 2px;
  color: var(--color-white);
  font-size: 12px;
  line-height: 1;
}

.footer .footer-content .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: rgba(var(--color-white-rgb), 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: var(--color-white);
}

.footer .footer-content .footer-newsletter form {
  margin-top: 30px;
  background: var(--color-white);
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

.footer .footer-content .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

.footer .footer-content .footer-newsletter form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-content .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--color-primary);
  color: var(--color-white);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-content .footer-newsletter form input[type=submit]:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
}

.footer .footer-legal {
  padding: 10px 0;
  background: var(--color-secondary-dark);
}

.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: var(--color-white);
}

.footer .footer-legal .credits a {
  color: var(--color-primary-light);
}
.footer .logo img {
  max-height: 90px;
  margin-bottom: 5px;
}

.get a {
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  text-orientation: upright;
  padding: 15px 5px;
  font-size: 14px;
  word-spacing: -10px;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  display: block;
}
.get {
  width: 30px;
  position: fixed;
  z-index: 999;
  border-bottom-left-radius: 25px;
  border-top-left-radius: 25px;
  right: 0;
  background:  var(--color-secondary);
  top: 37%;
}
.blink {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

del {
  font-size: 16px;
  color: #ff0000;
  margin-left: 10px;
}

/* === Responsive === */

@media (min-width: 1480px) and (max-width: 10000px) {
 #banner .container{
    max-width: 100%;
}

#adds .container{
  max-width: 100%;
}
#categories .container{
  max-width: 1300px;
}
#product .container{
  max-width: 1300px;
}
.product-content p {
  font-size: 18px;
}
span.price {
  font-size: 16px;
}
del.del {
  font-size: 15px;
}
.categories-card h5 {
  font-size: 18px;
}


}

@media (min-width: 1700px) and (max-width: 10000px) {
  #banner .container{
     max-width: 100%;
 }

 #adds .container{
   max-width: 100%;
 }
 #categories .container{
   max-width: 1700px;
 }
 #product .container{
   max-width: 1700px;
 }



 }
 .form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #ad0502;
  outline: 0;
  box-shadow: 0 0 0 0.03rem rgb(173 5 2 / 28%);
}
.form-select:focus {
  border-color: #ad0502;
  outline: 0;
  box-shadow: 0 0 0 0.03rem rgb(173 5 2 / 28%);
}


/*======products Details=====*/
#pro1 {
  background-color: #ffffffed;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-top:0px;
  }
  .picZoomer{
  position: relative;
  }
  .picZoomer-pic-wp{
  position: relative;
  overflow: hidden;
  text-align: center;
  }
  .picZoomer-pic-wp:hover .picZoomer-cursor{
  display: block;
  }
  .picZoomer-zoom-pic{
  position: absolute;
  top: 0;
  left: 0;
  }

  .picZoomer-zoom-wp{
  display: none;
  position: absolute;
  z-index: 9;
  overflow: hidden;
  height: 300px;
  }
  .picZoomer-cursor{
  display: none;
  cursor: crosshair;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 1%;
  border: 1px solid #eee;
  background-color: rgba(0,0,0,.1);
  }
  .picZoomCursor-ico{
  width: 23px;
  height: 23px;
  position: absolute;
  top: 40px;
  left: 40px;
  }
  ._boxzoom {
  border-right: 1px solid #d9cece;
  border-bottom: 1px solid #d9cece;
  padding-top: 10px;
  }

  .my_img {
  vertical-align: middle;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 100%;
  }
  .piclist li{
  display: inline-block;
  max-width: 70px;
  min-height: 70px;
  padding: 1px;
  border: 1px solid #d9cece;
  }
  .piclist li img{
  width: 100%;
  height: auto;
  }
  p._p-name {
  font-size: 24px;
  padding-top: 10px;
  font-weight: 600;
  border-bottom: 1px solid #d9cece;
  margin-bottom: 10px;
  }
  .rating span {
  font-size: 13px;
  }
  span.bi-star.checked {
  color: #fbdd0a;
  }
  ._p-features h5 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    font-size: 14px;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 22px;
    color: #787676;
  }

  /*===pic-Zoom===*/
  ._boxzoom .zoom-thumb {
  width: 90px;
  display: inline-block;
  vertical-align: top;
  margin-top: 0px;
  }
  ._boxzoom .zoom-thumb ul.piclist {
  padding-left: 0px;
  top: 0px;
  }
  ._boxzoom ._product-images {
  width: 80%;
  display: inline-block;
  }
  ._boxzoom ._product-images .picZoomer {
  width: 100%;
  }
  ._boxzoom ._product-images .picZoomer .picZoomer-pic-wp img {
  left: 0px;
  }
  ._boxzoom ._product-images .picZoomer img.my_img {
      width: 400px;
      height: auto;
      padding: 40px;
      object-fit: cover;
  }
  .piclist li img {
  object-fit:cover;
  }

  .p-list span.price {
  font-size: 22px;
  font-weight: 500;
  color: #7e7d7d;
  margin-left: 10px;
  }
  ._p-features.mt-2 p {
      text-transform: lowercase;
  }


  /*======products-qty=====*/
  ._p-qty > span {
  color: black;
  margin-right: 15px;
  font-weight: 500;
  }
  ._p-qty .value-button {
  display: inline-flex;
  border: 0px solid #ddd;
  margin: 0px;
  width: 30px;
  height: 35px;
  justify-content: center;
  align-items: center;
  background: #ff5301;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #fff;
  }

  ._p-qty .value-button {
  border: 0px solid #ff5301;
  height: 35px;
  font-size: 20px;
  cursor: cell;
  }
  ._p-qty input#number {
  text-align: center;
  border: 1px solid #ff5301;
  margin: 0px;
  width: 50px;
  padding-left: 13px;
  height: 35px;
  font-size: 16px;
  box-sizing: border-box;
  }
  ._p-add-cart {
  margin-left: 0px;
  margin-bottom: 15px;
  }
  .p-list {
  margin-bottom: 10px;
  }


  ._p-qty .decrease_ {
  position: relative;
  right: -5px;
  top: 1px;
  }

  ._p-qty .increase_ {
  position: relative;
  top: 1px;
  left: -5px;
  }
  span.off {
      background: #ad0502;
      color: #fff;
      padding: 2px 10px;
      font-size: 14px;
      font-weight: 500;
      margin-left: 15px;
      border-top-left-radius: 10px;
      border-bottom-right-radius: 10px;
  }
  a.btn-addcart {
      display: block;
      background-color: #ad0502;
      color: #fff !important;
      padding: 8px 20px;
      cursor: pointer;
      border-radius: 6px;
      text-align: center;
      width: 49%;
      margin-top: 25px;
      margin-bottom: 30px;
      font-size: 16px;
      text-transform: uppercase;
  }

  #related-product .box h4 {
      font-size: 30px;
      font-weight: 600;
      margin-bottom: 62px;
      margin-top: 62px;
  }
  #related-product {
      background-color: #ffffffed;
      padding-top: 10px;
      margin-bottom: 20px;
  }

  ._p-features span.price {
      font-size: 18px;
      font-weight: 600;
      margin-left: 5px;
  }
  ._p-features  del {
      font-size: 16px;}

      .select-grm .form-select {
        width: 77%;
        margin-left: 2px;
        border-radius: 0px;
        padding: 5px 10px;
        font-size: 14px;
    }
    span.space-line {
        padding: 0px 10px;
    }


  /* ===== Category ======== */
    main.category-main {
      background: #f3f5f9fa;
      margin-top: 20px;
      padding-top: 20px;
      margin-bottom: 20px;
      padding-bottom: 20px;
      }
      .box-cat {
      background: var(--color-white);
      border-radius: 6px;
      padding: 10px;
      box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
      }
      h3.widget-title {
      background: #efefef;
      padding: 5px 10px;
      font-size: 20px;
      font-weight: 600;
      border-radius: 4px;
      }
      ul.widget-body {
      list-style-type: none;
      padding-left: 0px;
      line-height: 28px;

      }
      ul.widget-body.mt-2 li a{
      border: 1px solid #ced4da;
      border-radius: 5px;
      padding: 4px 10px;
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      }
      ul.widget-body.mt-2 li a:hover{
      border: 0px;
      display: block;
      background: #ad0502;
      color: #fff;
      transition-delay: 0.01s;
      }

      .category-main .product-content p {
      font-size: 16px;
      }
      .category-main span.price {
      font-size: 16px;}

      .category-main del.del {
      font-size: 14px;}
      .myList {
      display: none;
      }
      ul.myList {
      overflow: auto;
      border: 1px solid #ced4da;
      margin-top: 4px !important;
      padding-bottom: 5px;
      }
      li.list-group-item {
      padding: 5px 0px 0px 10px;
      color: gray;
      border:none;
      }
      li.list-group-item a {
      display: block;
      }
      li.list-group-item:hover {
      color: #e1aa5e;
      }
      .myList::-webkit-scrollbar {
      width: 0 !important;
      display: none;
      }

      .thankyou {
        background: #ffffff6b;
        margin: 20px auto;
        padding: 15px 10px 20px 10px;
        border-radius: 4px;
        width: 50%;
        box-shadow: inset 0px 0px 9px #ff530166, inset 0px 0px 7px #ff530159;
    }

    @media (min-width: 1501px) and (max-width: 10000px) {
        .set-box{
            padding-bottom: 1000px;
        }

    }

    @media (min-width: 1440px) and (max-width: 1500px) {
        .set-box{
            padding-bottom: 200px;
        }

    }

@media (min-width: 0px) and (max-width: 991px) {
  .header .logo img {
    max-height: 40px;}
    .sticked .middle-header {
      padding: 16px 0px !important;
  }
    .footer .logo img {
    max-height: 75px;}
  .categories-card img {
    width: 100px;
    height: 100px;}
    .form-control {
      border-radius: 0px;
      font-size: 14px;
    }
    .adds-card {
      border-radius: 0px;}
      .adds-card img {
        border-radius: 0px;}
  .box {
    background-image: none;
    padding: 0px;
    border-radius: 0px;
    box-shadow: 0 0 0px 0 rgba(183,192,206,.2);
    -webkit-box-shadow: 0 0 0px 0 rgba(183,192,206,.2);
    -moz-box-shadow: 0 0 0px 0 rgba(183,192,206,.2);
    -ms-box-shadow: 0 0 0px 0 rgba(183,192,206,.2);
}
.box h4 {
  margin-bottom: 15px;
  margin-top: 0px;
  float: left;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  margin-left: 15px;
}

a.btn-readmore {
    padding: 5px 16px;
    border-radius: 0px;
    font-size: 12px;
}
#about h1 {
    font-size: 26px;
    margin-bottom: 5px;
    font-weight: 800;
}

.product-img img {
    width: 120px !important;
    height: 120px !important;
}
#product {
    margin: 4px 0px 0px 0px ;
}

.product-content p {
  margin-bottom: 0px;
}
a.btn-viewall {
  font-size: 12px;
  float: right;
  background: var(--color-secondary);
  margin-right: 14px;
  border-radius: 0px;
}
.product-card {
  padding: 6px;
  border-radius: 0px;
  margin: 5px;
}
.slidePrev-btn {
  display: none;}
.slideNext-btn {
  display: none;}
  a.btn.add-cart {
    font-size: 13px;
    padding: 4px;
    margin-top: 5px;
    margin-bottom: -5px;
    border-radius: 0px;
}
h3.widget-title {
  font-size: 18px;
  border-radius: 0px;
}

#related-product .box h4 {
    font-size: 15px;
    margin-bottom: 9px;
    margin-top: 0px;
}


.footer .footer-legal {
  padding: 10px 0px 75px 0px;}
  .pp-2 {
    padding: 8px 10px 0px 10px;
}
a.btn-view {
    margin-right: 0px;
    padding: 4px 16px;
    font-size: 12px;
    border-radius: 0px;
}

.categories-card {
  border-radius: 0px;}
.categories {
  padding: 8px 10px 0px 10px;
}
.box h4 {
  color: #000;
}
.footer .footer-content {
  padding: 30px 0 20px 0;
}
.pp-m {
  padding: 8px 8px 0px 8px;
  margin-top: -12px;
}

._boxzoom .zoom-thumb {
  display: contents;}
  .my_img {
    position: relative;}
  ._boxzoom ._product-images .picZoomer img.my_img {
      width: 100%;
      padding: 9px;
  }
  .picZoomer-pic-wp {
    height: 275px !important;
}
.picZoomer-zoom-wp {
  display: none !important;}
  .piclist li {
    max-width: 70px;
    min-height: 70px;
    margin-bottom: 5px;}
    ._boxzoom {
      text-align: center;
      border: 0px solid #d9cece;
      border-bottom: 1px solid #d9cece;
  }
  p._p-name {
    font-size: 16px;
    padding: 5px 0px;
    margin-bottom: 5px;
}
.p-list {
  margin-bottom: 5px;
  font-size: 14px;
}
.p-list span.price {
  font-size: 16px;
  margin-left: 5px;
}
del {
  font-size: 14px;
  margin-left: 5px;
}
span.off {
  padding: 2px 8px;
  font-size: 12px;
  margin-left: 12px;}
  ._p-features h5 {
    font-size: 15px;
    width: 95% !important;
    margin-bottom: 5px !important;
  }
  ._p-qty label {
    font-size: 14px;
}
._p-add-cart {
  margin-bottom: 10px;
}
.select-grm label {
  font-size: 14px;
}
._p-qty input#number {
  padding-left: 0px;
}
.select-grm .form-select {
  padding: 5px 11px;
  width: 80%;
  font-size: 14px;
  margin-left: -1px;
  border-radius: 0px;
}
a.btn-addcart {
  padding: 6px 20px;
  border-radius: 0px;
  width: 50%;
  margin-top: 8px;
  margin-bottom: 0px;
  font-size: 14px;
}
._p-features h4 {
  font-size: 16px;
}
._p-features h6 {
  font-size: 14px;
}
p {
  font-size: 14px;
}
.categories {
  background: linear-gradient(0deg, #ffffff00 30%, #f5d9cca6 29%);
  border-radius: 0px;

}
  .box-cat {
    border-radius: 0px;
    padding: 10px 15px;
    margin-bottom: 15px;}
    .get a {
      padding: 8px 5px;
      font-size: 11px;
    }
    .get {
      width: 25px;
      top: 41%;
  }
  .modal-content {
    border-radius: 0px;}
    .btn-submit {
      border-radius: 0px;
  }
  .container, .container-md, .container-sm {
    max-width: 755px !important;
}
span.count {
    background: #ff5301;
    position: absolute;
    margin-top: -10px;
    font-size: 12px;
}

a.btn-submit.p-2.w-25 {
    width: 60% !important;
}
.thankyou {
    width: 88%;
}

}

@media (min-width: 768px) and (max-width: 1024px) {
    .thankyou {
        width: 78%;
    }
  a.btn-addcart {
    padding: 8px 20px;
    width: 48%;
    margin-top: 10px;
    margin-right: 30px;
  }
  ._boxzoom {
    border-right: 1px solid #d9cece;
}
.select-grm .form-select {
  width: 88%;}

}

@media (min-width: 992px) and (max-width: 1024px) {
  .cardImg.hidden-sm {
    display: block;
}
.box {
  padding: 32px 0px;
}
.box h4 {
  color: #fff;
}
    .product-img img {
        width: 120px !important;
        height: 120px !important;
    }
    #product {
        margin: 4px 0px 0px 0px ;
    }
.footer .footer-legal {
  padding: 10px 0px 75px 0px;}
  .col-lg-3.col-md-4.hidden-sm {
    display: block;
}
.footer .footer-content {
  padding: 30px 0 20px 0;
}
}



@media (min-width: 0px) and (max-width: 680px) {
    a.btn-readmore {
        padding: 5px 16px;
        border-radius: 0px;
        font-size: 12px;
    }
    #about h1 {
        text-align: center;
    }
    .mob-center{
        text-align: center;
    }

}



/*===== USER DASHBOARD===== */


.box-p {
  background: #ffe7dcb3;
  padding: 15px 0px 20px 0px;
  border-radius: 4px;
  }
  ul.tab-list {
  list-style-type: none;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 35px;
  font-size: 16px;
  text-transform: uppercase;
  }
  ul.tab-list li a {
  background-color: #ff5301;
  display: block;
  margin-bottom: 10px;
  padding: 5px 10px;
  color: #fff;
  border-radius: 4px;
  }
  ul.tab-list li a:hover {
  background-color: #ad0502;
  transition-delay: 0.1s;
  color: #fff;
  }
  .profile-title {
  text-align: center;
  margin-bottom: 20px;
  }
  .profile-title h6 {
      color: #ad0502;
      font-weight:600;
  }
  .product-cart {
  background: #ffffffe0;
  padding: 20px;
  margin: 10px 0px;
  border-radius: 4px;
  color: #ad0502;
  text-align: center;
  font-weight: 600;
  }
  .Recent {
  padding: 20px 15px 0px 15px;
  }
  .scroll-r {
  height: 337px;
  overflow-y: scroll;
  padding: 0px 15px 15px 0px;
  }
  .scroll-r .product-cart{
  margin-top: 10px;
  }

  .scroll-r::-webkit-scrollbar-track
  {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  background-color: #F5F5F5;
  }

  .scroll-r::-webkit-scrollbar
  {
  width: 6px;
  background-color: #F5F5F5;
  }

  .scroll-r::-webkit-scrollbar-thumb
  {
  background-color: #ad0502;
  }
  table.table {
      background-color: #ffffffe0;;
      border-radius: 4px;
  }
  a.pur-btn {
      padding: 2px 10px;
      border-radius: 4px;
      font-size: 14px;
  }
  span.link-title {
      background-color: #fcfcfc;
      padding: 6px 10px;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 600;
  }
  .profile-cart {
  background: #ffffffe0;
  padding: 20px;
  margin: 10px 0px;
  border-radius: 4px;
  }

img.user-img {
width: 130px;
height: 130px;
border-radius: 100px;
border: 4px solid #b2a8a8;
}

.file-input__input {
width: 0.1px;
height: 0.1px;
opacity: 0;
overflow: hidden;
position: absolute;
z-index: -1;
}

.file-input__label {
cursor: pointer;
display: inline-flex;
align-items: center;
font-weight: 400;
color: #fff;
font-size: 14px;
padding: 8px 12px;
background-color: #ad0502;
border-radius:4px;
box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
}


@media (min-width: 0px) and (max-width: 767px) {
  .scroll-r {
    height: auto;padding:0px;}
    .scroll-r::-webkit-scrollbar
    {
    width: 0px;
    }




}
