@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url('https://fonts.googleapis.com/css?family=Poppins');

@font-face {
  font-family: motherlane;
  src: url(../fonts/Demo\ Motherlane.ttf);
}
 
.overlay { position: fixed; top: 0; bottom: 0; left: 0; right: 0; background: rgba(0, 0, 0, 0.7); transition: opacity 500ms; visibility: hidden; opacity: 0; z-index: 9999;}
.overlay:target { visibility: visible; opacity: 1;}
#popup1 .popup {
    width: 500px;
    margin: 0 auto;
    padding: 30px 25px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4b0082, #8a2be2);
    box-shadow: 0 0 25px rgba(186, 104, 200, 0.8);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    position: fixed !important;
    top: 50% !important;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    
}

.single-des div ul li {
    color: white !important;
}

.single-des div {
    color: white !important;
}

#popup1 .popup h2 {
    font-size: 45px;
    margin-bottom: 10px;
    color: #ffe4ff;
    text-shadow: 1px 1px 2px #6a0dad;
}

#popup1 .popup .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 28px;
    background: #6a0dad;
    color: #fff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
}

#popup1 .popup .close:hover {
    background: #d291ff;
    color: #4b0082;
}

#popup1 .box-content label {
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    color: #fce4ff;
}

#popup1 #subscribe_pemail {
    width: 100%;
    height: 40px;
    border-radius: 5px;
    border: none;
    padding-left: 10px;
    margin-bottom: 15px;
    background-color: #f3e5f5;
    color: #4b0082;
}

#popup1 .subscribe-button {
    background: linear-gradient(to right, #c084fc, #a78bfa);
    border: none;
    padding: 10px 30px;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px #e0aaff;
    cursor: pointer;
}

#popup1 .subscribe-button:hover {
    background: #d8b4fe;
}

#popup1 .subscribe-bottom {
    margin-top: 15px;
    font-size: 12px;
}

#popup1 .subscribe-bottom label {
    color: #f3d8ff;
}
.fairy-decor {
  position: absolute;
  top: 127px;
  right: 34px;
  width: 130px;
  animation: floatFairy 6s ease-in-out infinite;
  z-index: 10;
  pointer-events: none;
}

@keyframes floatFairy {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

.popup {
  position: relative;
  background: linear-gradient(135deg, #7f00ff 0%, #e100ff 100%);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  overflow: hidden;
}

/*.popup::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: -50%;*/
/*  left: -50%;*/
/*  width: 200%;*/
/*  height: 200%;*/
/*  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);*/
/*  animation: swirl 20s linear infinite;*/
/*  z-index: 0;*/
/*}*/

@keyframes swirl {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
 
:root {
  /*** theme colors ***/
  --theme-color: #7257a5;
  --theme-color-2: #066678;
}

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

body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  background-color: var(--theme-color);
}

ul {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3 {
  font-family: motherlane;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.2s all;
}

a:hover {
  color: #000;
}

.theme-btn {
  background: var(--theme-color-2);
  padding: 13px 28px;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 1);
  display: inline-block;
  border: 1px solid var(--theme-color-2);
  transition: 0.2s all;
}

.theme-btn:hover {
  background: transparent;
  border-color: var(--theme-color-2);
  box-shadow: none;
  color: #fff;
}

.theme-btn-2 {
  background: transparent;
  padding: 13px 28px;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0);
  display: inline-block;
  border: 1px solid #fff;
  transition: 0.2s all;
}

.theme-btn-2:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 1);
  background: var(--theme-color-2);
  border-color: var(--theme-color-2);
  color: #fff;
}

.theme-btn-3 {
  background: #fff;
  padding: 13px 28px;
  font-size: 15px;
  color: var(--theme-color);
  font-weight: 500;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 1);
  display: inline-block;
  border: 1px solid #fff;
  transition: 0.2s all;
}

.theme-btn-3:hover {
  background: transparent;
  border-color: #fff;
  box-shadow: none;
  color: #fff;
}

.autoRotate {
  animation: autoShowRotate;
  animation-timeline: view();
}

@keyframes autoShowRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.autoMoveY {
  animation: autoMoverY 3.5s linear infinite;
}

@keyframes autoMoverY {
  50% {
    transform: translateY(-20px);
  }
}

.autoMoveX {
  animation: autoMoverX 3.5s linear infinite;
}

@keyframes autoMoverX {
  50% {
    transform: translateX(-20px);
  }
}

/* Header CSS Start */

.serv-a {
  position: relative;
  cursor: pointer;
}

.serv-a a {
  padding-bottom: 28px;
}

li.serv-a a i {
  padding-left: 11px;
}

.nav-dropdown {
  position: absolute;
  top: 50px;
  opacity: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  transform-origin: 0 0 0;
  -webkit-transform-origin: 0 0 0;
  text-align: left;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.nav-dropdown ul {
  display: block;
  background-color: var(--theme-color);
}

.serv-a:hover .nav-dropdown {
  visibility: visible;
  opacity: 1;
  clip: inherit;
  -webkit-transform: scaleY(1);
  -khtml-transform: scaleY(1);
  transform: scaleY(1);
}

.nav-dropdown ul li {
  transition: 0.2s all;
}

.nav-dropdown ul li a {
  padding: 10px 20px;
  width: 200px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}

.nav-dropdown ul li:hover {
  background-color: #000;
}

.nav-dropdown ul li:hover a {
  color: var(--theme-color);
}

.offcanvas,
.offcanvas-btn {
  display: none;
}

a.btn.offcanvas-btn {
  display: none;
}

.closebtn {
  position: absolute;
  right: 20px;
  top: 30px;
  cursor: pointer;
}

.closebtn i {
  color: #000;
  font-size: 30px;
}

.head-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*drop down*/
.navigation ul li ul {
  position: absolute;
  display: flex;
  flex-direction: column;
  background: #7364a9;
  width: 204px;
  gap: 0;
  border-right: 1px solid white;
  border-left: 1px solid white;
  border-top: 1px solid white;
  opacity: 0;
  transition: all .6s ease;
  visibility: hidden;
}
.navigation ul li ul li {
  border-bottom: 1px solid white;
  width: 100%;
}
.navigation ul li ul li:hover,.navigation ul li ul li a:hover {
  background: #fff;
  color: #888;
}
.navigation ul li ul li a {
  display: block;
  padding: 6px 10px;
}
.navigation ul li:hover ul {
  opacity: 1;
  visibility: visible;
}

header {
  padding: 18px 0 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  /*overflow: hidden;*/
  backdrop-filter: blur(34px);
  /* background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 100%
  ); */
}

/* header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 560px;
  right: 0;
  bottom: 0;
  z-index: -1;
  backdrop-filter: blur(14px);
} */

.navigation ul {
  display: flex;
  align-items: center;
  gap: 55px;
  list-style: none;
}

.navigation ul li a {
  color: #fff;
  font-size: 18px;
}

li.cart-wrap {
  width: 54px;
  height: 54px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
}

.navigation ul li a:hover {
  color: var(--theme-color);
}

.navigation ul li a.active {
  border-top: 6px solid var(--theme-color);
  padding-top: 66px;
  filter: drop-shadow(0 0 9px rgba(255, 255, 255, 0.8))
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.6));
}

li.cart-wrap a {
  padding: 0 !important;
  border: 0 !important;
}

.unicorn {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  right: 0;
}

.unicorn::before {
  content: "";
  background: radial-gradient(
    circle at center,
    rgb(6 102 120/ 1) 0%,
    rgba(0, 255, 0, 0) 80%
  );
  width: 700px;
  height: 600px;
  position: absolute;
  top: 44%;
  right: -190px;
  z-index: -1;
}

.logo img {
  margin-left: 120px;
  outline: none;
  height: 130px;
  object-fit: contain;
}

.unicorn img {
  width: 70% !important;
  display: block;
  margin-left: auto;
}

/* Header CSS End */

/* Banner CSS Start */

section.banner-section {
  position: relative;
}

section.banner-section img {
  width: 100%;
}

.banner-wrap {
  position: absolute;
  top: 43%;
  left: 0;
  width: 100%;
  text-align: center;
}

