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

html {
  scroll-behavior: smooth;
}

.wpcf7-not-valid-tip {
  margin: 0 0 10px 0 !important;
}

@font-face {
  font-family: jost-bold;
  src: url(../fonts/Jost-Bold.ttf);
}

@font-face {
  font-family: jost-semibold;
  src: url(../fonts/Jost-SemiBold.ttf);
}

@font-face {
  font-family: jost-medium;
  src: url(../fonts/Jost-Medium.ttf);
}

@font-face {
  font-family: jost;
  src: url(../fonts/Jost-Regular.ttf);
}

@font-face {
  font-family: muli;
  src: url(../fonts/Muli-Regular.ttf);
}

@font-face {
  font-family: muli-italic;
  src: url(../fonts/Muli-Italic.ttf);
}

@font-face {
  font-family: muli-semibold;
  src: url(../fonts/Muli-SemiBold.ttf);
}

@font-face {
  font-family: muli-bold;
  src: url(../fonts/Muli-Bold.ttf);
}

@font-face {
  font-family: gelato;
  src: url(../fonts/Gelato.ttf);
}

@font-face {
  font-family: guthen;
  src: url(../fonts/Guthen-Bloots.ttf);
}

@font-face {
  font-family: herbarium;
  src: url(../fonts/Herbarium.otf);
}

:root {
  --primary-color: #c5213a;
  --secondary-color: #1f6934;
  --tertiary-color: #fff;
  --fourth-color: #000;
  --fifth-color: #8cc540;
  --box-bg-color: #fcd8de;
  --form-bg-color: #f3f3f3;
}

a,
button,
input[type="submit"] {
  transition: all 0.5s;
  text-decoration: none;
  font-family: muli-semibold;
  font-size: 16px;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: jost-medium;
  margin: 0;
}

h2,
h1 {
  font-size: 54px;
}

h3 {
  font-size: 36px;
}

p,
li {
  margin-bottom: 0;
  font-size: 16px;
  color: #686667;
  font-family: muli;
}

input,
select,
textarea {
  font-family: muli;
  font-size: 15px;
  color: var(--fourth-color);
}

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

img {
  height: auto;
}

.custom-margin {
  margin: 60px 0;
}

.padd {
  padding: 60px 0;
}

.margin-sec {
  margin: 0 0 60px 0;
}

.custom-btn {
  padding: 10px 30px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease;
  z-index: 0;
  display: inline-block;
  color: var(--tertiary-color);
  background: var(--secondary-color);
}

.custom-btn:after {
  content: "";
  background: var(--primary-color);
  position: absolute;
  transition: all 0.5s ease-in;
  z-index: -1;
  height: 100%;
  left: -35%;
  top: 0;
  transform: skew(30deg);
  transition-duration: 0.5s;
  transform-origin: top left;
  width: 0;
}

.custom-btn:hover::after {
  width: 135%;
}

.header {
  width: 100%;
  background: var(--tertiary-color);
  padding: 30px 0 20px 0;
}

.nav-bar {
  width: 100%;
}

.nav-flex {
  width: 100%;
  position: relative;
  align-items: flex-end;
}

.logo {
  width: 10%;
  position: absolute;
  top: -16px;
  left: 0;
  z-index: 999;
  background: var(--tertiary-color);
}

.logo img {
  background: var(--tertiary-color);
  padding: 4px 10px;
}

.menu {
  width: 80%;
  text-align: right;
	padding: 10px 0 0 0;
}

.menu ul {
  display: inline-block;
}

.menu ul li {
  display: inline-block;
  margin: 0 30px 0 0;
}

.menu ul li:last-child {
  margin: 0;
}

.menu ul li a {
  color: var(--fourth-color);
}

.menu ul li a:hover {
  color: var(--secondary-color);
}

.menu ul li.active a {
  color: var(--primary-color);
}

.head-icon {
  width: 20%;
  text-align: right;
}

.head-icon ul {
  display: inline-block;
}

.head-icon ul li {
  display: inline-block;
  margin: 0 20px 0 0;
}

.head-icon ul li:last-child {
  margin: 0;
}

.head-icon ul li a {
  color: var(--fourth-color);
  font-size: 20px;
}

.account-icon {
  display: flex;
  align-items: center;
}

.head-icon ul li a span {
  font-size: 16px;
  margin: 0 0 0 5px;
  text-transform: capitalize;
}

.head-icon ul li a:hover {
  color: var(--primary-color);
}

.cart-icon {
  position: relative;
}

.cart-abso {
  position: absolute;
  right: -15px;
  top: -3px;
  font-family: jost-medium;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--tertiary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  line-height: normal;
}

.cart-icon:hover .cart-abso {
  background: var(--secondary-color);
}

.search-bar-box {
  width: 60%;
}

.search-input {
  width: calc(100% - 40px);
  height: 40px;
}

.search-input input {
  width: 100%;
  height: 100%;
  border: 1px solid #ddd;
  outline: none;
  border-right: none;
  padding: 10px;
  border-radius: 10px 0 0 10px;
  outline: none;
  transition: all 0.2s;
}

.search-input input:focus {
  border: 3px solid var(--box-bg-color);
  border-right: none;
}
.search-btn {
  width: 40px;
  height: 40px;
}

.search-btn button {
  width: 100%;
  height: 100%;
  border-radius: 0 10px 10px 0;
  background: var(--primary-color);
  color: var(--tertiary-color);
  border: none;
  outline: none;
  display: grid;
  place-items: center;
  font-size: 15px;
}

.search-btn button:hover {
  background: var(--secondary-color);
}

.mobile-menu {
  display: none;
}

.sticky {
  width: 100%;
  left: 0;
  top: 0;
  position: fixed;
  animation: slidetop 1s linear;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(132, 132, 132, 0.3);
}

@keyframes slidetop {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0%);
  }
}

/* .sticky .logo img {
  box-shadow: 0px 2px 0px rgba(132, 132, 132, 0.3);
} */

.sticky-logo{
	display: none;
}

.sticky .logo{
	width: 16%;
	top: 0 !important;
}

.sticky .logo img{
	width: 100%;
	padding: 0;
	background: transparent;
	
}

.sticky .main-logo {
	display: none;
}

.sticky .sticky-logo{
	display: inline-block;
}

/* header ends */

.banner-top {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--tertiary-color);
}

.banner-top h2 {
  background-image: url(../images/banner-text.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 220px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: herbarium;
  text-align: center;
}

.slider {
  width: 100%;
}

.banner {
  width: 100%;
  position: relative;
  height: 600px;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-cont {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.banner-text {
  width: 100%;
  padding: 0 0 0 60px;
}

.banner-text h5 {
  color: var(--tertiary-color);
  font-size: 22px;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  letter-spacing: 2px;
}

.banner-text h2 {
  color: var(--tertiary-color);
  font-size: 65px;
}

.banner-text p {
  color: var(--tertiary-color);
  font-family: jost;
  font-size: 26px;
  margin: 10px 0 0 0;
}

.banner-text a.custom-btn {
  margin: 20px 0 0 0;
  background: var(--primary-color);
}

.banner-text a.custom-btn:hover::after {
  background: var(--secondary-color);
}

.slider ul.slick-dots {
  bottom: 40px;
}

.slider ul.slick-dots li {
  width: 10px;
  height: 10px;
  color: transparent;
}

.slider ul.slick-dots li.slick-active {
  color: transparent;
}

.slider ul.slick-dots li button {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid var(--tertiary-color);
}

.slider ul.slick-dots li.slick-active button {
  border: none;
  background: var(--tertiary-color);
}

.slider ul.slick-dots li button::before {
  display: none;
}

.about-box {
  width: 100%;
  background-position: top right;
  background-repeat: no-repeat;
}

.about-text {
  width: 95%;
}

.about-text h5 {
  color: var(--primary-color);
  margin: 0 0 10px 0;
  font-size: 33px;
  font-family: muli;
}

.about-text p {
  margin: 15px 0 0 0;
}

.about-text ul li {
  position: relative;
  padding: 0 0 0 30px;
  margin: 15px 0 0 0;
}

.about-text ul li::before {
  content: url(../images/apple-icon.png);
  position: absolute;
  top: 3px;
  left: 0;
}

.about-imagebox {
  width: 400px;
  height: 400px;
  position: relative;
}

.about-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.8s;
}

.about-image-two {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  left: 70%;
  top: 55%;
  border: 8px solid var(--tertiary-color);
}

.about-image-two img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.8s;
}

.about-imagebox:hover img {
  transform: scale(1.1);
}

.about-image-box-mobile {
  display: none;
}

.mobile-text{
	display: none;
}

.product-info-box {
  width: 100%;
}

.product-info {
  width: 100%;
  padding: 30px;
  height: 275px;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f5ffe0;
  background-blend-mode: multiply;
  background-position: center;
  position: relative;
  z-index: 0;
}

.product-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(255, 255, 255, 0.3); */
  backdrop-filter: blur(1px);
  z-index: -1;
}

.product-info h5 {
  font-family: muli;
  color: var(--fourth-color);
  margin: 0 0 10px 0;
  font-size: 16px;
}

.product-info h2 {
  font-family: muli-semibold;
  font-size: 40px;
  color: var(--fourth-color);
  margin: 0 0 10px 0;
}

.info-one h2 {
  color: var(--primary-color);
}

.info-two h2 {
  color: var(--secondary-color);
}

.product-info ul {
  list-style-type: disc;
  list-style-position: inside;
}

.product-info ul li {
  color: var(--fourth-color);
  margin: 10px 0 0 0;
}

.product-info a.custom-btn {
  margin: 20px 0 0 0;
  padding: 10px 12px;
  font-size: 13px;
  background: var(--primary-color);
}

.info-one {
  width: 95%;
  background-color: #fff5f5;
}

.info-two a.custom-btn {
  background: var(--secondary-color);
}

.product-info a.custom-btn:hover {
  color: var(--tertiary-color);
}

.info-two a.custom-btn:hover {
  color: var(--tertiary-color);
}

.product-info a.custom-btn:hover::after {
  background: var(--secondary-color);
}

