/*------mega menu----*/
.nav-expended{
  width:100%;
  max-width:1428px;
  margin:auto;
  background:#fff;
  padding:65px 45px 35px;
  box-shadow: 0px 4px 15px 0px #00000026;
  background:#F1F1F1;
  border-radius: 10px;
  position: absolute;
  left:50%;
  transform: translatex(-50%);
  top: 150%;
  opacity:0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.nav-expended.active{
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.nav-expended h3{
  margin-bottom:40px;
  font-weight: 600;
  color:#000;
  font-size: 40px;
  line-height:1;
}
.expanded-cat-wrap{
  display: flex;
  gap:18px;
}
.expanded-cat-box{
  box-shadow: 0px 1px 6.1px 0px #00000014;
  border-radius: 10px;
  width:25%;
  background:#fff;
  overflow: hidden;
}
.expand-cat-bg-1{
  background: linear-gradient(146.62deg, rgba(198, 203, 254, 0.53) -66.53%, rgba(255, 152, 161, 0.57) 87.53%);
}
.expand-cat-bg-2{
  background: linear-gradient(180deg, rgba(255, 222, 198, 0.74) 0%, rgba(255, 234, 178, 0.68) 100%);
}
.expand-cat-bg-3{
  background: linear-gradient(98.67deg, rgba(223, 239, 227, 0.8) 19.38%, rgba(153, 195, 239, 0.63) 86.74%);
}
.expand-cat-bg-4{
  background: linear-gradient(35.48deg, rgba(255, 186, 187, 0.62) 11.41%, rgba(163, 237, 228, 0.56) 98.48%);
}
.expand-cat-bg-5{
  background: linear-gradient(199.31deg, #C2F9FF -37.74%, #FFE5C5 88.26%);
}
.expanded-image-box{
  width:100%;
  height:240px;
  display: flex;
  justify-content: center;
  align-items:flex-start;
}
.expanded-image-box img{
  width:100%;
  height:100%;
  object-fit:scale-down;
}
.expand-cat-bg-1 .expanded-image-box img{
  margin-top: -15px;
}
.expanded-content-box{
  padding:10px 30px 60px;
}
.expanded-content-box .btn-link{
	padding:0px 20px;
}
.expanded-content-box span{
  display: block;
  font-family: var(--font-primary);
  font-size:18px;
  line-height: 24px;
  font-weight: 500;
  color:var(--primary);
  margin-bottom:25px;
}
.expanded-content-box p{
  color:#6C6C6C;
  font-size: 14px;
  line-height: 21px;
}
.overlay{
  overflow-y: hidden;
  position: relative;
}
.overlay:before{
  content: "";
  position: absolute;
  top:0px;
  left:0px;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.40);
  z-index:1;
}
.mega-menu-has{
  position: relative;
}
.mega-menu-has .menu-drop{
  cursor: pointer;
  position: absolute;
  top:7px;
  right:-18px;
  background:url(../images/drop.png) no-repeat center;
  width:12px;
  height:7px;
  -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}
.mega-menu-has .menu-drop.open{
  transform: rotate(-180deg);
}
/*----end----*/
.btn-link{
  min-width:130px;
  padding:0px 30px;
  display:inline-flex;
  align-items: center;
  gap:15px;
  justify-content: center;
  height:44px;
  font-size: 16px;
  line-height:1;
  font-family:var(--font-primary);
  background:var(--primary);
  border-radius:50px;
  color:#fff;
  font-weight:400;	
}
.btn-link:hover{
  background:#000;
  color:#fff;
}
.hm-banner-slider{
  position: relative;
}
.banner-slide{
  position: relative;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  height:100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 120px;
}
.banner-slide:before{
  content: "";
  position: absolute;
  top:0px;
  left:0px;
  width:100%;
  height:100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 59.52%, rgba(0, 0, 0, 0.48) 90.42%),
  linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0) 26.61%),
  linear-gradient(250.18deg, rgba(0, 0, 0, 0) 34.5%, rgba(84, 39, 133, 0.42) 121.03%);

}
.banner-slide-inner-wrap{
  position: relative;
  z-index:1;
  width:100%;
}
.banner-slide-inner-wrap span{
  display: block;
  color:#fff;
  font-weight: 500;
}

.animated {
  transition: all .5s ease;
}
.banner-slider [data-animation-in]{
  opacity: 0;
  animation-duration: 1s;
  transition: opacity 0.5s ease 0.3s;
}
@keyframes fadeInUp{
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}
.banner-slide-inner-wrap{
    opacity:1;
}
.banner-slider.slick-dotted{
  margin-bottom: 0px !important;
}
.banner-slider .slick-dots{
  bottom:40px;
  left:50%;
  transform: translate(-50%);
  width:100%;
  max-width:1280px;
  text-align: left;
}

