/** Shopify CDN: Minification failed

Line 2815:12 Expected identifier but found whitespace
Line 2815:13 Unexpected "("

**/
@import url('https://fonts.googleapis.com/css2?family=Stack+Sans+Headline:wght@200..700&display=swap');

/****************************************************************************************
@
@	Global Style and Reset
@
****************************************************************************************/
/* Global Styles */
::-moz-selection {
  background: #000;
  color: #fff;
}

::selection {
  background: #000;
  color: #fff;
}

::-moz-selection {
  background: #000;
  color: #fff;
}
html{

  
  /* height: 100%; */
}
html,
body {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}
body{

  /* height: 100%; */
}

body {
  font-family: 'Stack Sans Headline', sans-serif;
  /* min-height: 100%; */
  overflow-x: hidden;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

p {
  line-height: 24px;
}

ul {
  list-style: none;
  padding-left: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  color: #000;
  cursor: pointer;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a img {
  border: none;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 4px #efdb00;
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #4c4c4c;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.bg-light {
  background: #fff !important;
}

@media (min-width: 1023px) and (max-width: 3000px) {
  .darkHeader {
    background-color: #f4f4f4;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 5px 8px 0 rgba(0, 0, 0, 0.14), 0 1px 14px 0 rgba(0, 0, 0, 0.12);
    padding-top: 20px !important;
    padding-bottom: 17px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    position: fixed;
    width: 100%;
    animation: smoothScroll 1s forwards;
    z-index: 9;
  }

  @keyframes smoothScroll {
    0% {
      transform: translateY(-20px);
    }

    100% {
      transform: translateY(0px);
    }
  }
}

/* 
  ---------------------------------------------
  preloader
  --------------------------------------------- 
  */
#preloader {
  overflow: hidden;
  background-image: linear-gradient(127deg, #00809D 0%, #fff 91%);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 9999;
  color: #fff;
}

#preloader .jumper {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
  margin: auto;
  width: 50px;
  height: 50px;
}

#preloader .jumper>div {
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  animation-fill-mode: both;
  position: absolute;
  opacity: 0;
  width: 50px;
  height: 50px;
  animation: jumper 1s 0s linear infinite;
}

#preloader .jumper>div:nth-child(2) {
  animation-delay: 0.33333s;
}

#preloader .jumper>div:nth-child(3) {
  animation-delay: 0.66666s;
}

@keyframes jumper {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  5% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.navbar-expand-lg .navbar-nav .nav-link {
  border: 1px solid #E6E6E6 !important;
  border-radius: 24px;
  padding: 5px 20px;
  margin: 0 5px;
  color: #1B1A15;
  font-weight: 500;
  font-size: 15px;
}

button:focus {
  outline: 0px dotted !important;
  outline: 0px auto -webkit-focus-ring-color !important;
}

#back2Top {
  position: fixed;
  bottom: 2px;
  right: 2px;
  z-index: 999;
}

/*======================== common css ========================================*/
.common-btn-main {
  display: flex;
  align-items: center;
  width: fit-content;
  transition: all ease-in-out 0.5s;
}

.common-btn-main span {
  padding: 10px 20px;
  border-radius: 50px;
  background: #FFD700;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all ease-in-out 0.5s;
  transform: translateX(0px);
}

.common-btn-main i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFD700;
  color: #1B1A15;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out 0.5s;
  transform: translateX(0px) rotate(-45deg);
}

.common-btn-main:hover span {
  /* flex-direction: row-reverse; */
  transform: translateX(30px);
}

.common-btn-main:hover i {
  /* flex-direction: row-reverse; */
  transform: translateX(-120px) rotate(-45deg);
}

.common-add2cart-btn {
  display: flex;
  align-items: center;
  width: fit-content;
  transition: all ease-in-out 0.5s;
}

.common-add2cart-btn span {
  padding: 10px 20px;
  border-radius: 50px;
  /* background: #FFD700; */
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all ease-in-out 0.5s;
  transform: translateX(0px);
  border: 1px solid #7D7D7D;
  color: #1B1A15;
}

.common-add2cart-btn i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /* background: #FFD700; */
  background: transparent;
  color: #1B1A15;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out 0.5s;
  transform: translateX(0px) rotate(-45deg);
  border: 1px solid #7D7D7D;
}

.common-add2cart-btn:hover span {
  /* flex-direction: row-reverse; */
  transform: translateX(42px);
  background: #FFD700;
  border: 1px solid transparent;
}

.common-add2cart-btn:hover i {
  /* flex-direction: row-reverse; */
  transform: translateX(-110px) rotate(-45deg);
  background: #FFD700;
  border: 1px solid transparent;
}

.common-view-btn {
  display: flex;
  align-items: center;
  width: fit-content;
  transition: all ease-in-out 0.5s;
}

.common-view-btn span {
  padding: 10px 20px;
  border-radius: 50px;
  /* background: #FFD700; */
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all ease-in-out 0.5s;
  transform: translateX(0px);
  border: 1px solid #00809D;
  color: #1B1A15;
}

.common-view-btn i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /* background: #FFD700; */
  background: transparent;
  color: #1B1A15;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out 0.5s;
  transform: translateX(0px) rotate(-45deg);
  border: 1px solid #00809D;
}

.common-view-btn:hover span {
  /* flex-direction: row-reverse; */
  transform: translateX(30px);
  /* background: #FFD700; */
  /* border: 1px solid transparent; */
}

.common-view-btn:hover i {
  /* flex-direction: row-reverse; */
  transform: translateX(-108px) rotate(-45deg);
  /* background: #FFD700; */
  /* border: 1px solid transparent; */
}

.common-btn-submit {
  background: #FFD700;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
}

.common-head h3 {
  color: #1B1A15;
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 20px;
}

.product-box.bg-white {
  background: #fff !important;
}

/*==================================css reset==================================*/
/****************************************************************************************
@
@	Styles
@
****************************************************************************************/
.headerSec .sub-menu.dropdown-menu a {
  color: #fff !important;
  font-size: 20px;
  cursor: pointer;
}

.headerSec .sub-menu.dropdown-menu a:hover {
  color: #c6c889 !important;
  border-left: 1px solid #c6c889;
  padding-left: 5px;
}

.headerSec .dropdown-menu {
  color: #ffffff;
  background-color: rgb(22, 127, 156);
}

.headerSec .dropdown-item {
  color: #fff;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: #000000;
}

.headerSec {
  position: relative;
}

.headerSec .headerTop {
  background: #00809D;
 padding: 10px 0px;
  color: #fff;
}

.headerSec .dropdown-submenu {
  position: relative;
}

.headerSec .dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 6px;
  top: 0.8em;
}

.headerSec .dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.1rem;
  margin-right: 0.1rem;
}

.headerSec ul.navbar-nav li.nav-item a {
  position: relative;
  border: 1px solid #e6e6e6;
  border-radius: 30px;
  padding: 5px 15px;
  color: #000;
}
.headerSec ul.navbar-nav li.nav-item {
  position: relative;
  padding: 0px 5px;
}

/*####################### MENU ########################*/
#cssmenu>ul>li:hover>a,
#cssmenu>ul>li.active>a {
  color: red;
  border-bottom: none !important;
}