.info-two a.custom-btn:hover::after {
  background: var(--primary-color);
}

.exotic-box {
  width: 100%;
  padding: 150px 0 120px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  position: relative;
  overflow: hidden;
}

.exotic-box .container {
  position: relative;
  z-index: 1;
}

.shape-one {
  position: absolute;
  top: 50px;
  right: -20px;
  width: 170px;
  height: 170px;
}

.shape-one img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shape-two {
  position: absolute;
  bottom: 80px;
  left: -20px;
  width: 130px;
  height: 130px;
}

.shape-two img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(180deg);
}

.exotic-image {
  position: relative;
  height: 400px;
  z-index: 1;
}

.exotic-one {
  width: 90%;
}

.exotic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exotic-text {
  width: 100%;
}

.exotic-text p {
  margin: 20px 0 0 0;
  font-family: muli-italic;
}

/* .exotic-info{
  display: none;
} */

.exotic-tab {
  width: 100%;
  margin: 20px 0 0 0;
}

.exotic-tab ul {
  display: flex;
  align-items: center;
}

.exotic-tab ul li {
  display: inline-block;
}

.exotic-tab ul li a {
  display: inline-block;
  padding: 5px 15px;
  background: #ddd;
  color: var(--fourth-color);
  border-right: 1px solid var(--fourth-color);
  font-family: jost-semibold;
  text-transform: capitalize;
}

.exotic-tab ul li:last-child a {
  border: none;
}

.exotic-tab ul li a:hover {
  background: var(--secondary-color);
  color: var(--tertiary-color);
  border-color: transparent;
}

.exotic-tab ul li a.active {
  background: var(--primary-color);
  color: var(--tertiary-color);
  border-color: transparent;
}

.exotic-text-two .exotic-tab ul li a:hover {
  background: var(--primary-color);
  color: var(--tertiary-color);
}

.exotic-text-two .exotic-tab ul li a.active {
  background: var(--fifth-color);
  color: var(--tertiary-color);
}

.exotic-label-box {
  width: 100%;
  margin: 10px 0 0 0;
}

.exotic-label {
  width: 48%;
  margin: 10px 0 0 0;
}

.exotic-label input {
  display: none;
}

.exotic-label-inner-box {
  width: 100%;
}

.exotic-label label {
  position: relative;
  border: 1px solid #b7b7b7;
  width: 100%;
  padding: 15px;
  cursor: pointer;
}

.exotic-label label h5 {
  font-family: jost;
  font-size: 15px;
}

.exotic-label label p {
  color: var(--fourth-color);
  font-family: jost;
  font-size: 21px;
  margin: 20px 0 0 0;
}

.exotic-label label span {
  position: absolute;
  z-index: 1;
  padding: 5px 10px;
  font-size: 13px;
  font-family: jost;
  color: var(--tertiary-color);
  background: var(--primary-color);
  position: absolute;
  top: 15px;
  right: 15px;
}

.exotic-label input:checked + label {
  background: var(--box-bg-color);
  border-color: #fdc9d2;
}

.exotic-mini-box {
  width: 100%;
  margin: 20px 0 0 0;
  /* display: none; */
}

.exotic-mini-box h5 {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 5px;
  background: var(--primary-color);
  color: var(--tertiary-color);
  font-size: 18px;
}

.exotic-mini-box-two h5 {
  background: var(--fifth-color);
}

.delivery-options {
  width: 100%;
}

.delivery-options h3 {
  font-size: 28px;
  margin: 20px 0 0 0;
  color: var(--secondary-color);
}

.delivery-btn-flex {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0 0;
  justify-content: space-between;
}

.delivery-btn-one,
.delivery-btn-two {
  width: 48%;
}

.delivery-btn {
  border: 1px solid #b7b7b7;
  width: 100%;
  padding: 10px 20px;
  width: 100%;
  text-transform: capitalize;
  background: #ececec;
}

.delivery-btn.selected {
  background: rgba(140, 197, 64, 0.3);
  border-color: rgba(140, 197, 64, 0.3);
}

.delivery-btn-two select {
  padding: 10px;
  border: 1px solid var(--fourth-color);
  transition: all 0.3s ease;
  margin: 10px 0 0 0;
  width: 100%;
  background: var(--tertiary-color);
  outline: none;
}

.delivery-btn-two select:focus {
  border-color: var(--primary-color);
}

.exotic-delivery-info {
  color: var(--fourth-color);
}

.exotic-delivery-info i {
  margin: 0 10px 0 0;
  color: var(--primary-color);
}

.cart-box {
  width: 100%;
  display: none;
}

.cart-quantity {
  width: 120px;
  border: 1px solid #999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0 0 0;
}

.cart-quantity .plus {
  width: 40px;
  height: 40px;
  font-size: 15px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: jost-medium;
}

.cart-quantity .number {
  text-align: center;
  width: 40px;
  height: 40px;
  font-size: 15px;
  border: 1px solid #999;
  border-top: none;
  border-bottom: none;
  outline: none;
  font-family: jost-medium;
}

.cart-quantity .minus {
  width: 40px;
  height: 40px;
  font-size: 15px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: jost-medium;
}

.cart-quantity .minus.disabled {
  cursor: not-allowed;
  background-color: #e0e0e0;
  color: #a0a0a0;
  pointer-events: none;
  opacity: 0.6;
}

.cart-quantity .plus:hover,
.cart-quantity .minus:hover {
  background: var(--primary-color);
  color: var(--tertiary-color);
}

.exotic-cart {
  width: 100%;
  margin: 20px 0 0 0;
  text-align: center;
}

.exotic-cart a.custom-btn {
  width: 100%;
  font-family: muli-bold;
  font-size: 18px;
}

.exotic-box-two {
  margin: 60px 0 0 0;
}

.exotic-box-two .col-lg-6 {
  padding: 0;
}

.exotic-two {
  width: 90%;
  margin: 0 0 0 auto;
}

.exotic-cart-two {
  width: 100%;
  margin: 20px 0 0 0;
  text-align: center;
}

.exotic-cart-two a.custom-btn {
  width: 100%;
  font-family: muli-bold;
  font-size: 18px;
}

.alert-box {
  width: 100%;
  display: none;
}

.alert-box p {
  font-family: jost-medium;
  color: red;
}

.exotic-slider {
  width: 100%;
}

.main-slider {
  width: 100%;
  border: 3px solid var(--primary-color);
  padding: 10px;
  overflow: hidden;
  cursor: pointer;
}

.main-slider img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.zoom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-repeat: no-repeat;
  background-size: 200%;
  display: none;
  z-index: 2;
}

#thumbnail-slider {
  margin: 10px 0 0 0;
}

#thumbnail-slider-list {
  justify-content: center;
  align-items: center;
}

#thumbnail-slider .splide__slide {
  opacity: 0.6;
  transition: opacity 0.3s, padding 0.3s, border 0.3s;
  cursor: pointer;
}

#thumbnail-slider .splide__slide {
  border: 2px solid #ddd;
  padding: 10px;
}

#thumbnail-slider .splide__slide:hover {
  border-color: var(--secondary-color);
}

#thumbnail-slider .splide__slide.is-active {
  opacity: 1;
  padding: 10px;
  border: 2px solid var(--fifth-color);
}

#thumbnail-slider .splide__slide img {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
}

.choose-box {
  width: 100%;
  margin-bottom: -40px;
}

.choose-info {
  width: 60%;
  margin: 15px 0 0 0;
  font-family: muli-italic;
}

.choose-text {
  width: 95%;
}

.choose-flex {
  width: 100%;
  margin: 40px 0 0 0;
}

.choose-icon img {
  width: 35px;
  flex-shrink: 0;
  transition: all 0.5s;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.choose-icon h4 {
  font-size: 21px;
  font-family: jost-semibold;
  color: var(--secondary-color);
  width: calc(100% - 60px);
  transition: all 0.5s;
}

.choose-flex:hover .choose-icon img {
  transform: rotateY(180deg);
  filter: invert(1) brightness(0);
}

.choose-flex:hover .choose-icon h4 {
  color: var(--primary-color);
}

.choose-icontext {
  width: 100%;
  margin: 10px 0 0 0;
}

.choose-text-two {
  width: 95%;
  text-align: right;
}

.choose-image {
  width: 100%;
  height: 480px;
  margin: 20px 0 0 0;
}

.choose-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-box {
  width: 100%;
  padding: 120px 0;
}

.gallery-head-row {
  align-items: center;
}

.gallery-head p {
  margin: 15px 0 0 0;
  width: 80%;
}

.gallery-btn {
  text-align: right;
}

.gallery-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0 0 0;
}

.gallery {
  width: 33.33%;
  height: 300px;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s;
}

.gallery-abso {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 3px;
  left: 3px;
  bottom: 3px;
  right: 3px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.2);
  transition: all ease 0.5s;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.gallery-abso h4 {
  font-size: 34px;
  font-family: muli-bold;
  color: var(--primary-color);
}

.gallery-abso p {
  font-family: muli-semibold;
  color: var(--fourth-color);
  margin: 10px 0 0 0;
}

.gallery-abso a {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 30px;
  background: var(--tertiary-color);
  color: var(--secondary-color);
}

.gallery-abso a:hover {
  color: var(--tertiary-color);
  background: var(--primary-color);
}

.gallery:hover img {
  transform: scale(1.2);
}

.gallery:hover .gallery-abso {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  left: 15px;
  top: 15px;
  right: 15px;
  bottom: 15px;
}

.view-more-btn{
	width: 100%;
	text-align: center;
	margin: 30px 0 0 0;
}

.fresh-box {
  width: 100%;
}

.fresh-text {
  width: 95%;
}

.fresh-text h3 span {
  color: var(--primary-color);
}

.fresh-text p {
  margin: 15px 0 0 0;
}

.fresh-text ul li {
  position: relative;
  padding: 0 0 0 30px;
  margin: 15px 0 0 0;
}

.fresh-text ul li::before {
  content: "➤";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--secondary-color);
  left: 0;
}

.fresh-image {
  width: 300px;
  height: 300px;
  margin: 0 0 0 auto;
}