.banner-wrap h4 {
  font-size: 27px;
  text-transform: uppercase;
  letter-spacing: 7px;
  color: #fff;
  display: inline-block;
  background: linear-gradient(
    90deg,
    rgba(114, 87, 165, 0.12) 0,
    rgba(114, 87, 165, 1) 50%,
    rgba(114, 87, 165, 0.12) 100%
  );
  padding: 3px 20px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.banner-wrap h1 {
  font-size: 300px;
  font-family: motherlane;
  color: #fff;
  filter: drop-shadow(2px 4px 6px white);
  position: relative;
  z-index: 0;
  margin-left: -160px;
  margin-bottom: 0;
  margin-top: -150px;
}

.banner-wrap h1::before {
  content: "";
  background-image: url(../images/txt-underline.png);
  background-repeat: no-repeat;
  width: 100%;
  height: 50px;
  position: absolute;
  left: 39%;
  top: 75%;
  display: inline-block;
}

.banner-wrap p {
  margin-top: -10px;
  color: #fff;
  font-size: 20px;
}

.back-theme {
  position: relative;
}

.back-theme::before {
  content: "";
  width: 100%;
  height: 122%;
  background: #7257a5;
  position: absolute;
  top: -310px;
  z-index: -1;
}

.inner-banner-section {
  height: 460px;
}

.inner-banner-section .banner-wrap h1 {
  font-size: 150px;
  line-height: 140px;
  padding: 130px 0 0;
}

.inner-banner-section img {
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.inner-banner-section .banner-wrap h1:before {
  top: 100%;
  width: 100%;
  background-size: contain;
  left: 40px;
}

body:has(.inner-banner-section) footer {
  margin: 0px 0 -24px;
}

.inner-banner-section .banner-wrap h1 {
  display: inline-block;
}

.inner-banner-section .banner-shop-wrap h1 {
    margin: 0;
    line-height: normal;
    font-size: 170px;
}

.inner-banner-section .banner-shop-wrap h1::before {
    top: 100%;
}

/* Banner CSS End */

/* About CSS Start */

section.about-section {
  position: relative;
  padding: 0;
}

section.about-section::before {
  content: "";
  background-image: url(../images/about-bg.png);
  background-size: cover;
  width: 100%;
  height: 106%;
  position: absolute;
  top: -190px;
  z-index: -1;
  mix-blend-mode: luminosity;
}

.about-left img {
  width: 130%;
  margin-top: -230px;
}

section.about-section .container-fluid {
  padding-left: 0;
}

.about-right {
  margin-top: 60px;
  margin-right: 120px;
  position: relative;
}

.about-right img {
  width: 80%;
}

.about-right p {
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
}

.about-right a {
  margin-bottom: 25px;
}

.dragon-img {
  margin-left: -80px;
}
.about-right p {
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
}

.theme-btn:hover {
  background: transparent;
  border-color: var(--theme-color-2);
  box-shadow: none;
}

.about-right a {
  margin-bottom: 25px;
}

.dragon-img {
  margin-left: -80px;
}

.shop-left h2 {
  color: #fff;
  font-size: 150px;
  margin-bottom: 30px;
  position: relative;
  overflow: visible;
}

.shop-left h2::before {
  content: "";
  position: absolute;
  bottom: -2px;
  background-image: url(../images/shop-underline.png);
  width: -webkit-fill-available;
  height: 40px;
  background-repeat: no-repeat;
  background-size: 60% 100%;
}

.shop-left p {
  color: #fff;
  font-size: 14px;
}

p.shop-p {
  margin-left: 50px;
}

.shop-left {
  width: 80%;
  margin-left: auto;
}

.shop-right::after {
  content: "";
  width: 700px;
  height: 500px;
  position: absolute;
  background: #c9c1d894;
  filter: blur(60px);
  top: 70px;
  left: 14%;
  z-index: -1;
}

.shop-slider-img {
  position: relative;
  height: 100%;
  display: inline-block;
}

.shop-slider-before {
  position: absolute;
  top: 8px;
  height: 100%;
  left: -50px;
  z-index: -1;
}

.shop-slider-before img {
  width: 249px !important;
  height: 360px !important;
  object-fit: cover;
}

.shop-right {
  /* margin-left: 120px; */
  position: relative;
  z-index: 1;
}

.shop-right::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 0;
  width: 18px;
  height: 90%;
  z-index: 99;
  filter: drop-shadow(10px 4px 6px var(--theme-color));
  background: var(--theme-color);
  opacity: 1;
}

.shop-slider-img img {
  width: 203px;
  height: 342px;
  object-fit: contain;
}

.shop-slider-wrap {
  text-align: center;
}

.shop-slider-flex {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.shop-slider .slick-slide.slick-current.slick-active {
  transform: scale(1.3);
  transition: 0.2s all;
  margin: 0 !important;
}

.shop-slider .slick-list.draggable {
  padding-top: 140px;
  margin-top: -70px;
  width: 100%;
  padding-bottom: 90px;
}

.shop-slider .slick-prev {
  left: -42%;
  top: 73%;
  background: #fff;
  width: 67px;
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
  transition: 0.2s all;
}

.shop-slider .slick-next::before {
  content: "";
  background-image: url(../images/arrow-right.png);
  background-size: contain;
  width: 32px;
  display: block;
  height: 16px;
  background-repeat: no-repeat;
  opacity: 1;
}

.shop-slider .slick-next {
  left: -31%;
  top: 73%;
  background: #fff;
  width: 67px;
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
}

.shop-slider .slick-prev::before {
  content: "";
  background-image: url(../images/arrow-right.png);
  background-size: contain;
  width: 32px;
  display: block;
  height: 16px;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  opacity: 1;
}

.shop-slider .slick-arrow.slick-disabled {
  opacity: 0.3;
  transition: 0.2s all;
  cursor: no-drop;
}

.shop-hand {
  position: absolute;
  z-index: 0;
  top: -40px;
}

section.shop-section {
  position: relative;
}

.shop-slider-img::after {
  content: "";
  position: absolute;
  background-image: url(../images/product-shadow.png);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  left: 0;
  background-size: contain;
  top: 340px;
  z-index: -1;
}

.shop-right .nav-tabs {
  position: relative;
  z-index: 9;
  border: 0;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.shop-right .nav-tabs .nav-link {
  background: transparent;
  border-radius: 0;
  padding: 10px 30px;
  border: 0;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  transition: 0.2s all;
  overflow: hidden;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.shop-right .nav-tabs .nav-link.active {
  transition: 0.2s all;
  position: relative;
}

.shop-right .nav-tabs .nav-item {
  transition: 0.2s all;
}

.shop-right .nav-tabs .nav-link::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(6, 102, 120, 1) 100%
  );
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: 0.2s all;
  display: inline-block;
}

.shop-right .nav-tabs .nav-link.active::before {
  opacity: 1;
}

.shop-hand img {
  width: 100%;
  height: 450px;
  object-fit: scale-down;
}

.shop-slider-txt h4 {
  color: #fff;
  font-size: 14px;
  margin: 0;
}

.shop-slider-txt {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.shop-slider-txt h4:first-child {
  margin: 0;
}

.shop-slider-txt a {
  padding: 9px 2px;
  font-size: 12px;
  width: 70%;
  margin: 0 auto;
}

.shop-right-img {
  position: absolute;
  right: 0;
  top: -234px;
}

.shop-left-img {
  position: absolute;
  left: 0;
  z-index: -1;
  top: -150px;
}

.shop-left-img img {
  width: 87%;
  display: block;
  margin-right: auto;
}

.shop-right-img img {
  width: 78%;
  display: block;
  margin-left: auto;
}

.star-shadow {
  position: absolute;
  top: 0;
  z-index: 2;
  pointer-events: none;
}

.star-shadow img {
  mix-blend-mode: screen;
  width: 80%;
  opacity: 0.4;
}

.star-left {
  position: relative;
}

.star-left-wrap {
  background: var(--theme-color-2);
  width: 46%;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 1);
  position: absolute;
  left: 0;
  bottom: 60px;
}

.star-left-wrap h4 {
  margin: 0;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  color: #fff;
}

.star-left-wrap h4 span {
  font-weight: bold;
}

.star-left img {
  width: 100%;
  height: 554px;
  object-fit: contain;
}

.star-right {
  margin: 50px 0 0 0;
}

.star-right h2 {
  color: #fff;
  font-size: 160px;
  filter: drop-shadow(0px 1px 20px white);
  line-height: 130px;
  margin-bottom: 40px;
}

.star-right h2.star-h2 {
  font-size: 77px;
  margin-bottom: -45px;
  margin-left: 100px;
}

.star-right h2 span {
  font-size: 220px;
  line-height: 120px;
  position: relative;
  margin-left: -20px;
}

.star-right h2 span:before {
  content: "";
  position: absolute;
  background-image: url(../images/star-underline.png);
  width: 100%;
  height: 60px;
  background-repeat: no-repeat;
  bottom: 10px;
  background-size: contain;
  left: 40px;
  pointer-events: none;
}

.star-right p {
  margin: 40px 0 20px 0;
  color: #fff;
  width: 80%;
}

section.star-section {
  position: relative;
}

.mail-stars {
  position: absolute;
  right: 0;
  top: -300px;
}

.mail-stars img {
  width: 80%;
  display: block;
  margin-left: auto;
}

.gallery-left {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

.gallery-left img {
  width: 70%;
}

.star-left-img {
  position: absolute;
  z-index: 2;
  width: 40%;
}

.star-left-img img {
  width: 100%;
}

.star-right-img {
  position: absolute;
  z-index: 1;
  right: 0;
  pointer-events: none;
}

.star-right-img img {
  width: 80%;
  display: block;
  margin-left: auto;
}

.star-bg {
  position: absolute;
  top: -100px;
  width: 100%;
}

.star-bg img {
  mix-blend-mode: soft-light;
  height: 900px;
  width: 100%;
}

section.star-section .container {
  position: relative;
  z-index: 2;
}

.star-two.row {
  margin: 40px 0 0 0;
}

.star-two.row .star-left {
  margin-top: -90px;
  position: relative;
  z-index: -1;
}

.star-two.row .star-right {
  margin: 70px 0 0 90px;
}

.star-two.row .star-right h2::before {
  content: "";
  position: absolute;
  background-image: url(../images/star-underline.png);
  width: 70%;
  height: 60px;
  background-repeat: no-repeat;
  bottom: -40px;
  background-size: contain;
  right: 0;
  pointer-events: none;
}

.star-two.row .star-right p {
  margin: 0 0 15px 0;
  width: 100%;
}

.star-right p.mt-0 {
  margin-bottom: 50px;
}

.star-two.row .star-right p.mt-0 {
  margin-top: 10px !important;
  margin-bottom: 40px;
  font-size: 15px;
}

.about-section2 .row {
  align-items: center;
}

/* .about-section2 .about-right h4 {
  font-family: "motherlane";
  font-size: 70px;
  color: #fff;
  filter: drop-shadow(0px 1px 20px white);
  display: inline-block;
  margin: 0px 0 0 267px;
  line-height: 80px;
} */

.about-section2 .about-right h2 {
  font-size: 200px;
  color: #fff;
  filter: drop-shadow(0px 1px 20px white);
  line-height: 120px;
  margin: -40px 0 40px 0;
}

.about-section2 .about-left img {
  width: 80%;
  margin: 0;
}

.about-left {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-left-princess {
  position: absolute;
  left: -33%;
  bottom: -30%;
  z-index: -1;
  mix-blend-mode: luminosity;
}

.about-left-shadow {
  position: absolute;
  left: -32%;
  bottom: -61%;
  z-index: -2;
}

.about-left-shadow2 {
  position: absolute;
  right: -52%;
  top: -38%;
  z-index: -1;
}

.about-left-shadow img {
  width: 100% !important;
}

.about-section2 {
  padding: 0 0 300px !important;
}

.about-section2 .about-right p {
  font-size: 18px;
  width: 83%;
  margin: 20px 0 50px;
  line-height: 32px;
}

.about-section2 .about-right {
  margin: 0;
}

/* About CSS End */

/* Gallery CSS Start */

section.gallery-section {
  padding: 80px 0;
  position: relative;
}

section.gallery-section::before {
  content: "";
  background-image: url(../images/gallery-bg.png);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
  mix-blend-mode: soft-light;
  background-size: cover;
}

.gallery-images {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: space-between;
  width: 93%;
}

.gallery-image img {
  width: 100%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
}

.gallery-image:first-child {
  width: 48%;
  height: 430px;
}

.gallery-image:nth-child(2) {
  width: 48%;
  height: 510px;
}

.gallery-image:nth-child(3) {
  width: 48%;
  margin-top: -50px;
  height: 510px;
}

.gallery-image:nth-child(4) {
  width: 48%;
  margin-top: 30px;
  height: 430px;
}

.gallery-image:nth-child(4) img {
  object-fit: none;
}

.gallery-txt h2 {
  color: #fff;
  font-size: 160px;
  filter: drop-shadow(0px 1px 20px white);
  margin-bottom: 20px;
  position: relative;
}

.gallery-txt h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  background-image: url(../images/gallery-underline.png);
  width: 100%;
  height: 40px;
  background-repeat: no-repeat;
  background-size: 80% 100%;
  left: 0;
}

.gallery-txt p {
  font-size: 16px;
  color: #fff;
}

.gallery-txt a {
  margin: 20px 0 0 0;
}

.gallery-star {
  position: absolute;
  top: -130px;
  z-index: -1;
}

.gallery-star img {
  width: 60%;
}

/* Gallery CSS End */

/* Newsletter CSS Start */

.newsletter-section {
  position: relative;
}

.newsletter-section::before {
  content: "";
  background-image: url(../images/news-bg.png);
  width: 100%;
  height: 100%;
  position: absolute;
  top: -40px;
  z-index: -1;
  mix-blend-mode: difference;
}

.news-img img {
  width: 100%;
}

.news-txt h2 {
  color: #fff;
  font-size: 122px;
  filter: drop-shadow(0px 1px 20px white);
  margin-bottom: 20px;
  position: relative;
}

.news-txt {
  width: 80%;
}

.news-txt form input {
  width: 60%;
  padding: 13px 0 13px 28px;
  border-radius: 10px 0 0 10px;
  border: 0;
  outline: 0;
}

.news-txt form {
  position: relative;
}

.news-txt form button {
  position: absolute;
  text-transform: uppercase;
  border-radius: 0 10px 10px 0;
  padding: 13px 60px;
}

/* Newsletter CSS End */

/* Footer CSS Start */

.foot-wrap .container {
  position: relative;
  z-index: 2;
}

.foot-wrap::before {
  content: "";
  background-image: url(../images/foot-bg.png);
  background-size: 100% 100%;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.foot-left {
  position: absolute;
  top: 0;
  height: 100%;
}

.foot-right {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

.foot-right img {
  width: 100%;
  height: 100%;
}

.foot-left img {
  height: 100%;
}

footer {
  margin: -160px 0 0;
}

.news-img {
  position: relative;
  z-index: 9999;
}

.col2 {
  text-align: center;
  width: 90%;
}

.col1 h4 {
  color: #fff;
  font-size: 40px;
  font-family: "motherlane";
  margin-bottom: 20px;
}

.col1 ul li {
  margin-bottom: 2px;
  list-style: none;
}

.col1 ul li a {
  text-transform: uppercase;
  color: #fff;
}

.col1 ul li a:hover {
  color: var(--theme-color-2);
}

.col2 img {
  margin-bottom: 40px;
}

.col2 p {
  color: #fff;
}

.foot-wrap {
  background: #433058;
  padding: 100px 0 60px;
  position: relative;
}

.foot-copyright p {
  margin: 0;
  color: #fff;
  text-align: center;
}

.foot-copyright {
  padding: 11px 0;
  background: linear-gradient(360deg, rgb(0,0,0,0.6), transparent);
}

/* Footer CSS End */

canvas.banner-canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Best Seller CSS Start */

section.best-seller-section {
  padding: 100px 0;
  position: relative;
}

section.best-seller-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/about-bg.png);
  mix-blend-mode: luminosity;
  z-index: -1;
  background-size: cover;
}

.seller-head {
  text-align: center;
  margin-bottom: 60px;
}

.seller-head h2 {
  text-align: center;
  font-size: 130px;
  line-height: 120px;
  position: relative;
  color: #fff;
  filter: drop-shadow(0px 1px 20px white);
  display: inline-block;
}

.seller-head h2::before {
  content: "";
  position: absolute;
  background-image: url(../images/seller-underline.png);
  width: 100%;
  height: 60px;
  background-repeat: no-repeat;
  bottom: -40px;
  background-size: contain;
  left: 40px;
  pointer-events: none;
}

.seller-box a img {
  width: 80%;
  display: block;
  margin: 0 auto 30px;
}

.seller-box {
  text-align: center;
}

.seller-box h5 {
  color: #fff;
  font-weight: bold;
  font-size: 40px;
  margin-bottom: 36px;
}

.star-left-green {
  position: absolute;
  top: -185%;
  z-index: -1;
}

.star-left-green img {
  width: 100%;
}

.star-seller-left {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.star-seller-left img {
  width: 90%;
}

.star-seller-right {
  position: absolute;
  right: 0;
  z-index: -1;
}

.star-seller-right img {
  width: 90%;
}

/* Best Seller CSS End */

/* Product CSS Start */

.product-section {
  padding: 100px 0;
  position: relative;
}

.product-head {
  text-align: center;
  margin: 0 0 40px 0;
}

.product-head h2 {
  font-size: 150px;
  margin: 0;
  color: #fff;
  filter: drop-shadow(2px 4px 6px white);
}

.product-box-img {
  position: relative;
  text-align: center;
  margin-bottom: 25px;
  width: 100%;
  height: 280px;
  padding: 10px;
}

.product-box-img::before {
  content: "";
  background-image: url(../images/product-shadow2.png);
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  left: -10px;
  top: 95%;
  display: block;
  background-size: contain;
}

.product-box-img-inner {
  position: absolute;
  z-index: -1;
  left: -60px;
  top: 0;
}

.product-box-img-inner img {
  mix-blend-mode: luminosity;
  filter: grayscale(1);
  height: 100%;
  width: 500px !important;
}

.product-box-wrap {
  text-align: center;
  position: relative;
}

.product-box-wrap h5 {
  color: #fff;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 18px;
}

.product-box {
  text-align: center;
}

.product-box-wrap h6 {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 30px;
}

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

.product-section .row {
  gap: 70px 0;
}

section.shop.single.section.product-section.blog-section.star-section .row {
    gap: 20px 0;
}

.product-design-right {
  position: absolute;
  top: 35%;
  right: 0;
  z-index: -1;
}

.product-design-right2 {
  position: absolute;
  top: 75%;
  right: 0;
  z-index: 1;
}

.product-design-right img {
  width: 80%;
  display: block;
  margin-left: auto;
}

.product-design-right2 img {
  width: 80%;
  display: block;
  margin-left: auto;
}

/* Product CSS End */

/* Blog CSS Start */

.blog-section {
  position: relative;
}

.blog-section::before {
  content: "";
  background-image: url(../images/princess-bg.png);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  mix-blend-mode: soft-light;
}

.blog-box img {
  width: 100%;
  border-radius: 9px;
}

.blog-wrap {
  background: #fff;
  margin: -100px auto 0;
  z-index: 1;
  position: relative;
  width: 90%;
  padding: 40px;
  text-align: center;
}

.blog-wrap h6 {
  color: #14124b;
  font-size: 20px;
  margin-bottom: 20px;
}

.blog-wrap h2 {
  font-size: 60px;
  color: #14124b;
  text-shadow: 0 0 #14124b;
  margin-bottom: 15px;
}

.blog-wrap p {
  margin: 0;
}

.blog-shadow {
  position: absolute;
  z-index: 0;
  top: 19%;
  left: -100px;
  width: 550px;
  height: 600px;
  pointer-events: none;
}

.blog-box {
  position: relative;
}

.blog-shadow img {
  height: 100%;
  border-radius: 0;
}

/* Blog CSS End */

/* About Page CSS Start */

.about-main-section {
    padding-bottom: 30px;
}

.about-main-section .row:first-child {
  margin-bottom: 40px;
}

.about-main-right.product-head {
    text-align: left;
}

.about-main-right.product-head h2 {
  line-height: 80px;
}

.about-main-right.product-head h2:last-child {
  line-height: 115px;
  margin: 0 0 0 130px;
}

.about-main-right.product-head h2:first-child {
  margin: 0 0 0 111px;
}

.about-main-txt p {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.about-book img {
    width: 100%;
}

/* About Page CSS End */

/* Our Purpose Page CSS Start */

section.product-section.blog-section.star-section {
  overflow: hidden;
}

section.product-section.blog-section.star-section .star-shadow img {
  width: 100%;
  filter: brightness(0) saturate(100%) invert(84%) sepia(20%) saturate(616%)
    hue-rotate(150deg) brightness(82%) contrast(85%);
  opacity: 1;
}

section.product-section.blog-section.star-section .star-shadow {
  left: 0;
  top: -20%;
  width: 40%;
}

section.product-section.blog-section.star-section .star-right p {
  width: 100%;
  margin: 0 0 20px 0;
}

.about-other-wrap {
  margin: 20px 0 0 0;
}

.about-other-wrap p {
  color: #fff;
}

/* Our Purpose Page CSS End */

@media only screen and (max-width: 1400px) {
}
@media only screen and (max-width: 1200px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 991px) {
  .offcanvas-btn {
    font-size: 30px;
    color: #fff;
    background-color: var(--theme-color);
    padding: 12px;
    line-height: 24px;
    border-radius: 6px;
  }
  .offcanvas-btn:hover,
  .offcanvas-btn:active {
    background: var(--theme-color) !important;
    border-color: var(--theme-color) !important;
    color: #fff !important;
  }
  .offcanvas,
  .offcanvas-btn {
    display: block !important;
  }
  .offcanvas {
    background-color: var(--theme-color);
  }
  .offcanvas-body {
    padding-top: 50px;
  }
  .navigation {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
}
@media only screen and (max-width: 576px) {
}
@media only screen and (max-width: 450px) {
}
@media only screen and (max-width: 370px) {
}
.product-area .nav-tabs {
	text-align: center;
	display: inline-block;
	width: 100%;
	border:none;
}
.product-area .nav-tabs .nav-item {
	margin-bottom: -1px;
	display: inline-block;
}
.product-area .nav-tabs li a {
	color: #333;
	text-transform: uppercase;
	display: inline-block;
	position: relative;
	margin-right: 5px;
	font-weight: 500;
	background: #fff;
	color: #333;
	padding: 3px 14px;
	border-radius: 3px;
	font-size: 13px;
}
.product-area .nav-tabs li:last-child a{
	border-color:transparent;
} 
.product-area .nav-tabs li a i{
	margin-right:10px;
}
.product-area .nav-tabs li a.active,
.product-area .nav-tabs li:hover a{
	background:var(--primary-color);
	color:#fff;
	border-color: #fff;
}

/* Sinlge Product */
.single-product{
	margin-top:50px;
	border: 1px solid #ebebeb;
	padding: 15px;
	transition: all 0.5s;
}
.single-product .product-img {
  position: relative;
  overflow: hidden;
  cursor:pointer;
}
.single-product .product-img a {
    display: block;
    position: relative;
    height: 200px;
    text-align: center;
}
.single-product .product-img a img {
  	max-height: 100%;
    max-width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.single-product:hover {
	box-shadow: 1px 1px 10px #cccccc;
}
.single-product .product-img a img.hover-img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18), -webkit-transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}


.single-product .product-img a span.price-dec {
	background-color: #f6931d;
	display: inline-block;
	font-size: 11px;
	color: #fff;
	right: 0px;
	top: 0px;
	padding: 1px 16px;
	font-weight: 700;
	border-radius: 0;
	text-align: center;
	position: absolute;
	text-transform: uppercase;
	border-radius: 30px;
	height: 26px;
	line-height: 25px;
}
.single-product .product-img a span.new {
	background-color: #28a745;
	display: inline-block;
	font-size: 11px;
	color: #fff;
	right: 0px;
	top: 0px;
	padding: 1px 16px;
	font-weight: 700;
	border-radius: 0;
	text-align: center;
	position: absolute;
	text-transform: uppercase;
	border-radius: 30px;
	height: 26px;
	line-height: 24px;
}
.single-product .product-img a span.featured {
	background-color: #007bff;
	display: inline-block;
	font-size: 11px;
	color: #fff;
	right: 0px;
	top: 0px;
	padding: 1px 16px;
	font-weight: 700;
	border-radius: 0;
	text-align: center;
	position: absolute;
	text-transform: uppercase;
	border-radius: 30px;
	height: 26px;
	line-height: 24px;
}
.single-product .product-img a span.on_sale {
	background-color: #ffc107;
	display: inline-block;
	font-size: 11px;
	color: #fff;
	right: 0px;
	top: 0px;
	padding: 1px 16px;
	font-weight: 700;
	border-radius: 0;
	text-align: center;
	position: absolute;
	text-transform: uppercase;
	border-radius: 30px;
	height: 26px;
	line-height: 24px;
}
.single-product .product-img a span.exclusive {
	background-color: #dc3545;
	display: inline-block;
	font-size: 11px;
	color: #fff;
	right: 0px;
	top: 0px;
	padding: 1px 16px;
	font-weight: 700;
	border-radius: 0;
	text-align: center;
	position: absolute;
	text-transform: uppercase;
	border-radius: 30px;
	height: 26px;
	line-height: 24px;
}
.single-product .product-img a span.out-of-stock {
	background-color: #ed1b24;
	display: inline-block;
	font-size: 11px;
	color: #fff;
	right: 0px;
	top: 0px;
	padding: 1px 16px;
	font-weight: 700;
	border-radius: 0;
	text-align: center;
	position: absolute;
	text-transform: uppercase;
	border-radius: 30px;
	height: 26px;
	line-height: 24px;
}
.single-product .product-img .product-action {
	display: inline-block;
	position: absolute;
	right: 2px;
	bottom: 0;
	z-index: 99;
	border-radius: 3px;
}
.single-product .product-img .product-action a {
	background-color: transparent;
	color: #333;
	display: block;
	font-size: 16px;
	display: inline-block;
	margin-right: 15px;
	text-align: right;
	height: 52px;
	position: relative;
	top: 2px;
}
.single-product .product-img .product-action a:last-child{
	margin-right:0;
	border:none;
}
.single-product .product-img .product-action a i {
  line-height: 40px;
}
.single-product .product-img .product-action a span {
	visibility: hidden;
	position: absolute;
	background: var(--primary-color) !important;
	color: #fff !important;
	text-align: center;
	padding: 5px 12px;
	z-index: 3;
	opacity: 0;
	-webkit-transition: opacity .6s, margin .3s;
	-o-transition: opacity .6s, margin .3s;
	transition: opacity .6s, margin .3s;
	font-size: 11px;
	right: 0;
	line-height: 14px;
	top: -12px;
	margin-top: -5px;
	margin-right: 0;
	display: inline-block;
	width: 120px;
	border-radius:15px 0 0 15px;
}
.single-product .product-img .button-head .product-action a span::after {
	position: absolute;
	content: "";
	right: 0;
	bottom: -12px;
	border: 6px solid var(--primary-color);
	border-left:0px solid transparent;
	border-right:6px solid transparent;
	border-bottom:6px solid transparent;
}
.single-product .product-img .product-action a:hover {
	color:var(--primary-color);
}
.single-product .product-img .product-action a:hover span {
  visibility: visible;
  opacity: 1;
  color:#333;
  background:#fff;
  margin-top: -12px;
}

.single-product .product-img .product-action.pro-action-width-dec a {
  width: 30px;
  height: 30px;
  font-size: 14px;
}
.single-product .product-img .product-action.pro-action-width-dec a i {
  line-height: 30px;
}
.single-product .product-img .product-action.pro-action-width-dec-2 {
  bottom: 45px;
}
.single-product .product-img .product-action-2 {
	position: absolute;
	left: 0;
	bottom: 0;
	text-align: left;
	z-index: 99;
	-webkit-transition: all 250ms ease-out;
	-o-transition: all 250ms ease-out;
	transition: all 250ms ease-out;
}
.single-product .product-img .product-action-2 a {
	display: block;
	background-color: transparent;
	color: #333;
	text-align: left;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1;
	display: inline-block;
	height: auto;
}
.single-product .product-img .product-action-2 a:hover {
  color:var(--primary-color);
}
.single-product .button-head {
	background: #fff;
	display: inline-block;
	height: 40px;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: -50px;
	z-index: 9;
	height: 50px;
	line-height: 50px;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}

.single-product:hover .button-head{
	bottom:0;
}
.single-product .product-img .shop-list-quickview {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  z-index: 99;
  margin-top: 20px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .35s ease 0s;
  -o-transition: all .35s ease 0s;
  transition: all .35s ease 0s;
}
.single-product .product-img .shop-list-quickview a {
  color: #000;
  background-color: #fff;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  font-size: 18px;
}
.single-product .product-img .shop-list-quickview a:hover {
  background-color: #222;
  color: #fff;
}
.single-product .product-img .shop-list-quickview a i {
  line-height: 50px;
}
.single-product .product-content{
	margin-top: 20px;
    display: -webkit-box;
    display: flex;
    height: 90px;
    padding-bottom: 9px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: end;
    justify-content: flex-end;
    z-index: 0;
}
.single-product .product-img:hover.default-overlay::before {
  background-color: rgba(38, 38, 38, 0.2);
  z-index: 9;
  -webkit-transition: all 250ms ease-out;
  -o-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
  pointer-events: none;
  opacity: 1;
}
.single-product .product-img:hover.default-overlay.metro-overlay::before {
  background-color: rgba(38, 38, 38, 0.4);
  z-index: 9;
  -webkit-transition: all 250ms ease-out;
  -o-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
  pointer-events: none;
  opacity: 1;
}
.single-product .product-img:hover img.hover-img {
  opacity: 1;
}
.single-product .product-content h3 {
   line-height: 22px;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
   margin: 0;
}
.single-product .product-content h3 a {
	font-size: 14px;
	font-weight: 500;
	margin: 0;
}
.single-product .product-content h3 a:hover{
	color:var(--primary-color);
}
.single-product .product-content .product-price {
  margin: 6px 0 0 0;
}
.single-product .product-content .product-price span {
	font-size: 15px;
	font-weight: 500;
}
.single-product .product-content .product-price span.old {
  text-decoration: line-through;
  opacity: .6;
  margin-right: 2px;
}

.single-product .product-content .product-rating .reviews li{
	float: left;
}

.single-product .product-content .product-rating .reviews li > i{
	color:var(--primary-color);
}

.shop.single{
	padding:70px 0 100px;
}
.shop.single .product-gallery {
	margin-top: 30px;
}
.shop.single .flexslider-thumbnails {
	position: relative;
	border: 1px solid #ece9e9;
}
.shop.single .product-gallery .slides li{
	position:relative;
}
.shop.single .product-gallery .slides li img{
	width:100%;
}
.shop.single .flex-control-nav{
	margin-top:15px;
}
.shop.single .flex-control-thumbs li {
	width: 20%;
	position: relative;
	margin: 0 8px 10px -3px;
}
.shop.single .flex-control-thumbs li img {
	border: none;
	padding: 0;
	border:1px solid transparent;
}
.shop.single .flex-control-thumbs li img.flex-active{
	border-color:var(--primary-color);
}
.shop.single .flex-direction-nav{
	display:none;
}
.shop.single .product-des{
	margin-top: 50px;
}
.shop.single .product-des .short h4 {
	font-size: 22px;
	font-weight: 600;
	margin-top: -5px;
	line-height: 28px;
}
.shop.single .product-des .short .description {
	font-size: 14px;
	color: #fff;
	margin-top: 20px;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}
.shop.single .product-des .short h4 {
    font-family: 'motherlane';
    color: #fff;
    font-size: 62px;
}
.shop.single .product-gallery .flexslider-thumbnails .slides li img {
    height: 500px;
    object-fit: contain;
}

.shop.single .product-gallery .flexslider-thumbnails .slides li {
    list-style: none;
}

.shop.single .product-gallery .flexslider-thumbnails {
    border: 0;
}

.shop.single .product-des .short .rating-main {
    margin: 30px 0;
}

.shop.single .product-des .short .rating-main .rating {
    width: 100%;
    margin: 0 0 10px;
}
.shop.single .product-des .total-review{
	font-size:14px;
	font-weight:500;
	margin-left: 0;
	display:inline-block;
	color: #fff;
}
.shop.single .product-des .total-review:hover{
	color: #fff;
}
.shop.single .product-des  .rating{
	margin-top:20px;
	display:inline-block;
}
.shop.single .product-des .rating li{
	display:inline-block;
}
.shop.single .product-des .rating li i{
	color: #fff;
}
.shop.single .product-des .rating li.dark i{
	color:#555;
}
.shop.single .product-des .price {
	font-size: 20px;
	color: #333;
	font-weight: 600;
	margin-top: 15px;
}
.shop.single .product-des .price s{
	color: #fff;
}
.shop.single .product-des .price span{
	display:inline-block;
	margin-right:15px;
	color: #fff;
}
.shop.single .product-des .product-buy {
	margin-top: 40px;
}
.shop.single .product-des .product-buy{}
.shop.single .product-des .color {
	display: inline-block;
	margin-right: 50px;
}
.shop.single .product-des .color h4 {
	font-size: 18px;
	font-weight: 600;
}
.shop.single .product-des .color h4 span {
	display: block;
	font-size: 14px;
	font-weight: 500;
	margin-top: 4px;
}
.shop.single .product-des .color ul{
	margin-top: 10px;
}
.shop.single .product-des .color ul li{
	display:inline-block;
	margin-right:5px;
}
.shop.single .product-des .color ul li:last-child{
	margin-right:0;
}
.shop.single .product-des .color ul li a{
	height:30px;
	width:30px;
	line-height:30px;
	text-align:center;
	display:block;
	background:#333;
}
.shop.single .product-des .color ul li a i{
	font-size:11px;
	color:#fff;
	opacity:0;
	visibility:hidden;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.shop.single .product-des .color ul li a:hover i{
	opacity:1;
	visibility:visible;
}
.shop.single .product-des .color ul li .one{
	background:#3498db;
}
.shop.single .product-des .color ul li .two{
	background:var(--primary-color);
}
.shop.single .product-des .color ul li .three{
	background:#8e44ad;
}
.shop.single .product-des .color ul li .four{
	background:#2ecc71;
}
/* Size */
.shop.single .product-des .size{
	display:inline-block;
}
.shop.single .product-des .size h4{
	display: block;
	font-size: 14px;
	font-weight: 500;
	margin-top: 0px;
}
.shop.single .product-des .size ul{
	display:inline-block;
	margin-top: 10px;
}
.shop.single .product-des .size ul li {
	display: inline-block;
	margin-right: 5px;
}
.shop.single .product-des .size ul li:last-child{
	margin-right:0;
}
.shop.single .product-des .size ul li a {
	display: block;
	height: 30px;
	width: 36px;
	border: 1px solid #eee;
	text-align: center;
	line-height: 30px;
	font-size: 14px;
}
.shop.single .product-des .size ul li a:hover{
	color:var(--primary-color);
}

.shop.single .product-des .product_options{
	float: left;
    margin-right: 15px;
}

.shop.single .product-des .product_options h6{
	display: block;
    font-size: 13px;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 5px;
}

.shop.single .product-des .product_options select{
	width: 100%;
}

.shop.single .quantity {
	display: inline-block;
	margin-right: 10px;
}
.shop.single .quantity h6 {
	display: inline-block;
	margin-right: 10px;
	font-size: 15px;
	font-weight: 500;
	color: #fff;
}
.shop.single .quantity .input-group {
	width: 151px;
	display: inline-block;
}
.shop.single .quantity .button {
	display: inline-block;
	position: absolute;
	top: 0;
	display:inline-block;
}
.shop.single .quantity .button.minus{
	left:0;
	border-radius:0;
	overflow:hidden;
}
.shop.single .quantity .button.plus {
	right: 0;
	border-radius:0;
	overflow:hidden;
}
.shop.single .quantity .button .btn {
	padding: 0;
	width: 35px;
	height: 45px;
	line-height: 45px;
	border-radius: 0px;
	background: transparent;
	color: #282828;
	font-size: 12px;
	border: none;
}
.shop.single .quantity .button .btn:hover{
	color:var(--primary-color);
}
.shop.single .quantity .input-number {
	border: 1px solid #eceded;
	width: 100%;
	text-align: center;
	height: 45px;
	border-radius: 0px;
	overflow: hidden;
	padding: 0px 38px;
}
.shop.single .add-to-cart {
	display:inline-block;
}
.shop.single .add-to-cart .btn {
	height: 45px;
	width: auto;
	padding: 0 30px;
	line-height: 44px;
	text-align: center;
	text-transform: capitalize;
	margin-right: 5px;
	border-radius: 0px;
	background: #333;
	color: #fff;
	display: inline-flex;
	font-weight: 500;
	align-items: center;
	gap: 12px;
}
.shop.single .add-to-cart a.btn.add_to_cart.theme-btn {
    background: var(--theme-color-2);
}

.shop.single .add-to-cart a.btn.min.btn-wishlist {
    background: var(--theme-color-2);
}
.shop.single .add-to-cart .btn:hover{
	color:#fff;
	background:var(--primary-color);
}
.shop.single .add-to-cart .btn.min {
	padding: 0 20px;
	font-size: 17px;
	position: relative;
	top: 1px;
	line-height: 45px;
}
.shop.single .cat{
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	margin-top:30px;
	display: flex;
	align-items: center;
}
.shop.single .cat a{
	display:inline-block;
	margin-left:10px;
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	text-decoration: underline;
}
.shop.single .cat a:hover{
	color:var(--primary-color);
}
.shop.single .availability{
	color:#333;
	font-size:14px;
	margin-top:6px;
}
/* Product Tab */
.shop.single .product-info {
	margin-top: 50px;
}
.shop.single .nav-tabs {
	border:none;
}
.shop.single .nav-tabs li {
	margin-right: 10px;
}
.shop.single .nav-tabs li:last-child{
	margin-right:0;
}
.shop.single .nav-tabs li a {
	border: 0px solid;
	border-radius: 0px;
	background: #fff;
	color: #333;
	padding: 10px 30px;
	font-weight: 500;
	font-size: 14px;
	border: 1px solid #eee;
}
.shop.single .nav-tabs li a i{
	margin-right:10px;
}
.shop.single .nav-tabs li a.active,
.shop.single .nav-tabs li:hover a{
	background:var(--primary-color);
	color:#fff;
	border-color: #fff;
}
.shopping-cart table.table.shopping-summery tr.main-hading th {
    border: 1px solid #fff;
    background: var(--theme-color);
    color: #fff;
    text-align: center;
}

.shopping-cart table.table.shopping-summery tbody td.action a i {
    color: #fff;
}

.shopping-cart table.table.shopping-summery tbody td {
    background: var(--theme-color);
    border: 1px solid #fff;
    color: #fff;
    text-align: center;
    place-content: center;
}
.shopping-cart table.table.shopping-summery tbody td.qty .input-group {
    justify-content: center;
    gap: 11px;
    align-items: center;
}

.shopping-cart table.table.shopping-summery tbody td.qty .input-group input {
    border: 0;
    padding: 6px;
    text-align: center;
}

.shopping-cart table.table.shopping-summery tbody td.qty .input-group button.btn.btn-primary.btn-number {
    background: #fff;
    border: 0;
}

.shopping-cart table.table.shopping-summery tbody td.qty .input-group button.btn.btn-primary.btn-number i {
    color: var(--theme-color);
}

.shopping-cart table.table.shopping-summery tbody td.image img {
    height: 70px;
}

.shopping-cart table.table.shopping-summery tbody td p {
    margin: 0;
}
.shopping-cart table.table.shopping-summery tbody td.product-des .product-name a {
    color: #fff;
}
.shipping_methods h4 {
    color: #fff;
    margin-bottom: 10px;
}
section.shop.checkout.section.blog-section.star-section {
    padding: 100px 0;
}
.shipping_methods .custom-control.custom-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.checkout-form h2 {
    color: #fff;
    font-size: 60px;
}

.single-widget h2 {
    font-size: 60px;
    color: #fff;
}

form#checkout-form label {
    display: block;
    color: #fff;
    margin-bottom: 5px;
}

form#checkout-form input, form#checkout-form select {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
}

form#checkout-form .form-group.create-account label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0 0;
}

form#checkout-form .form-group.create-account label input {
    width: auto;
    margin: 0;
}

.single-widget ul {
    list-style: none;
    color: #fff;
}

.checkout-form p {
    color: #fff;
}

.checkout-form p a {
    color: #fff;
    filter: drop-shadow(2px 4px 6px #000);
}

.single-widget div#cart-contents ul li {
    color: #fff;
}

.single-widget div#cart-contents ul li span {
    font-weight: bold;
    padding-left: 5px;
}

.single-widget {
    margin-bottom: 15px;
}

.single-widget:first-child ul {
    background: var(--theme-color-2);
    padding: 11px;
}

.single-widget:first-child ul li {
    margin-bottom: 7px;
}

.single-widget div#cart-contents ul li:last-child {
    margin: 0;
}