#cssmenu>ul>li:hover>a::before,
#cssmenu>ul>li.active>a::before {
  opacity: 1;
}

#cssmenu>ul>li>a {
  padding: 11px 20px;
  text-transform: none;
  font-size: 16px;
  color: #000;
  font-weight: 500;
  transition: color 0.2s ease;
  margin: 0 10px 0 0;
}

#cssmenu ul ul {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  box-shadow: 1px 0 12px rgba(0, 0, 0, 0.22);
}

#cssmenu ul ul li a {
  padding: 10px 15px;
  width: 200px;
  font-size: 14px;
  background: #02aef1;
  text-decoration: none;
  color: #fff;
  transition: color 0.2s ease;
  border-bottom: 1px solid #e64850;
}

#cssmenu>ul>li.has-sub>a::after {
  display: none;
}

#cssmenu>ul>li.has-sub>a {
  padding-right: 6px;
}

#cssmenu ul ul li:hover>a,
#cssmenu ul ul li a:hover {
  color: #222;
}

/*####################### ENd MENU ########################*/
/*####################### Slick Slider ########################*/
.c-header {
  display: flex;
  align-items: center;
  padding: 2rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}

.c-header__title {
  text-transform: uppercase;
  font-size: 1.5em;
  margin: 0 2rem;
}

.c-navigation {
  flex-basis: 70%;
}

.c-navigation__list {
  padding: 0;
}

.c-navigation__list-item {
  display: inline-block;
  margin: 0 2rem;
  position: relative;
  text-transform: uppercase;
  font-size: 0.9em;
  opacity: 0.7;
  font-weight: 500;
}

.c-navigation__list-item:after {
  content: "";
  width: 2px;
  height: 100%;
  background: #fff;
  position: absolute;
  display: inline-block;
  right: -2rem;
}

.c-navigation__list-item:last-of-type:after {
  background: transparent;
}

.c-navigation__list-item--active {
  opacity: 1;
}

.c-navigation__list-item--active>a {
  position: relative;
}

.c-navigation__list-item--active>a:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -0.4rem;
  left: 0;
}

.c-cta {
  display: flex;
  align-items: center;
}

.c-cta>a {
  font-size: 0.9em;
  opacity: 0.7;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 2rem;
}

.c-cta__button {
  border: 0;
  background-color: transparent;
  display: inline-block;
}

.c-cta__button__search {
  width: 15px;
  height: 15px;
  margin-right: 3rem;
}

.c-cta__button__search svg {
  width: inherit;
  height: inherit;
  fill: #fff;
}

.c-cta__button__menu {
  width: 20px;
  height: 2px;
  background-color: #fff;
  position: relative;
}

.c-cta__button__menu:after,
.c-cta__button__menu:before {
  content: "";
  width: inherit;
  height: inherit;
  background-color: inherit;
  position: absolute;
  left: 0;
}

.c-cta__button__menu:after {
  bottom: -5px;
}

.c-cta__button__menu:before {
  top: -5px;
}

.c-socials {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #fff;
  padding: 1.8rem 1.8rem 0.8rem 1.8rem;
  z-index: 2;
}

.c-socials__list-item {
  margin-bottom: 1rem;
}

.c-socials__list-item a svg {
  width: 21px;
  height: 21px;
}

.c-slide {
  display: inline-flex !important;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
  will-change: background-size;
  position: relative;
  transition: 1s ease;
  transition-delay: 0.4s;
}

.c-slide:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.61) 76%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#9c000000", GradientType=0);
}

.c-slide-content {
  padding: 2rem;
  margin: 0 auto;
  width: 100%;
  z-index: 2;
  max-width: 1200px;
}

.c-slide__title {
  font-size: 4em;
  text-transform: uppercase;
  letter-spacing: 20px;
  transform: translateY(150px);
  opacity: 0;
  transition: 0.8s ease;
  will-change: opacity, transform;
}

.c-slide__title--large,
.c-slide__title--medium {
  display: block;
  font-size: 2.5em;
  line-height: 110px;
  transform: translateY(150px);
  will-change: transform;
  transition-delay: 0.4s;
  position: relative;
  transition: 1s ease;
}

.c-slide__title--medium {
  font-size: 1.6em;
  line-height: 100px;
}

.c-slide__subtitle {
  text-transform: uppercase;
  letter-spacing: 3px;
}

.c-slide__body {
  margin-top: 0.7rem;
  opacity: 0;
  line-height: 27px;
}

.c-slide__info {
  transform: translateY(-150px);
  transition: 0.8s ease;
}

.c-wrap {
  padding: 2rem 0;
  overflow: hidden;
}

.c-wrap--small {
  max-width: 30%;
}

.c-wrap--line {
  position: relative;
}

.c-wrap--line:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  transition: 0.9s ease;
  transition-delay: 0.4s;
}

.slick-list {
  overflow: visible !important;
}

.animateIn .c-slide__title--large,
.animateIn .c-slide__title--medium,
.animateIn .c-slide__info,
.animateIn .c-slide__title,
.animateIn .c-slide__body,
.initialAnimation .c-slide__title--large,
.initialAnimation .c-slide__title--medium,
.initialAnimation .c-slide__info,
.initialAnimation .c-slide__title,
.initialAnimation .c-slide__body {
  transform: translateY(0);
  opacity: 1;
}

.animateIn .c-wrap--line:after,
.initialAnimation .c-wrap--line:after {
  left: 0;
  transform: translateX(0);
  width: 100%;
}

.slick-list {
  transition: 0.5s ease;
}

.u-scale-out {
  transform: scale(0.6) !important;
  transition: 0.5s ease;
}

.u-scale-in {
  transform: scale(1);
}

@media only screen and (max-width: 1300px) {
  .c-slide__title {
    font-size: 3em;
  }

  .c-slide__title--large {
    font-size: 2em;
  }

  .c-wrap--small {
    max-width: 50%;
  }
}

@media only screen and (max-width: 1100px) {
  .c-navigation {
    display: none;
  }

  .c-header {
    justify-content: space-between;
  }
}

@media only screen and (max-width: 800px) {
  .c-slide__title--medium {
    font-size: 1.3em;
  }

  .c-slide__title {
    font-size: 2.5em;
  }

  .c-slide__title--large {
    font-size: 1.5em;
  }

  .c-wrap--small {
    max-width: 80%;
  }
}

/*####################### Slick Slider End ########################*/
/*--------- Megha Menu ----------*/
.header {
  padding: 12px 0;
  /* Navigation Dropdown Menu --------------------------------*/
}

.header .navbar-brand {
  width: 280px;
  padding: 0;
}

.header .navigation-menu ul li {
  margin: 0 25px;
  text-transform: capitalize;
}

.header .navigation-menu ul li a {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  padding: 25px 0;
  transition: all ease-in-out 0.4s;
}

.header .navigation-menu ul li:hover>a,
.header .navigation-menu ul li:focus>a,
.header .navigation-menu ul li.active>a {
  color: #ccc;
}

.header .nav-dropdown {
  width: 100%;
  padding: 0;
  left: 0;
  top: 88px;
  margin: 0 auto;
  border: 1px solid #eee;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
  border-top: 3px solid #000;
}

.header .nav-dropdown:after {
  display: none;
}

.header .nav-dropdown .nav-img {
  width: 28.33%;
}