.fresh-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fresh-image-mobile {
  display: none;
}

.testimonial-head {
  text-align: center;
}

.testimonial-box h5 {
  color: var(--secondary-color);
  font-size: 20px;
  margin: 0 0 10px 0;
  text-align: center;
}

.testimonial-slider {
  width: 100%;
}

.testimonial-card {
  padding: 0 15px;
}

.testimonial {
  width: 100%;
  padding: 40px 30px 40px 30px;
  background: #f3f3f3;
  margin: 30px 0 0 0;
}

.testimonial-flex {
  width: 100%;
}

.testimonial-iconbox {
  width: 150px;
}

.testimonial-icon {
  width: 75px;
  height: 75px;
}

.testimonial-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.testimonial-icontext {
  width: 100%;
  margin: 15px 0 0 0;
}

.testimonial-icontext h4 {
  color: var(--primary-color);
  font-size: 20px;
  font-family: muli-semibold;
}

.testimonial-icontext p {
  margin: 10px 0 0 0;
}

.testimonial-text {
  width: calc(100% - 180px);
  color: #4c4d4d;
}

.testimonial-text-flex {
  width: 100%;
  margin: 20px 0 0 0;
}

.client-icon {
  width: 45px;
  height: 45px;
}

.client-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-icontext {
  width: calc(100% - 60px);
}

.client-icontext p {
  color: var(--fourth-color);
  text-decoration: underline;
}

.testimonial-btn {
  width: 100%;
  margin: 40px 0 0 0;
  display: none;
}

.footer {
  width: 100%;
  background-image: url(../images/footer-bg.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  padding: 80px 0 60px 0;
}

/* .footer .row {
  align-items: center;
}
 */
.footer-image {
  width: 100%;
	height: 100%;
	display: flex;
	justify-content:center;
	align-items: center;
}

.footer-image img {
  width: 100%;
}

.footer-image p {
  width: 100%;
  color: var(--tertiary-color);
  margin: 20px 0 0 0;
  font-size: 15px;
  line-height: 1.8;
  display: none;
}

/* .footer-icon {
  width: 100%;
  margin: 30px 0 0 0;
}

.footer-icon ul {
  display: inline-block;
}

.footer-icon ul li {
  display: inline-block;
  margin: 0 5px 0 0;
}

.footer-icon ul li a {
  padding: 0;
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  background: var(--secondary-color);
  color: var(--tertiary-color);
  font-size: 19px;
}

.footer-icon ul li a:hover {
  background: var(--primary-color);
} */

.footer-link {
  width: 100%;
}

.footer-link h3 {
  font-size: 22px;
  color: var(--tertiary-color);
  margin: 0 0 20px 0;
  padding: 0 0 10px 0;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.footer-link h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background: var(--tertiary-color);
}

.footer-link ul li {
  margin: 0 0 10px 0;
}

.footer-link ul li:last-child {
  margin: 0;
}

.footer-link ul li a {
  position: relative;
  display: inline-block;
  text-transform: capitalize;
  font-family: muli;
  color: var(--tertiary-color);
  font-size: 15px;
}

.footer-link ul li a:hover {
  color: var(--fourth-color);
}

.policy-menu {
  display: none;
}

.footer-second {
  padding: 0 0 0 15%;
}

.footer-contact h3 {
  font-size: 22px;
  color: var(--tertiary-color);
  margin: 0 0 20px 0;
  padding: 0 0 10px 0;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.footer-contact h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 60%;
  height: 3px;
  background: var(--tertiary-color);
}

.foot-iconbox {
  width: 100%;
  margin: 0 0 15px 0;
}

.foot-iconbox:last-child {
  margin: 0;
}

.foot-icon {
  width: 30px;
  font-size: 25px;
  color: var(--tertiary-color);
}

.foot-icontext {
  width: calc(100% - 45px);
}

.foot-icontext a {
  color: var(--tertiary-color);
  font-family: muli;
  font-size: 15px;
  text-transform: lowercase;
}

.foot-icontext a:hover {
  color: var(--fourth-color);
}

.foot-icontext p {
  color: var(--tertiary-color);
  cursor: pointer;
  font-size: 15px;
}

.footer_copyright {
  width: 100%;
  text-align: center;
  background: #537e33;
  border-top: 2px solid #a4bb93;
}

.footer_copyright p {
  margin: 0;
  color: var(--tertiary-color);
  font-family: muli;
  padding: 20px 0;
}

.footer_copyright p a {
  text-transform: lowercase;
  color: var(--tertiary-color);
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.footer_copyright p a:hover {
  color: var(--fourth-color);
}

.scroll_top {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--tertiary-color);
  font-size: 17px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: fixed;
  right: 20px;
  bottom: 60px;
  z-index: 9;
  transition: all 0.4s;
  cursor: pointer;
}

.scroll_top:hover {
  background: var(--fourth-color);
}

/* index css ends */

.inner-banner {
  width: 100%;
  height: 400px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.about-banner-cont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: var(--tertiary-color);
  display: flex;
  align-items: flex-end;
	padding: 0 0 40px 0;
}

.about-banner-cont h1,
.about-banner-cont h2 {
  color: var(--tertiary-color);
  font-size: 65px;
}

.about-banner-cont .breadcrumb {
  display: inline-block;
	margin: 0;
}

.about-banner-cont .breadcrumb-item {
  display: inline-block;
  font-size: 16px;
  font-family: jost-medium;
}

.about-banner-cont .breadcrumb-item i {
  color: var(--primary-color);
  margin: 0 10px;
  font-size: 14px;
}

.about-banner-cont .breadcrumb-item a {
  display: inline-block;
  font-size: 15px;
  font-family: jost-medium;
}

.about-banner-cont .breadcrumb-item a:hover {
  color: var(--primary-color) !important;
}

.about-banner-cont .breadcrumb-item + .breadcrumb-item::before {
  display: none;
}

.about-banner-cont .breadcrumb-item + .breadcrumb-item {
  padding: 0;
}

.about-banner-cont .breadcrumb-item.active {
  color: var(--tertiary-color);
}

/* inner banner css ends */
.about-banner-cont nav.woocommerce-breadcrumb a {
  display: inline-block;
  font-size: 15px;
  font-family: jost-medium;
  color: var(--tertiary-color);
}

nav.woocommerce-breadcrumb a {
  display: inline-block;
  font-size: 15px;
  font-family: jost-medium;
  color: var(--fourth-color);
}

nav.woocommerce-breadcrumb a:hover {
  color: var(--primary-color);
  font-family: jost-semibold;
}

.about-banner-cont nav.woocommerce-breadcrumb a:hover {
  color: var(--fourth-color);
}

/* shop-detail breadcrumb ends */

.about-inner-box .row {
  /* align-items: center; */
}

.about-inner-image-box {
  width: 100%;
}

.about-inner-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: unset;
  margin-top: 60px;
  margin-left: auto;
}

.about-inner-image img {
  border-radius: 0;
}

.about-inner-image:hover img {
  transform: none;
}

.about-shape-box {
  position: absolute;
  left: -130px;
  top: -90px;
  z-index: -1;
  width: 341px;
  height: 307px;
  background-repeat: no-repeat;
  animation: rotateme 15s infinite linear;
}

@keyframes rotateme {
  0% {
    transform: rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
    opacity: 1;
  }
}

.about-shape-two {
  position: absolute;
  left: -60px;
  top: -100px;
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  animation: icon-bounce 0.8s ease-out infinite;
}

.about-shape-two img {
  width: 100%;
  height: auto;
  transform: rotate(30deg);
}

@keyframes icon-bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

.story-box {
  width: 100%;
  display: none;
}

.story-image {
  width: 95%;
  height: 480px;
  background: #f9f9f9;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-text {
  width: 100%;
}

.story-text h5 {
  color: var(--secondary-color);
  font-size: 20px;
  margin: 0 0 10px 0;
}

.story-text h3 {
  color: var(--primary-color);
}

.story-text p {
  margin: 15px 0 0 0;
}

.team-box {
  width: 100%;
  display: none;
}

/* .team-text {
  width: 95%;
}

.team-text p {
  color: var(--tertiary-color);
  margin: 15px 0 0 0;
} */

.about-team-box {
  width: 100%;
  text-align: center;
}

.about-team-box h5 {
  color: var(--secondary-color);
  font-size: 20px;
  margin: 0 0 10px 0;
}

.about-team-box h3 {
  color: var(--primary-color);
}

.team-imagebox {
  width: 100%;
  justify-content: space-between;
}

.team-card {
  width: 24%;
  margin: 40px 0 0 0;
}

.team {
  width: 100%;
}

.team-image {
  width: 280px;
  height: 280px;
  padding: 10px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.team-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px dashed #ddd;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.team-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  transition: all 0.5s;
}

.team:hover .team-image::before {
  border-color: var(--primary-color);
  animation: team-rotate 10s infinite linear;
}

@keyframes team-rotate {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.team-image-text {
  width: 100%;
  position: relative;
  text-align: center;
  margin: 20px 0 0 0;
}

.team-image-text h4 {
  color: #222;
  font-size: 24px;
  margin: 0 0 10px 0;
  transition: all 0.3s ease;
}

.team-image-text p {
  color: #666;
  font-size: 15px;
  transition: all 0.3s ease;
}

.team:hover .team-image-text h4 {
  color: var(--secondary-color);
}

.team-abso {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transform: rotateX(180deg);
  transition: all 0.3s ease;
	display: flex;
}

.team-abso ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.team-abso ul li {
  display: inline-block;
}

.team-abso ul li a {
  display: inline-block;
  color: var(--fourth-color);
}

.team-abso ul li a:hover {
  color: var(--primary-color);
}

.team:hover .team-image-text p {
  opacity: 0;
}

.team:hover .team-image-text h4 {
  opacity: 0;
}

.team:hover .team-abso {
  opacity: 1;
  transform: rotateX(0);
}

.amar-singh-card:hover .team-image-text h4 {
  opacity: 1;
}
	
}

.about-choose-box {
  width: 100%;
  background: #f4f2f2;
  display: none;
}