form#apply_coupon input {
    padding: 10px;
}
.total-amount .right ul li {
    color: #fff;
}

.total-amount .right ul {
    background: var(--theme-color-2);
    padding: 11px;
    list-style: none;
}

.total-amount .right ul li span {
    font-weight: bold;
    padding-left: 10px;
}
.total-amount .right .button5 {
    margin: 20px 0 0;
}

.total-amount .right {
    margin: 20px 0 0;
}
.shop.single .single-des {
	margin-top:35px;
}
.shop.single .single-des h4{
	margin-bottom:15px;
	font-weight:500;
	font-size:22px;
	
}
.shop.single .single-des ul{}
.shop.single .single-des ul li {
	color: #555;
	display: block;
	margin-bottom: 10px;
	position:relative;
	padding-left:20px;
}
.shop.single .single-des ul li::before {
	position: absolute;
	content: "";
	left: 0;
	top: 9px;
	height: 7px;
	width: 7px;
	background: var(--primary-color);
	border-radius: 50%;
}
.shop.single .single-des p{
	margin-top: 1rem;
	color: #fff;
}

.shop.single .item-info {
	width: 100%;
}
.shop.single .item-info tbody{}
.shop.single .item-info tbody tr{}
.shop.single .item-info tbody td {
	border: 1px solid #e6e6e6;
	padding: 10px;
}
.shop.single .item-info tbody strong{}
.shop.single .ratting-main{}
.shop.single .avg-ratting {
	margin-bottom: 20px;
}
.shop.single .avg-ratting h4 {
	font-size: 18px;
	margin: 0;
}
.shop.single .avg-ratting h4 span{
	font-size:14px;
}
.shop.single .single-rating {
	margin-bottom: 20px;
}
.shop.single .single-rating:last-child{
	margin:0;
	border:none;
	padding:0;
}
.shop.single .rating-author {
	float: left;
	margin-right: 10px;
	padding: 20px;
	padding-right: 10px;
}
.shop.single .rating-author img {
	width: 60px;
	border-radius: 100%;
	height: 60px;
}
.shop.single .rating-des {
	padding-left: 72px;
	background: #f9f8f8;
	padding: 17px 20px 17px 107px;
}
.shop.single .rating-des .ratings {
	margin: 0;
}
.shop.single .rating-des h6 {
	font-size: 14px;
	font-weight: 600;
	line-height: 18px;
}
.shop.single .ratting-main .single-rating ul{}
.shop.single .ratting-main .single-rating ul li{
	display:inline-block;
}
.shop.single .ratting-main .single-rating ul li i{
	color:var(--primary-color);
	font-size:14px;
}
.shop.single .review-inner label {
	display: inline-block;
	margin: 0 5px 0 0;
}
.shop.single .review-inner .ratings {
	overflow: visible;
	display: inline-block;
	margin: 0;
}
.shop.single .review-inner .ratings ul{
	display:inline-block;
}
.shop.single .ratting-main .single-rating ul {
	display: inline-block;
	margin-right: 5px;
}
.shop.single .ratings .rate-count {
	display: inline-block;
	color: #666;
	font-size: 13px;
}
.shop.single .comment-review {
	margin-bottom: 30px;
}
.shop.single .comment-review .add-review{
	margin-top:30px;
}
.shop.single .comment-review .add-review h5{
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 7px;
	color: #fff;
}
.shop.single .comment-review .add-review p{
	color: #fff;
}