.banner-slider .slick-dots li button{
  width:12px;
  height:12px;
  padding:0px;
  border:1px solid transparent;
  border-radius: 50%;
  position: relative;
}
.banner-slider .slick-dots li{
  width:6px;
  height:6px;
}
.banner-slider .slick-dots .slick-active button{
  border:1px solid #fff;
}
.banner-slider .slick-dots li button:before{
  content: "";
  position: absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:6px;
  height:6px;
  border-radius: 50%;
  opacity:1;
  background:rgba(255,255,255,1);
  box-shadow: 0px 2px 3px 0px #00000030;
}
.banner-slider .slick-dots .slick-active button:before{
  background:#fff;
  opacity:1;
}
.navs-btn-wrap{
  display: flex;
  align-items: center;
  margin-bottom:50px;
}
.navs-btn-wrap .btn-link{
  margin-left: auto;
}
.range-navs{
  display: flex;
  align-items: center;
  gap:40px;
}
.range-navs li{
  display: flex;
  align-items: center;
  cursor: pointer;
  gap:10px;
  padding-bottom:5px;
  position: relative;
  overflow: hidden;
}
.range-navs li:before{
  content:"";
  position: absolute;
  bottom:0px;
  left:0px;
  width:100%;
  border-bottom:2px solid #000;
  transition: transform 350ms ease-in-out;
  transform: translate3d(-100%, 0, 0) scale(0);
}
.range-navs li.active:before,
.range-navs li:hover:before{
  transform: translate3d(0, 0, 0) scale(1);
}
.range-nav-icon{
  display: flex;
  width:25px;
  height:25px;
  align-items: center;
  justify-content: center;
}
.range-nav-icon img{
  width:auto;
  height:auto;
  object-fit: contain;
  transition:var(--transition);
}
.range-navs li span{
  font-size: 20px;
  line-height: 20px;
  display: block;
  color:#808080;
  font-family: var(--font-secondary);
  font-weight: 500;
  transition:var(--transition);
}
.range-navs li.active span,
.range-navs li:hover span{
  color:#000;
}
.range-navs li.active img,
.range-navs li:hover img{
  filter: invert(62%) sepia(39%) saturate(5545%) hue-rotate(336deg) brightness(0%) contrast(72%);
}
.tab-content{
  display: none;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInS 0.5s ease 1 forwards;
}
.tab-content.active{
  display: block;
}
@keyframes fadeInS{
  100%{
    opacity: 1;
    transform: none;
  }
    
}
.banner-slider,
.explore-slider,
.related-news-slider,
.product-main-slider,
.product-nav-slider{
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  -webkit-transition: opacity 1s ease;
}
.slick-initialized.slick-slider {
  visibility: visible;
  opacity: 1;
}
.explore-slider .slick-list{
  margin:0px -10px;
}
.explore-slider .slick-slide{
  margin: 0px 10px;
}
.exp-image-box{
  width:100%;
  height:350px;
  background:#F5F5F5;
  border-radius:10px;
  overflow: hidden;
  position: relative;
  border:1.5px solid transparent;
  transition:var(--transition);
}
.exp-image-box img{
  width:100%;
  height:100%;
  /*object-fit:contain;*/
 object-fit:cover;	
  object-position:center center;
  transition:var(--transition);
}
.exp-content-box{
  padding-top:15px;
}
.exp-content-box a h4{
  font-size: 18px;
  line-height: 24px;
  margin-bottom:5px;
  transition: var(--transition);
}
.exp-content-box a h4:hover{
  color:#000;
}
.exp-content-box p{
  color:#6C6C6C;
  font-size:14px;
  line-height: 21px;
}
.color-option{
  display: flex;
  gap:5px;
  align-items: center;
  position: absolute;
  bottom:10px;
  right:15px;
}
.clr{
  width:18px;
  height:18px;
  border-radius:50%;
  background:#000;
  border:2px solid transparent;
}
.clr-1{
  background:#213332;
}
.clr-2{
  background:#BDB2A0;
}
.clr-3{
  background:#787878;
}
.clr.active{
  border-color:rgba(84, 39, 133, 0.15);
  width:19px;
  height:19px;
}
.exp-image-box .btn-link{
  min-width:145px;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  padding:0px 25px;
  z-index: 1;
  opacity:0;
  transition:var(--transition);
  font-weight:400;	
}
.exp-image-box:before{
  content: "";
  position: absolute;
  top:0px;
  left:0px;
  width:100%;
  height:100%;
  z-index:1;
  transition:var(--transition);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter:blur(2px);	
  opacity:0;
}
.exp-image-box:hover{
  border-color:#A0A0A0;
}
.exp-image-box:hover:before{
  opacity:1;
}
.exp-image-box:hover .btn-link{
  opacity:1;
}
.exp-image-box:hover img{
  transform: scale(1.02);
}
.slick-slider .slick-arrow{
  width:48px;
  height:48px;
  border-radius: 50%;
  border:1px solid var(--primary);
  background-color:#fff;
  backdrop-filter: blur(74.9000015258789px);
  -webkit-backdrop-filter:blur(74.9000015258789px);
  box-shadow: 0px 4px 9.1px 0px #0000001A;
  opacity:1;
  z-index:1;
  transition:var(--transition);
}
.slick-slider .slick-arrow:before {
  content: "";
  width: 22px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity:1;
}
.slick-slider .slick-prev:before{
  background: url(../images/arrow-left.png) no-repeat;
}
.slick-slider .slick-next:before{
  background: url(../images/arrow-right.png) no-repeat;
}
.slick-slider .slick-arrow:hover,
.slick-slider .slick-arrow:focus{
  background:var(--primary);
}
.slick-slider .slick-arrow:hover:before,
.slick-slider .slick-arrow:focus:before{
  filter:brightness(0) invert(1);
}
.explore-slider .slick-arrow{
  top:41%;
}
.explore-slider .slick-next{
  right:-100px;
}
.explore-slider .slick-prev{
  left:-100px;
}
.card-wrap{
  display:inline-flex;
  align-items:center;
  justify-content: center;
  background:#000;
  padding:0px 12px;
  height:30px;
  color:#fff;
  font-size:16px;
  line-height: 16px;
  font-weight:400;
  font-family: var(--font-secondary);
  position: absolute;
  top:20px;
  left:0px;
}
.card-wrap.trending{
  background:#FF6969;
}
.card-wrap.new{
  background:#49DF53;
}
.heading-center{
  display: flex;
  justify-content: center;
}
.hm-experience-sec .container{
  max-width:1470px;
}
.hm-experience-img-map-wrap{
  position: relative;
}
.map-img-navs{
  position: absolute;
  bottom:45px;
  left:50%;
  transform: translate(-50%);
  z-index:1;
  display: flex;
  background: rgba(255, 255, 255, 0.17);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height:56px;
  align-items: center;
  border-radius: 50px;
  padding:6px;
  gap:5px;
}
.map-img-navs li{
  width:160px;
  display: flex;
  height:44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50px;
  color:#fff;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-primary);
  cursor: pointer;
  position: relative;
}
.bg-slider{
  display:inline-block;
  width:160px;
  height:44px;
  border-radius:50px;
  background:var(--primary);
  box-shadow: 0px 4px 4px 0px #00000040;
  position:absolute;
  bottom:6px;
  transition:all .4s linear;
}
/*.map-img-navs li:before{
  content: "";
  position: absolute;
  top:0px;
  left:0px;
  width:100%;
  height:100%;
  border-radius: 50px;
  background:var(--primary);
  box-shadow: 0px 4px 4px 0px #00000040;
  z-index:-1;
  opacity:0;
  transition:var(--transition);
}
.map-img-navs li.active:before{
  opacity:1;
}*/
.tab-map-image-wrap{
  width:100%;
  height:712px;
  border-radius:10px;
  overflow: hidden;
  position: relative;
}
.tab-map-image-wrap > img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.tab-map-image-wrap:before{
  content: "";
  position: absolute;
  top:0px;
  left:0px;
  width:100%;
  height:100%;
  background: rgba(0, 0, 0, 0.2);
}
.image-map-marker{
  position: absolute;
  z-index:1;
  top:var(--top);
  left:var(--left);
  /* top:90px;
  left:115px; */
}
.image-map-marker.active{
	z-index:11;
}
.show-point{
  display:flex;
  width:28px;
  height:28px;
  align-items: center;
  justify-content: center;
  background:#fff;
  border-radius:50%;
  font-size:14px;
  cursor: pointer;
  position: relative;
  z-index:1;
}
.show-point:before{
  content:"";
  position: absolute;
  top:50%;
  left:50%;
  width:70px;
  height:70px;
  border-radius:50%;
  margin-left: -35px;
  margin-top:-35px;
  background:rgba(255,255,255,0.85);
  z-index:-1;
  animation: ripple 3s ease-in-out infinite;
}
.show-point:after{
  content:"";
  position: absolute;
  top:50%;
  left:50%;
  width:60px;
  height:60px;
  border-radius:50%;
  margin-left: -30px;
  margin-top:-30px;
  background:rgba(255,255,255,0.70);
  z-index:-1;
  animation-delay: 0.5s;
  animation: ripple 3s ease-in-out infinite;
}
@keyframes ripple {
  0% {
    transform: scale(.3);
    opacity: 0
  }
  50% {
    opacity: .9
  }
  to {
    transform: scale(24em);
    opacity: 0
  }
}
.map-product{
  position: absolute;
  top:0px;
  left:65px;
  width:278px;
  background:rgba(255,255,255,0.17);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter:blur(10px);	
  padding:25px 25px 18px;
  display: none;
}
.change-position .map-product{
	left:unset;
	right:65px;
}
.change-position .line-dot{
	left:unset;
	right:10px;
	transform: translate3d(50%, 0, 0) scale(0);
}
.change-position .line-dot:after{
	right:unset;
	left:0px;
}
.map-product-image{
  background:#fff;
  border-radius:10px;
  width:100%;
  height:172px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow:hidden;	
}
.map-product-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.map-product-content{
  padding-top:15px;
}
.map-product-content h4{
  font-size:20px;
  line-height: 27px;
  color:#fff;
  margin-bottom: 15px;
  text-shadow: 4px 4px 4px #00000040;
}
.line-dot{
  position: absolute;
  top:14px;
  left:10px;
  width:70px;
  border-bottom:1px solid #fff;
  z-index:1;
  transition: transform 350ms ease-in-out;
  transform: translate3d(-50%, 0, 0) scale(0);
}
.line-dot:after{
  content: "";
  position: absolute;
  top:-2px;
  right:0px;
  width:5px;
  height:5px;
  background:#fff;
  border-radius:50%;
}
.image-map-marker.active .line-dot{
  transform: translate3d(0, 0, 0) scale(1);
}
/*.image-map-marker-2{
  top:130px;
  left:42%;
}
.image-map-marker-3{
	left:60%;
	top:40px;
}*/
.best-seller-wrap{
  display: flex;
  gap:15px;
}
.one-column-wrap{
  width:25%;
  display: flex;
  flex-direction: column;
  gap:15px;
}
.column-card-wrap{
  border-radius:10px;
  box-shadow: 0px 1px 6.1px 0px #00000014;
  border: 1.5px solid transparent;
  width:100%;
  height:431px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.one-column-wrap li:nth-of-type(2) .column-card-wrap{
  height:313px;
}
.column-image-box{
  height:70%;
  overflow: hidden;
}
.column-image-box img{
  margin-top: -5px;
  width:100%;
  height:100%;
  object-position: center;
  object-fit: contain;
}
.column-content-box{
  padding:15px 20px 25px 30px;
}
.column-content-box h4{
  margin-bottom:10px;
}
.pro-sku-colors{
  display: flex;
  align-items: center;
}
.pro-sku-colors{
  font-size: 16px;
  line-height: 16px;
  color:#6C6C6C;
  font-family: var(--font-secondary);
  font-weight:500;
}
.pro-sku-colors .color-option{
  position: relative;
  bottom: unset;
  right:unset;
  margin-left: auto;
}
.column-card-wrap{
  position: relative;
  transition: var(--transition);
}
.column-card-wrap .btn-link{
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  opacity:0;
  z-index: 1;
}
.column-card-wrap:before{
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: var(--transition);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);	
  opacity: 0;
}
.column-card-wrap:hover{
  border-color: #A0A0A0;
}
.column-card-wrap:hover:before,
.column-card-wrap:hover .btn-link{
  opacity:1;
}
.two-column-wrap{
  width:50%;
  display: flex;
  flex-direction: column;
  gap:15px;
}
.two-column-full .column-card-wrap{
  height:308px;
  justify-content: flex-end;
}
.two-column-full .column-image-box{
  position: absolute;
  top:0px;
  right:140px;
  width:221px;
  height:270px;
}
.two-column-full .column-image-box img{
  object-fit: cover;
}
.two-column-two{
  display: flex;
  gap:15px;
}
.two-column-two .column-card-wrap{
  width:50%;
  height:437px;
}
.column-card-1{
  background: linear-gradient(0deg, rgba(243, 243, 243, 0.1), rgba(243, 243, 243, 0.1)),
    linear-gradient(142.95deg, #FFE7CD 6.49%, #FEEEDD 85.2%);
}
.column-card-2{
  background: linear-gradient(180deg, #FFE7B1 0%, #FFDDCC 100%);
}
.column-card-3{
  background: linear-gradient(0deg, rgba(243, 243, 243, 0.1), rgba(243, 243, 243, 0.1)),
  linear-gradient(204.36deg, #CDD0FF -19.98%, #FDC897 90.17%);
}
.column-card-4{
  background: linear-gradient(142.95deg, #F3F3F3 6.49%, #FFE7CD 85.2%);
}
.column-card-5{
  background: linear-gradient(103.5deg, #D8F7F9 13.1%, #DAF5A0 93.88%);
}
.column-card-6{
  background: linear-gradient(180deg, #FFF2DB 0%, #E4E0D6 100%);
}
.column-card-7{
  background: linear-gradient(199.31deg, #C2F9FF -37.74%, #FFE5C5 88.26%);
}
.hm-why-breelos-sec{
  padding:200px 0px 140px;
}
.why-bree-inner{
  display: flex;
  width:100%;
  max-width:1200px;
  margin: auto;
}
.why-bree-image{
  width:52%;
  height:407px;
  border-radius: 10px;
  overflow: hidden;
}
.why-bree-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.why-bree-content{
  margin-left: auto;
  width:43%;
}
.why-bree-content p{
  color:#4B4B4B;
  margin-bottom: 30px;
}
.why-bree-content p:last-child{
  margin-bottom:0px;
}
.hm-new-arrival-sec{
  background:var(--primary);
  height:960px;
  position: relative;
}
.left-side-overlay{
  content: "";
  position: absolute;
  width:100px;
  height:100%;
  top:0px;
  left:0px;
  background:var(--primary);
  z-index:1;
}
.right-side-overlay{
  content: "";
  position: absolute;
  width:100px;
  height:100%;
  top:0px;
  right:0px;
  background:var(--primary);
  z-index:1;
}
.hm-new-arrival-sec:before{
  content: "";
  position: absolute;
  top:50%;
  left:50%;
  width:931px;
  height:929px;
  transform: translate(-50%,-50%);
  background:url(../images/grd_bg.png) no-repeat center;
  background-size: 100%;
}
.new-arrival-slider .new-arrival-slide{
  height:700px;
  text-align: center;
}
.new-arrival-slider .new-arrival-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.new-arrival-slider .swiper-slide-shadow-left,
.new-arrival-slider .swiper-slide-shadow-right {
  background-image: none !important;
}
.new-arrival-slider .swiper-slide{
  opacity:0.35;
}
.new-arrival-slider .swiper-slide .new-arrival-slide{
  transform: scale(0.7);
  transition: transform 0.25s;
}
.new-arrival-slider .swiper-slide.swiper-slide-active .new-arrival-slide{
  transform: scale(1);
}
.new-arrival-slider .swiper-slide.swiper-slide-active{
  opacity:1;
}
.new-arrival-slider .swiper-button-next, 
.new-arrival-slider .swiper-button-prev,
.media-center-slider .swiper-button-next,
.media-center-slider .swiper-button-prev{
    background: rgba(255, 255, 255, 0.71);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0px 4px 9.1px 0px #0000001A;
    border:1px solid #542785;
    margin-top: 50px;
}
.new-arrival-slider .swiper-button-next::after, 
.new-arrival-slider .swiper-button-prev::after,
.media-center-slider .swiper-button-next::after,
.media-center-slider .swiper-button-prev::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 18px;
}
.new-arrival-slider .swiper-button-prev{
  left:170px;
}
.new-arrival-slider .swiper-button-next{
  right:170px;
}
.new-arrival-slider .swiper-button-prev::after,
.media-center-slider .swiper-button-prev::after{
    background: url(../images/arrow-left.png) no-repeat;
}
.new-arrival-slider .swiper-button-next::after,
.media-center-slider .swiper-button-next::after{
    background: url(../images/arrow-right.png) no-repeat;
}

.new-arrival-slider .swiper-button-next:hover, 
.new-arrival-slider .swiper-button-prev:hover,
.new-arrival-slider .swiper-button-next:focus, 
.new-arrival-slider .swiper-button-prev:focus{
  background: rgba(255, 255, 255, 1);
}
.new-arrival-cont-wrap{
  position: relative;
  z-index:1;
  text-align: center;
  padding-top: 25px;
  opacity:0;
  visibility:hidden;
}
.new-arrival-slider .swiper-slide.swiper-slide-active .new-arrival-cont-wrap{
  opacity:1;
  visibility:visible;
}
.new-arrival-cont-wrap h4{
  color:#fff;
  font-size: 32px;
  line-height:1;
  margin-bottom: 15px;
}
.new-arrival-cont-wrap p{
  color:#fff;
}
.btn-link-1{
  display: inline-flex;
  min-width:130px;
  height:44px;
  border-radius:50px;
  align-items: center;
  justify-content: center;
  padding:0px 20px;
  border: 1px solid #fff;
  color:#fff;
  font-size: 16px;
  font-family: var(--font-primary);
  font-weight:400;
}
.btn-link-1:hover{
  color:var(--primary);
  background:#fff;
}
.new-arrival-heading-block{
  position: absolute;
  top:0px;
  z-index:1;
  padding-top: 80px;
}
.new-arrival-heading-block h3{
  color:#fff;
}
.new-arrival-heading-block .h-underline:before{
  background:#fff;
}
.request-callback-wrap{
  width:100%;
  height:450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding:50px 80px;
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px #00000040;
  background-repeat: no-repeat;
  background-size: cover;
}
.request-callback-wrap h3{
  margin-bottom: 15px;
}
.request-callback-wrap p{
  max-width:600px;
}
.callback-form-wrap{
  width: 100%;
  max-width:500px;
  margin-top:15px;
}
.callback-form-wrap form{
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
}
.callback-form-wrap .wpcf7-form-control-wrap{
  width:100%;
  margin-bottom: 20px;
}
.callback-form-wrap .wpcf7-form-control-wrap:nth-of-type(1),
.callback-form-wrap .wpcf7-form-control-wrap:nth-of-type(2){
  width:49%;
}
.callback-form-wrap input,
.callback-form-wrap select{
  width:100%;
  background: rgba(255,255,255,0.25);
  border-radius: 50px;
  height:40px;
  box-shadow: 0px 1px 4px 0px #00000024;
  color:rgba(255,255,255,0.85);
  font-size:14px;
  font-weight:400;
  font-family: var(--font-secondary);
  border: 0px;
  padding:0px 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);	
}
.callback-form-wrap input::placeholder{
  color:rgba(255,255,255,0.85);
}
.callback-form-wrap input[type='submit']{
  width:130px;
  height:44px;
  background: var(--primary);
  box-shadow: 0px 2.32px 4.63px 0px #0000000D;
  font-size:16px;
  font-family: var(--font-primary);
  cursor: pointer;
  transition:var(--transition);
}
.callback-form-wrap input[type='submit']:hover{
  background:#fff;
  color:var(--font-primary);
}
.callback-form-wrap select{
  -webkit-appearance: none;
  -moz-appearance: none;
  background:url(../images/drop-white.png) rgba(255,255,255,0.25) no-repeat;
  background-position-x: 97%;
  background-position-y: 16px;
}
.callback-form-wrap select option{
  color:#000;
}
.hm-media-sec{
  overflow: hidden;
}
.hm-media-image{
  height:305px;
  border-radius:12px;
  overflow: hidden;
  position: relative;
}
.hm-media-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:var(--transition);
}
.hm-media-image:before{
  content: "";
  position: absolute;
  top:0px;
  left:0px;
  width:100%;
  height:100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 59.84%, rgba(0, 0, 0, 0.64) 100%);
  z-index:1;
}
.hm-media-image span{
  position: absolute;
  right:0px;
  top:35px;
  background:#B7A100;
  width:88px;
  height:32px;
  display: flex;
  align-items: center;
  padding:0px 12px;
  font-size: 16px;
  font-weight: 300;
  color:#fff;
  font-family:var(--font-secondary);
  z-index:1;
}
.hm-media-content{
  padding-top: 25px;
}
.hm-media-content span{
  display: block;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color:#6C6C6C;
  font-family: var(--font-secondary);
  margin-bottom:10px;
}
.hm-media-content a h4{
  color:#000000;
  margin-bottom: 0px;
  font-size: 20px;
  line-height: 24px;
  transition:var(--transition);
}
.hm-media-content a h4:hover{
  color:var(--primary);
}
.hm-media-image:hover img{
  transform: scale(1.02);
}
.media-center-slider{
  position: relative;
}
.media-center-slider .swiper-button-next,
.media-center-slider .swiper-button-prev{
  background:rgba(255, 255, 255, 1);
  margin-top:-55px;
}
.media-center-slider .swiper-button-next:hover,
.media-center-slider .swiper-button-prev:hover,
.media-center-slider .swiper-button-prev:focus,
.media-center-slider .swiper-button-next:focus{
  background:var(--primary);
}
.media-center-slider .swiper-button-next:hover::after,
.media-center-slider .swiper-button-prev:hover::after,
.media-center-slider .swiper-button-next:focus:after,
.media-center-slider .swiper-button-prev:focus:after{
    filter: brightness(0) invert(1);
}
.media-center-slider .swiper-button-prev{
  left:-70px;
}
.media-center-slider .swiper-button-next{
  right:-70px;
}
.media-center-slider .swiper-button-disabled{
  opacity:1 !important;
  pointer-events:unset !important;
}
.hm-instagram-sec{
  background: #FAF5FF;
  padding:55px 0px 70px;
  position: relative;
}
.hm-instagram-sec .container{
  max-width:1410px;
}
.hm-instagram-sec h3{
  text-align: center;
}
.insta-text{
  position: absolute;
  top:25px;
  left:50%;
  transform: translate(-50%);
  font-size:213px;
  line-height:1;
  color:rgba(84, 39, 133, 0.10);
  font-weight: 500;
  font-family: var(--font-primary);
}
.instagram-images{
  display: flex;
  justify-content: space-between;
}
.instagram-images li{
  width:264px;
  height:264px;
  border-radius:10px;
  overflow: hidden;
  box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
}
.instagram-images li img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.instagram-images li:nth-child(even){
  margin-top: 80px;
}
.hm-instagram-sec a{
  text-align: center;
  display: block;
  color:var(--primary);
  font-size:24px;
  line-height: 24px;
}
.hm-instagram-sec a i{
  display: block;
  font-size:50px;
  margin-bottom:10px;
}
.hm-instagram-sec a span{
	text-decoration: underline;
    text-decoration-color: rgba(84, 39, 133, 0.4);
}
.hm-instagram-sec a:hover{
  color:#000;
}
/*-------products-------*/
.banner{
  width:100%;
  display: flex;
  align-items: flex-end;
  height:470px;
  padding-bottom:130px;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}
.banner:before{
  content: "";
  position: absolute;
  top:0px;
  left:0px;
  width:100%;
  height:100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 59.52%, rgba(0, 0, 0, 0.48) 90.42%),
linear-gradient(250.18deg, rgba(0, 0, 0, 0) 34.5%, rgba(84, 39, 133, 0.42) 121.03%);
}
.banner h1{
  position: relative;
  z-index:1;
  color:#fff;
  margin-bottom: 0px;
  text-shadow:4px 4px 4px rgba(0, 0, 0, 0.12);
}
.product-category-list{
  display: flex;
  gap:20px;
  flex-wrap:wrap;
  justify-content: space-between;
}
.category-left-block{
  width:65%;
  display: flex;
  flex-wrap:wrap;
  row-gap:20px;
  justify-content: space-between;
}
.category-right-block{
  width:33%;
}
.product-category{
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius:10px;
  box-shadow: 0px 1px 6.1px 0px #00000014;
  position: relative;
}
.p-category-bg-1{
  background: linear-gradient(146.62deg, rgba(198, 203, 254, 0.53) -66.53%, rgba(255, 152, 161, 0.57) 87.53%);
}
.p-category-bg-2{
  background: linear-gradient(35.48deg, rgba(255, 186, 187, 0.62) 11.41%, rgba(163, 237, 228, 0.56) 98.48%);
}
.p-category-bg-3{
  background: linear-gradient(98.67deg, rgba(223, 239, 227, 0.8) 19.38%, rgba(153, 195, 239, 0.63) 86.74%);
}
.p-category-bg-4{
  background: linear-gradient(180deg, rgba(255, 222, 198, 0.74) 0%, rgba(255, 234, 178, 0.68) 100%);
}
.p-category-bg-5{
	background:linear-gradient(103.5deg, #D8F7F9 13.1%, #DAF5A0 93.88%);
}
.p-cat-content-box{
  padding:25px;
}
.p-cat-content-box h4{
  font-size:24px;
  line-height:29px;
  margin-bottom: 10px;
}
.p-cat-content-box p{
  font-size: 14px;
  line-height: 21px;
  color:#6C6C6C;
  max-width:275px;
}
.btn-link-2{
  display: inline-flex;
  padding:0px 20px;
  height:44px;
  align-items: center;
  border-radius: 50px;
  font-size:16px;
  font-weight: 500;
  color:#535353;
  background:#fff;
  font-family: var(--font-primary);
  box-shadow: 0px 2.32px 4.63px 0px #0000000D;
}
.btn-link-2:hover{
  background: var(--primary);
  color:#fff;
}
.p-category-bg-1,
.p-category-bg-2{
  width:48.80%;
  height:479px;
}
.p-category-bg-3{
  width:100%;
}
.p-category-bg-2 .p-cat-image-box{
  text-align: center;
  order:1;
}
.p-category-bg-1 .p-cat-content-box,
.p-category-bg-4 .p-cat-content-box{
  position: absolute;
  bottom:0px;
  width:100%;
  left:0px;
}
.p-category-bg-3{
  height:316px;
  flex-direction: row;
  align-items: center;
}
.p-category-bg-3 .p-cat-image-box{
  order:1;
  margin-left: auto;
  margin-bottom:-30px;
}
.p-category-bg-3.p-category-bg-5{
	width:100%;
}
.p-category-bg-3 .p-cat-content-box{
  order:0;
}
.p-category-bg-4{
  height:815px;
}
/*--------products listting-------*/
.breadcrumbs-sec{
  padding:60px 0px;
}
.breadcrumbs-cat-name-wrap{
  display: flex;
  align-items: center;
}
.left-box-width{
  width:320px;
  min-width: 320px;
  margin-right: 20px;
}
.right-box-width{
  width:100%;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap:5px;
}
.breadcrumbs li {
  line-height: normal;
}
.breadcrumbs li a {
  color: #000000;
  font-size: 16px;
  line-height:21px;
  font-family: var(--font-primary);
  font-weight: 300;
  position: relative;
  padding-right:10px;
}
.breadcrumbs li span{
  font-size: 16px;
  line-height:21px;
  font-family: var(--font-primary);
  font-weight: 300;
  color:var(--primary);
}
.breadcrumbs li a:after {
  content: "/";
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
}
.breadcrumbs li a:hover{
  color:var(--primary);
}
.product-cat-name-box{
  display: flex;
  align-items: center;
}
.product-cat-name{
  font-size: 32px;
  line-height:1;
  font-weight: 500;
  font-family: var(--font-primary);
  color:#000;
}
.total-product-sort-wrap{
  margin-left: auto;
  display: flex;
  align-items: center;
}
.cat-product-count p{
  color:rgba(0,0,0,0.60);
  line-height:21px;
  margin-bottom: 0px;
}
.sorting-options{
  display: flex;
  align-items: center;
  margin-left: 10px;
}
.sorting-options span{
  color:rgba(0,0,0,0.60);
  font-size: 16px;
  line-height:21px;
  font-family: var(--font-secondary);
  font-weight: 400;
}
.sorting-options select{
  border: 0px;
  color:var(--primary);
  font-size:16px;
  font-family: var(--font-secondary);
  font-weight: 500;
  -webkit-appearance: none;
  -moz-appearance: none;
  background:url(../images/drop-1.png) #fff no-repeat center right;
  padding-right: 20px;
  padding-left:5px;
}
.filters-products-listing-wrap{
  display: flex;
  align-items:flex-start;
}
.product-filters-box{
  border-radius:20px;
  border:1px solid rgba(0,0,0,0.10);
  padding:20px;
}
.filter-heading{
  display: flex;
  align-items: center;
  padding-bottom: 30px;
  border-bottom:1px solid rgba(0, 0, 0, 0.1);
}
.filter-heading span{
  font-size: 20px;
  color:#000;
  font-family: var(--font-primary);
}
.filter-heading img{
  margin-left: auto;
}
.accordion__header{
  display: flex;
  align-items: center;
}
.accordion__header h4{
  margin-bottom: 0px;
  font-size: 20px;
  line-height: 27px;
  color:#000;
  padding-right:15px;
}
.accordion__header .accordion__button{
  margin-left: auto;
}
/*-----filters-----*/
.filter-item{
  margin-bottom:20px;
}
.filter-item:last-child{
  margin-bottom: 0px;
}
.filter-item div{
  display: flex;
  align-items: center;
  gap:10px;
}
.filter-item div span{
  color:rgba(0, 0, 0, 0.60);
  font-size: 14px;
  line-height:14px;
  font-weight:400;
  font-family: var(--font-secondary);
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-left: 26px;
}

.filter-item div input[type="checkbox"]{
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
}
.filter-item div span:before{
  content: "";
  position: absolute;
  height:16px;
  width:16px;
  border-radius:4px;
  left:0px;
  top: -2px;
  border:1px solid #D0D5DD;
}

.filter-item div span:after{
  display: none;
  content: "";
  position: absolute;
  left:6px;
  top:1px;
  width:4px;
  height:8px;
  border: solid #542785;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.filter-item input[type="checkbox"]:checked~span{
  color:rgba(0, 0, 0, 0.96);
}
.filter-item input[type="checkbox"]:checked~span:before {
    background-color:#fff;
    border-color:#542785;
}
.filter-item input[type="checkbox"]:checked~span:after {
    display: block;
}
.accordion__header{
  padding:30px 0px 25px;
}
.accordion__body{
  padding-bottom:25px;
  display: block;
}
/*---end----*/
/*-----radio filter-----*/
.filter-items-radio{
  display: flex;
  flex-wrap:wrap;
  gap:20px;
}
.filter-items-radio li label input{
  position: absolute;
  opacity:0;
}
.filter-items-radio li label .checkmark{
  width:32px;
  height:32px;
  display: block;
  border-radius:50%;
  position: relative;
  border:1px solid rgba(0,0,0,0.20);
}
.checkmark{
  background:#000;
}
.filter-items-radio li label .checkmark:after{
  content: "";
  position: absolute;
  left:11px;
  top:5px;
  width:7px;
  height:14px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  opacity:0;
}
.filter-items-radio li label input:checked ~ .checkmark:after{
  opacity:1;
}
.radio-crl-1{
  background: #D6AF71;
}
.radio-crl-2{
  background: #313131;
}
.radio-crl-3{
  background: #BDB2A0;
}
.radio-crl-4{
  background: #787878;
}
.radio-crl-5{
  background: #fff;
}
/*----end----*/
.show-more{
  display: block;
  text-align: center;
  margin-top: 25px;
  color:var(--primary);
  font-weight:500;
  font-size:16px;
  line-height: 16px;
  font-family: var(--font-secondary);
  text-decoration: 2px solid underline rgba(84, 39, 133, 0.20);
  cursor: pointer;
  transition:var(--transition);
}
.show-more:hover{
  color:#000;
}
.filter-category-list{
  display: flex;
  flex-wrap:wrap;
  align-items: center;
  gap:10px;
}
.filter-category-list li a{
  background:#F0F0F0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius:50px;
  font-size:14px;
  font-weight: 300;
  color:rgba(0,0,0,0.60);
  height:39px;
  padding:0px 20px;
}
.filter-category-list li.active a,
.filter-category-list li a:hover{
  background:#000;
  color:#fff;
}
.products-listing{
  display: flex;
  flex-wrap:wrap;
  row-gap:15px;
}
.products-listing > li{
  width:32%;
  margin-left:2%;
}
.products-listing > li:nth-child(3n+1){
  margin-left: 0px;
}
.woocommerce-pagination .page-numbers{
  display: flex;
  align-items: center;
  gap:15px;
  justify-content: flex-end;
  margin-top:35px;
}
.page-numbers li .page-numbers{
  color:#495057;
  font-size: 14px;
  letter-spacing:-0.25px;
  font-family: var(--font-secondary);
  font-weight:400;
  width:29px;
  height:29px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-top: 0px;
}
.page-numbers li .prev,
.page-numbers li .next{
  width:auto;
  height:auto;
  text-decoration: underline;
}
.page-numbers li .current{
  background: #F4EAFF;
  border:1px solid var(--primary);
  color:var(--primary);
}
/*-------product cataloug------*/
.cataloug-top-sec{
  padding:60px 0px 0px;
}
.cataloug-heading-sorting{
  display: flex;
  align-items: flex-start;
  position:relative;
  z-index:1;
}
.cataloug-heading-sorting h2{
  font-size:32px;
  line-height:42px;
  margin-bottom:0px;
  color:#000;
}
.cataloug-heading-sorting .h-underline:before{
  width:110px;
  background:#000;
  height:2px;
}
.cataloug-sorting{
  margin-left: auto;
  display: flex;
  align-items: center;
}
.cataloug-sorting span{
  font-size:15px;
  font-family:var(--font-primary);
  font-weight:300;
  margin-right: 15px;
}
.cataloug-sorting select{
  -webkit-appearance: none;
  -moz-appearance: none;
}
.cataloug-sorting select,
.cataloug-sorting .nice-select{
  width:326px;
  height: 45px;
  line-height:43px;
  border-radius: 20px;
  border:1px solid rgba(0,0,0,0.10);
  padding-left:25px;
  padding-right: 35px;
}
.nice-select .option.selected{
  font-weight:500 !important;
}
.cataloug-sorting .nice-select .list{
  width:100%;
}
.cataloug-sorting .nice-select:after{
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  width:7px;
  height:7px;
  right:35px;
  margin-top:-7px;
}
.cataloug-sorting .nice-select:active, 
.cataloug-sorting .nice-select.open, 
.cataloug-sorting .nice-select:focus{
  border-color:rgba(0,0,0,0.10);
}
.cataloug-sorting .nice-select .current,
.cataloug-sorting select{
  font-size:18px;
  font-family:var(--font-primary);
  font-weight:500;
}
.cataloug-listing{
  margin-top:70px;
  display: flex;
  flex-wrap:wrap;
}
.cataloug-listing li{
  width:30.33%;
  margin-left:4.5%;
}
.cataloug-listing li:nth-child(3n+1){
  margin-left: 0px;
}
.cataloug-list-image{
  width:100%;
  height:527px;
  border: 1px solid #E6E6E6;
  box-shadow: 8.37px 10.04px 16.73px 0px #00000012;
  border-radius: 10px;
  overflow: hidden;
}
.cataloug-list-image img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.cataloug-list-content{
  padding-top:50px;
}
.cataloug-list-content p{
  font-size: 20px;
  line-height:30px;
  color:#000000;
  font-family:var(--font-primary);
  font-weight: 500;
}
.cataloug-list-content a{
  width:147px;
  height:41px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius:50px;
  border: 1px solid #542785;
  color:#542785;
  font-size: 16px;
  font-family:var(--font-primary);
}
.cataloug-list-content a:hover{
  background:var(--primary);
  color:#fff;
}
.cataloug-popup.fancybox-content{
  width:100%;
  max-width:720px !important;
  padding:90px 75px;
  max-height:750px;	
}
.cataloug-popup h3{
  font-size:32px;
  line-height: 42px;
  color:#000000;
  margin-bottom: 20px;
}
.catalog-fields{
  width:100%;
  margin-bottom:15px;
}
.catalog-fields label{
  display: block;
  font-size: 16px;
  line-height: 16px;
  color:#000000;
  font-weight: 500;
  font-family:var(--font-primary);
  margin-bottom: 5px;
}
.catalog-fields input,
.catalog-fields select,
.catalog-fields textarea{
  font-size:16px;
  color:#000;
  font-family:var(--font-secondary);
  width:100%;
  height:50px;
  border-radius: 10px;
  border: 1px solid rgba(84, 39, 133, 0.26);
  padding:0px 10px;
}
.catalog-fields select{
  -webkit-appearance: none;
  -moz-appearance: none;
  background:url(../images/drop-angle.png) #fff no-repeat 97% center;
}
.catalog-fields input::placeholder,
.catalog-fields textarea::placeholder{
  color:#000;
}
.catalog-fields textarea{
  resize: none;
  height:110px;
  padding:10px;
}
.submit-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 44px;
  background: var(--primary);
  box-shadow: 0px 2.32px 4.63px 0px #0000000D;
  font-size: 16px;
  font-weight:500;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: var(--transition);
  border-radius:50px;
  color:#fff;
  text-transform: capitalize;
  border:1px solid var(--primary);
}
.submit-btn:hover{
  background:#fff;
  color:var(--primary);
}
.cataloug-popup .submit-btn{
  margin-left: auto;
}
.cataloug-popup .fancybox-close-small{
  position: absolute;
  top:30px !important;
  right:30px !important;
  width: 45px;
  height: 45px;
  padding: 5px !important;
  border: 2px solid rgba(84, 39, 133, 1);
  border-radius: 50%;
  color:rgba(84, 39, 133, 1) !important;
}
/*--------Media Center-------*/
.news-blogs-sec h2{
  text-align: center;
  font-size:32px;
  line-height: 43px;
  color:#000;
  margin:0px;
  letter-spacing: unset;
}
.news-blogs-sec .h-underline:before{
  width:110px;
  background:#000;
  height:2px;
}
.blogs-listing{
  display: flex;
  flex-wrap:wrap;
  row-gap:45px;
  margin:75px 0px 90px;
}
.blogs-listing li{
  width:32.5%;
  margin-left:1.25%;
}
.blogs-listing li:nth-child(3n+1){
  margin-left:0px;
}
.article-box{
  width:100%;
}
.article-image{
  border-radius:10px;
  overflow: hidden;
  height:254px;
  position: relative;
}
.article-image img{
  width:100%;
  height:100%;
  object-fit: cover;
  transition: var(--transition);
}
.article-image:before{
  content: "";
  position: absolute;
  top:0px;
  left: 0px;
  width:100%;
  height:100%;
  z-index:1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 59.84%, rgba(0, 0, 0, 0.64) 100%);
}
.article-image:hover img{
  transform: scale(1.03);
}
.article-content{
  padding-top:15px;
}
.article-content span{
  color:#6C6C6C;
  font-size:14px;
  line-height: 14px;
  font-weight:400;
  display: block;
  font-family:var(--font-secondary);
  margin-bottom:10px;
}

.article-content a h4{
  font-size: 20px;
  line-height:24px;
  color:#000;
  margin-bottom: 0px;
}
.article-content a h4:hover{
  color:var(--primary);
}
.loading-box{
  display: block;
  text-align: center;
}
.loading-box img{
  -webkit-animation: spin 2s infinite linear;
}

@keyframes spin {
    0%   {-webkit-transform: rotate(0deg)}
    100% {-webkit-transform: rotate(360deg)}
}

/*---------media detail---------*/
.media-detail-wrap{
  width:100%;
  max-width:815px;
  margin: 0 auto;
}
.writer-picture{
  width:50px;
  height:50px;
  border-radius:50%;
  overflow: hidden;
}
.writer-picture img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.writer-details{
  display: flex;
  align-items: center;
  gap:10px;
}
.published-box h5{
  margin-bottom:10px;
  font-size: 16px;
  line-height: 16px;
  color:#000;
}
.published-date{
  display: flex;
  gap:7px;
}
.published-date span,
.social-share-block span{
  color:#7C7A7A;
  font-size:14px;
  line-height: 14px;
}
.published-date span:last-child{
  padding-left:7px;
  position: relative;
}
.published-date span:last-child:before{
  content: "";
  position: absolute;
  top:50%;
  left:0px;
  transform: translateY(-50%);
  width:3px;
  height:3px;
  border-radius:50%;
  background:#7C7A7A;
}
.writer-social-share-wrap{
  display: flex;
  align-items: center;
  margin-bottom:50px;
}
.social-share-block{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap:10px;
}
.social-share-block ul{
  display: flex;
  align-items: center;
  gap:7px;
}
.social-share-block ul li a{
  display: flex;
  align-items: center;
  justify-content: center;
  width:36px;
  height:36px;
  border-radius:50%;
  border:1px solid #836C9C;
  font-size:16px;
  color:#836C9C;
}
.social-share-block ul li a:hover{
  background:#836C9C;
  color:#fff;
}
.media-detail-wrap h2{
  font-size:40px;
  line-height: 54px;
  color:#000;
}
.media-detail-image{
  width:100%;
  height:354px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}
.media-detail-image img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position:top;
}
.media-detail-image:before{
  content: "";
  position: absolute;
  top:0px;
  left:0px;
  width:100%;
  height:100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 59.84%, rgba(0, 0, 0, 0.64) 100%);
}
.media-detail-wrap p{
  color:#757575;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 30px;
}
.media-detail-wrap p:last-child{
  margin-bottom:0px;
}
.media-detail-cont-inner ul{
	margin-bottom:25px;
}
.media-detail-cont-inner ul li{
	color: #757575;
	font-size:16px;
    line-height: 26px;
    font-weight: 400;
	margin-bottom:5px;
	list-style-type: disc;
    list-style-position: inside;
}
.media-detail-cont-inner ul li:last-child{
	margin-bottom:0px;
}
.related-news-sec{
  background:#FAF5FF;
}