.header .nav-dropdown .nav-rt-prt {
  width: 71.66%;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
}

.header .nav-dropdown .nav-rt-prt ul {
  padding: 10px;
  margin: 10px;
  width: 30.33%;
  border: 1px solid #ddd;
  border-radius: 12px;
}

.header .nav-dropdown .nav-rt-prt ul li {
  font-size: 16px;
  color: #ccc;
  margin: 0 0 6px;
  float: none;
  font-weight: 400;
  position: relative;
  transition: all ease-in-out 0.5s;
}

.header .nav-dropdown .nav-rt-prt ul li p {
  font-size: 14px !important;
  color: #000;
  margin: 6px 0;
}

.header .nav-dropdown .nav-rt-prt ul li ul {
  margin: 0;
  padding: 0 0 0 8px;
  width: 100%;
  border: none;
}

.header .nav-dropdown .nav-rt-prt ul li ul li {
  font-size: 14px !important;
  margin: 0;
  display: flex;
  align-items: flex-start;
  padding: 4px 0 4px 20px;
}

.header .nav-dropdown .nav-rt-prt ul li ul li a {
  color: #000;
  font-size: 14px !important;
  padding: 0;
}

.header .nav-dropdown .nav-rt-prt ul li ul li:hover a {
  color: #ccc;
}

.header .nav-dropdown .nav-rt-prt ul li ul li:before {
  content: "\f192";
  font-family: Fontawesome;
  position: absolute;
  left: 0;
  font-size: 15px;
  color: #000;
  transition: all ease-in-out 0.5s;
}

.header .nav-dropdown .nav-rt-prt ul li ul li:hover:before {
  color: #000;
}

.header .nav-dropdown .nav-rt-prt ul li a {
  padding: 6px 0;
  color: #ccc;
}

.header .dropworn-arrow {
  top: 8px;
}

.header .navigation-menu ul li.menu-dropdown-icon:hover .nav-dropdown {
  animation: slide-top 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}

.header .navigation-menu ul li.menu-dropdown-icon:hover .dropworn-arrow {
  animation: slide-top 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}

.header .navigation-menu ul li.menu-dropdown-icon:hover .nav-dropdown {
  animation: slide-top 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
  margin-top: -8px;
}

/*---- Menu ---*/
.wrapperModal {
  height: 100vh;
  /* This part is important for centering the content */
  display: flex;
  align-items: center;
  justify-content: center;
  /* End center */
  background: linear-gradient(to right, #834d9b, #d04ed6);
}

.wrapperModal a {
  display: inline-block;
  text-decoration: none;
  padding: 15px;
  background-color: #fff;
  border-radius: 3px;
  text-transform: uppercase;
  color: #585858;
  font-family: "Roboto", sans-serif;
}

.wrapperModal.modal {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(77, 77, 77, 0.7);
  transition: all 0.4s;
}

.wrapperModal .modal:target {
  visibility: visible;
  opacity: 1;
}

.wrapperModal .modal__content {
  border-radius: 4px;
  position: relative;
  width: 500px;
  max-width: 90%;
  background: #fff;
  padding: 1em 2em;
}

.wrapperModal .modal__footer {
  text-align: right;
}

.wrapperModal .modal__footer a {
  color: #585858;
}

.wrapperModal .modal__footer i {
  color: #d02d2c;
}

.wrapperModal .modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #585858;
  text-decoration: none;
}

.error404 {
  text-align: center;
}

.error404 img {
  max-width: 100%;
  max-height: 80vh;
}

/* Top bar */
.topbar {
  background: #0b6b73;
  color: #fff;
  font-size: 14px;
  padding: 6px 0;
}

/* Hero */
.hero img {
  border-radius: 12px;
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
  object-fit: cover;
}

/* Category cards */
.category-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.category-card img {
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
}

.bnr2-img {
  min-height: auto;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Product cards */
.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  transition: 0.3s;
}