.shop.single .comment-review .add-review p a {
    color: #fff;
    font-weight: bold;
    filter: drop-shadow(2px 4px 6px black);
}
.shop.single .comment-review h4 {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 7px;
	margin-top:20px;
}
.shop.single .comment-review .review-inner{
	margin-bottom:15px;
	display:block;
}
.shop.single .comment-review .rating li {
	display:inline-block;
}
.shop.single .comment-review .rating li i{
	color:var(--primary-color);
	font-size: 14px;
}
.shop.single .rating-des p{
	margin-top:5px;
}
.shop.single .avg-ratting h4 {
	font-size: 20px;
	color: #333;
}
.shop.single .avg-ratting{
    color: #fff;
}
.shop.single .form .form-group input {
	width: 100%;
	height: 45px;
	padding: 10px 20px;
	background: #fff;
	border: 1px solid #ddd;
	resize: none;
	border-radius: 0;
	color: #333;
}
.shop.single .form .form-group button {
	border: 1px solid #fff;
	padding: 12px 50px;
	color: #fff;
}
.shop.single .form .form-group textarea {
	width: 100%;
	height:200px;
	border:1px solid #ddd;
	resize:none;
	border-radius:0;
	color:#333;
	padding: 10px 15px;
}
.shop.single .form .form-group label {
	color: #fff;
	position: relative;
	margin-bottom: 5px;
}
.shop.single .form .form-group label span {
	color: #ff2c18;
	display: inline-block;
	position: absolute;
	right: -12px;
	top: 4px;
	font-size: 16px;
}
.shop.single .review-panel{
	margin-top:35px;
}

