/** Shopify CDN: Minification failed

Line 448:6 Expected ":"
Line 810:4 Expected ":"

**/
:root {
  --primary: #52317A;
  --white: #FFFFFF;
  --dark: #212529;
  --gray-100: #E0E0E0;
  --cream-200: #F1E9E3;
  --purple-200: #EFE3F1;
  --gold-500: #F5E1D3;
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Cairo", sans-serif;
  color: var(--dark);
  overflow-x: hidden;
}

.noto-serif {
  /* font-family: 'Quincy CF'; */
}
body.rtl .noto-serif {
   font-family: "Cairo", sans-serif;
}
.text-center {
  text-align: center;
}

.d-flex {
  display: flex;
}

.equal-col {
  width: 50%;
}

.align-center {
  align-items: center;
}

.img-responsive {
  max-width: 100%;
  display: block;
  height: auto;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.text-white {
  color: var(--white);
}

.text-dark {
  color: var(--dark);
}

.d-md-none {
  display: none;
}

.section-title {
font-size: 48px;
font-weight: 500;
line-height: 56px;
}

.hero {
  background-color: var(--primary);
  padding: 180px 0;
  display: flex;
}
.hero .hero-content {
  padding-right: 80px;
}
.hero .hero-left {
  flex-grow: 1;
  flex-basis: 0;
}
.hero .hero-left h1 {
  font-size: 50px;
  line-height: 110%;
}
.hero .hero-left p {
  margin-top: 35px;
  line-height: 26px;
}
.hero .hero-left .hero-btn {
  margin-top: 30px;
}
.hero .hero-right {
  flex-grow: 1;
  flex-basis: 0;
  position: relative;
}

.hero-background-overlay {
  height: 643px;
  width: 671px;
  top: 0;
  right: 0;
  position: absolute;
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 100%;
  opacity: 1;
  z-index: 1;
  background-image: url("images/hero-bg.png");
}
.hero-background-overlay .capsule-text {
  position: absolute;
  bottom: 90px;
  left: 10px;
}

.btn-white {
  background-color: var(--white);
  padding: 10px 25px;
  border-radius: 50px;
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
.btn-white:hover {
  background-color: var(--gold-500);
}

.client-review {
  padding: 70px 0;
  background-image: url("images/review-bg.png");
  background-size: cover;
  background-position: left;
}
@media(max-width:767px){
  .client-review {
    padding: 40px 0;
  }
}
.client-review .section-title {
  margin-bottom: 50px;
}
.client-review .review-box {
  border: 1px solid var(--gray-100);
  background-color: var(--white);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: space-between;
}
.client-review .review-box .author-name {
  font-size: 16px;
  margin-top: 20px;
}
.client-review .review-box .author-desc {color: #333333;}
.client-review .review-box .quote-icon {
  margin-bottom: 10px;
}
.client-review .review-box .review-product-product {
  flex-shrink: 0;
  height: 100px;
  width: 100px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  box-sizing: border-box;
}
.client-review .review-box .review-box-cream {
  background-color: var(--cream-200);
}
.client-review .review-box .review-box-purple {
  background-color: var(--purple-200);
}

/* Large desktops and larger screens */
@media screen and (min-width: 1441px) and (max-width: 1920px) {
  .container {
    max-width: 1340px !important; /* Comment by Kaushik */
  }
}
/* Large desktops and larger screens */
@media screen and (min-width: 1221px) and (max-width: 1440px) {
  .container {
    max-width: 1200px !important; /* Comment by Kaushik */
  }
  .hero {
    padding: 120px 0 180px;
  }
}
/* Medium to large desktops */
@media screen and (min-width: 1025px) and (max-width: 1220px) {
  .container {
    max-width: 100%;
  }
  .hero {
    padding: 120px 0;
  }
  .hero-background-overlay {
    width: 600px;
  }
  .hero-background-overlay .capsule-text {
    bottom: 150px;
  }
}
/* Tablets (landscape) and small desktops */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .container {
    max-width: 100%;
  }
  .d-md-flex {
    display: flex;
  }
  .hero {
    padding: 80px 0 100px;
  }
  .hero-background-overlay {
    width: 600px;
  }
  .hero-background-overlay .capsule-text {
    bottom: 150px;
  }
  .client-review .review-box {
    align-items: center;
  }
  .client-review .review-box .review-product-product {
    height: 120px;
    width: 120px;
  }
}
/* Tablets (portrait) */
@media screen and (min-width: 640px) and (max-width: 768px) {
  .container {
    max-width: 100%;
  }
  .hero {
    padding: 80px 0 50px;
  }
  .hero .hero-left h1 {
    font-size: 30px;
  }
  .hero-background-overlay {
    width: 500px;
  }
  .hero-background-overlay .capsule-text {
    bottom: 230px;
  }
  .client-review .review-box {
    align-items: center;
    flex-direction: column;
  }
  .client-review .review-box .review-product-product {
    height: 100px;
    width: 100px;
  }
}
/* Mobile devices (portrait and landscape) */
@media screen and (min-width: 320px) and (max-width: 639px) {
  .d-none {
    display: none;
  }
  .flex-col-sm {
    flex-direction: column;
  }
  .d-block {
    display: block;
  }
  .hero-background-overlay {
    width: 100%;
    top: 0px;
  }
  .hero {
    padding: 80px 0 100px;
  }
  .hero .hero-content {
    padding-right: 0;
  }
  .hero .hero-left h1 {
    font-size: 35px;
    line-height: 110%;
  }
  .hero h3 {
    display: none;
  }
  .hero .hero-img-sm {
    width: 100%;
    border-radius: 40px;
  }
  .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .client-review .review-box {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .client-review .review-box .review-product-product {
    height: 100px;
    width: 100px;
  }
}/*# sourceMappingURL=style.css.map */
/*Header Style*/
.cms-top-header .topbar{
  background: #FFC107;
}
.cms-top-header .wrapper-bar-message .announcement-bar__message{
  color: #131313;
}
.laber-newsletter .design-3 .container {
  background-color: #FFEDE0;
  background-image: url('news-letter-bg.svg'); /* Path to the SVG file */
  background-repeat: no-repeat;
  background-size: 100%;
  padding:84px 10px;
  direction:ltr;
}
.laber-newsletter .design-3.product-page .wrap_title.large {
  margin-bottom: 30px;
  margin-top: 0px;
}
.laber-newsletter .design-3 .wrap_title.large .section-title {
  transform:rotate(-3deg);
}
.laber-newsletter .design-3 .signup-newsletter-form {
  gap:0px;
  margin-bottom:20px;
}
.laber-newsletter .product-page .laber_mail {
  padding: 30px;
}
.laber-newsletter .design-3 .signup-newsletter-form .input-text {
  border-radius:0px;
  border: 2px solid #000000;
  border-right:0px;
  transform:rotate(-3deg);
}
.laber-newsletter .design-3 .signup-newsletter-form .submit-btn {
  min-width:200px;
  background:#000;
  color:#fff;
  border-radius:0px;
  border: 2px solid #000000;
  transform:rotate(-3deg);
  margin-top:-21px;
  display:inherit;
}
.laber-newsletter .design-3.product-page .signup-newsletter-form .submit-btn{
  margin-top:-23px;
}
.laber-newsletter .laber_mail .content { transform:rotate(-3deg); font-weight:700;}
.separator-pattern-quiz {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.tab-product .products-arrivals {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  box-shadow:6px 6px 2px 2px #000;
  border:2px solid #000
}
.slider-item-details-wrap {
  width: 50%;
}
.sorting-collections {
  position: relative;
  width: 45%;
}
.goal-content-slider .slider-item .title-wrap {
  display: flex;
  margin-bottom:20px;
  margin-top:20px;
}
.goal-content-slider .slider-item .title-wrap span {
  font-size:42px;
  font-weight:800;
}
.goal-content-slider .slider-item .title-wrap img {
  height: 52px;
  width: 52px;
  margin-top: 10px;
  margin-right: 20px;
}
.goal-content-slider .slider-item .description-wrap {
  font-size: 18px;
  max-width: 550px;
  line-height: 32px;
  padding-left: 10px;
}
/* Responsive by Appx*/
@media(max-width:950px){
  .tab-product .products-arrivals {
    display:block;
  }
  .slider-item-details-wrap {
    width: 100%;
    text-align:center;
    padding-bottom:20px;
    margin-left:15vh;
  }
  .sorting-collections {
    position: relative;
    width: 100%;
  }
}
@media(max-width:850px){
   .slider-item-details-wrap {
     margin-left:11vh;
   }
}
@media(max-width:750px){
   .slider-item-details-wrap {
     margin-left:0vh;
     text-align:left;
   }
}
@media(max-width:638px){
     .slider-item-details-wrap {

   }
}
.cms_section .wrap_title .title-bottom-image { margin-right: 100px; }
.rtl .cms_section .wrap_title .title-bottom-image { margin-top: 20px; }
.cms_section .wrap_title  svg.best-seller-left {
  position: absolute;
  align-self: flex-end;
  right: 20px;
  top: -30px;
}
.faqs-section .wrap_title{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction:row;
}
.faqs-section .wrap_title.style2 .section-title {
  font-size: 55px;
  font-weight: 700;
  font-family: 'Rubik';
}
.faqs-section .wrap_title.style2 .section-title svg.faq-title-pattern {
  position: absolute;
  top: -30px;
  left: 40%;
}
.faq-section .faqs-section .item-faq .heading-title>span { font-weight:600;}
.faqs-section .wrap_title.style2 .section-subtitle {
  direction: rtl;
  font-size: 54px;
  max-width: 150px;
  line-height: 38px;
  color: #908989;
  font-family: Quincy CF;
}
.faq-section .faqs-section .item-faq .js-item-faq {
  background: #FFFFFF;
  padding: 25px;  
  border: 3px solid #000;
  margin-bottom: 20px;
  border-radius: 30px;
  cursor:pointer;
}
.faq-section .faqs-section .item.active .heading-title .faqs-icon i:before {
  content: '\e952';
}
.faq-section .faqs-section .item-faq .heading-title .faqs-icon {
  border: 2px solid #000;
  border-radius: 30px;
  padding: 10px;
}
.icon-box-wrapper button.slick-prev.slick-arrow {
    padding: 0px;
    left: -10px;
    width: 40px;
    height: 40px;
}
.icon-box-wrapper button.slick-next.slick-arrow {
    padding: 0px;
    right: -10px;
    width: 40px;
    height: 40px;
}
/* Responsive By Appx Team */

@media (max-width:1440px){
  .laber-newsletter .design-3 .signup-newsletter-form .submit-btn{
    margin-top:-19px;
    transition:none;
  }
  .laber-newsletter .design-3 .container {
    background-size: 95%;
    padding:90px 10px 110px 10px;
  }
  .laber-newsletter .design-3 .container {
    max-width: 1400px;
    margin: 0 0 100px 200px;
    width: 100%;
  }
  .laber_mail{
    margin:0 200px 0 0;
    padding:0 !important;
  }
  .laber-newsletter .laber_mail{
    margin-top:-12px;
  }
  html .wrap_title.large .section-title {
    font-size:40px;
  }
  .laber-newsletter .design-3.product-page .signup-newsletter-form .submit-btn {
      margin-top: -22px;
  }
}
@media(max-width:1340px){
   .laber-newsletter .design-3 .container {
    background-size: 95%;
    padding:90px 10px 120px 10px;
  }
  .laber-newsletter .design-3 .container {
    max-width: 1000px;
    margin: 0 0 100px 100px;
    width: 100%;
  }
  .laber_mail{
    margin:0 0 0 0;
    padding:0 !important;
  }
  .laber-newsletter .laber_mail{
    margin-top:-18px;
    margin-left:-10px;
  }
}
@media(max-width:1340px){
  .laber-newsletter .design-3 .container {
    max-width: 1000px;
    margin: 0 0 100px 75px;
    width: 100%;
  }
}
@media(max-width:1220px){
  .laber-newsletter section{
    padding-bottom:0 !important;
    padding-top:10px !important;
  }
  .laber-newsletter .design-3 .wrap_title.large .section-title {
    font-size:30px;
  }
  .laber_mail{
    margin:-20px 0 0 0;
    background:transparent !important;
  }
  html .wrap_title.large .section-title {
    font-size:40px;
    line-height:40px;
  }
  .laber-newsletter .design-3.product-page .signup-newsletter-form .submit-btn {
    margin-top: -18px;
  }
  .laber-newsletter .design-3 .container {
    max-width: 1000px;
    margin: 0 0 100px 120px;
    width: 100%;
  }
  .laber-newsletter .design-3 .signup-newsletter-form .submit-btn{
    margin-top:-16px;
    transition:none;
  }
}
@media (max-width:1142px){
  .laber-newsletter .design-3 .signup-newsletter-form .submit-btn{
    margin-top:-16px;
    transition:none;
  }
}
@media (max-width:1100px){
  .laber-newsletter .design-3 .signup-newsletter-form .submit-btn{
    margin-top:-15px;
    transition:none;
  }
  .laber_mail{
    margin:10px 0 0 0;
  }
  .laber-newsletter .design-3 .container {
    max-width: 1000px;
    margin: 0 0 150px 70px;
    width: 100%;
  }
  .laber-newsletter .design-3 .container {
    padding:90px 10px;
  }
}
@media(max-width:1023px){
  .laber-newsletter .design-3 .signup-newsletter-form .input-text {
    width:300px
  }
  .laber-newsletter .design-3 .container{
    margin:0 0 150px 20px;
  }
    .laber-newsletter .design-3 .signup-newsletter-form .submit-btn{
    margin-top:-13px;
    transition:none;
  }
  .laber-newsletter .design-3.product-page .signup-newsletter-form .submit-btn {
    margin-top: -13px;
  }
}
@media(max-width:968px){
  .laber_mail{
    height:150px;   
    margin:-20px 0 100px 0;
  }
  .laber-newsletter .design-3 .container {
    padding: 62px 10px 90px 10px;
  }
}

@media (max-width:820px){
  .laber-newsletter .design-3 .container {
    padding:58px 10px;
  }
  html .wrap_title.large .section-title {
    font-size:30px;
    line-height:30px;
  }
}
@media (max-width:767px){
  .laber-newsletter .design-3 .signup-newsletter-form .submit-btn{
    margin-top:-13px;
    transition:none;
  }
  .laber-newsletter .design-3 .container {
    background-size:stretch;
    max-width: 1400px !important;
    margin:0 0 0 20px;
    width: 100% ;
  }
  .laber_mail{
    margin:-27px 0 0 0;
  }
  .laber-newsletter .design-3.product-page .wrap_title.large {
    margin-bottom: 12px;
    margin-top: 0px;
  }
  .laber-newsletter .design-3.product-page .wrap_title.large .section-title {
    font-size:25px;
  }
  .laber-newsletter .laber_mail .content   {
    margin-top:-13px;
  }
  .cms_section .wrap_title svg.best-seller-left {
    width: 25px;
    right: 170px;
  }
  .cms_section .wrap_title .title-bottom-image {
     margin-right: 250px;
     margin-top: 10px;
  }
  .goal-content-slider .slider-item .title-wrap {
    display:flex;
    align-items: center;
  }
  .goal-content-slider .slider-item .title-wrap span {
    font-size:24px;
  }
  .goal-content-slider .slider-item .description-wrap {
    font-size:16px;
  }
}
@media(max-width:710px){
  .laber-newsletter .design-3 .signup-newsletter-form .input-text {
    width:200px;
    height:30px;
  }
  .laber-newsletter .design-3 .signup-newsletter-form .submit-btn{
    margin-top:-11px;
    transition:none;
    height:30px;
  }
  .laber-newsletter .design-3 .wrap_title.large .section-title {
    font-size:20px;
  }
  .laber-newsletter .design-3 .container {
    background-size:stretch;
    max-width: 1400px !important;
    margin:0 0 0 20px;
    width: 100% ;
  }
  .laber_mail{
    margin:-25px 0 100px -70px;
    padding:0 0 0 0;
    height:50px;
  }
  .laber-newsletter .laber_mail .content {
    margin-top:-20px;
  }
  .laber-newsletter .design-3.product-page .wrap_title.large .section-title {
    font-size:22px;
    margin-top: -15px;
  }
  .laber-newsletter .design-3.product-page .signup-newsletter-form .submit-btn {
    margin-top: -10px;
  }
}
@media (max-width:575px){
  .laber-newsletter .design-3 .signup-newsletter-form .input-text {
    width:150px;
    height:30px;
  }
  .laber-newsletter .design-3 .signup-newsletter-form .submit-btn{
    margin-top:-9px;
    transition:none;
    height:30px;
    font-size:15px;
    padding:0 0px 0 0px;
  }
  .laber_mail{
    margin:-20px 0 0 -50px;
    height:25px;
  }
  .laber-newsletter .design-3 .wrap_title.large .section-title {
    font-size:19px;
    margin-top:-15px;
  }
  .laber-newsletter .laber_mail .content {
    font-size:12px;
  }
  .laber-newsletter .design-3.product-page .wrap_title.large .section-title {
    font-size: 19px;
    margin-top: -25px;
  }
  .laber-newsletter .design-3.product-page .signup-newsletter-form .submit-btn {
    margin-top: -9px;
  }
}
@media (max-width:535px){
  .laber-newsletter .design-3 .signup-newsletter-form .submit-btn{
    margin-top:-9px;
    min-width:100px;
  }
  .laber-newsletter .design-3 .signup-newsletter-form .input-text {
    width:180px;
    height:30px;
  }
  .laber-newsletter .design-3 .container {
    padding:41px 10px 60px 10px;
  }
  .wrap_title {
    margin-bottom: 5px;
  }
  .laber-newsletter .design-3 .wrap_title.large .section-title {
        font-size: 17px;
        margin-top: -15px;
        padding-top: 10px;
        margin-bottom: 0px;
  }
}
@media (max-width:435px){
  .laber-newsletter section{
    padding-bottom:0 !important;
    padding-top:0px !important;
    margin-top:0 !important;
    margin-bottom:0 !important;
  }
  .laber-newsletter .design-3 .signup-newsletter-form .submit-btn{
    margin-top:-11px;
    min-width:60px;
    font-size:12px;
  }
  .laber-newsletter .design-3 .signup-newsletter-form .input-text {
    width:190px;
    height:30px;
    margin-right:-25px;
    margin-top:-10px;
  }
  .laber-newsletter .design-3 .container {
    background-size:100%;
    max-width: 1400px !important;
    margin:0 0 0 0px;
    width: 100% ;
  }
  .laber-newsletter .laber_mail .content {
    font-size:10px;
  }
  .laber-newsletter .design-3.product-page .signup-newsletter-form .submit-btn {
    margin-top: -12px;
  }
  .laber-newsletter .design-3.product-page .wrap_title.large {
    margin-bottom: 6px;
    margin-top: 0px;
  }
}

@media(max-width:400px){
  .laber-newsletter .design-3.product-page .wrap_title.large .section-title {
      font-size: 15px;
      margin-top: -25px;
  }
  .laber-newsletter .design-3.product-page .signup-newsletter-form .submit-btn {
    margin-top: -10px;
  }
  .cms_section .wrap_title svg.best-seller-left {
    right: 15px;
  }
  .laber-newsletter .design-3 .wrap_title.large .section-title {
    font-size:14px;
    margin-top: -25px;
  }
}
@media(max-width:382px){
    .laber-newsletter .design-3 .wrap_title.large .section-title {
        font-size: 12px;
        margin-top: -30px;
    }
  .laber-newsletter .design-3.product-page .signup-newsletter-form .submit-btn {
    margin-top: -11px;
  }
}
@media(max-width:640px){
   .cms_section .wrap_title .title-bottom-image {
      margin-right: 240px;
      margin-top: 10px;
   }
  .cms_section .wrap_title svg.best-seller-left {
        width: 25px;
        right: 155px;
    }
}
@media(max-width:480px){
    .cms_section .wrap_title svg.best-seller-left {
        width: 25px;
        right: 0px;
    }
    .cms_section .wrap_title .title-bottom-image {
        margin-right: 170px;
        margin-top: 10px;
    }
    html .tabcontent .tab-products ul li a .icon-image {
        min-height: 125px;
        min-width: 125px;
    }
    html .tabcontent .tab-products ul li a .icon-image img {
        width: 40px;
        height: 40px;
    }
}