.product-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.product-card img {
  height: 180px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

/* Deal banner */
.deal-banner img {
  border-radius: 12px;
  height: 180px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.footer-main {
  background: #005B70;
  color: #cfe8ea;
  padding: 70px 0 0;
  font-size: 15px;
}

.footer-text {
  line-height: 1.6;
  color: #b6d6d9;
}

.footer-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #b6d6d9;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.logo-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffc107;
  color: #000;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a {
  width: 34px;
  height: 34px;
  background: #0f7b82;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #ffc107;
  color: #000;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding: 18px 0;
}

.payments img {
  height: 36px;
  margin-left: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-main {
    text-align: center;
  }

  .payments {
    margin-top: 10px;
  }
}

.nwsltrWrap {
  background: #00809D;
  padding-left: 0;
  padding-right: 0;
  border-radius: 15px;
  overflow: hidden;
  align-items: center;
  color: #fff;
  text-align: center;
  position: relative;
}

.nwsltrWrap form {
  width: 50%;
  margin: 0 auto;
}

.masking1 {
  -webkit-mask-image: url(mask1.png);
  mask-image: url(mask1.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  position: absolute;
  right: -8px;
  bottom: 0;
  width: 40vw;
  height: 100%;
}

.masking1 img {
  height: 100%;
}

.newsleter .input-group .btn {
  position: relative;
  z-index: 2;
  border-radius: 50px !important;
  background: #fff !important;
  color: #000 !important;
  border: 0;
  min-width: 50px;
}

.newsleter input.form-control {
  border-radius: 50px !important;
}

.service-strip {
  background: #ffffff;
  padding: 0px 0px 40px;
}

.service-box {
  padding: 25px 20px;
}

.service-icon {
  font-size: 42px;
  color: #0b6b73;
  margin-bottom: 18px;
}

.service-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-box p {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

/* Optional hover like modern ecommerce */
.service-box:hover .service-icon {
  transform: scale(1.1);
  transition: 0.3s;
}

.common-btnSec a {
  font-size: 16px;
}

.leftSec .common-title,
.rightSec .common-title {
  display: flex;
  justify-content: space-between;
}

.leftSec,
.rightSec {
  background: #F8F6F5;
  padding: 20px;
  border-radius: 15px;
}

.common-title2 {
  display: flex;
  justify-content: space-between;
}

.category-card-v2 {
  background: #eeeeee;
  border-radius: 30px;
  padding: 32px 20px;
  text-align: center;
  transition: 0.25s ease;
  height: 100%;
}

/* image */
.category-card-v2 .cat-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}

.category-card-v2 img {
  max-height: 250px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

/* title */
.category-card-v2 h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

/* subtitle */
.category-card-v2 p {
  font-size: 14px;
  color: #8a8a8a;
  margin: 0;
}

/* hover like modern ecommerce */
.category-card-v2:hover {
  transform: translateY(-5px);
  background: #e6e6e6;
}

.shop-section {
  background: #fff;
}

/* header */
.shop-header h2 {
  font-weight: 600;
  color: #000;
}

.filters {
  display: flex;
  gap: 12px;
}

.filter {
  background: transparent;
  border: 1px solid #0b6b73;
  color: #0b6b73;
  padding: 10px 22px;
  border-radius: 40px;
}

.filter.active {
  background: #0b6b73;
  color: #fff;
}

/* ===== GRID ===== */
/* .shop-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  grid-auto-rows: 475px;
  gap: 30px;
} */
.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  grid-template-rows: repeat(2, 475px);
  gap: 0px 24px;
}

.product-card-box {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* BIG center card spans 2 rows */
.shop-grid .product-card-box:nth-child(2) {
  grid-row: span 2;
}

/* cards */
.card-small,
.card-big {
  background: #efefef;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* heights */
.card-small {
  height: 340px;
}

.card-big {
  height: 100%;
}

/* images */
.card-small img,
.card-big img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all ease-in-out 0.5s;
  transform: scale(1);
}

/* big center spans 2 rows */
.card-big {
  grid-row: span 2;
}

/* text area */
.card-text {
  padding: 16px;
  background: #fff;
  flex-grow: 1;
}

/* header row */
.card-text-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-text-header h6,
.card-text-header .cat-name {
  padding: 10px 30px;
  font-size: 15px;
  font-weight: 400;
  border: 1px solid #686868;
  border-radius: 50px;
  text-transform: capitalize;
  transition: all ease-in-out 0.5s;
}

.card-review-price-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-review-price-box p,
.card-review-price-box .card-price {
  margin-bottom: 0px;
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

/* stars */
.card-review i {
  color: #ffc107;
  font-size: 12px;
}

/* price */
.card-price {
  font-weight: 600;
}


/* sale badge */
.sale-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #ffc107;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
}

.product-text-lwr {
  width:100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.product-text-lwr h5 {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  width: calc(100% - 170px);
}

.product-text-lwr .common-btn-main {
  transform: translateX(-80px);
  visibility: hidden;
  opacity: 0;
}

.product-card-box:hover .product-text-lwr .common-btn-main {
  transform: translateX(0px);
  visibility: visible;
  opacity: 1;
}

.product-card-box:hover .card-text-header h6,
.product-card-box:hover .card-text-header .cat-name {
  background: #ffc107;
  border: 1px solid #ffc107;
}

.product-card-box:hover .card-small img,
.product-card-box:hover .card-big img {
  transform: scale(1.1);
}

/* hover */
/* .card-small:hover,
.card-big:hover {
  transform: translateY(-6px);
  transition: 0.25s;
} */

@media (max-width: 992px) {
  .shop-grid {
    grid-template-columns: 1fr 1fr;
  }

  .card-big {
    grid-row: span 1;
  }
}

@media (max-width: 576px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}

/*================== Most Selling Products =============================*/
.product-Stxt-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-Stxt-head h5 {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
}

.product-Stxt-head p {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0px;
}

.product-PriStaBox p {
  font-size: 14px;
  font-weight: 400;
  color: #686868;
  margin-bottom: 0px;
}

.product-review {
  display: flex;
  width:100%;
  /* flex-wrap: wrap; */
  align-items: center;
  gap: 10px;
}

.product-review>span {
  font-size: 14px;
  color: #7C7C7C;
  font-weight: 400;
}

.product-review p {
  width: 40%;
  font-size: 14px;
  line-height: 16px;
  color: #0F9423;
}

.product-Stxt-head>p>del {
  font-size: 12px;
  color: #767676;
}

.product-review .common-add2cart-btn {
  width: 60%;
}

.leftSec .common-title2 .common-head h3,
.rightSec .common-title2 .common-head h3 {
  font-size: 32px !important;
  font-weight: 500;
  color: #1B1A15;
}

/* .common-product-slider.owl-carousel {
  position: relative;
}
.common-product-slider.owl-carousel .owl-dots {
  margin: 40px 0px 20px;
  display: flex;
  align-items: center;
  width: 100%;
  background: #DAD6D4;
  height: 1px;
}
.common-product-slider.owl-carousel .owl-dots .owl-dot.active {
  background: #00809D;
  width: 200px;
  height: 1px;
} */

.shopCat-progress {
  width: 100%;
  max-width: 100%;
  height: 2px;
  background: #DAD6D4;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
}

.shopCat-progress .progress-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100px;
  background: #00809D;
  transition: transform 0.4s ease;
}


/* Custom Owl Carousel Progress Bar with Dots */
/* .common-product-slider {
  position: relative;
} */

/* Progress Bar Container */
/* .owl-progress-container {
  position: relative;
  margin: 40px auto 20px;
  width: 100%;
  max-width: 600px;
} */

/* Background Track */
/* .owl-progress-track {
  position: relative;
  width: 100%;
  height: 2px;
  background: #DAD6D4;
  border-radius: 2px;
} */

/* Progress Fill Bar */
/* .owl-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  background: #00809D;
  border-radius: 2px;
  transition: width 0.4s ease-in-out;
  width: 0%;
} */

/* Dots Container */
/* .owl-progress-dots {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
} */

/* Individual Dot */
/* .owl-progress-dot {
  width: 12px;
  height: 12px;
  background: #DAD6D4;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  pointer-events: all;
  position: relative;
  z-index: 2;
}

.owl-progress-dot.active {
  background: #00809D;
  transform: scale(1.3);
  box-shadow: 0 0 0 4px rgba(0, 128, 157, 0.2);
}

.owl-progress-dot.passed {
  background: #00809D;
} */

/* Hide default Owl dots */
/* .common-product-slider .owl-dots {
  display: none;
} */

/* Navigation Arrows */
/* .common-product-slider .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.common-product-slider .owl-nav button {
  width: 45px;
  height: 45px;
  background: #fff !important;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-size: 20px !important;
  color: #333 !important;
  transition: all 0.3s ease;
}

.common-product-slider .owl-nav button:hover {
  background: #00809D !important;
  color: #fff !important;
}

.common-product-slider .owl-nav button.owl-prev {
  margin-left: -20px;
}

.common-product-slider .owl-nav button.owl-next {
  margin-right: -20px;
} */


/* ======================
   Categories Section
====================== */
.categories-section {
  background: #ffffff;
}

/* section heading */
.section-title {
  font-weight: 600;
}

/* card */
.category-card-v2 {
  background: #eeeeee;
  border-radius: 30px;
  padding: 32px 18px;
  text-align: center;
  height: 100%;
  transition: 0.25s ease;
  cursor: pointer;
}

/* image */
.category-card-v2 .cat-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  height: 120px;
}

.category-card-v2 img {
  max-height: 110px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

/* title */
.category-card-v2 h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

/* subtitle */
.category-card-v2 p {
  font-size: 14px;
  color: #8a8a8a;
  margin: 0;
}

/* hover effect like modern ecommerce */
.category-card-v2:hover {
  transform: translateY(-6px);
  background: #e6e6e6;
}

.Head-CaForm {
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 6px 8px;
  background: rgba(var(--white-color), 1);
  border: 1px solid #E6E6E6;
}

.Head-CaForm .form-control,
.Head-CaForm .form-control:hover,
.Head-CaForm .form-control:focus {
  border: none;
  min-height: 100%;
  padding: 4px;
  font-weight: 500;
  font-size: 13px;
  width: 100%;
  color: rgba(var(--black-color), 1);
}

.Head-CaForm .form-control::-moz-placeholder {
  color: rgba(var(--black-color), 0.6);
}

.Head-CaForm .form-control::placeholder {
  color: rgba(var(--black-color), 0.6);
}

.HeadCa-FormBtn,
.HeadCa-FormBtn:visited,
.HeadCa-FormBtn:focus {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  width: var(--ehw-HFB);
  height: var(--ehw-HFB);
  border-radius: 50%;
  border: none;
  background: #fff;
  --ehw-HFB: 34px;
}

.HeadCa-FormBtn img {
  --ehw-EHWC: 60%;
}

/* .HeadCa-FormBtn:hover {
  background: rgb(0, 128, 157);
  color: #fff;
} */

.Head-CaLog {
  display: flex;
  align-items: center;
  gap: 40px;
}

.Head-CaForm {
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 6px 8px;
  background: rgba(var(--white-color), 1);
  border: 1px solid #E6E6E6;
}

.HeadCa-FormBtn:hover img {
  filter: contrast(0) brightness(3);
}

.Head-CaLog ul {
  display: flex;
  gap: 11px;
  align-items: center;
}

.Head-CaLog ul li:first-child {
  background: #FFD700;
  color: #000000;
  padding: 10px 30px;
  border-radius: 50px;
}

.Head-CaLog ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.Head-CaLog ul li span {
  position: absolute;
  top: -10px;
  left: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFD700;
}

.Head-CaForm .select-box {
  border-radius: 50px;
  min-height: 40px;
  color: rgba(var(--third-color), 1);
  background: rgba(var(--third2-color), 1);
  border-color: rgba(var(--third2-color), 1);
}

.Head-CaForm .select-box .form-select {
  min-height: 40px;
  color: rgba(var(--third-color), 1);
}

.Head-CaForm .select-box::after {
  right: 14px;
  top: 26%;
}

/* header end */
/*# sourceMappingURL=main.css.map */

.img-subscribe {
  border-radius: 0px 40px 40px 0px;
}

.inr-bannerSec {
  position: relative;
}

.inr-bannerSec {
  background: #FFD700;
  min-height: 200px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.inr-bannerSec h3 {
  font-size: 42px;
  font-weight: 500;
}

.bannerSec .row>* {
    padding-right: calc(0.5rem * .5);
    padding-left: calc(0.5rem * .5);
}

.about-txt span {
  font-size: 14px;
  border: 1px solid #7D7D7D;
  padding: 5px 20px;
  border-radius: 50px;
  text-transform: uppercase;
}

.about-txt h3 {
  font-size: 34px;
  text-transform: capitalize;
  margin: 10px 0px 14px;
}

.about-txt p,
.about-para p {
  font-size: 15px;
  color: #686868;
  text-transform: capitalize;
  margin: 10px 0px 14px;
}

/***************************************** Contact Us Page *******************************/
.contact-head {
  text-align: center;
  margin-bottom: 40px;
}

.contact-head h3 {
  color: #1B1A15;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 0px;
}

.contact-head p {
  color: #5D5D5D;
  font-size: 18px;
  font-weight: 400;
}

.contact-card {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border: 1px solid #D1D1D1;
    border-radius: 10px;
    gap: 20px;
    min-height: 100px;
    padding: 20px;
    transition: var(--transition-05s);
    /* padding: 60px 20px; */
    margin-bottom: 10px;
}

.contact-card:hover {
  background: #00809D;
  color: #fff;
}

.contact-card:hover i {
  color: #fff;
}

.contact-card i {
  --ehw-bg: 50px;
  width: var(--ehw-bg);
  height: var(--ehw-bg);
  font-size: 25px;
  background: #00809D;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.contact-name {
  width: 70%;
}

.contact-card .contact-name h4 {
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 0px;
}

.contact-card .contact-name p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
}

.iframe-box {
  width: 100%;
  height: 380px;
  border: 1px solid rgba(var(--second-color), 1);
  padding: 5px;
  border-radius: 20px;
}

.iframe-box iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.contact-form-head {
  text-align: center;
  padding: 20px 0px;
}

.contact-form-head h3 {
  font-size: 54px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form-head p {
  font-size: 24px;
  font-weight: 400;
}

.contact-form {
  /* box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.75); */
  border: 1px solid #D1D1D1;
  padding: 20px;
  border-radius: 20px;
}

.form-contact-box input::placeholder,
.form-contact-box textarea::placeholder {
  font-weight: 400;
}

.form-contact-box button {
  width: 100%;
}


/************************************ FAQ Section Page *****************************************/
.faq-section {
  padding: 80px 0;
}

/* Section Header */
.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
}

.section-header p {
  color: #777;
  margin-bottom: 40px;
}

/* FAQ Wrapper */
.faq-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* FAQ Item */
.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Hide checkbox */
.faq-item input {
  display: none;
}

/* Question */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  background: #fff;
  transition: all ease-in-out 0.3s ease;
}

/* Icon */
.faq-question .icon {
  font-size: 42px;
  transition: transform 0.3s ease;
  color: #00809D;
}

/* Answer (closed state) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* Open State */
.faq-item input:checked+.faq-question .icon {
  transform: rotate(45deg);
}

.faq-item input:checked~.faq-answer {
  max-height: 300px;
  padding: 0 22px 18px;
}

/* Tab */
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
	color: #fff;
	background-color: #0b6b73;
	border-color: #fff;
  border-radius: 20px;
}
.shop-section .nav-tabs{
  padding-bottom: 5px;
}
.shop-section .nav-tabs .nav-item{
  padding:4px 5px;
}
.nav-tabs .nav-link {
	margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
	border: 1px solid #0b6b73;
	border-top-left-radius: var(--bs-nav-tabs-border-radius);
	border-top-right-radius: var(--bs-nav-tabs-border-radius);
	border-radius: 20px;
	margin: 0 3px;
	color: #0b6b73;
}


.shop-section .nav-tabs {
	padding-bottom: 5px;
	text-align: right !important;
	justify-content: end;
}


/* New css add 27.02.2026 ###*/

/* product page css */
product-info .product .product__info-wrapper .product__info-container > * {
  margin: 0;
}
product-info .product .product__title h1 {
  font-size: 24px;
  margin-top: 10px;
}
product-info .product .product__title {
  margin-bottom: 10px;
}
product-info .product .product__info-wrapper span.price-item {
  font-size: 22px;
  color: #00809d;
}
product-info .product .product__info-wrapper fieldset {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}
product-info .product .product__info-wrapper fieldset legend.form__label {
  font-size: 16px;
  margin-bottom: 1px;
}
product-info .product .product__info-wrapper fieldset input[type=radio]+label {
  padding: 8px 20px;
  font-size: 14px;
  margin-top: 3px;
  letter-spacing: 1px;
}
product-info .product .product__info-wrapper fieldset input[type=radio]:checked+label {
  background-color: #00809d;
  border-color: #00809d;
}
/*###  ####*/
/*### Shop page css start*/

/* top right filter */
facet-filters-form.facets-vertical-sort {
  margin-bottom: 15px;
}
facet-filters-form .facet-filters .facet-filters__field .select select {
  font-size: 16px;
  box-shadow: none;
  outline: none;
  border: 1px solid #adadad;
  padding: 4px 12px;
}
facet-filters-form .facet-filters .facet-filters__field h2.facet-filters__label {
  font-size: 16px;
}
facet-filters-form .product-count-vertical {
  margin-left: 10px;
}
facet-filters-form .product-count-vertical h2.product-count__text {
  font-size: 16px;
}
/* filter css */
facet-filters-form .active-facets .active-facets-vertical-filter .facets__heading {
  font-size: 20px;
}
facet-filters-form .active-facets .active-facets-vertical-filter facet-remove .active-facets__button-remove {
  font-size: 16px;
  background-color: red;
  color: #fff;
  padding: 4px 8px;
  display: inline-block;
  border-radius: 5px;
}
facet-filters-form .active-facets .active-facets-vertical-filter facet-remove .active-facets__button-remove span {
  font-size: 14px;
}
facet-filters-form .active-facets facet-remove a.active-facets__button {
  margin-bottom: 10px;
  margin-right: 10px;
  font-size: 15px;
}
facet-filters-form .active-facets facet-remove a.active-facets__button span.active-facets__button-inner {
  font-size: 13px;
  letter-spacing: 0px;
  padding: 4px 10px;
  box-shadow: 0px 1px 4px 1px rgb(0 0 0 / 20%);
}
/*  */
.facets-container{
  padding-top: 0px;
}
facet-filters-form .facets__disclosure-vertical summary.facets__summary {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 18px;
}
facet-filters-form .facets__disclosure-vertical fieldset ul.facets-layout label.facets__label {
  font-size: 16px;
  padding: 8px 0px;
  text-decoration: none;
}
facet-filters-form .facets__disclosure-vertical fieldset ul.facets-layout label.facets__label svg {
  margin-top: 4px;
}
facet-filters-form .facets__disclosure-vertical fieldset ul.facets-layout label.facets__label .svg-wrapper {
  top: 13px;
  left: 0;
}
facet-filters-form .facets__disclosure-vertical show-more-button .button-show-more {
  padding-bottom: 0;
  border-bottom: 0;
  text-decoration: none;
  font-size: 16px;
  margin-top: 10px;
}
facet-filters-form .facets__disclosure-vertical .facets__header-vertical {
  font-size: 16px;
  padding: 0px;
  margin-bottom: 10px;
}
/* price */
facet-filters-form .facets__disclosure-vertical price-range.facets__price .field .field__input {
  padding: 5px 5px;
  height: auto;
  font-size:14px;
}
facet-filters-form .facets__disclosure-vertical price-range.facets__price .field label.field__label {
  font-size: 14px;
  top: 8px;
  left: 16px;
}
facet-filters-form .facets__disclosure-vertical price-range.facets__price .field .field__input:focus~.field__label {
  left: 16px;
  font-size: 10px;
  top: 0;
}
facet-filters-form .facets__disclosure-vertical price-range.facets__price .field .field__input:not(:placeholder-shown)~.field__label {
    opacity: 0;
}
span.facets__summary-label {
  text-decoration: none !important;
}
span.facet-checkbox__text span {
  text-decoration: none !important;
}

/* filter mobile */
@media(max-width:1399px){
  .facets-vertical .facets-wrapper {
    width: 360px;
    padding-right: 15px !important;
  }
  .facets-vertical .facets-wrapper .facets__form-vertical {
    max-width: 100%;
    width: 100%;
  }
}
@media(min-width:750px) and (max-width:991px){
  .facets-vertical .facets-wrapper{
    width: 310px;
  }
}
@media(max-width:749px){
  .facets-vertical .facets-wrapper{
    width: 100%;
  }
  .mobile-facets__wrapper summary.mobile-facets__open-wrapper .mobile-facets__open span.mobile-facets__open-label {
    font-size: 14px;
    margin-left: 2px;
  }
  .product-count h2.product-count__text {
    font-size: 14px;
  }
  .mobile-facets__wrapper .mobile-facets__close {
    width: 30px;
    height: 30px;
  }
  /*  */
  .mobile-facets__wrapper .mobile-facets__header {
    padding: 10px 15px;
  }
  .mobile-facets__wrapper .mobile-facets__header * {
    font-size: 15px;
  }
  .mobile-facets__wrapper .mobile-facets__main {
    padding-top: 15px;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__summary {
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    font-size: 15px;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__summary .icon-arrow {
    width: 20px;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__sort .select__select {
    font-size: 15px;
    height: auto;
    box-shadow: none;
    outline: none;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__footer {
    padding: 10px 15px;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__footer button.button {
    height: auto;
    font-size: 15px;
    min-height: auto;
    padding: 12px 10px;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__footer .mobile-facets__clear-wrapper {
    border: 1px solid #000;
    color: #000;
  }

  /*  */
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu button.mobile-facets__close-button {
    padding: 12px 10px;
    border-bottom: 1px solid #ddd;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .mobile-facets__item {
    position: relative;
    padding: 5px 0px;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .mobile-facets__item label.facets__label {
    padding: 8px 10px;
    position: relative;
    display: flex;
    align-items: center;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .mobile-facets__item label.facets__label .facet-checkbox__text {
    font-size: 14px;
    word-break: break-word;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .mobile-facets__item label.facets__label .icon-checkmark{
    left: 13px;
    top: 14px;
  }

  /* price */
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .mobile-facets__info {
    padding: 10px 10px;
    font-size: 14px;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .facets__price {
    padding: 10px 10px;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .facets__price .field .field__label {
    font-size: 16px;
    top: 10px;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .facets__price .field .field__input {
    padding: 10px;
    height: auto;
    font-size: 16px;
    box-shadow: none;
    outline: none;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .facets__price .field .field__input:not(:placeholder-shown)~.field__label, .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .facets__price .field .field__input:focus~.field__label {
    font-size: 12px;
    left: 10px;
    top: -2px;
  }
  /* remove filter */
  .active-facets.active-facets-mobile{
    padding: 10px 0;
    margin: 0;
  }
  .active-facets.active-facets-mobile facet-remove {
    position: relative;
    padding-right: 5px;
    padding-bottom: 5px;
  }
  .active-facets.active-facets-mobile facet-remove .active-facets__button {
    margin: 0;
    padding: 0;
  }
  .active-facets.active-facets-mobile facet-remove .active-facets__button .active-facets__button-inner {
    font-size: 15px;
    letter-spacing: .5px;
    padding: 4px 12px;
    box-shadow: 0 0 8px 2px #85858538;
  }
  .active-facets.active-facets-mobile facet-remove.active-facets__button-wrapper {
    margin-left: 0;
  }
  .active-facets.active-facets-mobile facet-remove.active-facets__button-wrapper .active-facets__button-remove {
    font-size: 14px;
    padding: 3px 10px;
    border: 1px solid #ff4f4f;
    background-color: #ff4f4f;
    color: #fff;
    border-radius: 30px;
    text-transform: uppercase;
  }
  .active-facets.active-facets-mobile facet-remove.active-facets__button-wrapper .active-facets__button-remove * {
    font-size: 12px;
  }
}
@media(max-width:575px){
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .facets__price .field .field__input{
    min-width: 70px;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__submenu .facets__price .field+.field-currency{
    margin-left: 1rem;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__footer .mobile-facets__clear-wrapper{
    min-width: 50%;
  }
  .mobile-facets__wrapper .mobile-facets__main .mobile-facets__footer button.button{
    min-width: 46%;
  }
}
/*### Shop page css end*/
/* shop product page css start */
.product-card-wrapper .card__content .card__information {
  padding: 10px 10px !important;
}
.product-card-wrapper .card__content .card__information .card__heading a {
  font-size: 15px;
  text-decoration:none;
}
.product-card-wrapper .card__content .card__information .price {
  font-size: 20px;
  margin-top: 5px !important;
  font-weight: 600;
}
@media(max-width:767px){
  .product-card-wrapper .card__content .card__information .card__heading a{
    font-size: 13px;
  }
  .product-card-wrapper .card__content .card__information .price{
    font-size: 16px;
  }
  .shop-header .common-head {
    flex-direction: column;
    gap: 10px;
  }
  .product-text-lwr h5 {
    font-size: 16px;
    width: 100%;
  }
  .card-text-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .shop-section .nav-tabs {
    padding-bottom: 5px;
    text-align: left !important;
    justify-content: center;
    gap: 5px;
  }
  .shop-section .nav-tabs .nav-item {
    padding: 0px;
  }
  .nav-tabs .nav-link {
    margin: 0 1px;
    font-size: 14px;
  }
  .card-small, .card-big {
    border-radius: 15px;
  }
  .product-text-lwr {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .footer-main {
    text-align: left;
    padding: 30px 0 0;
  }
  .headerSec ul.navbar-nav li.nav-item {
    margin-bottom: 15px;
  }
  .predictive-search__item {
    padding: 1rem 0rem;
}
.predictive-search__heading {
    margin: 0 0.5rem;
}
.predictive-search__item {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
}
.predictive-search__image {
    width: 200px !important;
    margin: auto;
}
#predictive-search-option-product-1 a {
  padding: 1rem !important;
}
predictive-search__item.predictive-search__item--link-with-thumbnail.link.link--text .predictive-search__item-heading.h5{
  padding: 0px 10px !important;
  font-size: 15px !important;
}
product-info .product .product__title h1 {
    font-size: 18px;
    line-height: 1.2;
}
.product-form__buttons .product-form__submit {
    min-width: 50% !important;
}
.product-form__buttons {
    gap: 5px;
    flex-wrap: wrap;
}
}
/* shop product page css end */

/* search page css start */
#main-search-filters .facets__form summary.facets__summary {
  font-size: 15px;
  margin-bottom: 15px;
}
#main-search-filters .facets__form .facets__disclosure {
  margin-right: 16px;
}
#main-search-filters .facets__form .facets__disclosure .facets__header {
  padding: 10px 10px;
  font-size: 16px;
}
#main-search-filters .facets__form .facets__disclosure .facets__header .facets__reset {
  font-size: 16px;
  text-decoration: none;
  padding: 2px 8px;
  background-color: #ffd700;
  border-radius: 5px;
}
#main-search-filters .facets__form .facets__disclosure fieldset .facets__list {
  padding: 10px 15px;
}
#main-search-filters .facets__form .facets__disclosure fieldset .facets__list label.facets__label {
  font-size: 16px;
  padding: 8px 0px;
  text-decoration: none;
}
#main-search-filters .facets__form .facets__disclosure fieldset .facets__list label.facets__label svg {
  margin-top: 3px;
}
#main-search-filters .facets__form .facets__disclosure fieldset .facets__list label.facets__label .svg-wrapper {
  top: 13px;
  left: 0;
}
/* price */
#main-search-filters .facets__form price-range.facets__price{
  padding:15px 15px;
}
#main-search-filters .facets__form price-range.facets__price .field .field__input {
  padding: 5px 5px;
  height: auto;
  font-size:14px;
}
#main-search-filters .facets__form price-range.facets__price .field label.field__label {
  font-size: 14px;
  top: 8px;
  left: 16px;
}
#main-search-filters .facets__form price-range.facets__price .field .field__input:focus~.field__label {
  left: 16px;
  font-size: 10px;
  top: 0;
}
#main-search-filters .facets__form price-range.facets__price .field .field__input:not(:placeholder-shown)~.field__label {
    opacity: 0;
}
/*  */
#main-search-filters facet-filters-form .active-facets facet-remove a.active-facets__button{
  margin-top: 10px;
}
#main-search-filters facet-filters-form .active-facets facet-remove a.active-facets__button-remove {
  font-size: 14px;
  background-color: red;
  color: #fff;
  padding: 4px 8px;
  display: inline-block;
  border-radius: 5px;
}
#main-search-filters facet-filters-form .active-facets facet-remove a.active-facets__button-remove span {
  font-size: 14px;
}
#main-search-filters facet-filters-form .active-facets facet-remove.active-facets__button-wrapper {
  margin-top: 0;
  padding-top: 0;
}
/* search page css end */