/* Comments */
.shop .comments{
	margin-top:40px;
}
.shop .comments .comment-title {
	position: relative;
	font-size: 48px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 30px;
	display: block;
	color: #fff;
}
.shop .comments .comment-title:before{
	position: absolute;
	content: unset;
	left: 0;
	bottom: -1px;
	height: 100%;
	width: 3px;
	background:#ee5253;
}

.shop .comments .single-comment {
	position: relative;
	margin-bottom: 15px;
	border-radius: 5px;
	padding-left: 95px;
}
.shop .comments .single-comment.left{
	margin-left:110px;
}
.shop .comments .single-comment img {
	height: 70px;
	width: 70px;
	border-radius: 100%;
	position: absolute;
	left: 0;
	border: 1px solid #eaeaea;
}

.shop .single-comment .content h4 {
	color: #333;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 10px;
	display: inline-block;
	margin-bottom: 12px;
	text-transform: capitalize;
}
.shop .single-comment .content h4 span {
	display: inline-block;
	font-size: 13px;
	color: #8D8D8D;
	margin: 0;
	font-weight: 400;
	text-transform: capitalize;
	display: block;
	margin-top: 5px;
}
.shop .single-comment .content p {
	color: #666;
	font-weight: 400;
	display: block;
	margin: 0;
	margin-bottom: 5px;
	line-height: 22px;
}
.shop .single-comment .content .btn {
	display: inline-block;
	color: #666;
	font-weight: 400;
	color: #6a6a6a;
	border-radius: 4px;
	text-transform: capitalize;
	font-size: 14px;
	background: transparent;
	padding: 0;
	margin-bottom: 15px;
}