.about-choose-box h5 {
  color: var(--secondary-color);
  font-size: 20px;
  margin: 0 0 10px 0;
}

.about-choose-box h3 span {
  color: var(--primary-color);
}

.about-choose-box .row {
  flex-wrap: wrap;
}

.about-choose {
  width: 23%;
  margin: 40px 0 0 0;
  border-radius: 10px;
  background: var(--tertiary-color);
  padding: 30px;
  transition: all 0.5s;
}

.about-choose-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  transition: all 0.5s;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.about-choose-icon img {
  width: 60%;
  transition: all 0.5s;
  filter: invert(1);
}

.about-choose-text {
  width: 100%;
  margin: 20px 0 0 0;
}

.about-choose-text h4 {
  font-size: 25px;
  transition: all 0.5s;
  color: var(--secondary-color);
}

.about-choose-text p {
  margin: 10px 0 0 0;
  transition: all 0.5s;
}

.about-choose:hover {
  background: var(--box-bg-color);
}

.about-choose:hover .about-choose-icon {
  transform: rotateY(180deg);
  background: var(--secondary-color);
}

.about-choose:hover .about-choose-text h4 {
  color: var(--primary-color);
}

.faq-box {
  width: 100%;
  display: none;
}

.faq-box h5 {
  color: var(--secondary-color);
  font-size: 20px;
  margin: 0 0 10px 0;
}

.faq-one {
  width: 95%;
  margin: 40px 0 0 0;
}

.faq {
  margin: 0 0 20px 0;
  border-radius: 8px;
  border: 1px solid var(--secondary-color);
}

.faq:last-child {
  margin: 0;
}

.question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-radius: 8px;
  cursor: pointer;
}

.toggle-icon {
  width: 20px;
  font-size: 18px;
  color: var(--secondary-color);
}

.question h3 {
  font-size: 18px;
  transition: all 0.3s;
  width: calc(100%-30px);
}

.question.active {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px 8px 0 0;
}

.question.active h3 {
  color: var(--secondary-color);
}

.question.active .toggle-icon {
  color: var(--primary-color);
}

.answer {
  width: 100%;
  border-radius: 0 0 8px 8px;
  padding: 20px;
  display: none;
}

.faq-two {
  width: 100%;
  margin: 40px 0 0 0;
}

/* about css ends */

.testimonial-row {
  justify-content: center !important;
  column-gap: 20px;
}

.testimonial-row .testimonial-card {
  padding: 0;
  width: 47%;
  background: #f3f3f3;
  margin: 30px 0 0 0;
}

.testimonial-row .testimonial {
  margin: 0;
  min-height: unset;
  background: transparent;
}

/* testimonial css ends */

.inner-gallery h5 {
  color: var(--secondary-color);
  font-size: 20px;
  margin: 0 0 10px 0;
}

.gallery-info {
  width: 60%;
  margin: 15px 0 0 0;
  text-align: center;
}

.inner-gallery-row {
  margin: 40px 0 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* gallery css starts */

.contact-box {
  width: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 120px;
}

.contact-image {
  width: 90%;
}

.contact-image h5 {
  color: var(--secondary-color);
  color: var(--secondary-color);
  font-size: 20px;
  margin: 0 0 10px 0;
}

.contact-detail {
  flex-wrap: wrap;
}

.contact-flex {
  width: 100%;
  padding: 20px;
  flex-wrap: wrap;
  background: var(--tertiary-color);
  border-radius: 20px;
  margin: 40px 0 0 0;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  transition: all 0.8s;
  font-size: 30px;
  border-radius: 10px;
}

.contact-icontext {
  width: calc(100% - 90px);
}

.contact-icontext h4 {
  font-size: 25px;
  color: var(--secondary-color);
}

.contact-flex:hover .contact-icon {
  transform: rotateY(180deg);
  background: var(--tertiary-color);
  color: var(--secondary-color) !important;
}

.contact-icontext p {
  margin: 5px 0 0 0;
}

.contact-icontext a {
  color: #686667;
  font-family: muli;
  font-size: 16px;
  margin: 5px 0 0 0;
  display: inline-block;
  text-transform: lowercase;
}

.contact-flex:hover .contact-icontext h4 {
  color: var(--fourth-color);
}

.contact-flex:hover .contact-icontext a {
  color: var(--tertiary-color);
}

.contact-flex:hover .contact-icontext a:hover {
  color: var(--box-bg-color);
  font-family: muli-semibold;
}

.contact-flex:hover .contact-icontext p {
  color: var(--tertiary-color);
}

.cont-info {
  margin: 15px 0 0 0;
}

.contact-text h5 {
  color: var(--secondary-color);
  color: var(--secondary-color);
  font-size: 20px;
  margin: 0 0 10px 0;
}

.contact-form {
  background: var(--tertiary-color);
  border-radius: 10px;
  border-top: 13px solid var(--secondary-color);
  padding: 30px;
  margin: 30px 0 0 0;
}

.contact-form p {
  margin: 0;
}

.contact-form br {
  display: none;
}

.form-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.form-input {
  width: 48%;
}

.form-input label {
  font-size: 15px;
  font-family: jost-semibold;
  display: block;
  margin: 0 0 10px 0;
  color: var(--secondary-color);
}

.form-input input {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #e6e6e6;
  outline: none;
  background-color: #f5f5f5;
  border-radius: 5px;
  transition: all 0.5s;
  margin: 0 0 20px 0;
}

.form-input input:focus {
  border-color: var(--primary-color);
}

.form-service {
  width: 100%;
}

.form-service label {
  font-size: 15px;
  font-family: jost-semibold;
  display: block;
  margin: 0 0 10px 0;
  color: var(--secondary-color);
}

.form-service textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #e6e6e6;
  outline: none;
  background-color: #f5f5f5;
  border-radius: 5px;
  transition: all 0.5s;
  margin: 0 0 20px 0;
}

.form-service textarea:focus {
  border-color: var(--primary-color);
}

.form-checkbox {
  width: 100%;
  display: flex;
  align-items: baseline;
  margin: 0 0 20px 0;
}

.form-checkbox .wpcf7-list-item {
  margin: 0;
}

.form-checkbox input {
  margin: 0 10px 0 0;
  accent-color: var(--secondary-color);
}

.form-checkbox label {
  font-family: muli;
  color: #686667;
  font-size: 15px;
  margin: 0;
}

.contact-submit {
  display: inline-block;
  padding: 10px 30px;
  background: var(--primary-color);
  color: var(--tertiary-color);
  font-size: 18px;
  outline: none;
  border: none;
  transition: all 0.5s;
  border-radius: 5px;
}

.contact-submit:hover {
  background: var(--secondary-color);
}

.contact-map {
  width: 100%;
  height: 450px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
}

.contact-faq-box {
  width: 100%;
  display: block;
}

/* contact css ends */

.shop-box {
  width: 100%;
}

.shop-filter-box {
  width: 100%;
}

.shop-filter-box ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.shop-filter-box ul li {
  display: inline-block;
}

.shop-filter-box ul li a {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 5px;
  background: var(--primary-color);
  color: var(--tertiary-color);
  font-family: jost-medium;
}

.shop-filter-box ul li a:hover {
  background: var(--fifth-color);
  color: var(--tertiary-color);
}

.shop-filter-box ul li a.active {
  background: var(--secondary-color);
  color: var(--tertiary-color);
}

.shop-flex {
  width: 90%;
  margin: 0 auto;
}

.shop-head {
  display: none;
}

.shop-left {
  width: 65%;
}

.shop-head-text {
  width: 100%;
}

.shop-head-text p {
  font-size: 18px;
  color: var(--secondary-color);
  font-family: jost-medium;
}

.shop-head-select {
  text-align: right;
  cursor: pointer;
  width: 100%;
}

.shop-head-select select {
  font-family: jost-medium;
  color: var(--fourth-color);
  padding: 10px;
  border: 1px solid var(--fourth-color);
  background: var(--tertiary-color);
  outline: none;
  height: 45px;
}

.shop-listing-box {
  width: 100%;
}

.shop-listing {
  width: 100%;
  margin: 30px 0 0 0;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.shop-listing:last-child {
  border: none;
  padding: 0;
}

.shop-image {
  width: 95%;
  position: relative;
  height: 300px;
  background: #f9f9f9;
}

.shop-image a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.shop-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sale-tag {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 10px;
  background: #2786b6;
  color: var(--tertiary-color);
  font-family: jost;
  font-size: 14px;
  text-transform: uppercase;
  display: none;
}

.shop-text {
  width: 95%;
  margin: 0 0 0 auto;
}

.shop-text h4 a {
  color: var(--fourth-color);
  font-size: 25px;
  font-family: jost-medium;
  text-transform: capitalize;
}

.shop-text h4 a:hover {
  color: var(--primary-color);
}

.shop-text h3 {
  color: #adadad;
  margin: 10px 0 0 0;
  font-size: 20px;
}

.shop-text h3 del {
  font-size: 18px;
  color: #c5bfbf;
  margin: 0 5px 0 0;
}

.shop-text h3 ins {
  text-decoration: none;
}

.shop-text p {
  margin: 15px 0 0 0;
}

.shop-text p strong,
.shop-text p b {
  color: var(--primary-color);
}

.shop-text-filter {
  width: 100%;
  margin: 15px 0 0 0;
}

.shop-text-filter ul {
  display: inline-block;
}

.shop-text-filter ul li {
  display: inline-block;
  margin: 0 10px 0 0;
}

.shop-text-filter ul li:last-child {
  margin: 0;
}

.shop-text-filter ul li a {
  display: inline-block;
  font-size: 16px;
}

.shop-text-filter ul li a:hover {
  transform: scale(1.1);
}

.shop-text-filter ul li a.red {
  color: red;
}

.shop-text-filter ul li a.green {
  color: green;
}

.shop-text-filter ul li a.yellow {
  color: yellow;
}

.shop-btn {
  width: 100%;
  margin: 30px 0 0 0;
}

.shop-icon {
  width: 100%;
}

.shop-icon ul {
  display: inline-block;
  margin: 15px 0 0 0;
}

.shop-icon ul li {
  display: inline-block;
  margin: 0 15px 0 0;
}

.shop-icon ul li:last-child {
  margin: 0;
}

.shop-icon ul li a {
  width: 50px;
  height: 50px;
  background: var(--tertiary-color);
  box-shadow: 0 3px 20px #0000001a;
  display: grid;
  place-items: center;
  font-size: 15px;
  color: var(--fourth-color);
}

.shop-icon ul li a:hover {
  color: var(--tertiary-color);
  background: var(--fifth-color);
  box-shadow: none;
}

.shop-filter-listing {
  width: 100%;
  padding: 20px;
  background: #fdf8f8;
  position: sticky;
  top: 150px;
  display: none;
}

.shop-filter-listing h4 {
  display: inline-block;
  padding: 10px 70px 10px 15px;
  position: relative;
  font-size: 23px;
}

.shop-filter-listing h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-color);
}