.related-news-sec .h-underline:before{
  width:147px;
}
.related-news-slider .slick-list{
  margin:0px -8px;
}
.related-news-slider .slick-slide{
  margin:0px 8px;
}
.related-news-slider .slick-arrow{
  margin-top: -25px;
}
.related-news-slider .slick-next{
  right:-75px;
}
.related-news-slider .slick-prev{
  left:-75px;
}
/*---------contact us---------*/
.contact-us-sec h2{
  color:#000;
}
.contact-us-sec .h-underline:before{
  background:#000;
  width:110px;
  height:2px;
}
.contact-us-sec p{
  color:#333333;
  margin-bottom:35px;
 font-weight:300;	
}
.contact-wrap{
  display: flex;
  gap:20px;
}
.contact-left-block{
  width:59%;
}
.contact-left-block form{
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
}
.contact-left-block form .wpcf7-form-control-wrap:nth-of-type(1),
.contact-left-block form .wpcf7-form-control-wrap:nth-of-type(2),
.contact-left-block form .wpcf7-form-control-wrap:nth-of-type(3),
.contact-left-block form .wpcf7-form-control-wrap:nth-of-type(4){
  width:49%;
}
.contact-left-block form .wpcf7-form-control-wrap{
  width:100%;
  margin-bottom:32px;
  display:block;
}
.contact-left-block form .wpcf7-form-control-wrap input,
.contact-left-block form .wpcf7-form-control-wrap textarea{
  width:100%;
  background:#F5F5F5;
  border:1px solid #D2D2D2;
  height:60px;
  border-radius: 10px;
  padding:0px 15px;
  color:#6A6A6A;
  font-size: 16px;
  font-family: var(--font-secondary);
  font-weight: 300;
}
.contact-left-block form .wpcf7-form-control-wrap textarea{
  height:214px;
  resize: none;
  padding:15px;
  display: block;
}
.contact-left-block form .wpcf7-form-control-wrap input::placeholder,
.contact-left-block form .wpcf7-form-control-wrap textarea::placeholder{
  color:#6A6A6A;
}
.contact-left-block form .submit-btn{
  width:160px;
}
.contact-left-block form .wpcf7-not-valid-tip{
  position: absolute;
}
.contact-right-block{
  width:41%;
  height:490px;
  background:var(--primary);
  border-radius:10px;
  padding:30px 25px;
}
.contact-right-block h3{
  margin-bottom:20px;
  color:#fff;
}
.contact-right-block p{
  color:#fff;
  margin-bottom: 25px;
  font-weight:300;	
}
.contact-info-box{
  margin-bottom:30px;
}
.contact-info-box:last-child{
  margin-bottom: 0px;
}
.contact-info-box h4{
  color:#fff;
  font-size: 24px;
  margin-bottom: 10px;
}
.icon-info-wrap{
  display: flex;
  align-items: center;
  gap:10px;
  margin-bottom:5px;
}
.icon-info-wrap:last-child{
  margin-bottom: 0px;
}
.icon-info-wrap p{
  margin-bottom: 0px;
  font-weight: 300;
}
.icon-info-wrap p a{
  color:#fff;
  font-weight: 300;
}
.icon-info-wrap p a:hover,
.contact-social-media li a:hover{
  opacity:0.7;
}
.contact-social-media{
  display: flex;
  align-items: center;
  gap:25px;
  padding-left:12px;
  margin-top:25px;	
}
.contact-social-media li a{
  color:#fff;
  font-size:19px;
}
/*-------Find a store---------*/
.location-search-block{
  display: flex;
  gap:20px;
  position:relative;
  z-index:1;
}
.location-search-block select{
  -webkit-appearance: none;
  -moz-appearance: none;
}
.location-search-block select,
.location-search-block .nice-select{
  width:44%;
}
.location-search-block button{
  width:127px;
  min-width: 127px;
  height:50px;
  border-radius:50px;
  border:1px solid var(--primary);
  background:var(--primary);
  color:#fff;
  font-size:16px;
  font-family: var(--font-primary);
  font-weight:300;
  cursor: pointer;
  transition: var(--transition);
}
.location-search-block button:hover{
  background:#000;
}
.location-search-block select,
.location-search-block .nice-select{
  height:50px;
  line-height:48px;
  border-radius:20px;
  border: 1px solid rgba(0,0,0,0.10);
  padding:0px 20px;
}
.location-search-block .nice-select .current,
.location-search-block select{
  font-size:20px;
  color:#000000;
  font-weight: 400;
  font-family: var(--font-secondary);
}
.location-search-block .nice-select:active, 
.location-search-block .nice-select.open, 
.location-search-block .nice-select:focus{
  border-color:rgba(0,0,0,0.10);
}
.location-search-block .nice-select:after {
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  width: 7px;
  height:7px;
  right:20px;
  margin-top: -7px;
}
.location-search-block .nice-select .list{
  width:100%;
}
.loc-area-block{
  padding:0px 40px;
  background:#FAF5FF;
  border-radius:10px;
  transition:var(--transition);
}
.loc-header{
  cursor: pointer;
  padding:40px 0px;
}
.loc-body{
  display:none;
  padding:10px 0px 70px;
}
.loc-header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.loc-info-box{
  display: flex;
  align-items: center;
  gap:30px;
}
.loc-header-inner li{
  width:300px;
}
.loc-logo{
  display: flex;
  align-items: center;
}
.loc-header-inner li:nth-of-type(1){
  width:110px;
}
.loc-header-inner li:nth-of-type(2){
  width:230px;
}
.loc-header-inner li:last-child{
  padding-left:20px;
}
.loc-header-inner li span{
  font-size:22px;
  line-height: 26px;
  display: block;
  color: var(--primary);
  font-family: var(--font-primary);
  font-weight: 500;
}
.loc-header-inner li p{
  max-width:265px;
}
.loc-header-inner li p,
.loc-header-inner li p a{
  color:#000000;
  font-size:16px;
  line-height: 24px;
  font-family: var(--font-secondary);
  font-weight: 400;
}
.location-map-area{
  height:475px;
  /*border:1px solid #AAAAAA;*/
  border-radius:10px;
  overflow: hidden;
}
.location-map-area img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.loc-area-block.active{
  background:var(--primary);
}
.loc-area-block.active .loc-info-box p,
.loc-area-block.active .loc-info-box p a,
.loc-area-block.active .loc-header-inner li span{
  color:#fff;
}
.loc-area-block.active .loc-header-inner li img{
    filter: brightness(0) invert(1);
}
.loc-area-block.active .loc-logo{
  width:100%;
}
.loc-body.active{
  display: block;
}
/*------Product Detail--------*/
.detail-banner-space{
  height:104px;
}
.breadcrumbs-product-detail{
  padding-bottom:40px;
}
.product-detail-wrap{
  max-width:1150px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  gap:40px;
}
.detail-left-box{
  width:47%;
}
.detail-right-box{
  width:53%;
}
.product-main-slide{
  width:100%;
  height:496px;
}
.product-main-slide img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.product-main-slider{
  border-radius:10px;
  overflow: hidden;
}
.product-main-slider .slick-list{
  margin:0px -2px;
}
.product-main-slider .slick-slide{
  margin:0px 2px;
}
.product-nav-slider{
  margin-top:20px;
}
.product-nav-slider .slick-list{
  margin:0px -10px;
}
.product-nav-slider .slick-slide{
  margin:0px 10px;
  border-radius:4px;
  overflow: hidden;
  border:2px solid transparent;
  padding:1px;
  cursor: pointer;
  opacity:0.50;
}
.product-nav-slide{
  width:100%;
  height:91px;
}
.product-nav-slide img{
  border-radius:4px;
  width:100%;
  height:100%;
  object-fit: cover;
}
.product-nav-slider .slick-slide.slick-current{
  border:2px solid var(--primary);
  opacity:1;
}
.product-nav-slider .slick-arrow{
  width: 38px;
  height:38px;
}
.product-nav-slider .slick-arrow:before{
  background-size:80%;
  background-position: center center;
}
.product-nav-slider .slick-next{
  right:-20px;
}
.product-nav-slider .slick-prev{
  left:-20px;
}
.product-nav-slider .slick-arrow.slick-disabled:before{
  opacity:1;
}
.detail-right-box h1{
  font-size:50px;
  line-height:50px;
  color:#000;
  margin-bottom:20px;
}
.product-sku{
  display: block;
  font:500 16px var(--font-secondary);
  line-height: 16px;
  color:var(--primary);
  margin-bottom:27px;
}
.short-descp{
  margin-bottom:30px;
}
.short-descp p{
  color:#6C6C6C;
}
.product-meta-wrap{
  background:#FBF8FF;
  border-radius: 10px;
  padding:25px 20px;
}
.product-meta-items{
  display: flex;
  flex-wrap:wrap;
  row-gap:30px;
  justify-content: space-between;
  margin-bottom:30px;
}
.product-meta-items > li{
  width:49%;
}
.inner-meta-box p{
  font-size:14px;
  line-height:14px;
  color:rgba(1, 1, 1, 0.50);
  margin-bottom:12px;
}
.inner-meta-box span{
  display: block;
  font-size:16px;
  line-height:16px;
  color:#010101;
  font-family: var(--font-secondary);
  font-weight: 500;
}
.inner-meta-box .filter-items-radio{
  gap:10px;
}
.inner-meta-box .filter-items-radio li label .checkmark{
  width:24px;
  height:24px;
}
.inner-meta-box .filter-items-radio li label .checkmark:after{
  width:5px;
  height:10px;
  left:8px;
  top:3px;
}
.share-product{
  width:49%;
  margin-left: 0;
  margin-top: 20px;
}
.share-product span{
  display: block;
  font-size:14px;
  line-height:14px;
  color:rgba(1, 1, 1, 0.50);
  margin-bottom: 8px;
}
.share-product ul{
  display:flex;
  align-items: center;
  gap:7px;
}
.share-product ul li a{
  display: flex;
  align-items: center;
  justify-content: center;
  width:30px;
  height:30px;
  border-radius:50px;
  border:1px solid #836C9C;
  color:#836C9C;
  font-size:16px;
}
.share-product ul li a:hover{
  background:#836C9C;
  color:#fff;
}
.enquire-btn-wrap{
  display: flex;
  align-items: center;
  gap:15px;
  margin-top:35px;
}
.enquire-btn-wrap a{
  display: flex;
  align-items: center;
  justify-content: center;
  width:49%;
  height:52px;
  border-radius:50px;
  box-shadow: 0px 2.32px 4.63px 0px #0000000D;
  border:1px solid var(--primary);
  background:var(--primary);
  color:#fff;
  font-size: 16px;
  font-weight:400;
  font-family: var(--font-primary);
}
.enquire-btn-wrap a:first-child{
  background: #FBF8FF;
  color:var(--primary);
}
.enquire-btn-wrap a:hover{
  background:#000;
  color:#fff;
}
.related-products{
  background:#FAF5FF;
}