.shop .single-comment .content a i{
	display:inline-block;
	margin-right:5px;
}
.shop .single-comment .content a:hover{
	color:#ee5253;
}
/* Comment Form */
.shop .reply form {
	padding: 40px;
	border: 1px solid #eee;
}
.shop .reply .reply-title {
	position: relative;
	font-size: 48px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 30px;
	display: block;
	color: #fff;
}
.shop .reply .reply-title:before{
	position: absolute;
	content: unset;
	left: 0;
	bottom: -1px;
	height: 100%;
	width: 3px;
	background:#ee5253;
}
.shop .reply .form-group {
	margin-bottom: 20px;
}
.shop .reply .form-group input {
	width: 100%;
	height: 45px;
	line-height: 50px;
	padding: 0 20px;
	border-radius: 0px;
	color: #333 !important;
	border: none;
	border: 1px solid #eee;
}
.shop .reply .form-group textarea {
	width: 100%;
	height: 200px;
	padding: 10px 15px;
	border-radius: 0px;
	color: #333 !important;
	border: none;
	border: 1px solid #eee;
}
.shop .reply .form-group label {
	color: #333;
	position: relative;
}
.shop .reply .form-group label span {
	color:#ff2c18;
	display: inline-block;
	position: absolute;
	right: -12px;
	top: 4px;
	font-size: 16px;
}
.shop .reply .button {
	text-align: left;
	margin-bottom:0px;
}
div#comment-list p {
    color: #fff;
}