.shop-filter-listing h4::after {
  content: "";
  width: 50px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: #adadad;
  position: absolute;
}

.shop-filter-box {
  width: 100%;
}

.shop-filter-box a {
  color: var(--fourth-color);
}

.shop-filter-box a:hover {
  color: var(--secondary-color);
}

.filter-checkbox {
  width: 100%;
  margin: 20px 0 0 0;
}

.filter-checkbox input {
  display: none;
}

.filter-checkbox label {
  font-size: 16px;
  font-family: jost-medium;
  position: relative;
  padding: 0 0 0 30px;
  cursor: pointer;
}

.radio-check {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--fourth-color);
}

.radio-check::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
}

.filter-checkbox input:checked + .radio-check.red {
  border-color: red;
}

.filter-checkbox input:checked + .radio-check.red::before {
  background: red;
}

.filter-checkbox input:checked + .radio-check.green {
  border-color: green;
}

.filter-checkbox input:checked + .radio-check.green::before {
  background: green;
}

.filter-checkbox input:checked + .radio-check.yellow {
  border-color: yellow;
}

.filter-checkbox input:checked + .radio-check.yellow::before {
  background: rgb(255, 234, 0);
}

.filter-checkbox input:checked + .radio-check.brown {
  border-color: brown;
}

.filter-checkbox input:checked + .radio-check.brown::before {
  background: brown;
}

.filter-checkbox input:checked + .radio-check.black {
  border-color: black;
}

.filter-checkbox input:checked + .radio-check.black::before {
  background: black;
}

.filter-checkbox input:checked + .radio-check.all {
  border-color: #2786b6;
}

.filter-checkbox input:checked + .radio-check.all::before {
  background: #2786b6;
}

/* shop-newsletter css */

.newsletter-box {
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-box .modal-content {
  position: relative;
  background-blend-mode: color;
}

.close-newsletter {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  background: var(--tertiary-color);
  color: var(--primary-color);
  display: grid;
  place-items: center;
  border: none;
  outline: none;
  font-size: 15px;
  z-index: 9;
}

.close-newsletter:hover {
  background: var(--fifth-color);
  color: var(--tertiary-color);
}

.newsletter-box .modal-body {
  padding: 0;
}

.newsletter-text {
  width: 65%;
  padding: 0 40px;
}

.newsletter-text h4 {
  font-size: 40px;
}

.newsletter-text p {
  margin: 15px 0 0 0;
}

.news-info {
  font-family: jost-medium;
  color: var(--fourth-color);
  margin: 10px 0 0 0;
}

.newsletter-image {
  width: 35%;
  height: 100%;
}

.newsletter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsletter-form {
  width: 100%;
  margin: 30px 0 0 0;
}

.news-flex {
  width: 100%;
}

.news-input {
  width: 60%;
  padding: 10px;
  border: 1px solid var(--fourth-color);
  outline: none;
}

.news-submit {
  width: 35%;
  padding: 10px 30px;
  outline: none;
  border: none;
  background: var(--fourth-color);
  color: var(--tertiary-color);
  text-transform: capitalize !important;
}

.news-submit:hover {
  background: var(--primary-color);
}

/* shop-newsletter css ends */

.home-popup-text {
  width: 100%;
  padding: 50px 70px;
}

.home-popup-image {
  width: 40%;
  height: 300px;
  border-radius: 0 0.5rem 0.5rem 0;
	display: none;
}

.home-popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0.5rem 0.5rem 0;
}

.home-popup-text h3 {
  color: var(--primary-color);
  font-family: guthen;
  font-size: 40px;
  letter-spacing: 2px;
}

.home-popup-text p {
  margin: 10px 0 0 0;
}

.home-popup-btn {
  margin: 20px 0 0 0;
}

/* home-popup ends */

.shop-detail-popup .modal-content {
  max-width: 800px;
  position: relative;
}

.close-detail-box {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  background: var(--fourth-color);
  color: var(--tertiary-color);
  display: grid;
  place-items: center;
  border: none;
  outline: none;
  font-size: 15px;
  z-index: 9;
}

.close-detail-box:hover {
  background: var(--fifth-color);
}

.shop-detail-box {
  width: 100%;
}

.shop-detail-popup .modal-dialog {
  max-width: 800px;
}

.shop-detail-image-box {
  width: 50%;
}

.shop-detail-thumbnail .slick-slide {
  margin: 0 5px;
}

.shop-detail-thumbnail .slick-slide img {
  width: 100%;
  cursor: pointer;
}

.shop-detail-thumbnail .slick-slide.slick-current .shop-thumb {
  border: 2px solid var(--secondary-color);
  padding: 5px;
}

.shop-detail-slide {
  margin-bottom: 10px;
}

.shop-detail-slide .slick-slide img {
  width: 100%;
}

.shop-detail-image-box {
  width: 50%;
}

.shop-detail-text {
  width: 45%;
}

.shop-detail-text h4 {
  color: var(--primary-color);
  font-size: 22px;
  text-transform: capitalize;
}

.shop-detail-text h3 {
  color: #adadad;
  margin: 10px 0 0 0;
  font-size: 18px;
}

.shop-detail-text p {
  margin: 15px 0 0 0;
  padding: 15px 0 0 0;
  border-top: 1px solid #ddd;
}

.shop-detail-text .shop-text-filter h4 {
  font-size: 20px;
  color: var(--fourth-color);
  margin: 0 0 10px 0;
}

.shop-cart-box {
  width: 100%;
  margin: 20px 0 0 0;
  align-items: center;
}

.shop-quantity {
  width: 90px;
  border: 2px solid #ddd;
}

.shop-input {
  width: 45px;
}

.shop-input input {
  width: 100%;
  padding: 10px 0;
  text-align: center;
  font-size: 20px;
  color: var(--fourth-color);
  font-family: jost-medium;
  border: none;
  outline: none;
  border-right: 1px solid #ddd;
}

.shop-change {
  width: 45px;
}

.minus {
  width: 100%;
  height: 50%;
  display: grid;
  place-items: center;
  border-bottom: 1px solid #ddd;
  color: var(--fourth-color);
  font-size: 14px;
  transition: all 0.5s;
  cursor: pointer;
}

.plus {
  width: 100%;
  height: 50%;
  display: grid;
  place-items: center;
  color: var(--fourth-color);
  font-size: 14px;
  transition: all 0.5s;
  cursor: pointer;
}

.minus:hover,
.plus:hover {
  color: var(--fifth-color);
}

.shop-cart-btn {
  width: calc(100% - 110px);
}

/* shop-pagination css */

.pagination-box {
  width: 100%;
  margin: 30px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prev-btn {
  margin: 0 10px 0 0;
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  font-size: 15px;
  color: #868686;
  border: 1px solid #e3e3e3;
  transition: all 0.2s;
  font-family: jost-medium;
  cursor: pointer;
}

.prev-btn:hover {
  color: var(--tertiary-color);
  background: var(--fifth-color);
  border: 1px solid transparent;
}

.next-btn {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  font-size: 15px;
  color: #868686;
  border: 1px solid #e3e3e3;
  transition: all 0.2s;
  font-family: jost-medium;
  cursor: pointer;
}

.next-btn:hover {
  color: var(--tertiary-color);
  background: var(--fifth-color);
  border: 1px solid transparent;
}

.prev-btn.disabled {
  display: none;
}

.next-btn.disabled {
  display: none;
}

.page-btn {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  font-size: 15px;
  color: #868686;
  border: 1px solid #e3e3e3;
  transition: all 0.2s;
  margin: 0 10px 0 0;
  font-family: jost-medium;
  cursor: pointer;
}

.page-btn.active {
  background: var(--fifth-color);
  color: var(--tertiary-color);
  border: 1px solid transparent;
}

.page-block {
  display: none;
}

/* shop=pagination css ends */

.gift-text {
  width: 95%;
}

.gift-text h5 {
  color: var(--secondary-color);
  margin: 0 0 10px 0;
  font-size: 20px;
}

.gift-text p {
  margin: 15px 0 0 0;
}

.gift-image-box-mobile {
  display: none;
}

.gift-text .exotic-label-box {
  margin: 0;
}

.gift-text .exotic-label {
  margin: 20px 0 0 0;
}

.gift-cart {
  margin: 30px 0 0 0;
  text-align: center;
  width: 100%;
}

.gift-image {
  width: 100%;
  height: 300px;
}

.gift-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gift-text-box .gift-text {
  width: 100%;
}

.gift-rule-text {
  width: 100%;
}

.gift-rule-text ul li,
.gift-rule-text ol li {
  list-style-type: decimal;
  list-style-position: inside;
  margin: 15px 0 0 0;
}

.gift-rule-text ul li b,
.gift-rule-text ul li strong {
  color: var(--primary-color);
}

.gift-rule-text ol li b,
.gift-rule-text ol li strong {
  color: var(--primary-color);
}

.gift-info-text {
  margin: 60px 0 0 0;
}

.gift-info-text b,
.gift-info-text strong {
  color: var(--primary-color);
}

/* gift css ends */

.shop-detail-top-banner {
  margin: 60px 0 0 0;
}

.woocommerce span.onsale {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  padding: 0 !important;
  min-width: unset !important;
  min-height: unset !important;
  background: var(--primary-color) !important;
  line-height: normal !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px !important;
  font-family: jost-medium;
}

.woocommerce div.product div.images .flex-control-thumbs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  margin: 10px 0 0 0 !important;
  box-sizing: border-box;
}