/* Cart page css start */
/* Cart page css */
cart-items .title-wrapper-with-link a.underlined-link {
  position: relative;
  background-color: #183551;
  padding: 8px 12px;
  color: #fff;
  font-size: 15px;
}
cart-items table.cart-items thead th {
  font-size: 15px;
}
cart-items table.cart-items .cart-item td.cart-item__media .global-media-settings{
  background-color: rgb(255 245 240);
}
cart-items table.cart-items .cart-item td.cart-item__media img {
  max-height: 100px;
  object-fit: contain;
}
cart-items table.cart-items .cart-item td.cart-item__details .cart-item__name {
  position: relative;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 10px;
}
cart-items table.cart-items .cart-item td.cart-item__details .product-option {
  position: relative;
  font-size: 18px;
  color: #183551;
}
cart-items table.cart-items .cart-item td.cart-item__quantity cart-remove-button svg {
  color: #f10000;
}
cart-items table.cart-items .cart-item td.cart-item__totals .cart-item__price-wrapper span {
  font-size: 20px;
  color: #183551;
}
cart-items h1.cart__empty-text + .button {
  color: #fff;
}
cart-items .cart__warnings p {
  font-size: 15px;
}
.template-404.page-width > p {
  font-size: 22px;
}
.collection__view-all .button {
    font-size: 16px;
    color: #fff;
    height: auto;
    min-height: auto;
    padding: 15px 15px;
}
/* Cart page css end */