.reply-head p {
    color: #fff;
}

.reply-head p a {font-weight: bold;color: #fff;filter: drop-shadow(2px 4px 6px black);}
.shop .reply .button .btn {
	height: 50px;
	border: none;
}

.btn:focus, .btn:active:focus, .btn.active:focus{
    outline:none;
    box-shadow:none;
}

.reply-form .btn-reply{
    padding: 10px 30px;
    color: #fff;
    background: #333;
    border: none;
    transition: all 0.5s;
}

.reply-form .btn-reply:hover{
	background: var(--primary-color);
}

.mobile-ham {
    display: none !important;
}



/*RESPONSIVE__CSS__STARTS___*/

@media only screen and (max-width: 576px) {

#popup1 .popup {
    top: 50% !important;
    left: 35% !important;
}

.about-left img {
    width: 100%;
    margin-top: 90px;
}

.banner-wrap h1 {
    font-size: 180px;
    margin-left: -150px;
    margin-bottom: 0;
    margin-top: 50px;
}

.unicorn {
    top: 43%;
    right: 0;
}

.banner-wrap h1::before {
    left: 15%;
    top: 75%;
    width: 60%;
}

.unicorn img {
    width: 30% !important;
}

.unicorn::before {
    right: 5px;
}

section.banner-section {
    position: relative;
    padding: 40px 0 0;
}

section.about-section {
    padding: 0 30px 0;
}

.about-right p {
    font-size: 18px;
    margin-bottom: 20px;
}

.about-section2 .about-right h2 {
    font-size: 130px;
    line-height: 115px;
    margin: 40px 0 40px 0;
}

.about-section2 {
    padding: 0 0 75px !important;
}

.shop-hand img {
    height: 330px;
}

.shop-right::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: #c9c1d894;
    filter: blur(60px);
    top: 70px;
    left: 0%;
    z-index: -1;
}

p.shop-p {
    margin-left: 0px;
}

.star-right h2 {
    font-size: 110px;
    line-height: 110px;
    margin-bottom: -20px;
}

.star-right h2 span {
    font-size: 100px;
    line-height: 120px;
    position: relative;
    margin-left: 0px;
}

.star-two.row .star-right {
    margin: 70px 0 0 -10px;
}

.seller-box a img {
    width: 100%;
    display: block;
    margin: 0 auto 30px;
    max-width: 200px;
}

.gallery-txt h2 {
    font-size: 145px;
    margin-bottom: -15px;
}

.news-txt h2 {
    color: #fff;
    font-size: 88px;
    filter: drop-shadow(0px 1px 20px white);
    margin-bottom: 130px;
    position: relative;
}

section.about-section::before {
    left: 0%;
}

.seller-box {
    margin: 0 0 30px;
}

/*HAMBURGER___CSS___MOBILE___*/

.mobile-ham {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 15px 0;
}

.mobile-ham {
    display: block !important;
}

.ham-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*HAMBURGER___CSS___MOBILE___*/