.woocommerce div.product div.summary {
  margin: 0 !important;
}

.price {
  color: var(--fourth-color);
  margin: 15px 0 0 0;
  font-size: 30px;
}

.price del {
  font-size: 20px;
  color: #c5bfbf;
  margin: 0 5px 0 0;
  opacity: 1 !important;
}

.price ins {
  text-decoration: none;
}

.woocommerce-product-details__short-description p {
  margin: 15px 0 0 0;
}

.woocommerce-product-details__short-description p b,
.woocommerce-product-details__short-description p strong {
  color: var(--secondary-color);
}

.woocommerce div.product form.cart {
  margin: 20px 0 0 0 !important;
  display: flex;
  align-items: center;
}

.woocommerce .quantity {
  margin: 0 10px 0 0 !important;
}

.woocommerce .quantity input {
  text-align: center;
  width: 60px !important;
  height: 40px;
  font-size: 15px;
  border: 1px solid #999 !important;
  outline: none;
}

.single_add_to_cart_button {
  padding: 10px 30px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease;
  z-index: 0;
  display: inline-block;
  color: var(--tertiary-color);
  background: var(--secondary-color);
  border: none;
  outline: none;
}

.single_add_to_cart_button:hover {
  background: var(--primary-color);
}

.product_meta {
  display: flex;
  row-gap: 15px;
  flex-wrap: wrap;
  margin: 15px 0 0 0;
  flex-direction: column;
}

.product_meta span {
  width: 100%;
  font-family: jost-semibold;
  color: var(--primary-color);
}

.product_meta span span.sku {
  font-family: jost;
  color: var(--fourth-color);
}

.product_meta span a {
  color: var(--fourth-color);
}

.product_meta span a:hover {
  color: var(--secondary-color);
}

.woocommerce div.product div.images.woocommerce-product-gallery .flex-viewport {
  background: #f9f9f9;
}

.woocommerce
  div.product
  div.images.woocommerce-product-gallery
  .flex-viewport
  .woocommerce-product-gallery__image {
  background: #f9f9f9;
}

.woocommerce
  div.product
  div.images.woocommerce-product-gallery
  .flex-viewport
  .woocommerce-product-gallery__image
  a {
  background: #f9f9f9;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.woocommerce
  div.product
  div.images.woocommerce-product-gallery
  .flex-viewport
  .woocommerce-product-gallery__image
  a
  img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0 !important;
  margin: 0 0 30px 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: #aaf6bf !important;
  border: none !important;
  border-radius: 5px 5px 0 0 !important;
  padding: 10px 20px !important;
  margin: 0 10px 0 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:last-child {
  margin: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: var(--fourth-color) !important;
  font-family: jost-semibold;
  padding: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: var(--primary-color) !important;
  color: var(--tertiary-color) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--tertiary-color) !important;
}

.woocommerce-Tabs-panel p {
  margin: 15px 0 0 0;
}

.woocommerce-Tabs-panel .comment-reply-title {
  margin: 15px 0 0 0;
  display: block;
  color: #686667;
  font-family: muli;
  font-size: 16px;
}

.woocommerce-Tabs-panel .comment-notes {
  margin: 15px 0 0 0;
  color: #686667;
  font-family: muli;
  font-size: 16px;
}

.woocommerce-Tabs-panel .comment-form-rating label {
  font-size: 20px;
  margin: 15px 0 0 0;
  display: block;
  font-family: jost-semibold;
  color: var(--primary-color);
}

.woocommerce #review_form #respond p {
  margin: 15px 0 0 0 !important;
}

.woocommerce-Tabs-panel .stars span {
  display: flex;
  column-gap: 15px;
}

.woocommerce-Tabs-panel .stars span a {
  color: #ffc107;
}

.woocommerce-Tabs-panel .comment-form-comment label {
  display: block;
  margin: 0 0 10px 0;
  font-size: 18px;
  font-family: jost-medium;
  color: var(--secondary-color);
}

.woocommerce-Tabs-panel .comment-form-comment textarea {
  width: 100%;
  height: 100px;
  outline: none;
  border: 1px solid #999;
  outline: none;
  padding: 10px;
  transition: all 0.3s ease;
}

.woocommerce-Tabs-panel .comment-form-comment textarea:focus {
  border-color: var(--primary-color);
}

.woocommerce-Tabs-panel #review_form #respond p.comment-form-author {
  width: 50%;
  display: inline-block;
  margin: 15px 20px 0 0 !important;
}

.woocommerce-Tabs-panel .comment-form-author label {
  display: block;
  margin: 0 0 10px 0;
  font-size: 18px;
  font-family: jost-medium;
  color: var(--secondary-color);
}

.woocommerce-Tabs-panel .comment-form-author input {
  width: 100%;
  outline: none;
  border: 1px solid #999;
  outline: none;
  padding: 10px;
  transition: all 0.3s ease;
}

.woocommerce-Tabs-panel .comment-form-author input:focus {
  border-color: var(--primary-color);
}

.woocommerce-Tabs-panel .comment-form-email {
  width: 48%;
  display: inline-block;
  margin: 15px 0 0 0;
}

.woocommerce-Tabs-panel .comment-form-email label {
  display: block;
  margin: 0 0 10px 0;
  font-size: 18px;
  font-family: jost-medium;
  color: var(--secondary-color);
}

.woocommerce-Tabs-panel .comment-form-email input {
  width: 100%;
  outline: none;
  border: 1px solid #999;
  outline: none;
  padding: 10px;
  transition: all 0.3s ease;
}

.woocommerce-Tabs-panel .comment-form-email input:focus {
  border-color: var(--primary-color);
}

.woocommerce-Tabs-panel .comment-form-cookies-consent {
  display: flex;
  align-items: baseline;
}

.woocommerce-Tabs-panel .comment-form-cookies-consent input {
  margin: 0 10px 0 0;
}

.woocommerce-Tabs-panel .comment-form-cookies-consent label {
  font-size: 17px;
  color: #545454;
  font-family: muli;
}

.woocommerce-Tabs-panel .form-submit input[type="submit"] {
  padding: 10px 30px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease;
  z-index: 0;
  display: inline-block;
  color: var(--tertiary-color);
  background: var(--secondary-color);
  border: none;
  outline: none;
}

.woocommerce-Tabs-panel .form-submit input[type="submit"]:hover {
  background: var(--primary-color);
}

.woocommerce .products ul,
.woocommerce ul.products {
  margin: 30px 0 0 0 !important;
}

.related.products h2 {
  text-transform: capitalize;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: unset !important;
  margin: 0 !important;
  width: 100% !important;
}

.woocommerce ul.products li.product a img {
  margin: 0 !important;
}

.product-image-box {
  width: 100%;
  height: 300px;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.product-image-box img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}

.woocommerce-loop-product__title {
  font-size: 25px !important;
  padding: 0 !important;
  color: var(--fourth-color);
  margin: 15px 0 0 0 !important;
  padding: 0 !important;
}

.woocommerce-loop-product__title:hover {
  color: var(--primary-color);
}

span.price {
  color: var(--fourth-color);
  margin: 15px 0 0 0 !important;
  font-size: 20px !important;
  font-family: muli;
}

span.price del {
  font-size: 15px !important;
  color: #c5bfbf !important;
  margin: 0 5px 0 0;
  opacity: 1 !important;
}

span.price ins {
  text-decoration: none;
}

.woocommerce ul.products li.product .button {
  margin: 15px 0 0 0 !important;
  padding: 10px 30px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease;
  z-index: 0;
  display: inline-block;
  color: var(--tertiary-color);
  background: var(--secondary-color);
  border: none;
  outline: none;
}

.woocommerce ul.products li.product .button:hover {
  background: var(--primary-color);
}

.products.columns-4 .slick-slide {
  padding: 10px 10px 0 10px;
}

.woocommerce div.product .woocommerce-tabs .panel {
  margin: 0 0 60px 0 !important;
}

/* shop-detail css ends */

.wc-block-grid__products {
  margin: 0 !important;
  width: 100%;
  justify-content: space-between;
}

.wp-block-product-new {
  margin: 30px 0 0 0;
}

.wc-block-grid__product {
  margin: 30px 0 0 0 !important;
  border: none !important;
  flex: 1 0 24% !important;
  max-width: 24% !important;
  width: 24% !important;
  font-size: unset !important;
}

.wc-block-grid__product .wc-block-grid__product-image,
.wc-block-grid__product .wc-block-grid__product-link {
  width: 100% !important;
}

.wc-block-grid .wc-block-grid__product-onsale,
.wc-block-grid__product-image .wc-block-grid__product-onsale {
  border: none !important;
  border-radius: 0 !important;
  padding: 5px 15px !important;
  top: 0 !important;
  right: 0 !important;
  background: var(--primary-color) !important;
  color: var(--tertiary-color) !important;
  font-size: 13px !important;
  font-family: jost-medium;
}

.wc-block-grid__product-image {
  width: 100% !important;
  height: 300px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 20px !important;
  background: #f9f9f9;
}

.wc-block-grid__product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}

.wc-block-grid__product-title {
  font-size: 25px !important;
  padding: 0 !important;
  color: var(--fourth-color) !important;
  margin: 15px 0 0 0 !important;
  padding: 0 !important;
  text-align: left;
}

.wc-block-grid__product-title:hover {
  color: var(--primary-color) !important;
}

.wc-block-grid__product-price {
  color: var(--fourth-color);
  margin: 15px 0 0 0 !important;
  font-size: 20px !important;
  font-family: jost-medium;
  text-align: left !important;
}

.wc-block-grid__product-price del {
  font-size: 15px !important;
  color: #c5bfbf !important;
  margin: 0 5px 0 0;
  opacity: 1 !important;
}

.wc-block-grid__product-price ins {
  text-decoration: none;
}

.wc-block-grid__product-add-to-cart {
  margin: 0 !important;
  text-align: left !important;
}