.template-404.page-width.page-margin.center a.button
Specificity: (0,5,1)
 {
    color: #fff;
}

/* new css add start 12.03.26 */
/* pagination css */
.pagination-wrapper {
  margin-top: 30px;
}
.pagination-wrapper ul.pagination__list li {
  width: auto;
  flex: auto;
}
.pagination-wrapper ul.pagination__list a.pagination__item {
  width: 45px;
  height: 45px;
  text-decoration: none;
  background-color: #e9ecf1;
  font-size: 16px;
}
.pagination-wrapper ul.pagination__list a.pagination__item.pagination__item--current {
  background-color: #ffd700;
  opacity: 1;
}

.pagination-wrapper ul.pagination__list a.pagination__item:after {
  display: none;
}
/* pagination css end*/

.successForm p.msgsuccess {
  color: #00809d;
  font-weight: 600;
}

.product-Stxt-head {
  flex-wrap: wrap;
  gap: 10px;
}

.product-Stxt-head p {
  margin-bottom: 20px;
} 

.shop-header .common-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  
}
.shop-header .common-head .nav-tabs {
  border-bottom: none !important;
}
.shop-header .common-head h3 {
  margin-bottom: 0px;
}
.shop-section .tab-content {
  padding-bottom: 20px;
}

.formSec #ContactFooter input[type="email"] {
  color: #5CC1D8 !important;
  font-size: 15px;
  font-weight: 300;
}