.tab-pane .d-flex {
    display: flex !important;
    flex-wrap: wrap;
}

.about-book {
    padding: 0px 0 0;
}

.inner-banner-section .banner-wrap h1 {
    font-size: 135px;
    /*line-height: 2.5;*/
}

.banner-wrap {
    top: 30%;
}

.about-main-right.product-head h2 {
    line-height: 109px;
}

.inner-banner-section .banner-wrap h1:before {
    top: 63%;
    width: 60%;
    background-size: contain;
    left: 41px;
}

.banner-wrap h1 {
   font-size: 100px !important;
   margin: 0px; 
}

.product-head h2 {
    font-size: 120px;
}

.about-left-shadow2 {
    position: absolute;
    right: 0% !important;
}

/**/

/* arrow ko white aur inline karna */
.sidebar .dropdown-toggle {
  display: inline-block;
  margin-left: 5px;
  cursor: pointer;
  color: #fff; /* white arrow */
}

.sidebar .dropdown-toggle i {
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.sidebar .dropdown-toggle.active i {
  transform: rotate(180deg);
}

/* dropdown list hide by default */
.sidebar ul {
  display: none;
  padding-left: 20px;
  margin: 0;
}

.sidebar ul.active {
  display: block;
}


/**/



}

@media only screen and (max-width: 450px){

.about-right {
    margin-top: 10px;
    margin-right: 0px;
}

.logo {
    display: none !important;
}

.banner-wrap h4 {
    font-size: 15px;
}

.about-left img {
    width: 100%;
    margin-top: 5px;
}

#popup1 .popup {
    top: 50% !important;
    left: 50% !important;
}

#popup1 .popup {
    width: 400px;
}

.unicorn img {
    width: 26% !important;
}

.banner-wrap h1::before {
    left: 13%;
    top: 69%;
    width: 60%;
}

.shopping-cart table.table.shopping-summery tr.main-hading th {
    font-size: 12px !important;
}

.ham-two ul.active {
    padding: 0 0 0;
}

.ham-two ul.active li {
    list-style: none;
}

.about-section2 .about-right h2 {
    font-size: 90px;
    line-height: 80px;
    margin: 40px 0 0px 0;
}

.shop-left {
    width: 70%;
    margin-left: auto;
    padding: 0 0 30px;
}

.tab-pane .d-flex {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
}

.shop-slider-img {
    padding: 0 0 75px !important;
}

.shop.single .product-des .short h4 {
    line-height: 70px;
    font-size: 55px;
}

.product-buy {
    display: flex;
    flex-direction: column;
    justify-self: anchor-center;
}

.add-to-cart {
    padding: 20px 0 0;
}

ul#myTab {
    display: flex;
    justify-content: center;
}

.shop.single .nav-tabs li:last-child {
    margin-right: 0;
    padding: 20px 0 0;
}

.shop.single {
    padding: 0px 0 0px;
}

.shop.single .product-des {
    margin-top: 0px;
}

.star-right h2 {
    font-size: 100px;
    line-height: 95px;
    margin-bottom: -5px;
}

.gallery-txt h2 {
    font-size: 100px;
    margin-bottom: -15px;
}

.news-txt h2 {
    font-size: 65px;
}

.about-main-right.product-head h2 {
    line-height: 85px;
}

section {
    overflow: hidden !important;
}

.ct-paginate nav .hidden.sm\:flex-1.sm\:flex.sm\:items-center.sm\:justify-between div .relative.z-0.inline-flex.shadow-sm.rounded-md {
    display: flex;
    width: 80% !important;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 40px;
}

.banner-wrap p {
  margin-top: 15px;
  color: #fff;
  font-size: 20px !important;
}

.inner-banner-section .banner-wrap h1:before {
    top: 100%;
    width: 60%;
    background-size: contain;
    left: 41px;
}

.inner-banner-section .banner-wrap h1 {
    display: contents;
    font-size: 75px !important;
}

.product-head h2 {
    font-size: 101px;
}

.inner-banner-section .banner-wrap h1 {
    font-size: 150px;
    line-height: 90px;
    padding: 0px 0 0;
}

.foot-copyright p {
    font-size: 12px;
}

.shop.single .cat {
    flex-wrap: wrap;
    justify-content: space-around;
}

.star-two.row .star-right {
    margin: 35px 0 0 -10px;
}

.gallery-images {
    width: 100%;
}

.about-main-right.product-head {
    text-align: center;
}

.about-main-right.product-head h2:first-child {
    margin: 0 0 0 0px;
}

.about-main-right.product-head h2:last-child {
    margin: 0 0 0 0px;
}

.ham-one img {
    width: 70%;
}

section.about-section {
    padding: 55px 30px 0 !important;
}

.star-left {
    position: relative;
    padding: 40px 0 0;
}

section.banner-section {
    position: relative;
    padding: 10px 0 70px;
}

.star-right p {
    width: 100%;
}

.star-right p {
    text-align: center;
}

.star-right {
    margin: 50px 0 0 0;
    text-align: center;
}

.star-right h2.star-h2 {
    margin-left: 0px;
}

/*.shop-slider-img img {*/
/*    width: 100%;*/
/*}*/

.star-two.row .star-right h2::before {
    bottom: -25px;
}

section.best-seller-section {
    padding: 50px 0 0;
    position: relative;
}

.gallery-txt {
    padding: 40px 0 0;
}

.about-left-shadow {
    position: absolute;
    left: -65%;
}

.about-left-shadow2 {
    position: absolute;
    right: -55% !important;
}

.news-img.autoMoveY {
    position: relative;
    left: 8%;
}

.news-txt h2 {
    color: #fff;
    font-size: 65px;
    filter: drop-shadow(0px 1px 20px white);
    margin-bottom: -5px;
    position: relative;
}

/*.foot-wrap {*/
/*    margin: 190px 0 0;*/
/*}*/

.col1 {
    text-align: center;
    padding: 0 0 36px;
}

.news-txt form {
    position: relative;
    right: 20%;
}

.news-txt {
    width: 90%;
    text-align: center;
}

.gallery-txt p {
    padding: 15px 0 0;
}

canvas.banner-canvas {
    position: absolute;
    left: 0;
    top: -107px;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

    .product-section {
        padding: 50px 0;
        position: relative;
    }

.about-main-txt p {
    padding: 0 0 20px;
}

.shop-left h2::before {
    bottom: -30px;
}

.shop-slider .slick-prev {
    left: 31%;
    top: 93%;
    background: #fff;
    width: 60px;
    height: 60px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
    transition: 0.2s all;
}

.shop-slider .slick-next {
    left: 48%;
    top: 93%;
    background: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
}

.product-box-img img {
    width: 50%;
}

.newsletter-section {
    position: relative;
    margin: 0 0 200px !important;
}

section.product-section.blog-section.star-section .star-shadow {
     left: 0; 
     top: 0%; 
    width: 40%;
}

.section.product-section.blog-section.star-section p {
    color: white;
    font-size: 14px;
}

.section.product-section.blog-section.star-section h1 {
    color: white;
}

.section.product-section.blog-section.star-section a {
    color: white !important;
}

section.banner-section.inner-banner-section h4 {
    color: white;
}

.section.product-section.blog-section.star-section h2 {
    color: white;
}

.section.product-section.blog-section.star-section h3 {
    color: white;
}

/*.section.product-section.blog-section.star-section h4 {*/
/*    color: white;*/
/*}*/

.section.product-section.blog-section.star-section li {
    color: white;
}

.section.product-section.blog-section.star-section h4 {
    color: white;
}


}

@media only screen and (max-width: 400px){

.about-section2 .about-right h2 {
        font-size: 100px;
}

.star-right h2 {
    font-size: 100px;
    line-height: 130px;
    margin-bottom: -5px;
}

.star-right h2.star-h2 {
    margin-left: 0px;
}

.star-right h2 {
    line-height: 105px;
}

.news-txt h2 {
    font-size: 58px;
}

.ct-paginate nav .hidden.sm\:flex-1.sm\:flex.sm\:items-center.sm\:justify-between div .relative.z-0.inline-flex.shadow-sm.rounded-md {
    width: 75% !important;
}

.product-head h2 {
    font-size: 80px;
}

#popup1 .popup {
    width: 360px;
}

    
}


/*RESPONSIVE__CSS__ENDS___*/



.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidebar a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 20px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidebar a:hover {
  color: #f1f1f1;
}

.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #522f91;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
}

.openbtn:hover {
    background-color: #8a75b5;
    border-radius: 5px;
}

#main {
  transition: margin-left .5s;
  padding: 16px;
}

div#main {
    margin: 0 !important;
}


.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9999;  /* sabse upar lane ke liye */
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}



/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidebar {padding-top: 15px;}
  .sidebar a {font-size: 18px;}
}