.related-products .exp-image-box{
  background:#fff;
}

.hm-banner-slider,
.hm-our-range-sec,
.hm-best-seller-sec,
.hm-why-breelos-sec,
.hm-new-arrival-sec,
.hm-request-callback,
.hm-instagram-sec,
.of-hide,.related-news-sec,
.contact-us-sec,
.related-products{
  overflow: hidden;
}

/*----------------woocommerce-------------------*/
.sorting-options .bapf_sfilter{
	margin-bottom:0px;
}
.accordion-wrap .bapf_sfilter{
	margin-bottom:0px;
	border-bottom:1px solid rgba(0, 0, 0, 0.1);
}
.bapf_sfilter .bapf_head{
	padding: 30px 0px 25px;
}
.bapf_sfilter .bapf_head h3{
	margin-bottom: 0px;
	font-size: 20px;
	line-height: 27px;
	color: #000;
	padding-right: 25px;
	font-weight:500;
	border-bottom:0px;
	padding-bottom:0px;
}
.bapf_sfilter .bapf_head h3 i.bapf_colaps_smb{
	font-size:14px;
	margin-top:5px;
	background:transparent;
	width:auto;
	height:auto;
}
.accordion-wrap .bapf_sfilter .bapf_body{
	padding-bottom:25px;
}
.bapf_sfilter.bapf_tag_cloud ul{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.bapf_sfilter.bapf_tag_cloud ul li{
	display: block !important;
    line-height: unset;
    vertical-align: unset;
    margin: 0px !important;
}
.bapf_sfilter.bapf_tag_cloud input[type=checkbox]+label{
	background: #F0F0F0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.60);
    height: 39px;
    padding: 0px 20px !important;
}
.bapf_sfilter.bapf_tag_cloud input[type=checkbox]+label a{
	font-size: 14px;
    font-weight: 300;
	color: rgba(0, 0, 0, 0.60);
	background:transparent;
}
.bapf_sfilter.bapf_tag_cloud input[type=checkbox]+label:hover{
	background: #000;
	color:#fff;
}
.bapf_sfilter.bapf_tag_cloud input[type=checkbox]:checked+label{
	background: #000;
    color: #fff;
}
.bapf_sfilter.bapf_tag_cloud input[type=checkbox]:checked+label a,
.bapf_sfilter.bapf_tag_cloud input[type=checkbox]+label:hover a{
	color:#fff;
}
.bapf_sfilter.divi_color_class ul{
	display:flex;
	flex-wrap: wrap;
    gap: 20px;
}
.bapf_sfilter.divi_color_class ul li{
	margin-bottom:0px !important;
}
.bapf_sfilter.divi_color_class ul li label{
	margin-left:0px;
}
.bapf_sfilter.divi_color_class ul li .bapf_clr_span{
	margin:0px;
	width:32px !important;
	height:32px !important;
	border:1px solid rgba(0,0,0,0.20);
}
.bapf_sfilter.divi_color_class.brchecked_default input:checked+label .bapf_clr_span:before,
.bapf_sfilter.divi_color_class.brchecked_default input:checked+label .bapf_clr_span:after{
	height: 7px;
    width: 14px;
    border: 0;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(-45deg) skew(0deg, 0deg);
	margin-top:-2px;
}
.bapf_sfilter.bapf_ckbox_smlchck ul li{
	margin-bottom:10px !important;
	align-items:center;
}
.bapf_sfilter.bapf_ckbox_smlchck ul li:last-child{
	margin-bottom:0px !important;
}
.bapf_sfilter.bapf_ckbox_smlchck ul li label,
.bapf_sfilter.bapf_ckbox_smlchck ul li label a{
	color: rgba(0, 0, 0, 0.60);
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    font-family: var(--font-secondary);
}
.bapf_sfilter.bapf_ckbox_smlchck input[type=checkbox]{
	width:18px;
	height:18px;
	border:1px solid #D0D5DD;
	border-radius:4px;
	margin-right:8px;
	margin-top:0px;
}
.bapf_sfilter.bapf_ckbox_smlchck input[type=checkbox]:checked:after{
	border-color:#542785;
	width:8px;
	height:4px;
	top:4px;
	left:3px;
}
.bapf_sfilter.bapf_ckbox_smlchck input[type=checkbox]:checked{
	border-color:#542785;
}
.bapf_sfilter.bapf_ckbox_smlchck input[type=checkbox]:checked+label,
.bapf_sfilter.bapf_ckbox_smlchck input[type=checkbox]:checked+label a{
	color:rgba(0, 0, 0, 0.96);
}
.color-new-options .wvs-style-rounded{
	gap:5px;
}
.color-new-options .wvs-style-rounded li{
	margin:0px !important;
	padding:0px !important;
	width:18px !important;
	height:18px !important;
}
.nice-select-search-box{
  display: none;
}
.inner-meta-box .wvs-style-rounded{
	gap:10px;
}
.inner-meta-box .wvs-style-rounded li{
	margin:0px !important;
	padding:0px !important;
	width:24px !important;
	height:24px !important;
}

.fancybox-toolbar{
	display:none !important;
}

#bapf_1_any{
  display:none;

}
/*-------instagram--------*/
#sb_instagram{
	background:transparent !important;
	padding-bottom:0px !important;
}
#sb_instagram #sbi_images .sbi_item{
	border-radius:10px;
}
#sb_instagram #sbi_images .sbi_item:nth-child(even) {
    margin-top:80px !important;
}
#sb_instagram #sbi_images{
	padding:0px;
}