.wc-block-grid__product-add-to-cart a {
  margin: 15px 0 0 0 !important;
  padding: 10px 30px !important;
  overflow: hidden !important;
  position: relative;
  transition: all 0.5s ease;
  z-index: 0;
  display: inline-block;
  color: var(--tertiary-color) !important;
  background: var(--secondary-color) !important;
  border: none;
  outline: none;
  border-radius: 0 !important;
}

.wc-block-grid__product-add-to-cart a:hover {
  background: var(--primary-color) !important;
}

/* cart page css ends */

/* privacy, account, and term pages css starts */

.privacy-box{
	background-color: rgba(255, 255, 255, 0.8);
    background-blend-mode: color;
}

.privacy-head {
  color: var(--primary-color);
}

.privacy-inner-text {
  margin: 40px 0 0 0;
}

.privacy-inner-text h3{
	font-size: 25px;
	margin: 20px 0 0 0;
	color: var(--secondary-color);
}

.privacy-inner-text h4{
	font-size: 22px;
	margin: 20px 0 0 0;
	color: var(--fifth-color);
}


.privacy-inner-text p{
	margin: 15px 0 0 0;
}

.privacy-inner-text p b, .privacy-inner-text p strong, .privacy-inner-text ul li b, .privacy-inner-text ul li strong, .privacy-inner-text ol li b, .privacy-inner-text ol li strong{
	color: var(--primary-color);
}

.privacy-inner-text ul li, .privacy-inner-text ol li{
	margin: 15px 0 0 0;
	list-style-position: inside;
}

.privacy-inner-text ul li{
	list-style-type: square;
}

.privacy-inner-text ol li{
	list-style-type: decimal;
}

.privacy-inner-text a{
	color:var(--fifth-color);
	text-transform: capitalize;
}

.privacy-inner-text a:hover{
	color: var(--secondary-color)
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  margin: 40px 0 0 0 !important;
  background: #c5213a21;
  backdrop-filter: blur(5px);
}

.woocommerce .woocommerce-form-login{
	background: transparent !important;
	backdrop-filter: unset !important;
	border: none !important;
}

.woocommerce form .form-row label {
  margin: 0 0 10px 0;
  color: var(--fourth-color);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  padding: 10px !important;
}

.woocommerce form .show-password-input,
.woocommerce-page form .show-password-input {
  right: 10px !important;
  top: 50% !important;
  transform: translateY(-50%);
  color: var(--secondary-color);
}

.woocommerce form .show-password-input:hover,
.woocommerce-page form .show-password-input:hover {
  color: var(--primary-color);
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
  margin: 20px 0 0 0;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
  padding: 10px 30px;
  position: relative;
  transition: all 0.5s ease;
  display: inline-block;
  	float: unset;
		background: #f3a208;
	color: #000;
  cursor: pointer;
  border: none;
  outline: none;
  margin: 20px 0 0 0;
		margin-right: 0;
	border-radius: 50px;
	width: 100%;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover {
  background: var(--secondary-color);
  color: var(--tertiary-color);
}

.woocommerce-LostPassword.lost_password {
  margin: 15px 0 0 0;
  text-align: center;
}

.woocommerce-LostPassword.lost_password a {
  color: var(--fourth-color);
  text-transform: capitalize;
}

.woocommerce-LostPassword.lost_password a:hover {
  color: var(--primary-color);
}

.woocommerce .woocommerce-form-register .woocommerce-form-register__submit {
  padding: 10px 30px;
  position: relative;
  transition: all 0.5s ease;
  display: inline-block;
  color: var(--tertiary-color);
  background: var(--primary-color);
  cursor: pointer;
  border: none;
  outline: none;
  margin: 20px 0 0 0;
}

.woocommerce .woocommerce-form-register .woocommerce-form-register__submit:hover {
  background: var(--secondary-color);
  color: var(--tertiary-color);
}

/* privacy, account, and term pages css ends */

.shop-listing:nth-child(4), .shop-listing:nth-child(5){
	display: none !important;
}

.footer-bottom{
	display:none;
}

.footer-link ul li#menu-item-480, .footer-link ul li#menu-item-481, .footer-link ul li#menu-item-482, .footer-link ul li#menu-item-483{
	display: none;
}

.mobile-banner{
	display: none;
}

/* login page css starts */

.login-box{
	width: 100%;
	    background-position: top right;
    background-repeat: no-repeat;
	    background-color: rgba(255, 255, 255, 0.8);
    background-blend-mode: color;
}

.login-form-box{
	text-align: center;
}

.login-form-box .login-text{
	margin: 40px 0 0 0;
	color: var(--fourth-color);
	font-weight: 600;
}

.login-form{
	width: 100%;
	text-align: left;
		margin: 40px 0 0 0;
}

.login-input-box{
	width: 100%;
	margin: 0 0 10px 0;
}

.login-input-box:last-child{
	margin:0;
}

.login-input-box label{
	font-family: jost-medium;
	display: block;
	margin: 0 0 5px 0;
	font-size: 15px;
}

.login-input{
	width: 100%;
	position: relative;
}

.login-input input{
	width: 100%;
	background: var(--tertiary-color);
    border: 1px solid #949291;
    border-radius: 4px;
	outline: none;
    color: #5a5858;
    font-size: 14px;
    letter-spacing: .5px;
    padding: 15px 15px;
    transition: all 0.3s ease;
}

.login-input input:focus{
	border-color: var(--primary-color);
}

.password-toggle {
	position: absolute;
	right: 15px;
	top: 20px;
	cursor: pointer;
	color: var(--secondary-color);
	z-index: 10;
	cursor: pointer;
}

.login-submit-box{
	width: 100%;
	margin: 40px 0 0 0;
	text-align: center;
}

.login-submit-box input{
	width: 100%;
	padding: 15px 0;
	min-width: 190px;
	max-width: 280px;
	background: var(--primary-color);
	color: var(--tertiary-color);
	border: none;
	outline: none;
	border-radius: 32px;
	font-weight: 600;
}

.login-submit-box input:hover{
	background: var(--secondary-color);
}

.login-create-box{
	width: 100%;
	margin: 40px 0 0 0;
}

.login-create-box p{
	color: var(--fourth-color);
	font-weight: 600;
	margin: 0 0 5px 0;
}

.login-create-box a{
	color: var(--secondary-color);
	text-decoration: underline;
	text-transform: unset;
	font-weight: 600;
}

.login-create-box a:hover{
	color: var(--primary-color);
}

/* login page css ends */

/* registration page css starts  */

.register-box{
	width: 100%;
}

.register-top-link{
	width: 100%;
}

.register-top-link a{
	text-transform: capitalize;
	color: var(--secondary-color);
}

.register-top-link a:hover{
	color: var(--primary-color);
	text-decoration: underline;
}

.register-form-box{
	width: 100%;
}

.register-form-box h1{
	margin: 0 auto;
	width: 55%;
	text-align: center;
}

.register-form-step{
	width: 100%;
	margin: 40px 0 0 0;
}

.register-form-step ul{
	width: 100%;
	border-bottom: 2px solid #ccc;
	display: flex;
	justify-content: space-between;
	padding: 0 30px;
}

.register-form-step ul li{
	text-align:center;
}

.register-form-step ul li a{
	text-transform: capitalize;
	color: #949291;
	display: inline-block;
	padding: 0 0 10px 0;
	position: relative;
}

.register-form-step ul li a span{
	display: none;
}

.register-form-step ul li.active a{
	color: var(--primary-color);
	font-weight: 500;
	border-color: var(--primary-color);
}

.register-form-step ul li.active a::after{
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--primary-color);
}

.register-form{
	width: 100%;
	margin: 40px 0 0 0;
}

.form-step{
	width: 100%;
	display: none;
}

.form-step.active{
	display: block;
}

.register-form-input-box{
	width: 100%;
	margin: 0 0 30px 0;
}

.register-form-input-box label{
	font-family: jost-medium;
	font-size: 15px;
	color: var(--secondary-color);
	display: block;
	margin:0 0 10px 0;
}

.register-form-input-box label span{
	color: var(--primary-color);
}

.register-form-input-box input, .register-form-input-box select{
	width: 100%;
	background: var(--tertiary-color);
    border: 1px solid #949291;
    border-radius: 4px;
	outline: none;
    color: #5a5858;
    font-size: 14px;
    letter-spacing: .5px;
    padding: 15px 15px;
    transition: all 0.3s ease;
}

.register-form-input-box input:focus, .register-form-input-box select:focus{
	border-color: var(--primary-color);
}

.register-form-input-box .select2-container--default .select2-selection--single .select2-selection__arrow {
	position: absolute;
	top: 50% !important;
	right: 1px;
	width: 20px;
	transform: translateY(-50%) !important;
	height: auto !important;
}

.register-form-input-box .select2-container .select2-selection--single .select2-selection__rendered {
	padding: 15px !important;
	height: auto !important;
	line-height: normal !important;
}

.register-form-input-box .select2-container .select2-selection--single {
	height: auto !important;
}

.register-form-input-box .select2-container {
	width: 100% !important;
}

.register-form-input-box .select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
	border-bottom-left-radius: 4px !important;
	border-bottom-right-radius: 4px !important;
}

.register-form-input-box .select2-container--default .select2-selection--single {
	border-radius: 4px !important;
	background-color: var(--tertiary-color) !important;
	border: 1px solid rgba(7, 17, 6, 0.1) !important;
	transition: all 0.3s ease;
}

.register-form-input-box .select2-container--default .select2-selection--single:focus {
	border-color: var(--primary-color) !important;
}

.register-form-input-box .select2-container--default .select2-selection--single .select2-selection__rendered {
	font-size: 14px;
	font-family: muli;
}

.select2-results__option--selectable {
	font-size: 14px !important;
}

.select2-results__options::-webkit-scrollbar {
	width: 4px;
}

.register-input{
	position: relative;
}

.register-password-toggle, .confirm-password-toggle {
	position: absolute;
	right: 15px;
	top: 20px;
	cursor: pointer;
	color: var(--secondary-color);
	z-index: 10;
	cursor: pointer;
}

/* registration page css ends */