@media (min-width: 1401px) and (max-width: 1599px) {
  .category-card-v2 h5 {
    font-size: 14px;
  }
  .category-card-v2 p {
    font-size: 12px;
  }
  .card-text {
    padding: 16px 4px !important;
  }
  .card-text-header h6, .card-text-header .cat-name {
    padding: 8px 16px !important;
  }
  .product-Stxt-head {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
  }
  .common-add2cart-btn span {
    padding: 6px 14px;
    font-size: 13px;
  }
  .common-add2cart-btn i {
    width: 35px;
    height: 35px;
    font-size: 15px
  }
  .product-Stxt-head h5 {
    font-size: 16px;
  }
  .product-Stxt-head p {
    font-size: 18px;
  }
  .service-strip {
    padding: 0px 0 40px;
  }
}

.prodctBx.common-section {
  padding: 0px 0px 20px;
}
#ContactFooter .input-group .form-control::placeholder {
  color: #5CC1D8 !important;
}
#ContactFooter .input-group button i {
  color: #5CC1D8 !important;
  font-size: 18px;
}
.quantity {
  width: calc(10rem / var(--font-body-scale) + var(--inputs-border-width) * 2) !important;
  min-height: calc((var(--inputs-border-width) * 2) + 3rem) !important;
}
.quantity__button {
  width: calc(2.5rem / var(--font-body-scale));
}