/* find a store hover */

.h-btn-link {
    position: relative;
    /* display: inline-block; */
}

.h-btn-link::after {
    content: attr(data-label); /* Get the label from the data attribute */
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 8px;
    font-size: 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
}

.h-btn-link:hover::after {
    opacity: 1;
    visibility: visible;
}

/* New Wooswatches style */

.inner-meta-box .wvs-style-rounded li {
  margin: 0px !important;
  padding: 0px !important;
  width: auto !important;
  min-height: 24px !important;
  border-radius: 5px !important;
  padding: 0px 15px !important;
}
.woo-variation-swatches .wvs-style-rounded.variable-items-wrapper .variable-item:not(.radio-variable-item) .variable-item-span, .woo-variation-swatches .wvs-style-rounded.variable-items-wrapper .variable-item:not(.radio-variable-item) img { border-radius: 0 !important;}
.woo-variation-swatches.wvs-show-label .variations th label{margin-top:10px; margin-bottom: 5px;}

.inner-meta-box select{
	width: 100%;
    height: 40px;
    border-radius: 5px;
    border: 1px solid var(--primary);
    color: #010101;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-secondary);
	padding:0px 5px;
	-webkit-appearance: none;
    -moz-appearance: none;
	background: url(../images/drop.png) #FBF8FF no-repeat 97% center;
}