.register-password-info{
	width: 100%;
	padding: 0 30px;
	text-align: center;
}

.register-password-info h5{
	font-family: muli;
	font-weight: 400;
	font-size: 15px;
}

.register-check-box{
	width: 100%;
	display:flex;
	align-items:flex-start;
	gap: 10px;
	margin: 30px 0 0 0;
}

.register-check-box input{
	accent-color: var(--primary-color);
	margin: 5px 0 0 0;
}

.register-check-box label{
	font-family: muli;
	font-weight: 400;
	font-size: 14px;
}

.register-submit-box{
	width: 100%;
	margin: 30px 0 0 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 15px;
}

.register-prev, .register-next, .register-submit{
	width: 100%;
	padding: 10px 40px;
	border: none;
	outline: none;
	border-radius: 32px;
	font-weight: 600;
	width: max-content;
	color: var(--tertiary-color);
}

.register-prev{
	background: var(--fifth-color);
}

.register-prev:hover{
	background: var(--secondary-color);
}

.register-next, .register-submit{
	background: var(--primary-color);
}

.register-next:hover, .register-submit:hover{
	background: var(--secondary-color);
}

.register-form-input-box textarea{
	width: 100%;
	height: 150px;
	background: var(--tertiary-color);
    border: 1px solid #949291;
    border-radius: 4px;
	outline: none;
    color: #5a5858;
    font-size: 14px;
    letter-spacing: .5px;
    padding: 15px 15px;
    transition: all 0.3s ease;
}

.register-form-input-box textarea:focus{
	border-color: var(--primary-color);
}

.register-phone-info{
		width: 100%;
}

.register-phone-info h5{
	font-family: muli;
	font-weight: 400;
	font-size: 14px;
}

.register-check-box label a{
	all: inherit;
	display: inline-block;
	cursor: pointer;
	color: var(--fifth-color);
}

.register-check-box label a:hover{
	color: var(--primary-color);
	text-decoration: underline;
}































/* blog page css starts */

blog-box{
	width: 100%;
}

.blog-head h5{
	    color: var(--secondary-color);
    font-size: 20px;
}

.blog-head h1{
	color: var(--primary-color);
}

.blog-row {
	justify-content: center;
	column-gap: 20px;
}

.blog-card {
	width: 31%;
	padding: 0;
	border-radius: 10px 10px 0 0;
	-webkit-border-radius: 10px 10px 0 0;
	-moz-border-radius: 10px 10px 0 0;
	-ms-border-radius: 10px 10px 0 0;
	-o-border-radius: 10px 10px 0 0;
	margin: 40px 0 0 0;
	background: #eee;
}

.blog-card a{
	text-transform: unset;
}

.blog-image {
	width: 100%;
	height: 250px;
	position: relative;
	border-radius: 10px 10px 0 0;
	-webkit-border-radius: 10px 10px 0 0;
	-moz-border-radius: 10px 10px 0 0;
	-ms-border-radius: 10px 10px 0 0;
	-o-border-radius: 10px 10px 0 0;
	overflow: hidden;
}

.blog-image img{
		width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
	-webkit-border-radius: inherit;
	-moz-border-radius: inherit;
	-ms-border-radius: inherit;
	-o-border-radius: inherit;
	transition: all 0.8s ease;
	-webkit-transition: all 0.8s ease;
	-moz-transition: all 0.8s ease;
	-ms-transition: all 0.8s ease;
	-o-transition: all 0.8s ease;
}

.blog-date {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	width: max-content;
	border-radius: 0 4px 0 30px;
	padding: 10px 10px 10px 20px;
	background: var(--fifth-color);
	color: var(--tertiary-color);
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	font-size: 0.8125rem;
	font-family: muli;
	font-weight: 600;
	z-index: 99;
	-webkit-border-radius: 0 4px 0 30px;
	-moz-border-radius: 0 4px 0 30px;
	-ms-border-radius: 0 4px 0 30px;
	-o-border-radius: 0 4px 0 30px;
}

.blog-card:hover .blog-date {
	color: var(--secondary-color);
	background: var(--tertiary-color);
}

.blog-card:hover .blog-image img {
	transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
}

.blog-card:hover {
	background: #e6ffed;
}

.blog-text{
	width: 100%;
	padding: 20px;
}

.blog-text ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.blog-text ul li {
	font-size: 15px;
}

.blog-text ul li i {
	margin: 0 5px 0 0;
	color: var(--primary-color);
}

.blog-text h4 {
	font-size: 25px;
	color: #050605;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	margin: 15px 0 0 0;
}

.blog-card:hover .blog-text h4{
	color: var(--primary-color);
}

.blog-card:hover .blog-text h4:hover{
	color: var(--secondary-color);
}

.blog-text p{
	margin: 15px 0 0 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.blog-btn{
	margin: 15px 0 0 0;
}

.pagination {
	width: 100%;
	margin: 30px 0 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.pagination .page-numbers {
	font-size: 15px;
	display: grid;
	place-items: center;
	font-size: inherit;
	padding: 5px 10px;
	background: var(--secondary-color);
	color: var(--tertiary-color);
	font-family: jost-medium;
}

.pagination .page-numbers:hover {
	background: var(--tertiary-color);
}

.pagination .page-numbers.current {
	background: var(--primary-color);
}

/* blog page css ends */

/* blog detail page css starts */


.blog-detail-box {
	width: 100%;
}

.blog-detail-text {
	width: 95%;
}

.blog-detail-text h5 {
    color: var(--secondary-color);
    font-size: 20px;
}

.blog-head-list {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin: 10px 0 0 0;
}

.blog-head-list li {
	display: inline-block;
	font-size: 15px;
	margin: 0 !important;
}

.blog-head-list li i {
	margin: 0 5px 0 0;
	color: var(--secondary-color)
}

.blog-detail-image {
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	margin: 30px 0 10px 0;
}

.blog-detail-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
		transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
}

.blog-detail-image:hover img{
	transform: scale(1.2);
}

.blog-detail-text h4 {
	margin: 20px 0 0 0;
	font-size: 25px;
	color: var(--secondary-color);
}

.blog-detail-text h3{
	margin: 20px 0 0 0;
	font-size: 30px;
	color: var(--primary-color);
}

.blog-detail-text p {
	margin: 20px 0 0 0;
}

.blog-detail-text p b,
.blog-detail-text strong {
	color: var(--fifth-color);
}

.blog-detail-text ul li,
.blog-detail-text ol li {
	margin: 20px 0 0 0;
	list-style-position: inside;
}

.blog-detail-text ul li {
	list-style-type: square;
}

.blog-detail-text ol li {
	list-style-type: decimal;
}

.blog-detail-text ul li b,
.blog-detail-text ol li b,
.blog-detail-text ul li strong,
.blog-detail-text ol li strong {
	color: var(--fifth-color);
}

.blog-detail-text ol li ul li {
	list-style-type: disc;
}

.blog-sidebar {
	width: 100%;
	padding: 30px 20px;
	background: #ffedf0;
	position: sticky;
	top: 130px;
}

.blog-sidebar h3{
	color: var(--primary-color);
}


.blog-iconbox {
	margin: 30px 0 0 0;
	padding: 0 0 20px 0;
	border-bottom: 1px solid #ddd;
	justify-content: space-between;
	align-items: center;
}

.blog-iconbox:last-child {
	padding: 0;
	border: none;
}

.blog-icon {
	width: 100px;
	height: 100px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	overflow: hidden;
}

.blog-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
	-webkit-border-radius: inherit;
	-moz-border-radius: inherit;
	-ms-border-radius: inherit;
	-o-border-radius: inherit;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
}

.blog-icontext {
	width: calc(100% - 120px);
}

.blog-icontext h4 {
	font-size: 20px;
	color: var(--fourth-color);
}

.blog-icontext h4 a {
	display: inline-block;
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	text-transform: unset;
}

.blog-icontext h4 a:hover {
	color: var(--secondary-color);
}

.blog-detail-date {
	font-size: 0.9375rem;
	margin: 10px 0 0 0;
}

.blog-iconbox:hover .blog-icon img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
}

/* blog detail page css ends */

/* account dashboard page css starts */

.privacy-inner-text > .woocommerce{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.privacy-inner-text > .woocommerce > .woocommerce-MyAccount-navigation{
	width: 25%;
}

.privacy-inner-text > .woocommerce > .woocommerce-MyAccount-navigation ul{
	position: sticky;
	top: 120px;
}

.privacy-inner-text > .woocommerce > .woocommerce-MyAccount-navigation ul li{
	list-style: none;
	margin: 0;
	display: block;
	width: 100%;
}

.privacy-inner-text > .woocommerce > .woocommerce-MyAccount-navigation ul li a{
	background: var(--secondary-color);
	color: var(--tertiary-color);
	border-bottom: 1px solid #ddd;
	padding: 10px 15px;
	display: block;
	width: 100%;
}

.privacy-inner-text > .woocommerce > .woocommerce-MyAccount-navigation ul li a:hover{
		color: var(--tertiary-color);
        background: var(--primary-color);
}

.privacy-inner-text > .woocommerce > .woocommerce-MyAccount-navigation ul li a[aria-current="page"]{
	color: var(--tertiary-color);
        background: var(--fifth-color);
}

.privacy-inner-text > .woocommerce > .woocommerce-MyAccount-navigation ul li:last-child a{
	border: none;
}

.privacy-inner-text > .woocommerce > .woocommerce-MyAccount-content{
	    width: calc(100% - 28%);
}

.privacy-inner-text > .woocommerce > .woocommerce-MyAccount-content p{
	margin: 0 0 30px 0;
}

.woocommerce-Address .woocommerce-Address-title a, .woocommerce-Address address{
	margin: 20px 0 0 0;
	display: block;
}

.woocommerce-Button.button{
	padding: 10px 30px !important;
	background: var(--primary-color) !important;
	color: var(--tertiary-color) !important;
	border: none !important;
	outline: none !important;
	line-height: normal !important;
}

.woocommerce-Button.button:hover{
	background: var(--fifth-color) !important;
}


/* account dashboard page css ends */