.product-form__buttons {
  max-width: 20rem !important;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.product-form__buttons .product-form__submit {
  font-size: 16px;
  padding: 0rem;
}
.shopify-payment-button__button--unbranded {
  background-color: #FFD700;
  padding: 0em 1em;
  font-size: 16px !important;
}
.button, .shopify-challenge__button, .customer button, button.shopify-payment-button__button--unbranded {
  min-height: calc(3.5rem + var(--buttons-border-width) * 2) !important;
}

@media screen and (min-width: 750px) {
  .cart__ctas {
    justify-content: flex-end !important;
  }
}

.cart__checkout-button {
    max-width: 16rem !important;
    font-size: 20px !important;
}

.shop-section .tab-content {
    padding-bottom: 0px;
}
a.navbar-brand {
    max-width: 15vw;
}
@media (min-width:1400px) and (max-width:1600px){
a.navbar-brand {
   max-width: 12vw;
}
.headerSec ul.navbar-nav li.nav-item a {
    border-radius: 30px;
    padding: 5px 8px;
    font-size: 14px;
}
}

@media (min-width:1400px) and (max-width:1500px){
  .headerSec ul.navbar-nav li.nav-item a {
    padding: 5px 9px;
    color: #000;
    font-size: 14px;
}
}
@media (min-width:1200px) and (max-width:1399px){
  a.navbar-brand {
    max-width: 12vw;
}
}
section.clientSlide {
    padding: 20px 0;
}


span.active-facets__button-inner {
 min-height: auto !important;
}
.rte img{
  max-width:24% !important;
}

@media (min-width:767px) and (max-width:1600px){
.common-add2cart-btn:hover i {
    transform: translateX(-87px) rotate(-45deg);
}
}


@media (max-width:767px){
.bnr2-img {
    min-height: auto;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    max-height: 100%;
    width: 100%;
}
}

.browseByCat.common-section {
    padding: 50px 0px 0px;
}

.bnr-left {
  position: relative;
}
/* .bnr-left .bnr1-img {
  position: absolute;
  top: 0px;
  left: 0px;
  object-fit: cover;
} */

.bnr-left-text {
  position: absolute;
  top: 80px;
  right: 0px;
  width: 40%;
}

.bnr-left-text h5 {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
}
.bnr-left-text h5 > span {
  border-radius: 15px;
  background: #00809D;
  padding: 5px 10px;
  color: #fff;
  font-size: 13px;
}

.bnr-left-text h1 {
  color: #fff;
  font-size: 42px;
  line-height: 50px;
  font-weight: 700;
  width: 70%;
}

.bnr-right {
  position: relative;
  height: 100%;
}

.sale-card {
  position: absolute;
  top: 50px;
  right: 20px;
  /* width: 200px;
  height: 200px; */
  /* background-color: #333;  */
  /* position: relative; */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sale-text {
  text-align: left;
  position: relative;
}

.sale {
  font-size: 18px;
  letter-spacing: 2px;
  display: block;
}

.upto {
  font-size: 12px;
  display: block;
  margin-top: 2px;
}

.discount {
  display: flex;
  align-items: flex-start;
  line-height: 1;
}

.number {
  font-size: 70px;
  font-weight: bold;
}

.percent {
  font-size: 20px;
  margin-top: 10px;
  margin-left: 2px;
}

.off {
  font-size: 14px;
  display: block;
  margin-top: -5px;
}
.ads-card {
  background: #F0F0F0;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  padding: 30px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}
.ads-card img {
  position: absolute;
  right: 0px;
  top: 20px;
  height: 250px;
  object-fit: contain;
}
.ads-text {
  width: 50%;
}
.ads-text span {
  font-size: 14px;
  font-weight: 500;
  color: #676581;
}
.ads-text h3 {
  font-size: 28px;
  font-weight: 700;
  color:#24364C;
  text-transform: capitalize;
}

.ads2-card .common-btn-main span {
  background: #fff;
}
.ads2-card .common-btn-main i {
  background: #fff;
}
.ads2-card .common-btn-main:hover i {
  transform: translateX(-100px) rotate(-45deg);
}

.ads2-card {
  position: relative
  /* height: 240px; */
}
.ads2-1-text {
  width: 45%;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
}

.ads2-text {
  width: 50%;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
}
.ads2-text span {
  font-size: 13px;
  font-weight: 300px;
  color:#000000;
  text-transform: capitalize;
}
.ads2-text h3, .ads2-1-text h3 {
  font-size: 24px;
  font-weight: 500;
  color:#000000;
  text-transform: capitalize;
}
.ads2-text p, .ads2-1-text p {
  font-size: 13px;
  font-weight: 300px;
  color:#000000;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .ads-card {
    padding: 20px;
    min-height: auto;
  }
  .ads-card img {
    position: relative;
    top: 0px;
    height: auto;
    margin: auto;
  }
  .ads-text {
    width: 100%;
  }
  .ads-text h3 {
    font-size: 24px;
  }
  .bnr-left-text {
    position: relative;
    top: 0px;
    right: 0px;
    width: 100%;
    padding: 20px;
    background: rgb(0 128 157);
    border-radius: 10px;
  }
  .bnr-left-text h1 {
    font-size: 28px;
    line-height: 36px;
    width: 70%;
  }
  .bnr-left-text h5 > span {
    background: #f8d100;
  }
  .ads2-text {
    width: 100%;
    top: 10px;
    left: 10px;
  }
  .ads2-text h3, .ads2-1-text h3 {
    font-size: 20px;
  }
  .ads2-1-text {
    width: 60%;
    position: absolute;
    top: 5px;
    right: 10px;
    z-index: 1;
    background: rgba(255,255,255,0.65);
    border-radius: 10px;
    padding: 10px;
  }
  /* .ads2-1-text h3 {
    color: #fff;
  }
  .ads2-1-text p {
    color: #fff;
  } */
}