
/** about-section **/

.about-section{
  position: relative;
}

.about-section .image-box{
  position: relative;
  display: block;
  margin-right: 117px;
  padding-right: 142px;
  padding-bottom: 35px;
}

.about-section .image-box .image-1{
  position: relative;
  display: block;
  border-radius: 300px 300px 300px 10px;
  overflow: hidden;
}

.about-section .image-box img{
  position: relative;
  width: 100%;
}

.about-section .image-box .image-2{
  position: absolute;
  right: 0px;
  bottom: 0px;
  border-radius: 250px 250px 10px 250px;
}

.about-section .image-box .image-2 img{
  border-radius: 250px 250px 10px 250px;
}

.about-section .image-box .image-2:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: 100%;
  right: 16px;
  bottom: 16px;
  border-radius: 250px 250px 10px 250px;
}

.about-section .image-box .rotate-box{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 57px;
  top: 58px;
  width: 186px;
  height: 186px;
  line-height: 186px;
  background: #fff;
  border-radius: 50%;
  border: dashed;
  border-width: 1px;
  z-index: 2;
}

.about-section .image-box .rotate-box .curved-circle{
  position: absolute;
  left: 93px;
  top: 7px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-section .image-box .rotate-box .icon-box img{
  display: inline-block;
  width: auto;
}

.about-section .content-box{
  position: relative;
  display: block;
}

.about-section .content-box h2{
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 20px;
}

.about-section .content-box p span{
  font-weight: 700;
}

.about-section .content-box .inner-box{
  position: relative;
  display: block;
  background: #FDF7F9;
  border-radius: 10px;
  border: dashed;
  border-width: 1px;
  border-top: solid;
  border-top-width: 3px;
  padding: 35px 40px;
}

.funfact-block-one{
  position: relative;
  display: block;
}

.funfact-block-one:before{
  position: absolute;
  content: '';
  background: #E5E5E5;
  width: 1px;
  height: 100%;
  top: 0px;
  right: 15px;
}

.funfact-block:last-child .funfact-block-one:before{
  display: none;
}

.funfact-block-one .count-outer{
  position: relative;
  display: block;
  font-size: 48px;
  line-height: 50px;
  font-weight: 700;
}

.funfact-block-one p{
  color: var(--title-color);
}

.funfact-block-one .count-outer .symble{
  position: relative;
  top: -10px;
}



/** rtl-css **/

.rtl .about-section .image-box{
  margin-right: 0px;
  margin-left: 117px;
}

.rtl .funfact-block-one:before{
  right: inherit;
  left: 15px;
}


/** responsive-css **/

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

}

@media only screen and (max-width: 991px){
  .about-section .image-box{
    margin: 0px;
    margin-bottom: 30px;
  }

  .rtl .about-section .image-box{
    margin-left: 0px;
  }

  .funfact-block-one{
    margin-bottom: 30px;
  }

  .funfact-block-one:before{
    display: none;
  }

  .about-section .content-box .inner-box{
    padding-bottom: 5px;
  }
}

@media only screen and (max-width: 767px){
  .about-section .content-box h2{
    font-size: 30px;
    line-height: 40px;
  }

  .about-section{
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 599px){
  .about-section .image-box{
    padding: 0px;
  }

  .about-section .image-box .image-2{
    position: relative;
    margin-top: 30px;
  }

  .about-section .content-box .inner-box{
    padding-left: 30px;
    padding-right: 30px;
  }
}

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

}












































/** account-section **/

.account-section{
  position: relative;
}

.account-section .sec-title h2{
  font-size: 36px;
  line-height: 42px;
}

.account-section .inner-container{
  position: relative;
  display: block;
  border: 1px dashed #D8D8D8;
  padding-left: 510px;
  min-height: 600px;
  border-radius: 10px;
  overflow: hidden;
}

.account-section .inner-container .account-info{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 420px;
  height: 100%;
  background: #FDF7F9;
  padding: 50px 0px;
}

.account-section .inner-container .account-info .image-box{
  position: relative;
  display: inline-block;
  border-radius: 50%;
  margin-bottom: 23px;
}

.account-section .inner-container .account-info .image-box img{
  width: 100%;
  border-radius: 50%;
}

.account-section .inner-container .account-info h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 1px;
}

.account-section .inner-container .account-info a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 26px;
  color: var(--text-color);
}

.account-section .inner-container .account-info a:hover{

}

.account-section .inner-container .tab-btns li{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600;
  cursor: pointer;
  padding: 13.5px 40px;
  transition: all 500ms ease;
}

.account-section .inner-container .tab-btns li:last-child{
  margin-bottom: 0px;
}

.account-section .inner-container .tab-btns li.active-btn{
  background: #fff;
}

.account-section .payment-option .bank-payment{
  position: relative;
  display: block;
  background: rgba(247, 247, 247, 1);
  padding: 22px 30px;
  margin-bottom: 30px;
}

.account-section .payment-option .bank-payment p{
  font-size: 15px;
  line-height: 24px;
  margin-left: 24px;
}

.account-section .payment-option .check-box label{
  font-size: 16px;
  line-height: 24px;
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.account-section .tabs-content{
  padding: 50px 80px 50px 0px;
}

.account-section .tabs-content h3{
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 20px;
}

.account-section .personal-info h3{
  margin-bottom: 8px;
}

.account-section .personal-info p{
  margin-bottom: 22px;
}

.account-section .personal-info .single-item{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  border: 1px dashed #D8D8D8;
  background: #FDF7F9;
  padding: 13px 20px;
  margin-bottom: 30px;
}

.account-section .personal-info .single-item h6{
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 1px;
}

.account-section .personal-info .single-item span{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
}

.account-section .personal-info .single-item button{
  position: absolute;
  top: 13px;
  right: 20px;
  font-size: 14px;
  line-height: 24px;
  color: rgba(106, 106, 106, 1);
}

.account-section .personal-info .single-item span a{
  display: inline-block;
  color: var(--text-color);
}

.account-section .personal-info .single-item span a:hover{

}

.account-section .history-box .single-history{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.account-section .history-box .single-history .product-box{
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.account-section .history-box .single-history .product-box .image-box{
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(229, 229, 229, 1);
  margin-right: 30px;
}

.account-section .history-box .single-history .product-box .image-box img{
  width: 100%;
}

.account-section .history-box .single-history .product-box .product-info h6{
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 2px;
}

.account-section .history-box .single-history .product-box .product-info h6 a{
  display: inline-block;
  color: var(--title-color);
}

.account-section .history-box .single-history .product-box .product-info h6 a:hover{

}

.account-section .history-box .single-history .product-box .product-info span{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 2px;
}

.account-section .history-box .single-history .product-box .product-info h4{
  font-size: 20px;
  line-height: 28px;
  color: rgba(233, 37, 48, 1);
}

.account-section .sec-title h2{
  font-size: 36px;
  line-height: 42px;
}


/** rtl-css **/

.rtl .account-section .history-box .single-history .product-box .image-box{
  margin-right: 0px;
  margin-left: 15px;
}

.rtl .account-section .personal-info .single-item button{
  right: inherit;
  left: 20px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){
  .account-section .inner-container{
    padding-left: 370px;
  }

  .account-section .tabs-content{
    padding-right: 50px;
  }

  .account-section .inner-container .account-info{
    width: 340px;
  }
}

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

}

@media only screen and (max-width: 767px){
  .account-section .inner-container{
    padding-left: 0px;
    min-height: auto;
  }

  .account-section .inner-container .account-info{
    position: relative;
    width: 100%;
  }

  .account-section .tabs-content{
    padding-left: 30px;
    padding-right: 30px;
  }

  .account-section{
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 599px){
  .account-section .history-box .single-history,
  .account-section .history-box .single-history .product-box{
    display: block;
  }

  .account-section .history-box .single-history .product-box .image-box{
    margin-right: 0px;
    margin-bottom: 15px;
  }
}

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

}












































/** ads-section **/

.ads-section{
  position: relative;
  background: #E2D1FF;
}

.ads-section .content-box{
  position: relative;
  display: block;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.ads-section .content-box .icon-box{
  position: relative;
  display: inline-block;
  margin-bottom: 11px;
}

.ads-section .content-box h2{
  display: block;
  font-size: 72px;
  line-height: 80px;
  margin-bottom: 11px;
}

.ads-section .content-box h2 span{
  position: relative;
  display: block;
  font-weight: 400;
}

.ads-section .content-box h3{
  display: block;
  font-size: 28px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 35px;
}

.ads-section .content-box h3 span{
  color: #FF0000;
}

.ads-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.ads-section .image-box-one{
  position: absolute;
  left: 80px;
  bottom: -90px;
}

.ads-section .image-box-two{
  position: absolute;
  right: 80px;
  bottom: -90px;
}

.ads-section .image-inner .author-box{
  position: absolute;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  padding: 7px;
  border: dashed;
  border-width: 2px;
}

.ads-section .image-inner .author-box img{
  width: 1005;
}

.ads-section .image-inner .image-box-one .author-box{
  left: 0px;
  top: 50px;
}

.ads-section .image-inner .image-box-two .author-box{
  right: 0px;
  top: 50px;
}


/** rtl-css **/




/** responsive-css **/

@media only screen and (max-width: 1200px){
  .ads-section .image-inner{
    display: none;
  }
}

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

}

@media only screen and (max-width: 767px){
  .ads-section{
    padding: 70px 0px;
  }

  .ads-section .content-box h2{
    font-size: 40px;
    line-height: 50px;
  }
}

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

}

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

}












































/** banner-section **/

.banner-section{
  position: relative;
  padding: 70px 0px 115px 0px;
  overflow: hidden;
  background: linear-gradient(78.33deg, #FFCF78 5.9%, #FEE2B1 97.88%);
}

.banner-section .pattern-layer{
  position: absolute;
  left: 0px;
  bottom: -1px;
  width: 100%;
  height: 76px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: 1;
}

.banner-section .image-box{
  position: relative;
  display: block;
}

.banner-section .image-box .image{
  position: relative;
  max-width: 556px;
  width: 100%;
  margin: 0 auto;
}

.banner-section .content-box{
  position: relative;
  display: block;
}

.banner-section .content-box h1,
.banner-section .content-box h2{
  display: block;
  font-size: 72px;
  line-height: 76px;
  font-weight: 800;
  margin-bottom: 21px;
}

.banner-section .content-box h3{
  display: block;
  font-size: 32px;
  line-height: 40px;
  font-weight: 400;
  margin-bottom: 31px;
}

.banner-section .content-box h3 span{
  display: inline-block;
  font-weight: 800;
  color: #E92530;
}

.banner-section .anim-icon .anim-icon-1{
  position: absolute;
  left: 20px;
  bottom: 145px;
  width: 127px;
  height: 80px;
  z-index: 1;
}

.banner-section .anim-icon .anim-icon-2{
  position: absolute;
  left: 8px;
  bottom: 175px;
  width: 192px;
  height: 144px;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.banner-section .anim-icon .anim-icon-3{
  position: absolute;
  left: 88px;
  top: 184px;
  width: 34px;
  height: 31px;
  background-repeat: no-repeat;
}

.banner-section .anim-icon .anim-icon-4{
  position: absolute;
  left: 46%;
  top: 255px;
  width: 34px;
  height: 31px;
  background-repeat: no-repeat;
}

.banner-section .anim-icon .anim-icon-5{
  position: absolute;
  top: 87px;
  right: 555px;
  width: 34px;
  height: 31px;
  background-repeat: no-repeat;
}

.banner-section .anim-icon .anim-icon-6{
  position: absolute;
  bottom: 170px;
  right: 520px;
  width: 34px;
  height: 31px;
  background-repeat: no-repeat;
}

.banner-section .anim-icon .anim-icon-7{
  position: absolute;
  left: 45%;
  top: 102px;
  width: 128px;
  height: 95px;
  background-repeat: no-repeat;
}

.banner-section .anim-icon .anim-icon-8{
  position: absolute;
  right: 95px;
  top: 120px;
  width: 168px;
  height: 119px;
  background-repeat: no-repeat;
}

.banner-section .anim-icon .anim-icon-9{
  position: absolute;
  top: 190px;
  right: 112px;
  width: 93px;
  height: 93px;
  background-repeat: no-repeat;
}

.banner-section .anim-icon .anim-icon-10{
  position: absolute;
  right: 233px;
  bottom: 209px;
  width: 68px;
  height: 79px;
  background-repeat: no-repeat;
}

.banner-section .anim-icon .anim-icon-11{
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 268px;
  height: 221px;
  background-repeat: no-repeat;
}

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


/** banner-style-two **/

.banner-style-two{
  position: relative;
  padding: 0px;
  background: transparent;
}

.banner-style-two .banner-content{
  border-radius: 20px;
  overflow: hidden;
}

.banner-style-two .image-box .image{
  max-width: 519px;
}

.banner-style-two .lower-content{
  position: relative;
  width: 100%;
  background: #9AB3D8;
  padding: 18px 30px;
  z-index: 5;
}

.banner-style-two .lower-content:before,
.banner-style-two .lower-content:after{
  position: absolute;
  content: '';
  background: #fff;
  width: 1px;
  height: 100%;
  top: 0px;
  opacity: 0.4;
}

.banner-style-two .lower-content:before{
  left: 33.333%;
}

.banner-style-two .lower-content:after{
  left: 66.666%;
}

.banner-style-two .lower-content .info-list{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.banner-style-two .lower-content .info-list li{
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 700;
}

.banner-style-two .slide-item{
  position: relative;
  padding: 60px 120px;
}

.banner-style-two .slide-item .bg-color-1{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(190, 239, 255, 1);
}

.banner-style-two .slide-item .bg-color-2{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(255, 238, 151, 1);
}

.banner-style-two .slide-item .bg-color-3{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(255, 175, 151, 1);
}

.banner-carousel .content-box,
.banner-carousel .image-box{
  position: relative;
  z-index: 5;
}

.banner-carousel .content-box h2{
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
  
.banner-carousel .active .content-box h2{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}

.banner-carousel .content-box h3{
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
  
.banner-carousel .active .content-box h3{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.banner-carousel .content-box .btn-box{
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
  
.banner-carousel .active .content-box .btn-box{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
}

.banner-style-two .big-text{
  position: absolute;
  left: 0px;
  bottom: -66px;
  font-size: 280px;
  line-height: 200px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  opacity: 0.5;
  width: 100%;
  text-align: center;
}

.banner-section .anim-icon{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

.banner-section .anim-icon .anim-icon-12{
  position: absolute;
  top: -270px;
  right: -85px;
  width: 822px;
  height: 822px;
  background: #fff;
  opacity: 0.2;
  border-radius: 50%;
}

.banner-section .anim-icon .anim-icon-13{
  position: absolute;
  left: 280px;
  top: 38px;
  width: 137px;
  height: 103px;
  background-repeat: no-repeat;
}

.banner-section .anim-icon .anim-icon-14{
  position: absolute;
  left: 50%;
  top: 277px;
  width: 137px;
  height: 103px;
  background-repeat: no-repeat;
}

.banner-section .anim-icon .anim-icon-15{
  position: absolute;
  top: 203px;
  right: 47px;
  width: 137px;
  height: 103px;
  background-repeat: no-repeat;
}

.banner-section .anim-icon .anim-icon-16{
  position: absolute;
  left: 52px;
  top: 53px;
  width: 140px;
  height: 100px;
  background-repeat: no-repeat;
}

.banner-section .anim-icon .anim-icon-17{
  position: absolute;
  left: 511px;
  bottom: 113px;
  width: 96px;
  height: 93px;
  background-repeat: no-repeat;
}

.banner-section .anim-icon .anim-icon-18{
  position: absolute;
  left: 57%;
  top: 150px;
  width: 107px;
  height: 111px;
  background-repeat: no-repeat;
  z-index: 6;
}

.banner-section .anim-icon .anim-icon-19{
  position: absolute;
  top: 0px;
  right: 136px;
  width: 85px;
  height: 187px;
}

.banner-section .anim-icon .anim-icon-20{
  position: absolute;
  right: 50px;
  bottom: 160px;
  width: 117px;
  height: 105px;
  background-repeat: no-repeat;
}


/** banner-style-three **/

.banner-style-three{
  position: relative;
}

.banner-style-three .slide-item{
  padding: 90px 0px 60px 0px;
}

.banner-style-three .slide-item .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.banner-style-three .content-inner{
  position: relative;
  display: flex;
  width: 500px;
  height: 500px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transform: scale(0,0);
  transition: all 1500ms ease;
}

.banner-style-three .content-inner .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.banner-style-three .content-inner .inner-box{
  max-width: 400px;
  margin: 0 auto;
}

.banner-style-three .content-inner h2{
  display: block;
  font-size: 72px;
  line-height: 79px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 24px;
}

.banner-style-three .active .content-inner{
  transform: scale(1,1);
}


/** banner-style-four **/

.banner-style-four{
  position: relative;
  padding: 60px 0px 30px 0px;
  background: linear-gradient(180deg, #FDE0E8 0%, #FFFFFF 100%);
}

.banner-style-four .content-box-one{
  position: relative;
  display: block;
  background: #E91A3E;
  border-radius: 10px;
  padding: 36px 30px 140px 30px;
  border: dashed;
  border-width: 2px;
  border-color: #fff;
  overflow: hidden;
  margin-bottom: 30px;
}

.banner-style-four .content-box-one:before{
  position: absolute;
  content: '';
  background: #000;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  top: -130px;
  opacity: 0.05;
  left: 50%;
  margin-left: -310px;
  -webkit-animation: zoom-fade 13s infinite linear;
  animation: zoom-fade 13s infinite linear;
}

.banner-style-four .content-box-one h2{
  font-size: 56px;
  line-height: 60px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 24px;
}

.banner-style-four .content-box-one h2 span{
  font-weight: 800;
  display: block;
}

.banner-style-four .content-box-one h3{
  font-size: 28px;
  line-height: 30px;
  margin-bottom: 40px;
  color: #fff;
}

.banner-style-four .content-box-one h3 span{
  font-weight: 400;
}

.banner-style-four .content-box-two{
  position: relative;
  display: block;
  background: #FF8A00;
  border-radius: 10px;
  border: dashed;
  border-width: 2px;
  border-color: #fff;
  margin-bottom: 30px;
  padding: 35px 35px 30px 35px;
}

.banner-style-four .content-box-two:last-child{
  background: #F76188;
}

.banner-style-four .content-box-two .text{
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 30px;
  background: #D57300;
  border: dashed;
  border-width: 1px;
  border-color: #fff;
  padding: 1px 10px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.banner-style-four .content-box-two:last-child .text{
  background: #E83664;
}

.banner-style-four .content-box-two h2{
  font-size: 36px;
  line-height: 40px;
  color: #fff;
  margin-bottom: 9px;
}

.banner-style-four .content-box-two h4{
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 72px;
}

.banner-style-four .content-box-two h4 span{
  font-weight: 800;
}

.banner-style-four .content-box-two a{
  display: inline-block;
  font-size: 16px;
  line-height: 14px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.banner-style-four .content-box-two a:hover{
  color: #000;
  border-color: #000;
}

.banner-style-four .content-box-two .text-box{
  max-width: 200px;
  float: left;
}


/** banner-style-five **/

.banner-section.style-five{
  background: #FF8A00;
  padding: 215px 0px;
}

.banner-section.style-five .content-box h2,
.banner-section.style-five .content-box h3,
.banner-section.style-five .content-box h3 span{
  color: #fff;
}

.banner-section.style-five .anim-icon .anim-icon-2{
  width: 362px;
  height: 272px;
}

.banner-section.style-five .anim-icon .anim-icon-8{
  width: 199px;
  height: 141px;
}

.banner-section .anim-icon .anim-icon-21{
  position: absolute;
  top: 0px;
  left: 120px;
  width: 85px;
  height: 187px;
}

.banner-section.style-five .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  bottom: -1px;
  width: 100%;
  height: 31px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.banner-section.style-five .pattern-layer .pattern-2{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 63px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}


/** rtl-css **/

.rtl .banner-carousel .content-box{
  text-align: right;
}


/** responsive-css **/

@media only screen and (max-width: 1200px){
  .banner-style-two .slide-item{
    padding-left: 60px;
    padding-right: 60px;
  }

  .banner-section.style-five .image-layer{
    display: none;
  }
}

@media only screen and (max-width: 991px){
  .banner-section .anim-icon{
    display: none;
  }
  .banner-section .image-box{
    margin-bottom: 30px;
  }

  .banner-carousel .content-box{
    margin-bottom: 30px;
  }

  .banner-style-two .lower-content .info-list{
    display: block;
    text-align: center;
  }

  .banner-style-two .lower-content:before, 
  .banner-style-two .lower-content:after{
    display: none;
  }

  .banner-section br{
    display: none;
  }
}

@media only screen and (max-width: 767px){
  .banner-section .content-box h2{
    font-size: 50px;
    line-height: 60px;
  }

  .banner-style-two .slide-item{
    padding-left: 30px;
    padding-right: 30px;
  }

  .banner-style-four .content-box-one h2{
    font-size: 40px;
    line-height: 50px;
  }

  .banner-section.style-five{
    padding: 110px 0px 150px 0px;
  }
}

@media only screen and (max-width: 599px){
  .banner-style-four .content-box-one .image-1,
  .banner-style-four .content-box-one .image-2{
    display: none;
  }

  .banner-style-four .content-box-one{
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 499px){
  .banner-style-two .slide-item,
  .banner-style-four .content-box-one,
  .banner-style-four .content-box-two{
    padding-left: 15px;
    padding-right: 15px;
  }

  .banner-style-three .content-inner{
    width: 100%;
    height: auto;
  }

  .banner-style-three .content-inner .shape{
    display: none;
  }

  .banner-style-three .content-inner h2{
    font-size: 60px;
    line-height: 70px;
  }

  .banner-style-four .content-box-two .image-box{
    width: 50%;
  }
}













































/** sidebar-page-container **/

.sidebar-page-container{
  position: relative;
}

.sidebar-page-container .cta-section .inner-container{
  padding-left: 540px;
}

.sidebar-page-container .cta-section h2{
  font-size: 40px;
  line-height: 48px;
}

.blog-grid-content .news-block-one .inner-box{
  margin-bottom: 55px;
}

.sidebar-page-container .news-block-one .inner-box .lower-content h2{
  display: block;
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 14px;
}

.sidebar-page-container .news-block-one .inner-box .lower-content h2 a{
  display: inline-block;
  color: var(--title-color);
}

.sidebar-page-container .news-block-one .inner-box .lower-content h2 a:hover{

}

.blog-standard-content .news-block-one .inner-box{
  margin-bottom: 60px;
}

.sidebar-page-container .sec-title h2{
  font-size: 36px;
  line-height: 42px;
}

.blog-standard-content .news-block-one .inner-box .image-box{
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.blog-standard-content .news-block-one .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.blog-standard-content .news-block-one .inner-box:hover .image-box img{
  transform: scale(1.05);
}

.blog-standard-content .news-block-one .inner-box .image-box .post-info,
.blog-details-content .news-block-one .inner-box .image-box .post-info{
  width: 250px;
}


/** blog-details-content **/

.blog-details-content{
  position: relative;
}

.blog-details-content .content-one blockquote{
  position: relative;
  display: block;
  background: #FDF7F9;
  border-radius: 10px;
  padding: 40px 30px 32px 110px;
  border: dashed;
  border-width: 1px;
  border-top: 3px solid;
}

.blog-details-content .content-one blockquote .icon-box{
  position: absolute;
  left: 30px;
  top: 45px;
  font-size: 45px;
}

.blog-details-content .content-one blockquote p{
  font-size: 20px;
  line-height: 30px;
  font-family: var(--title-font);
  color: var(--title-color);
  margin-bottom: 16px;
  font-style: italic;
}

.blog-details-content .content-one blockquote h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
}

.blog-details-content .content-one .image-box{
  position: relative;
  display: block;
  border-radius: 10px;
}

.blog-details-content .content-one .image-box img{
  width: 100%;
  border-radius: 10px;
}

.blog-details-content .content-two{
  position: relative;
  display: block;
}

.blog-details-content .content-two h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 14px;
}

.blog-details-content .content-two p{
  color: var(--title-color);
  margin-bottom: 26px;
}

.blog-details-content .content-two p:last-child{
  margin-bottom: 0px;
}

.blog-details-content .content-two h4{
  display: block;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 5px;
}

.blog-details-content .content-two .list-style-one li{
  font-size: 16px;
}

.blog-details-content .post-share-option{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed #D8D8D8;
}

.blog-details-content .post-share-option ul{
  position: relative;
  display: flex;
  align-items: center;
}

.blog-details-content .post-share-option ul li{
  position: relative;
  display: inline-block;
}

.blog-details-content .post-share-option ul li span{
  font-size: 16px;
  font-weight: 600;
  color: var(--title-color);
  padding-right: 4px;
}

.blog-details-content .post-share-option .tags-list li{
  margin-right: 10px;
}

.blog-details-content .post-share-option .tags-list li:last-child{
  margin-right: 0px;
}

.blog-details-content .post-share-option .tags-list li a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
  background: #F4F4F4;
  border-radius: 50px;
  padding: 4px 24px;
  border: dashed;
  border-width: 1px;
  border-color: #F4F4F4;
}

.blog-details-content .post-share-option .tags-list li a:hover{
  color: #fff;
  border-color: #fff;
}

.blog-details-content .post-share-option .social-links li{
  margin-right: 20px;
}

.blog-details-content .post-share-option .social-links li:last-child{
  margin-right: 0px;
}

.blog-details-content .post-share-option .social-links li a{
  display: inline-block;
  font-size: 20px;
  color: var(--title-color);
}

.blog-details-content .post-share-option .social-links li a:hover{

}

.blog-details-content .author-box{
  position: relative;
  display: block;
  padding: 7px 0px 51px 190px;
  border-bottom: 1px dashed #D8D8D8;
}

.blog-details-content .author-box .thumb-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 0px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.blog-details-content .author-box .thumb-box img{
  width: 100%;
  border-radius: 50%;
}

.blog-details-content .author-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
}

.blog-details-content .author-box .designation{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 17px;
}

.blog-details-content .comment-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 16px;
}

.blog-details-content .comment-box .form-inner .form-group{
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.blog-details-content .comment-box .form-inner .form-group label{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
  margin-bottom: 8px;
}

.blog-details-content .comment-box .form-inner .form-group label span{
  color: rgba(255, 45, 45, 1);
}

.blog-details-content .comment-box .form-inner .form-group input[type='text'],
.blog-details-content .comment-box .form-inner .form-group input[type='email'],
.blog-details-content .comment-box .form-inner .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  border: 1px dashed #D8D8D8;
  border-radius: 50px;
  font-size: 16px;
  color: var(--text-color);
  padding: 10px 20px;
  transition: all 500ms ease;
}

.blog-details-content .comment-box .form-inner .form-group input:focus,
.blog-details-content .comment-box .form-inner .form-group textarea:focus{

}

.blog-details-content .comment-box .form-inner .check-box-two label{
  color: var(--text-color);
}

.blog-details-content .comment-box .form-inner .form-group textarea{
  height: 195px;
  resize: none;
  border-radius: 20px;
}

.blog-details-content .comment-box .form-inner .check-box label{
  font-size: 16px;
}

.blog-details-content .comment-box .form-inner .check-box label:after{
  content: '\e928';
  font-family: 'icomoon';
  background: none;
  font-size: 6px;
  left: 4px;
  top: 0px;
}

.blog-details-content .comment-box .form-inner .theme-btn{
  padding: 8px 40px;
  color: #fff;
  border-color: #fff !important;
}

.blog-details-content .comment-box .form-inner .theme-btn:before,
.blog-details-content .comment-box .form-inner .theme-btn:after{
  background: #000;
}



/** rtl-css **/

.rtl .blog-details-content .post-share-option .tags-list li{
  margin-right: 0px;
  margin-left: 10px;
}

.rtl .blog-details-content .post-share-option .social-links li{
  margin-right: 0px;
  margin-left: 20px;
}

.rtl .blog-details-content .author-box{
  padding-left: 0px;
  padding-right: 190px;
}

.rtl .blog-details-content .author-box .thumb-box{
  left: inherit;
  right: 0px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){
  .sidebar-page-container .cta-section .inner-container{
    padding-left: 30px;
    text-align: center;
  }
}

@media only screen and (max-width: 991px){
  .blog-standard-content{
    margin-right: 0px;
  }

  .blog-details-content{
    margin-right: 0px;
  }
}

@media only screen and (max-width: 767px){
  .sidebar-page-container .news-block-one .inner-box .lower-content h2{
    font-size: 30px;
    line-height: 40px;
  }

  .blog-details-content .post-share-option{
    display: block;
  }

  .blog-details-content .post-share-option .tags-list{
    margin-bottom: 15px;
  }

  .sidebar-page-container{
    padding-bottom: 70px;
  }


}

@media only screen and (max-width: 599px){
  .blog-standard-content .news-block-one .inner-box .lower-content .post-info{
    display: block;
  }

  .blog-details-content .post-share-option .tags-list{
    display: block;
  }

  .blog-details-content .post-share-option .tags-list li{
    margin-bottom: 10px;
  }
}

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

  .blog-details-content .author-box{
    padding-left: 0px;
  }

  .rtl .blog-details-content .author-box{
    padding-right: 0px;
  }

  .blog-details-content .author-box .thumb-box{
    position: relative;
    margin-bottom: 20px;
  }

  .blog-details-content .content-one blockquote{
    padding-left: 30px;
  }

  .blog-details-content .content-one blockquote .icon-box{
    position: relative;
    left: 0px;
    top: 0px;
    margin-bottom: 30px;
  }
}






















/** blog-sidebar **/

.blog-sidebar{
  position: relative;
  padding: 40px 35px;
  border: dashed;
  border-width: 1px;
  border-color: #D8D8D8;
  border-radius: 10px;
}

.blog-sidebar .search-widget .search-form .form-group{
  position: relative;
  margin-bottom: 0px;
}

.blog-sidebar .search-widget .search-form .form-group input[type='search']{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  border: solid;
  border-width: 1px;
  border-color: rgba(229, 229, 229, 1);
  font-size: 14px;
  color: var(--text-color);
  border-radius: 50px;
  padding: 10px 70px 10px 20px;
  transition: all 500ms ease;
}

.blog-sidebar .search-widget .search-form .form-group button[type='submit']{
  position: absolute;
  display: inline-block;
  top: 5px;
  right: 5px;
  width: 57px;
  height: 40px;
  line-height: 46px;
  text-align: center;
  border-radius: 45px;
  font-size: 16px;
  color: #fff;
  transition: all 500ms ease;
}

.blog-sidebar .search-widget .search-form .form-group input:focus{

}

.blog-sidebar .search-widget .search-form .form-group input:focus + button,
.blog-sidebar .search-widget .search-form .form-group button:hover{

}

.blog-sidebar .widget-title{
  position: relative;
  display: block;
}

.blog-sidebar .widget-title h3{
  font-size: 24px;
  line-height: 30px;
}

.blog-sidebar .category-widget .category-list li{
  position: relative;
  display: block;
  margin-bottom: 8px;
}

.blog-sidebar .category-widget .category-list li:last-child{
  margin-bottom: 0px;
}

.blog-sidebar .check-box-two input:checked + label {

}

.blog-sidebar .post-widget .post{
  position: relative;
  display: block;
  padding: 7px 0px 28px 120px;
  margin-bottom: 20px;
  border-bottom: dashed;
  border-width: 1px;
  border-color: rgba(229, 229, 229, 1);
  min-height: 111px;
}

.blog-sidebar .post-widget .post:last-child{
  border-bottom: none;
  margin-bottom: 0px;
}

.blog-sidebar .post-widget .post .post-thumb{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 105px;
  height: 90px;
  overflow: hidden;
  border-radius: 10px;
}

.blog-sidebar .post-widget .post .post-thumb img{
  width: 100%;
  transition: all 500ms ease;
}

.blog-sidebar .post-widget .post:hover .post-thumb img{
  opacity: 0.5;
  transform: scale(1.05);
}

.blog-sidebar .post-widget .post h5{
  display: block;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 11px;
}

.blog-sidebar .post-widget .post h5 a{
  display: inline-block;
  color: var(--title-color);
}

.blog-sidebar .post-widget .post h5 a:hover{

}

.blog-sidebar .post-widget .post .post-date{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 20px;
  color: rgba(106, 106, 106, 1);
}

.blog-sidebar .advice-widget{
  position: relative;
  display: block;
  overflow: hidden;
  padding: 40px 30px 10px 30px;
  background: #E91A3E;
  border-radius: 20px;
}

.blog-sidebar .advice-widget:before{
  position: absolute;
  content: '';
  background: #000;
  width: 373px;
  height: 373px;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  bottom: -200px;
  opacity: 0.1;
}

.blog-sidebar .advice-widget span{
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #E91A3E;
  background: #fff;
  padding: 1px 15px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.blog-sidebar .advice-widget h2{
  display: block;
  font-size: 24px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 14px;
}

.blog-sidebar .archives-widget .archives-list li{
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.blog-sidebar .archives-widget .archives-list li:last-child{
  margin-bottom: 0px;
}

.blog-sidebar .archives-widget .archives-list li a{
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
  color: var(--title-color);
}

.blog-sidebar .archives-widget .archives-list li a:hover{
  padding-left: 16px;
}

.blog-sidebar .archives-widget .archives-list li a i{
  position: absolute;
  left: 0px;
  top: 7px;
  opacity: 0;
  font-size: 12px;
  transition: all 500ms ease;
}

.blog-sidebar .archives-widget .archives-list li a:hover i{
  opacity: 1;
}

.blog-sidebar .gallery-widget .image-list{
  position: relative;
  margin: 0px -6px;
}

.blog-sidebar .gallery-widget .image-list li{
  position: relative;
  display: inline-block;
  float: left;
  margin: 0px 5px 10px 5px;
}

.blog-sidebar .gallery-widget .image-list li .image{
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 10px;
}

.blog-sidebar .gallery-widget .image-list li .image img{
  width: 100%;
  border-radius: 10px;
}

.blog-sidebar .tags-widget .tags-list{
  position: relative;
  margin: 0px -5px;
}

.blog-sidebar .tags-widget .tags-list li{
  position: relative;
  display: inline-block;
  float: left;
  margin: 0px 5px 10px 5px;
}

.blog-sidebar .tags-widget .tags-list li a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  color: rgba(106, 106, 106, 1);
  background: rgba(244, 244, 244, 1);
  padding: 5px 19px;
  border-radius: 30px;
}

.blog-sidebar .tags-widget .tags-list li a:hover{
  color: #fff;
}

.blog-sidebar{
  padding-bottom: 30px;
}



/** rtl-css **/

.rtl .blog-sidebar .check-box label{
  padding-left: 0px;
}

.rtl .blog-sidebar .check-box label:after{
  left: inherit;
  right: 0px;
}

.rtl .blog-sidebar .post-widget .post{
  padding-left: 0px;
  padding-right: 120px;
}

.rtl .blog-sidebar .post-widget .post .post-thumb{
  left: inherit;
  right: 0px;
}

.rtl .blog-sidebar .archives-widget .archives-list li a i{
  left: inherit;
  right: 0px;
  transform: rotate(180deg);
}

.rtl .blog-sidebar .archives-widget .archives-list li a:hover{
  padding-left: 0px;
  padding-right: 16px;
}

.rtl .blog-sidebar .gallery-widget .image-list li{
  float: right;
}

.rtl .blog-sidebar .tags-widget .tags-list li{
  float: right;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){
  .blog-sidebar{
    margin-top: 40px;
  }
}

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

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

}

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

}

@media only screen and (max-width: 499px){
  .blog-sidebar{
    padding-left: 30px;
    padding-right: 30px;
  }
}






























/** brands-section **/

.brands-section{
  position: relative;
}

.brands-section .brands-list{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brands-block-one{
  position: relative;
  display: block;
}

.brands-section .brands-list .brands-block-one{
  margin: 0px -15px;
}

.brands-block-two .inner-box .logo-box{
  overflow: hidden;
}

.brands-block-two:hover .inner-box .logo-box img{
  animation: toBottomFromTop .7s forwards;
}

.brands-block-one a{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 300px;
  background: #fff;
  border-radius: 50%;
  border: dashed;
  border-width: 1px;
}

.brands-block-one a img{
  width: auto;
  display: inline-block;
}

.brands-block-one:nth-child(even) a{
  background: #FFE8EE;
}

.brands-section .pattern-layer .pattern-1{
  position: absolute;
  left: 30px;
  top: 20px;
  width: 171px;
  height: 255px;
  background-repeat: no-repeat;
}

.brands-section .pattern-layer .pattern-2{
  position: absolute;
  top: -30px;
  right: 35px;
  width: 123px;
  height: 131px;
  background-repeat: no-repeat;
}


/** brands-style-two **/

.brands-style-two{
  position: relative;
  background: #F9F8E8;
}

.brands-style-two .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 11px;
  background-repeat: repeat-x;
  transform: rotate(180deg);
}

.brands-style-two .pattern-layer .pattern-2{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-repeat: repeat-x;
  animation: slide 90s linear infinite;
  -webkit-animation: slide 90s linear infinite;
}

.brands-block-two .inner-box{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  border: dashed;
  border-width: 1px;
  border-color: #BEBEBE;
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.brands-block-two .inner-box:hover{
  box-shadow: 0px 30px 50px 0px rgba(247, 97, 136, 0.08);
}

.brands-block-two .inner-box .logo-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 94px;
  border-bottom: 1px dashed #BEBEBE;
  transition: all 500ms ease;
}

.brands-block-two .inner-box:hover .logo-box{

}

.brands-block-two .inner-box h6{
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 13px 10px;
}

.brands-block-two .inner-box h6 a{
  display: inline-block;
  color: var(--title-color);
}

.brands-block-two .inner-box h6 a:hover{

}

.brands-section .pattern-layer .pattern-3{
  position: absolute;
  right: 0px;
  top: 0px;
  width: 189px;
  height: 298px;
  background-repeat: no-repeat;
}

.brands-section .pattern-layer .pattern-4{
  position: absolute;
  left: 0px;
  top: -400px;
  width: 100%;
  height: 1475px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  background-size: cover;
}


/** rtl-css **/




/** responsive-css **/

@media only screen and (max-width: 1200px){
  .brands-section .brands-list{
    display: block;
    text-align: center;
  }

  .brands-section .brands-list .brands-block-one{
    display: inline-block;
  }
}

@media only screen and (max-width: 991px){
  .brands-section .pattern-layer{
    display: none;
  }
}

@media only screen and (max-width: 767px){
  .brands-style-two{
    padding: 65px 0px 50px 0px;
  }

  .brands-section.pt_160.pb_120{
    padding: 70px 0px;
  }

  .brands-style-two.pt_0.pb_0{
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

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

}

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

}













































/** cart-section **/

.cart-section{
  position: relative;
}

.cart-section .target-price{
  position: relative;
  display: block;
  border: 1px dashed rgba(229, 229, 229, 1);
  padding: 19px 30px;
  border-radius: 10px;
}

.cart-section .target-price p{
  font-size: 16px;
  line-height: 20px;
  font-family: var(--title-font);
  margin-bottom: 19px;
  font-weight: 600;
}

.cart-section .target-price p span{
  color: #E92530;
}

.cart-section .target-price .progress-box .bar{
  background: #F8EBEF;
  height: 4px;
  border-radius: 30px;
}

.cart-section .target-price .progress-box .bar-inner{
  height: 4px;
  border-radius: 30px;
}

.cart-section .table-outer {
  overflow-x: auto;
  position: relative;
  width: 100%;
  border: dashed;
  border-width: 1px;
  border-radius: 10px;
}

.cart-section .cart-table {
  min-width: 1170px;
  width: 100%;
}

.cart-section .cart-table thead{
  position: relative;
  background: #FDF7F9;
}

.cart-section .cart-table thead th{
  font-size: 14px;
  line-height: 24px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 30px;
  text-align: center;
}

.cart-section .cart-table thead th:first-child{
  text-align: left;
}

.cart-section .cart-table tbody tr{
  border-bottom: 1px solid rgba(229, 229, 229, 1);
}

.cart-section .cart-table tbody tr:last-child{
  border-bottom: none;
}

.cart-section .cart-table td{
  position: relative;
  font-size: 16px;
  line-height: 20px;
  color: #E92530;
  text-align: center;
  font-weight: 700;
}

.cart-section .cart-table tbody .product-column{
  padding: 19px 30px;
}

.cart-section .cart-table tbody .product-column .product-box{
  position: relative;
  display: flex;
  align-items: center;
}

.cart-section .cart-table tbody .product-column .product-box .image-box{
  position: relative;
  display: inline-block;
  width: 85px;
  height: 85px;
  margin-right: 30px;
}

.cart-section .cart-table tbody .product-column .product-box h6{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}

.cart-section .cart-table tbody .product-column .product-box h6 a{
  display: inline-block;
  color: var(--title-color);
}

.cart-section .cart-table tbody .product-column .product-box h6 a:hover{

}

.cart-section .cart-table td .cancel-btn{
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--title-color);
  transition: all 500ms ease;
}

.cart-section .cart-table td .cancel-btn:hover,
.cart-section .cart-table td .cancel-btn:focus,
.cart-section .cart-table td .cancel-btn:active{
  color: red;
}

.cart-section .bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-up,
.cart-section .bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-down{
  border: none !important;
}

.cart-section .item-quantity{
  position: relative;
  display: inline-block;
  max-width: 110px;
  width: 100%;
  padding: 0px 30px;
  margin-left: 0px;
  border: 1px dashed #D8D8D8;
  border-radius: 50px !important;
  height: 40px;
  z-index: 1;
  margin: 0 auto;
}

.cart-section .bootstrap-touchspin .input-group-btn-vertical i{
  left: 12px;
}

.cart-section .item-quantity input.quantity-spinner {
  line-height: 48px;
  height: 40px;
  width: 43px !important;
  padding: 0px !important;
  box-shadow: none !important;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #101010;
  background: transparent;
}

.cart-section .bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-down{
  position: absolute;
  height: 40px;
  width: 70px;
  background: transparent;
  padding: 0px 0px;
  left: -30px;
  top: 0px;
  border-radius: 0px;
  border: none !important;
}

.cart-section .bootstrap-touchspin .btn.bootstrap-touchspin-up:before,
.cart-section .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down:before{
  color: var(--title-color) !important;
}

.cart-section .bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-up{
  position: absolute;
  height: 40px;
  width: 70px;
  background: transparent;
  padding: 0px 0px;
  right: -35px;
  top: 0px;
  margin-top: 0px;
  border-radius: 0px;
  border: none !important;
}

.cart-section .bootstrap-touchspin .glyphicon-chevron-up:before {
  content: "\f067";
  font-size: 16px;
  font-style: normal;
  color: var(--title-color);
  font-family: 'Font Awesome 5 Pro';
}

.cart-section .bootstrap-touchspin .glyphicon-chevron-down:before {
  content: "\f068";
  font-size: 16px;
  font-style: normal;
  color: var(--title-color);
  font-family: 'Font Awesome 5 Pro';
}

.cart-section .bootstrap-touchspin .input-group-btn-vertical{
  position: absolute;
  width: 100%;
}

.cart-section .bootstrap-touchspin .input-group-btn-vertical i{
  top: 15px;
  left: 15px;
  font-size: inherit !important; 
}

.cart-section .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{
  margin-top: 0px;
}

.cart-section .bootstrap-touchspin .btn:hover,
.cart-section .bootstrap-touchspin .btn:focus{
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.cart-section .item-quantity{
  border-radius: 5px;
}

.cart-section .bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-down{
  width: 40px;
  top: 0px;
}

.cart-section .bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-up{
  width: 50px;
  top: 0px;
}

.cart-section .coupon-box .form-group{
  position: relative;
  max-width: 330px;
  margin-bottom: 0px;
}

.cart-section .coupon-box .form-group input[type='text']{
  position: relative;
  display: block;
  width: 100%;
  height: 51px;
  border: 1px dashed rgba(229, 229, 229, 1);
  border-radius: 55px;
  font-size: 16px;
  color: var(--title-color);
  padding: 10px 75px 10px 20px;
  transition: all 500ms ease;
}

.cart-section .coupon-box .form-group input:focus{
  
}

.cart-section .coupon-box .form-group button{
  position: absolute;
  display: inline-block;
  top: 5px;
  right: 5px;
  width: 56px;
  height: 41px;
  line-height: 44px;
  font-size: 11px;
  border-radius: 55px;
  color: #fff;
  text-align: center;
  transition: all 500ms ease;
}

.cart-section .total-cart{
  position: relative;
  display: block;
  border: 1px dashed #D8D8D8;
  border-radius: 10px;
  background: #FDF7F9;
  padding: 30px 40px 40px 40px;
}

.cart-section .total-cart .title-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed #D8D8D8;
  padding-bottom: 10px;
  margin-bottom: 22px;
}

.cart-section .total-cart h4{
  font-size: 20px;
  line-height: 30px;
  font-family: var(--title-font);
}

.cart-section .total-cart h5{
  font-size: 20px;
  line-height: 30px;
  color: rgba(233, 37, 48, 1);
}

.cart-section .total-cart .shipping-cost h4{
  margin-bottom: 12px;
}

.cart-section .total-cart .shipping-cost .cost-list li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-section .total-cart .shipping-cost .cost-list li .price{
  font-size: 13px;
  color: var(--title-color);
}

.cart-section .total-cart .shipping-cost .cost-list li .check-box input {
  display: none;
}

.cart-section .total-cart .shipping-cost .cost-list li .check-box label {
  position: relative;
  font-size: 14px;
  line-height: 26px;
  color: var(--title-color);
  padding-left: 24px;
  display: inline-block;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 0px;
}

.cart-section .total-cart .shipping-cost .cost-list li .check-box label:before{
  position: absolute;
  content: '';
  left: 0px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #9A9A9A;
}

.cart-section .total-cart .shipping-cost .cost-list li .check-box label:after {
  position: absolute;
  content: '';
  top: 8px;
  opacity: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 3px;
}

.cart-section .total-cart .shipping-cost .cost-list li .check-box input:checked + label:after {
  opacity: 1;
}

.cart-section .total-cart .shipping-cost .cost-list li .check-box input:checked + label:before{

}

.cart-section .total-cart .shipping-calculator h4{
  margin-bottom: 15px;
}

.cart-section .total-cart .shipping-calculator .form-group{
  position: relative;
  margin-bottom: 10px;
}

.cart-section .total-cart .shipping-calculator .form-group:last-child{
  margin-bottom: 0px;
}

.cart-section .total-cart .shipping-calculator .form-group .select-box{
  min-height: 50px;
}

.cart-section .total-cart .shipping-calculator .form-group .nice-select,
.cart-section .total-cart .shipping-calculator .form-group input[type='text']{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  background: #fff;
  border: 1px dashed #D8D8D8;
  border-radius: 50px;
  font-size: 14px;
  color: var(--title-color);
  padding: 10px 20px;
  text-transform: capitalize;
}

.cart-section .total-cart .shipping-calculator .form-group .nice-select{
  padding: 0px 20px;
  line-height: 50px;
  background: #fff;
  border: 1px dashed #D8D8D8;
}

.cart-section .total-cart .shipping-calculator .form-group .nice-select:before{
  color: var(--title-color);
  right: 20px;
}

.cart-section .total-cart .shipping-calculator .form-group .theme-btn{
  padding: 8px 30px;
  width: 100%;
}

.cart-section .total-cart .btn-box .theme-btn{
  width: 100%;
  padding: 8px 30px;
  color: #fff !important;
  border-color: #fff !important;
}


.cart-section .total-cart .total-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0px 22px 0px;
}

.cart-section .sec-title h2{
  font-size: 36px;
  line-height: 42px;
}


/** rtl-css **/

.rtl .cart-section .cart-table tbody .product-column .product-box .image-box{
  margin-right: 0px;
  margin-left: 24px;
}

.rtl .cart-section .total-cart .shipping-cost .cost-list li .check-box label:after{
  left: 0px;
  right: 3px;
}

.rtl .cart-section .total-cart .shipping-calculator .form-group .nice-select:before{
  right: inherit;
  left: 20px;
}

/** responsive-css **/

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

}

@media only screen and (max-width: 991px){
  .cart-section .total-cart{
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px){
  .cart-section{
    padding-bottom: 70px;
  }
}

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

}

@media only screen and (max-width: 499px){
  .cart-section .total-cart{
    padding-left: 30px;
    padding-right: 30px;
  }
}












































/** category-section **/

.category-section{
  position: relative;
}

.category-block-one .inner-box{
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.category-block-one .inner-box .image-box{
  position: relative;
  display: block;
  max-width: 203px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 15px;
  padding-left: 37px;
  padding-top: 15px;
  padding-bottom: 22px;
  box-sizing: border-box;
}

.category-block-one .inner-box .image-box .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.category-block-one .inner-box .image-box .image{
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 6px solid #fff;
  background: #fff;
  overflow: hidden;
  box-sizing: border-box;
}

.category-block-one .inner-box .image-box .image img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50%;
  transition: all 500ms ease;
  display: block;
}

.category-block-one .inner-box:hover .image-box .image img{
  transform: scale(1.05);
}

.category-block-one .inner-box h4{
  display: block;
  font-size: 20px;
  line-height: 30px;
}

.category-block-one .inner-box h4 a{
  display: inline-block;
  color: var(--title-color);
}

.category-block-one .inner-box h4 a:hover{

}

.category-section .shape-box .shape-1{
  position: absolute;
  left: 89px;
  top: -44px;
  width: 85px;
  height: 187px;
  background-repeat: no-repeat;
  z-index: 1;
}

.category-section .shape-box .shape-2{
  position: absolute;
  right: 0px;
  bottom: 60px;
  width: 128px;
  height: 95px;
  background-repeat: no-repeat;
}

.category-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: -100px;
  width: 100%;
  height: calc(100% + 200px);
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  background-size: cover;
}


/** category-style-two **/

.category-style-two{
  position: relative;
}

.category-block-two{
  max-width: 245px;
  margin: 0 auto;
}

.category-block-two .inner-box{
  position: relative;
  display: block;
  padding: 60px 0px;
}

.category-block-two .inner-box .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.category-block-two .inner-box h4{
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
}


/** category-style-three **/

.category-style-three{
  position: relative;
}

.category-style-three .category-block-two .inner-box h3{
  display: block;
  font-size: 24px;
  line-height: 29px;
  color: #fff;
}

.category-style-three .category-block-two .inner-box{
  padding: 71px 0px;
}


/** category-style-four **/

.category-style-four{
  position: relative;
  background: #FDDDDD;
}

.category-style-four .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 11px;
  background-repeat: repeat-x;
}

.category-style-four .pattern-layer .pattern-2{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 11px;
  background-repeat: repeat-x;
  transform: rotate(180deg);
}

.category-style-four .pattern-layer .pattern-3{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-repeat: repeat-x;
  animation: slide 90s linear infinite;
  -webkit-animation: slide 90s linear infinite;
}

.category-style-four .sec-title{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-style-four .sec-title .theme-btn{
  padding: 8px 30px;
}

.category-style-four .content-one{
  position: relative;
  display: block;
  background: #E91A3E;
  border-radius: 20px;
  padding: 40px 30px 0px 30px;
  text-align: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.category-style-four .content-one:before{
  position: absolute;
  content: '';
  background: #000;
  width: 220px;
  height: 220px;
  left: 50%;
  margin-left: -110px;
  bottom: -63px;
  opacity: 0.1;
  border-radius: 50%;
}

.category-style-four .text{
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  border: dashed;
  border-width: 1px;
  border-color: #fff;
  border-radius: 50px;
  margin-bottom: 9px;
  padding: 1px 10px;
}

.category-style-four .inner-container .big-column,
.category-style-four .inner-container .single-column{
  padding: 0px 10px;
}

.category-style-four .inner-container,
.category-style-four .inner-container .content-box{
  position: relative;
  margin: 0px 5px;
}

.category-style-four .inner-container h3{
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 26px;
}

.category-style-four .content-two{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 20px;
  padding: 40px 40px 233px 40px;
  margin-bottom: 20px;
}

.category-style-four .content-two .text{
  color: var(--theme-color);
}

.category-style-four .inner-container h2{
  display: block;
  font-size: 36px;
  line-height: 45px;
}

.category-style-four .content-three{
  position: relative;
  display: block;
  background: #D52BFF;
  border-radius: 20px;
  padding: 30px 30px 66px 30px;
  margin-bottom: 20px;
  overflow: hidden;
}

.category-style-four .content-three h3{
  margin-bottom: 0px;
  z-index: 1;
}

.category-style-four .content-box .single-column:first-child .content-three:last-child{
  background: #0047FF;
}

.category-style-four .content-box .single-column:last-child .content-three:first-child{
  background: #fff;
}

.category-style-four .content-box .single-column:last-child .content-three:last-child{
  background: #fff;
}

.category-style-four .content-box .single-column:last-child .content-three:first-child h3,
.category-style-four .content-box .single-column:last-child .content-three:last-child h3{
  color: var(--title-color);
}

.category-style-four .content-box .single-column:last-child .content-three:first-child .text,
.category-style-four .content-box .single-column:last-child .content-three:last-child .text{
  color: var(--theme-color);
}


/** category-style-five **/

.category-style-five{
  position: relative;
}

.category-block-three{
  position: relative;
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
}

.category-block-three .inner-box{
  position: relative;
  display: block;
  margin-bottom: 24px;
}

.category-block-three .inner-box .image-box{
  position: relative;
  display: block;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: dashed;
  border-width: 2px;
  margin-bottom: 20px;
  overflow: hidden;
}

.category-block-three.border-one .inner-box .image-box{
  border-color: #025A5A;
}

.category-block-three.border-two .inner-box .image-box{
  border-color: #E97D3F;
}

.category-block-three.border-three .inner-box .image-box{
  border-color: #063ECC;
}

.category-block-three.border-four .inner-box .image-box{
  border-color: #FF9D09;
}

.category-block-three.border-five .inner-box .image-box{
  border-color: #366319;
}

.category-block-three.border-six .inner-box .image-box{
  border-color: #EA6BEA;
}

.category-block-three .inner-box .image-box img{
  width: 100%;
  border-radius: 50%;
  transition: all 500ms ease;
}

.category-block-three .inner-box:hover .image-box img{
  transform: scale(1.05);
}

.category-block-three .inner-box h4{
  display: block;
  font-size: 20px;
  line-height: 24px;
}

.category-block-three .inner-box h4 a{
  display: inline-block;
  color: var(--title-color);
}

.category-block-three .inner-box h4 a:hover{

}

.category-style-five .pattern-layer{
  position: absolute;
  left: 0px;
  top: -500px;
  width: 100%;
  height: 1475px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


/** rtl-css **/

.rtl .category-style-four .content-box .image-box{
  right: inherit;
  left: 0px;
}


/** responsive-css **/

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

}

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

}

@media only screen and (max-width: 767px){
  .category-style-two{
    padding-top: 70px;
  }

  .category-style-four{
    padding: 70px 0px 50px 0px;
  }

  .category-style-five{
    padding-bottom: 40px;
  }

  .category-style-three.pt_0{
    padding-top: 0px;
  }
}

@media only screen and (max-width: 599px){
  .category-style-four .sec-title{
    display: block;
  }

  .category-style-four .sec-title h2{
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 499px){
  .category-style-four .content-three .image-box{
    width: 40%;
  }

  .category-style-four .content-two{
    padding-left: 30px;
    padding-right: 30px;
  }
}












































/** checkout-section **/

.checkout-section{
  position: relative;
}

.checkout-section .sec-title h2{
  font-size: 36px;
  line-height: 42px;
}

.checkout-section h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 33px;
}

.checkout-section .billing-content{
  position: relative;
  display: block;
}

.checkout-section .billing-content .form-inner{
  margin: 0px 10px;
  padding-bottom: 20px;
}

.checkout-section .billing-content .form-inner .field-column{
  padding: 0px 5px;
}

.checkout-section .billing-content .form-inner .form-group{
  position: relative;
  display: block;
  margin-bottom: 26px;
}

.checkout-section .billing-content .form-inner .form-group input[type='text'],
.checkout-section .billing-content .form-inner .form-group input[type='email'],
.checkout-section .billing-content .form-inner .form-group input[type='tel'],
.checkout-section .billing-content .form-inner .form-group select.ignore{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  border: 1px dashed rgba(229, 229, 229, 1);
  font-size: 16px;
  color: var(--title-color);
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 50px;
  transition: all 500ms ease;
}

.checkout-section .billing-content .form-inner .form-group select.ignore{
  cursor: pointer;
  line-height: 28px;
  appearance: auto;
}

.checkout-section .billing-content .form-inner .form-group select.ignore:invalid{
  color: rgba(124, 124, 124, 1);
}

.checkout-section .billing-content .form-inner .form-group select.ignore option{
  color: var(--title-color);
}
.checkout-section .billing-content .form-inner .form-group input:focus,
.checkout-section .billing-content .form-inner .form-group select.ignore:focus{
  border-color: rgba(233, 37, 48, 0.45);
  outline: none;
}

.checkout-section .billing-content .form-inner .form-group .select-box{
  min-height: 50px;
}

.checkout-section .billing-content .form-inner .form-group .select-box .list{
  width: 100%;
}

.checkout-section .billing-content label{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
  margin-bottom: 4px;
}

.checkout-section .billing-content .form-inner .form-group label span{
  color: rgba(233, 37, 48, 1);
}

.checkout-section .billing-content .form-inner .form-group .nice-select{
  border: 1px dashed rgba(229, 229, 229, 1);
  font-size: 16px;
  color: var(--title-color);
  height: 50px;
  line-height: 50px;
  padding: 0px 20px;
  text-transform: capitalize;
  border-radius: 50px;
}

.checkout-section .billing-content .form-inner .form-group .nice-select:before{
  color: var(--title-color);
  right: 20px;
}

.checkout-section .billing-content .other-address h3{
  margin-bottom: 30px;
}

.checkout-section .billing-content .check-box label:before{
  top: 6px;
}

.checkout-section .billing-content .check-box label:after{
  background: none !important;
  content: '\e928';
  font-family: 'icomoon';
  font-size: 7px;
  top: 1px;
  left: 3px;
}

.checkout-section .order-info{
  position: relative;
  display: block;
  background: #FDF7F9;
  border: 1px dashed #D8D8D8;
  padding: 21px 30px 40px 30px;
  border-radius: 10px;
}

.checkout-section .order-info .title-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px dashed #D8D8D8;
  margin-bottom: 30px;
}

.checkout-section .order-info .title-box .text{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--title-color);
}

.checkout-section .order-info .order-product .single-item{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.checkout-section .order-info h4{
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: rgba(233, 37, 48, 1);
}

.checkout-section .order-info h4 span{
  color: var(--title-color);
}

.checkout-section .order-info .order-product .single-item .product-box{
  position: relative;
  display: flex;
  align-items: center;
}

.checkout-section .order-info .order-product .single-item .product-box .image-box{
  position: relative;
  display: inline-block;
  width: 85px;
  height: 85px;
  margin-right: 24px;
}

.checkout-section .order-info .order-product .single-item h6{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  max-width: 190px;
}

.checkout-section .order-info .order-product .single-item h6 span{
  color: rgba(124, 124, 124, 1);
}

.checkout-section .order-info .cost-box{
  position: relative;
  display: block;
  padding-top: 22px;
  padding-bottom: 32px;
  border-top: 1px dashed #D8D8D8;
  border-bottom: 1px dashed #D8D8D8;
  margin-bottom: 18px;
}

.checkout-section .order-info .cost-box li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 33px;
}

.checkout-section .order-info .cost-box li:last-child{
  margin-bottom: 0px;
}

.checkout-section .order-info .total-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.checkout-section .order-info .payment-option .bank-payment{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 22px 30px;
  margin-bottom: 30px;
}

.checkout-section .order-info .payment-option .bank-payment p{
  font-size: 15px;
  line-height: 24px;
  margin-left: 24px;
}

.checkout-section .order-info .payment-option .check-box input {
  display: none;
}

.checkout-section .order-info .payment-option .check-box label {
  position: relative;
  font-size: 14px;
  line-height: 26px;
  color: var(--title-color);
  padding-left: 24px;
  display: inline-block;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 0px;
}

.checkout-section .order-info .payment-option .check-box label:before{
  position: absolute;
  content: '';
  left: 0px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #9A9A9A;
}

.checkout-section .order-info .payment-option .check-box label:after {
  position: absolute;
  content: '';
  top: 8px;
  opacity: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 3px;
}

.checkout-section .order-info .payment-option .check-box input:checked + label:after {
  opacity: 1;
}

.checkout-section .order-info .payment-option .check-box input:checked + label:before{

}

.checkout-section .order-info .btn-box .theme-btn{
  width: 100%;
  color: #fff;
  border-color: #fff !important;
  padding: 8px 30px;
}



/** rtl-css **/

.rtl .checkout-section .order-info .order-product .single-item .product-box .image-box{
  margin-right: 0px;
  margin-left: 15px;
}

.rtl .checkout-section .order-info .payment-option .check-box label:after{
  left: inherit;
  right: 3px;
}

.rtl .checkout-section .billing-content{
  margin-right: 0px;
  margin-left: 30px;
}

.rtl .checkout-section .billing-content label{
  padding-left: 0px;
  padding-right: 24px;
}

/** responsive-css **/

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

}

@media only screen and (max-width: 991px){
  .checkout-section .billing-content{
    margin-bottom: 40px;
  }

  .checkout-section .billing-content{
    margin-right: 0px;
  }

  .rtl .checkout-section .billing-content{
    margin-left: 0px;
  }
}

@media only screen and (max-width: 767px){
  .checkout-section{
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 599px){
  .checkout-section .order-info .order-product .single-item{
    display: block;
    margin-bottom: 10px;
  }

  .checkout-section .order-info .order-product .single-item h6 br{
    display: none;
  }

  .checkout-section .order-info .order-product .single-item .product-box{
    display: block;
  }

  .checkout-section .order-info .order-product .single-item .product-box .image-box{
    margin: 0px 0px 10px 0px !important;
  }
}

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

}
.checkout-section .checkout-shipping-methods {
  margin-bottom: 30px;
}

.checkout-section .checkout-shipping-methods-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.checkout-section .checkout-shipping-methods-title label {
  margin-bottom: 0;
}

.checkout-section .checkout-shipping-methods-title span {
  color: #8a8fac;
  font-size: 13px;
  font-weight: 700;
}

.checkout-section .checkout-shipping-options-list {
  display: grid;
  gap: 10px;
}

.checkout-section .checkout-shipping-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 64px;
  padding: 14px 16px;
  border: 1px solid #ececf4;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.checkout-section .checkout-shipping-option.selected,
.checkout-section .checkout-shipping-option:hover {
  border-color: #f76188;
  background: #fff7fa;
  box-shadow: 0 8px 22px rgba(247, 97, 136, 0.1);
}

.checkout-section .checkout-shipping-option input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: #f76188;
}

.checkout-section .checkout-shipping-option-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.checkout-section .checkout-shipping-option-text strong {
  color: #1a1a2e;
  font-size: 15px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.checkout-section .checkout-shipping-option-text small {
  color: #4a4a6a;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.checkout-section .checkout-shipping-message {
  margin: 8px 0 0;
  color: #8a8fac;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 575px) {
  .checkout-section .checkout-shipping-methods-title,
  .checkout-section .checkout-shipping-option-text {
    align-items: flex-start;
    flex-direction: column;
  }

  .checkout-section .checkout-shipping-option-text {
    gap: 3px;
  }
}

/** collection-section **/

.collection-section{
  position: relative;
}

.collection-section .sec-title{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.collection-section .sec-title a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  border-bottom: solid;
  border-width: 1px;
}

.collection-section .sec-title a:hover{
  color: var(--title-color);
  border-color: var(--secondary-color) !important;
}

.collection-section .tabs-box{
  position: relative;
  background: #fff;
  border-radius: 10px;
  border: dashed;
  border-width: 1px;
  padding-left: 305px;
  overflow: hidden;
}

.collection-section .tab-btn-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 305px;
}

.collection-section .tab-btns li{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  color: var(--title-color);
  background: #FFF6F8;
  padding: 20px 50px;
  cursor: pointer;
  transition: all 500ms ease;
}

.collection-section .tab-btns li.active-btn{
  background: #fff;
}

.collection-block-one .inner-box{
  position: relative;
  display: block;
  padding: 20px 0px 32px 0px;
}

.collection-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.collection-block-one .inner-box .image-box .image{
  position: relative;
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
}

.collection-block-one .inner-box .image-box .image img{
  width: 100%;
  transition: all 500ms ease;
}

.collection-block-one .inner-box:hover .image-box .image img{
  transform: scale(1.05);
}

.collection-block-one .inner-box .image-box .reaction-btn{
  position: absolute;
  top: 0px;
  right: 20px;
}

.collection-block-one .inner-box .image-box .reaction-btn button{
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 42px;
  background: #FFF6F8;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
  color: var(--title-color);
  cursor: pointer;
  transition: all 500ms ease;
}

.collection-block-one .inner-box .image-box .reaction-btn button:hover,
.collection-block-one .inner-box .image-box .reaction-btn button:focus,
.collection-block-one .inner-box .image-box .reaction-btn button:active{
  color: #fff;
}

.collection-block-one .inner-box .lower-content{
  position: relative;
  display: block;
  padding-top: 8px;
}

.collection-block-one .inner-box .lower-content .text{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 6px;
}

.collection-block-one .inner-box .lower-content h4{
  display: block;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 3px;
}

.collection-block-one .inner-box .lower-content h4 a{
  display: inline-block;
  color: var(--title-color);
}

.collection-block-one .inner-box .lower-content h4 a:hover{

}

.collection-block-one .inner-box .lower-content h5{
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: #E92530;
}

.collection-section .shape-layer .shape-1{
  position: absolute;
  left: 0px;
  top: -100px;
  width: 179px;
  height: 199px;
  background-repeat: no-repeat;
  z-index: -1;
}

.collection-section .shape-layer .shape-2{
  position: absolute;
  right: 50px;
  bottom: 0px;
  width: 146px;
  height: 176px;
  background-repeat: no-repeat;
}

.collection-section .shape-layer .shape-3{
  position: absolute;
  left: 50%;
  top: 0px;
  width: 301px;
  height: 304px;
  background-repeat: no-repeat;
}

.shop-style-nine.collection-section .sec-title{
  display: block;
}

.shop-style-nine.collection-section .tab-btns{
  display: inline-flex;
  z-index: 5;
}

.shop-style-nine.collection-section .tab-btns li.active-btn{

}

.shop-style-nine.collection-section .tab-btns li{
  padding: 6px 27px;
}

.shop-style-nine.collection-section .p-tabs-content{
  background: #fff;
  border: dashed;
  border-radius: 10px;
  border-width: 1px;
  padding-top: 26px;
  margin-top: -26px;
}

.shop-style-nine.collection-section .owl-nav button{
  font-size: 48px;
  background: #fff;
  transition: all 500ms ease;
}

.shop-style-nine.collection-section .owl-nav{
  top: 50%;
  margin-top: -24px;
}

.shop-style-nine.collection-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: -350px;
  width: 100%;
  height: 1475px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}


/** rtl-css **/




/** responsive-css **/

@media only screen and (max-width: 1200px){
  .collection-section .tabs-box{
    padding-left: 0px;
  }

  .collection-section .tab-btn-box{
    position: relative;
    width: 100%;
    border-bottom: dashed;
    border-width: 1px;
    border-color: var(--theme-color);
  }
}

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

}

@media only screen and (max-width: 767px){
  .collection-section{
    padding: 35px 0px 70px 0px;
  }

  .collection-section .shape-layer{
    display: none;
  }

  .shop-style-nine.collection-section .tab-btns{
    display: block;
  }
}

@media only screen and (max-width: 599px){
  .collection-section .sec-title{
    display: block;
  }

  .collection-section .sec-title a{
    margin-top: 15px;
  }
}

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

}












































/** contact-info-section **/

.contact-info-section{
  position: relative;
}

.contact-info-section .sec-title h2{
  font-size: 36px;
  line-height: 42px;
}

.info-block-one .inner-box{
  position: relative;
  display: block;
  background: #FECDB1;
  border-radius: 20px;
  padding: 37px 30px 36px 156px;
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.info-block-one .inner-box:hover{
  box-shadow: 0px 10px 50px 0px rgba(255, 107, 0, 0.15);
  transform: translateY(-10px);
}

.info-column:nth-child(2) .info-block-one .inner-box{
  background: #BBD2FF;
}

.info-column:nth-child(3) .info-block-one .inner-box{
  background: #A2F8B2;
}

.info-column:nth-child(4) .info-block-one .inner-box{
  background: #FFACAC;
}

.info-block-one .inner-box .icon-box{
  position: absolute;
  display: inline-block;
  overflow: hidden;
  left: 30px;
  top: 40px;
  width: 86px;
  height: 86px;
  line-height: 86px;
  text-align: center;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  z-index: 1;
  transition: all 500ms ease;
}

.info-block-one:hover .inner-box .icon-box img{
  animation: toBottomFromTop .7s forwards;
}

.info-block-one .inner-box h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 9px;
}

.info-block-one .inner-box p a{
  color: var(--title-color);
}

.info-block-one .inner-box p a:hover{
  text-decoration: underline;
}


.contact-section{
  position: relative;
}

.contact-section .inner-container{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  border: dashed;
  border-width: 1px;
  background: #FDF7F9;
}

.contact-section .map-inner{
  position: relative;
  height: 578px;
  margin-left: -15px;
}

.contact-section .map-inner iframe{
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.contact-section .form-inner{
  position: relative;
  display: block;
  margin-right: -15px;
  padding: 52px 60px 60px 60px;
}

.contact-section .form-inner .form-group{
  position: relative;
  margin-bottom: 22px;
}

.contact-section .form-inner .form-group label{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 4px;
}

.contact-section .form-inner .form-group:last-child{
  margin-bottom: 0px;
}

.contact-section .form-inner .form-group input[type='text'],
.contact-section .form-inner .form-group input[type='email'],
.contact-section .form-inner .form-group input[type='tel'],
.contact-section .form-inner .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 16px;
  color: var(--text-color);
  padding: 10px 20px;
  border-radius: 50px;
  background: #fff;
  border: 1px dashed #D8D8D8;
  transition: all 500ms ease;
}

.contact-section .form-inner .form-group textarea{
  height: 150px;
  resize: none;
  border-radius: 20px;
}

.contact-section .form-inner .form-group input:focus,
.contact-section .form-inner .form-group textarea:focus{

}

.contact-section .form-inner .form-group .theme-btn{
  color: #fff;
  border-color: #fff !important;
  padding: 8px 30px;
}

.contact-section .form-inner .form-group .theme-btn:before,
.contact-section .form-inner .form-group .theme-btn:after{
  background: #000;
}


.contact-section .form-inner .contact-enquiry-field{
  position: relative;
}

.contact-section .form-inner .contact-enquiry-field:after{
  position: absolute;
  content: '\e902';
  font-family: 'icomoon';
  right: 24px;
  top: 46px;
  color: var(--theme-color);
  font-size: 8px;
  font-weight: 700;
  pointer-events: none;
  z-index: 2;
}

.contact-section .form-inner .form-group select.contact-select-input,
.contact-section .form-inner .contact-enquiry-field .nice-select{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  line-height: 28px;
  font-size: 16px;
  color: var(--text-color) !important;
  font-weight: 400;
  text-transform: none;
  padding: 10px 50px 10px 20px;
  border-radius: 50px;
  background: #fff;
  border: 1px dashed #D8D8D8;
  transition: all 500ms ease;
  appearance: none;
  -webkit-appearance: none;
}

.contact-section .form-inner .contact-enquiry-field .nice-select{
  padding-top: 11px;
}

.contact-section .form-inner .contact-enquiry-field .nice-select:before{
  display: none;
}

.contact-section .form-inner .contact-enquiry-field .nice-select .current{
  color: var(--text-color);
}

.contact-section .form-inner .contact-enquiry-field .nice-select .list{
  width: 100%;
  left: 0;
  right: auto;
  border-radius: 16px;
  border: 1px solid #f3dce4;
  box-shadow: 0px 12px 30px rgba(247, 97, 136, 0.12);
}

.contact-section .form-inner .form-group select.contact-select-input:focus,
.contact-section .form-inner .contact-enquiry-field .nice-select.open,
.contact-section .form-inner .contact-enquiry-field .nice-select:focus{
  border-color: var(--theme-color);
  box-shadow: 0px 0px 0px 4px rgba(247, 97, 136, 0.10);
}
/** rtl-css **/

.rtl .info-block-one .inner-box{
  padding-left: 30px;
  padding-right: 156px;
}

.rtl .info-block-one .inner-box .icon-box{
  left: inherit;
  right: 30px;
}

.rtl .contact-section .form-inner{
  margin-right: 0px;
  margin-left: -15px;
}

.rtl .contact-section .map-inner{
  margin-left: 0px;
  margin-right: -15px;
}

/** responsive-css **/

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

}

@media only screen and (max-width: 991px){
  .contact-section .form-inner{
    margin-right: 0px;
  }

  .rtl .contact-section .form-inner{
    margin-left: 0px;
  }

  .contact-section .map-inner{
    margin-left: 0px;
  }

  .rtl .contact-section .map-inner{
    margin-right: 0px;
  }
}

@media only screen and (max-width: 767px){
  .contact-section{
    padding-bottom: 70px;
  }

  .contact-section .form-inner{
    padding-left: 30px;
    padding-right: 30px;
  }
}

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

}

@media only screen and (max-width: 499px){
  .info-block-one .inner-box,
  .rtl .info-block-one .inner-box{
    padding-left: 30px;
    padding-right: 30px;
  }

  .info-block-one .inner-box .icon-box{
    position: relative;
    left: 0px;
    top: 0px;
    margin-bottom: 15px;
  }

  .rtl .info-block-one .inner-box .icon-box{
    right: 0px;
  }
}






































/** cta-section **/

.cta-section{
  position: relative;
}

.cta-section .inner-container{
  position: relative;
  display: block;
  background: #DE2D2D;
  border-radius: 20px;
  padding: 45px 30px 55px 30px;
}

.cta-section .inner-container:before{
  position: absolute;
  content: '';
  border: dashed;
  border-width: 2px;
  border-color: #fff;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  left: 10px;
  top: 10px;
  border-radius: 16px;
}

.cta-section .inner-container .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
}

.cta-section h2{
  display: block;
  font-size: 48px;
  line-height: 54px;
  color: #fff;
  margin-bottom: 30px;
}

.cta-section .image-layer .image-1{
  position: absolute;
  left: 30px;
  top: -35px;
}


/** cta-style-two **/

.cta-style-two{
  position: relative;
}

.cta-style-two .inner-container{
  position: relative;
  display: block;
  background: #FF6E06;
  border-radius: 20px;
  padding: 66px 100px;
}

.cta-style-two .inner-container:before{
  position: absolute;
  content: '';
  border: dashed;
  border-width: 1px;
  border-color: #fff;
  border-radius: 16px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  left: 10px;
  top: 10px;
}

.cta-style-two .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.cta-style-two h2{
  font-size: 48px;
  line-height: 55px;
  color: #fff;
  max-width: 520px;
}

.cta-style-two .form-inner{
  position: relative;
  margin-left: 130px;
}

.cta-style-two .form-inner .form-group{
  position: relative;
  margin-bottom: 0px;
}

.cta-style-two .form-inner .form-group input[type='email']{
  position: relative;
  display: block;
  width: 100%;
  height: 70px;
  background: #fff;
  border: dashed;
  border-width: 2px;
  border-color: #FF6E06;
  border-radius: 50px;
  font-size: 16px;
  color: var(--title-color);
  padding: 10px 60px 10px 30px;
}

.cta-style-two .form-inner .form-group button[type='submit']{
  position: absolute;
  display: inline-block;
  width: 60px;
  height: 60px;
  top: 5px;
  right: 5px;
  border-radius: 50%;
  text-align: center;
  font-size: 11px;
  color: #fff;
}

.cta-style-two .shape-layer{
  position: absolute;
  left: 50%;
  margin-left: -73px;
  top: 35px;
  width: 146px;
  height: 176px;
  background-repeat: no-repeat;
}


/** rtl-css **/

.rtl .cta-style-two .form-inner{
  margin-left: 0px;
  margin-right: 130px;
}


/** responsive-css **/

@media only screen and (max-width: 1200px){
  .cta-section .image-layer{
    display: none;
  }
}

@media only screen and (max-width: 991px){
  .cta-style-two .form-inner{
    margin-left: 0px;
    margin-top: 30px;
  }

  .rtl .cta-style-two .form-inner{
    margin-right: 0px;
  }

  .cta-style-two .shape-layer{
    display: none;
  }
}

@media only screen and (max-width: 767px){
  .cta-section h2{
    font-size: 36px;
    line-height: 44px;
  }

  .cta-style-two.pt_90{
    padding-top: 40px;
  }

  .cta-style-two .inner-container{
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media only screen and (max-width: 599px){
  .cta-style-two h2{
    font-size: 36px;
    line-height: 44px;
  }
}

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

}












































/** deals-section **/

.deals-section{
  position: relative;
  background: #FFE8EE;
}

.deals-section .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 76px;
  background-repeat: no-repeat;
  background-position: top center;
  background-repeat: repeat-x;
}

.deals-section .pattern-layer .pattern-2{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 76px;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-repeat: repeat-x;
}

.deals-block-one{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.deals-block-one .inner-box{
  position: relative;
  display: flex;
  align-items: center;
}

.deals-block-one .inner-box .image-box{
  position: relative;
  display: block;
  min-width: 380px;
}

.deals-block-one .inner-box .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
}

.deals-block-one .inner-box .image-box .image img{
  width: 100%;
  border-radius: 6px;
  transition: all 500ms ease;
}

.deals-block-one .inner-box:hover .image-box .image img{
  transform: scale(1.05);
}

.deals-block-one .inner-box .image-box .option-list{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all 500ms ease;
}

.deals-block-one .inner-box .image-box .option-list li{
  position: relative;
  display: inline-block;
  margin: 0px 5px;
  height: 40px;
  -webkit-transition: opacity 0.25s cubic-bezier(.17,.62,.44,.99),background-color 0.1s cubic-bezier(.28,.12,.22,1),color 0.1s cubic-bezier(.28,.12,.22,1),border-color 0.1s cubic-bezier(.28,.12,.22,1),-webkit-transform 0.25s cubic-bezier(.17,.62,.44,.99),-webkit-box-shadow 0.1s cubic-bezier(.28,.12,.22,1);
  transition: opacity 0.25s cubic-bezier(.17,.62,.44,.99),background-color 0.1s cubic-bezier(.28,.12,.22,1),color 0.1s cubic-bezier(.28,.12,.22,1),border-color 0.1s cubic-bezier(.28,.12,.22,1),-webkit-transform 0.25s cubic-bezier(.17,.62,.44,.99),-webkit-box-shadow 0.1s cubic-bezier(.28,.12,.22,1);
  transition: opacity 0.25s cubic-bezier(.17,.62,.44,.99),transform 0.25s cubic-bezier(.17,.62,.44,.99),background-color 0.1s cubic-bezier(.28,.12,.22,1),color 0.1s cubic-bezier(.28,.12,.22,1),border-color 0.1s cubic-bezier(.28,.12,.22,1),box-shadow 0.1s cubic-bezier(.28,.12,.22,1);
  transition: opacity 0.25s cubic-bezier(.17,.62,.44,.99),transform 0.25s cubic-bezier(.17,.62,.44,.99),background-color 0.1s cubic-bezier(.28,.12,.22,1),color 0.1s cubic-bezier(.28,.12,.22,1),border-color 0.1s cubic-bezier(.28,.12,.22,1),box-shadow 0.1s cubic-bezier(.28,.12,.22,1),-webkit-transform 0.25s cubic-bezier(.17,.62,.44,.99),-webkit-box-shadow 0.1s cubic-bezier(.28,.12,.22,1);
  opacity: 0;
  -webkit-transform: translateX(0.625rem);
  transform: translateX(0.625rem);
}

.deals-block-one .inner-box:hover .image-box .option-list li{
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.deals-block-one .inner-box .image-box .option-list li:first-child{
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.deals-block-one .inner-box .image-box .option-list li:nth-child(2){
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.deals-block-one .inner-box .image-box .option-list li:nth-child(3){
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.deals-block-one .inner-box .image-box .option-list li:nth-child(4){
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

.deals-block-one .inner-box .image-box .option-list li a,
.deals-block-one .inner-box .image-box .option-list li button{
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 40px;
  height: 40px;
  line-height: 42px;
  background: #FDDFE7;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
  color: var(--title-color);
  cursor: pointer;
  transition: all 500ms ease;
}

.deals-block-one .inner-box .image-box .option-list li:first-child a{
  font-size: 14px;
}

.deals-block-one .inner-box .image-box .option-list li a:hover,
.deals-block-one .inner-box .image-box .option-list li button:hover,
.deals-block-one .inner-box .image-box .option-list li button:focus,
.deals-block-one .inner-box .image-box .option-list li button:active{
  color: #fff;
}

.deals-block-one .inner-box .image-box .option-list li a:hover i,
.deals-block-one .inner-box .image-box .option-list li button:hover i,
.deals-block-one .inner-box .image-box .option-list li button:focus i,
.deals-block-one .inner-box .image-box .option-list li button:active i{
  animation: toBottomFromTop .7s forwards;
}

.deals-block-one .inner-box .content-box{
  position: relative;
  display: block;
  padding: 15px 30px 20px 50px;
}

.deals-block-one .inner-box .content-box .text{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 9px;
}

.deals-block-one .inner-box .content-box h3{
  display: block;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 12px;
}

.deals-block-one .inner-box .content-box h3 a{
  display: inline-block;
  color: var(--title-color);
}

.deals-block-one .inner-box .content-box h3 a:hover{

}

.deals-block-one .inner-box .content-box h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: #E92530;
  margin-bottom: 10px;
}

.deals-block-one .inner-box .content-box h4 del{
  font-weight: 500;
  color: #7C7C7C;
  margin-right: 6px;
}

.deals-block-one .inner-box .content-box .rating{
  margin-bottom: 13px;
}

.deals-block-one .inner-box .content-box .timer .cs-countdown{
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.deals-block-one .inner-box .content-box .timer .cs-countdown .count-col{
  position: relative;
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  background: #FFE8EE;
  text-align: center;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
}

.deals-block-one .inner-box .content-box .timer .cs-countdown .count-col h6{
  display: none;
}

.deals-block-one .inner-box .content-box .timer .cs-countdown .count-col:before{
  position: absolute;
  content: '';
  width: 3px;
  height: 3px;
  top: 17px;
  right: -9px;
  border-radius: 50%;
}

.deals-block-one .inner-box .content-box .timer .cs-countdown .count-col:after{
  position: absolute;
  content: '';
  width: 3px;
  height: 3px;
  bottom: 17px;
  right: -9px;
  border-radius: 50%;
}

.deals-block-one .inner-box .content-box .timer .cs-countdown .count-col:last-child:before,
.deals-block-one .inner-box .content-box .timer .cs-countdown .count-col:last-child:after{
  display: none;
}

.deals-block-one .inner-box .content-box .theme-btn{
  padding: 8px 60px;
}

.deals-section .owl-carousel .owl-stage-outer{
  overflow: visible;
}

.deals-section .owl-carousel .owl-stage-outer .owl-item{
  opacity: 0;
  visibility: hidden;
}

.deals-section .owl-carousel .owl-stage-outer .owl-item.active{
  opacity: 1;
  visibility: visible;
}

.deals-section .shape-layer .shape-1{
  position: absolute;
  left: 50%;
  top: 0px;
  width: 85px;
  height: 187px;
  background-repeat: no-repeat;
}

.deals-section .shape-layer .shape-2{
  position: absolute;
  left: 0px;
  bottom: 140px;
  width: 135px;
  height: 163px;
  background-repeat: no-repeat;
}

.deals-section .shape-layer .shape-3{
  position: absolute;
  top: 100px;
  right: 360px;
  width: 286px;
  height: 364px;
  background-repeat: no-repeat;
}

.deals-section .owl-nav{
  position: absolute;
  top: -100px;
  right: 0px;
}


/** deals-style-two **/

.deals-style-two{
  position: relative;
}

.deals-style-two .sec-title h2{
  display: inline-block;
  background: #fff;
  padding: 0px 20px;
}

.deals-style-two .sec-title:before{
  position: absolute;
  content: '';
  background-image: url(../../images/shape/shape-53.png);
  width: 100%;
  height: 11px;
  left: 0px;
  top: 23px;
  background-repeat: repeat-x;
}

.deals-style-two .owl-carousel .owl-stage-outer{
  overflow: visible;
}

.deals-style-two .owl-carousel .owl-stage-outer .owl-item{
  opacity: 0;
  visibility: hidden;
}

.deals-style-two .owl-carousel .owl-stage-outer .owl-item.active{
  opacity: 1;
  visibility: visible;
}

.deals-style-two .owl-theme .owl-dots{
  position: relative;
  display: block;
  text-align: center;
  margin-top: 20px;
}

.deals-style-two .owl-theme .owl-dots .owl-dot span{
  display: none;
}

.deals-style-two .owl-theme .owl-dots .owl-dot{
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0px 7px;
  cursor: pointer;
  opacity: 0.5;
  transition: all 500ms ease;
}

.deals-style-two .owl-theme .owl-dots .owl-dot.active,
.deals-style-two .owl-theme .owl-dots .owl-dot:hover{
  opacity: 1;
  transform: scale(1.2);
}

.deals-style-two .owl-theme .owl-dots .owl-dot:before{
  position: absolute;
  content: '';
  border: solid;
  border-width: 1px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  left: -5px;
  top: -5px;
  transform: scale(0,0);
  transition: all 500ms ease;
}

.deals-style-two .owl-theme .owl-dots .owl-dot.active:before,
.deals-style-two .owl-theme .owl-dots .owl-dot:hover:before{
  transform: scale(1,1);
}

.deals-style-two .shape-layer .shape-1{
  position: absolute;
  left: 0px;
  top: -400px;
  width: 100%;
  height: 1475px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.deals-style-two .shape-layer .shape-2{
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 189px;
  height: 298px;
  background-repeat: no-repeat;
}


/** deals-style-three **/

.deals-style-three{
  position: relative;
}

.deals-style-three .title-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.deals-style-three .title-inner .cs-countdown{
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.deals-style-three .title-inner .count-col{
  position: relative;
  display: inline-block;
  width: 70px;
  height: 60px;
  text-align: center;
  background: #FFE8EE;
  border-radius: 8px;
  border: dashed;
  border-width: 1px;
  padding: 12px 0px;
}

.deals-style-three .title-inner .count-col span{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 3px;
}

.deals-style-three .title-inner .count-col h6{
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.deals-style-three .title-inner .count-col:before{
  position: absolute;
  content: '';
  width: 3px;
  height: 3px;
  top: 22px;
  right: -9px;
  border-radius: 50%;
}

.deals-style-three .title-inner .count-col:after{
  position: absolute;
  content: '';
  width: 3px;
  height: 3px;
  bottom: 22px;
  right: -9px;
  border-radius: 50%;
}

.deals-style-three .title-inner .count-col:last-child:before,
.deals-style-three .title-inner .count-col:last-child:after{
  display: none;
}

.deals-block-two{
  position: relative;
  display: block;
  border: dashed;
  border-width: 1px;
  border-color: #BCBCBC;
  border-radius: 10px;
  padding: 26px 30px;
  background: #fff;
  margin-bottom: 30px;
}

.deals-block-two .inner-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
}

.deals-block-two .inner-box .image-box{
  position: relative;
  display: inline-block;
  width: 135px;
  min-width: 135px;
}

.deals-block-two .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.deals-block-two .inner-box:hover .image-box img{
  transform: scale(1.04);
}

.deals-block-two .inner-box .text{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}

.deals-block-two .inner-box h5{
  display: block;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 13px;
}

.deals-block-two .inner-box h5 a{
  display: inline-block;
  color: var(--title-color);
}

.deals-block-two .inner-box h5 a:hover{

}

.deals-block-two .inner-box h6{
  display: block;
  font-size: 18px;
  line-height: 23px;
  color: #E92530;
  margin-bottom: 25px;
}

.deals-block-two .inner-box h6 del{
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin-right: 8px;
}

.deals-block-two .inner-box .theme-btn{
  padding: 3px 25px;
}

.deals-style-three .owl-nav{
  position: absolute;
  left: 0px;
  top: 50%;
  width: 100%;
  margin-top: -24px;
}

.deals-style-three .owl-nav button{
  position: absolute;
  top: 0px;
  font-size: 48px;
  color: var(--title-color);
  cursor: pointer;
  transition: all 500ms ease;
}

.deals-style-three .owl-nav button:hover{

}

.deals-style-three .owl-nav button.owl-prev{
  left: -35px;
}

.deals-style-three .owl-nav button.owl-next{
  right: -35px;
}

.deals-style-three .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  top: -500px;
  width: 100%;
  height: 1695px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  background-size: cover;
}

.deals-style-three .pattern-layer .pattern-2{
  position: absolute;
  top: 120px;
  right: 500px;
  width: 171px;
  height: 255px;
  background-repeat: no-repeat;
}


/** rtl-css **/

.rtl .deals-block-one,
.rtl .deals-block-two{
  direction: rtl;
}

.rtl .deals-block-one .inner-box .content-box .timer .cs-countdown .count-col:before,
.rtl .deals-block-one .inner-box .content-box .timer .cs-countdown .count-col:after,
.rtl .deals-style-three .title-inner .count-col:before,
.rtl .deals-style-three .title-inner .count-col:after{
  right: inherit;
  left: -9px;
}


/** responsive-css **/

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

}

@media only screen and (max-width: 991px){
  .deals-style-two .shape-layer .shape-2,
  .deals-style-three .owl-nav,
  .deals-style-three .pattern-layer{
    display: none;
  }
}

@media only screen and (max-width: 767px){
  .deals-block-one .inner-box{
    display: block;
  }

  .deals-block-one{
    padding: 40px 30px;
  }

  .deals-block-one .inner-box .content-box{
    padding: 30px 0px 0px 0px;
  }

  .deals-section .shape-layer,
  .deals-section .owl-nav,
  .deals-style-two .owl-theme .owl-dots{
    display: none;
  }

  .deals-style-three .title-inner{
    display: block;
  }

  .deals-style-three .title-inner .sec-title{
    margin-bottom: 30px;
  }

  .deals-style-three{
    padding: 70px 0px 40px 0px;
  }
}

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

}

@media only screen and (max-width: 499px){
  .deals-block-one .inner-box .image-box{
    min-width: 100%;
  }

  .deals-block-two .inner-box{
    display: block;
  }

  .deals-block-two .inner-box .image-box{
    margin-bottom: 20px;
  }
}












































/** error-section **/

.error-section{
  position: relative;
}

.error-section .content-box{
  position: relative;
  display: block;
}

.error-section .content-box .image-box{
  position: relative;
  display: block;
  margin-bottom: 60px;
}

.error-section .content-box h2{
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 30px;
}

.error-section .content-box .btn-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.error-section .content-box .btn-box .theme-btn{
  padding: 8px 30px;
}

.error-section .content-box .btn-box .theme-btn i{
  font-size: 12px;
  margin-right: 8px;
  color: var(--title-color);
  position: relative;
  top: -1px;
  transition: all 500ms ease;
}

.error-section .content-box .btn-box .theme-btn:hover i{
  color: #fff;
}

.error-section .content-box .btn-box .theme-btn:last-child{
  color: #fff;
  border-color: #fff !important;
}

.error-section .content-box .btn-box .theme-btn:last-child:before,
.error-section .content-box .btn-box .theme-btn:last-child:after{
  background: #000;
}


/** rtl-css **/



/** responsive-css **/

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

}

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

}

@media only screen and (max-width: 767px){
  .error-section{
    padding-bottom: 70px;
    padding-top: 30px;
  }
}

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

}

@media only screen and (max-width: 499px){
  .error-section .content-box .btn-box{
    display: block;
  }

  .error-section .content-box .btn-box .theme-btn:first-child{
    margin-bottom: 15px;
  }
}












































/** featured-section **/

.featured-section{
  position: relative;
}

.featured-block-one .inner-box{
  position: relative;
  display: block;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: #0AB31B;
  padding: 40px;
  z-index: 2;
}

.featured-block-one .inner-box h6{
  display: block;
  font-size: 14px;
  line-height: 26px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.featured-block-one .inner-box h2{
  display: block;
  font-size: 36px;
  line-height: 41px;
  color: #fff;
  margin-bottom: 8px;
}

.featured-block-one .inner-box h4{
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 82px;
}

.featured-block-one .inner-box h4 span{
  display: inline-block;
  font-weight: 800;
}

.featured-block-one .inner-box .theme-btn{
  border-color: #fff !important;
  border-width: 1px;
  background: rgba(255, 255, 255, 0.20);
  color: #fff !important;
  padding: 9px 25px;
}

.featured-block:nth-child(2) .featured-block-one .inner-box{
  background: #E91A3E;
}

.featured-block:nth-child(3) .featured-block-one .inner-box{
  background: #1A6DE9;
}

.featured-block-one .inner-box .text-box{
  position: relative;
  max-width: 200px;
  float: left;
}

.featured-block-one .inner-box:before{
  position: absolute;
  content: '';
  background: #000;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0.1;
  top: 107px;
  right: 205px;
}


/** featured-style-two **/

.featured-style-two{
  position: relative;
}

.featured-style-two .featured-block{
  display: flex;
}

.featured-style-two .featured-block-two{
  width: 100%;
  display: flex;
}

.featured-block-two .inner-box{
  position: relative;
  display: block;
  background: #BB1137;
  border-radius: 10px;
  overflow: hidden;
  padding: 40px 50px 210px 40px;
  margin-bottom: 30px;
}

.featured-block-two .inner-box .text-box{
  position: relative;
  z-index: 2;
  max-width: 300px;
}

.featured-style-two:not(.home-4) .featured-block-two .inner-box{
  width: 100%;
  height: 352px;
}

.featured-block-two .inner-box h2{
  display: block;
  font-size: 36px;
  line-height: 45px;
  color: #fff;
  margin-bottom: 7px;
}

.featured-style-two:not(.home-4) .featured-block-two .inner-box h2{
  margin-bottom: 8px;
}

.featured-block-two .inner-box h3{
  display: block;
  font-size: 20px;
  line-height: 26px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 10px;
}

.featured-block-two .inner-box p{
  font-size: 15px;
  line-height: 22px;
  color: #fff;
  margin-bottom: 18px;
}

.featured-block-two .inner-box h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 20px;
}

.featured-block-two .inner-box h4 span{
  font-weight: 400;
}

.featured-style-two .featured-block:first-child .featured-block-two{
  margin-right: 0px;
}

.featured-style-two .featured-block:nth-child(2) .featured-block-two{
  margin-right: 0px;
  margin-left: 0px;
}

.featured-style-two .featured-block:last-child .featured-block-two{
  margin-left: 0px;
}

.featured-style-two .featured-block:nth-child(2) .featured-block-two .inner-box{
  background: #009AF1;
}

.featured-style-two .featured-block:last-child .featured-block-two .inner-box{
  background: #0AB31B;
}

.featured-block-two .inner-box .text{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 26px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

.featured-style-two .featured-block:nth-child(2) .featured-block-two .inner-box h2{
  font-size: 36px;
  line-height: 45px;
  margin-bottom: 8px;
}

.featured-block-two .inner-box .theme-btn{
  border-width: 1px;
  border-color: #fff !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.20);
  padding: 9px 30px;
}



/** featured-style-three **/

.featured-style-three{
  position: relative;
}

.featured-style-three .featured-block-one .inner-box:before{
  display: none;
}

.featured-style-three .featured-block:first-child .featured-block-one .inner-box{
  background: #FFB2BD;
}

.featured-style-three .featured-block:nth-child(2) .featured-block-one .inner-box{
  background: #E52D2D;
}

.featured-style-three .featured-block:nth-child(3) .featured-block-one .inner-box{
  background: #FD8905;
}

.featured-style-three .featured-block-one .inner-box .text-box{
  max-width: 230px;
}

.featured-style-three .featured-block:first-child .featured-block-one .inner-box h6,
.featured-style-three .featured-block:first-child .featured-block-one .inner-box h2,
.featured-style-three .featured-block:first-child .featured-block-one .inner-box h4{
  color: var(--title-color);
}

.featured-style-three .featured-block:first-child .featured-block-one .inner-box .theme-btn{
  background: transparent;
  color: var(--title-color) !important;
  border-color: var(--secondary-color) !important;
}

.featured-style-three .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  top: -123px;
  width: 158px;
  height: 266px;
  background-repeat: no-repeat;
}

.featured-style-three .pattern-layer .pattern-2{
  position: absolute;
  right: 80px;
  bottom: -10px;
  width: 146px;
  height: 176px;
  background-repeat: no-repeat;
}


/** featured-style-four **/

.featured-style-four{
  position: relative;
}

.featured-style-four .featured-block-one .inner-box{
  background: #03CCB4;
}

.featured-style-four .featured-block-one .inner-box:before{
  display: none;
}

.featured-style-four .featured-block:nth-child(2) .featured-block-one .inner-box{
  background: #E91ABB;
}

.featured-style-four .featured-block:nth-child(3) .featured-block-one .inner-box{
  background: #E9A31A;
}

.featured-style-two.home-4 .featured-block-two .inner-box{
  background: #32ADF1;
}

.featured-style-two.home-4 .featured-block:nth-child(2) .featured-block-two .inner-box{
  background: #B468FF;
}

.featured-style-two.home-4 .featured-block:nth-child(3) .featured-block-two .inner-box{
  background: #0AB31B;
}

.featured-block-two .inner-box .text-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 74px;
}

.featured-block-two .inner-box .text-inner .text-box h2{
  margin-bottom: 0px !important;
}


/** featured-style-five **/

.featured-style-five{
  position: relative;
}

.featured-style-five .featured-block-one .inner-box .text-box{
  max-width: 260px;
}

.featured-style-five .featured-block-one .inner-box{
  background: #F9CD52;
}

.featured-style-five .featured-block:nth-child(2) .featured-block-one .inner-box{
  background: #78B77E;
}

.featured-style-five .featured-block:nth-child(3) .featured-block-one .inner-box{
  background: #6D56AA;
}

.featured-style-five .featured-block:first-child .featured-block-one .inner-box h6,
.featured-style-five .featured-block:first-child .featured-block-one .inner-box h2,
.featured-style-five .featured-block:first-child .featured-block-one .inner-box h4{
  color: var(--title-color);
}

.featured-style-five .featured-block:first-child .featured-block-one .inner-box .theme-btn{
  background: transparent;
  color: var(--title-color) !important;
  border-color: var(--secondary-color) !important;
}


/** rtl-css **/

.rtl .featured-style-two .featured-block:first-child .featured-block-two{
  margin-right: 0px;
  margin-left: -30px;
}

.rtl .featured-style-two .featured-block:last-child .featured-block-two{
  margin-left: 0px;
  margin-right: -30px;
}


/** responsive-css **/

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

}

@media only screen and (max-width: 991px){
  .featured-block .featured-block-two{
    margin: 0px 0px 30px 0px !important;
  }
}

@media only screen and (max-width: 767px){
  .featured-style-two:not(.home-4) .featured-block-two .inner-box{
    height: 320px;
  }

  .featured-section{
    padding-bottom: 30px;
  }

  .featured-style-four{
    padding-top: 70px;
  }

  .featured-block-two .inner-box .text-inner{
    display: block;
    padding-bottom: 0px;
  }

  .featured-block-two .inner-box .text-inner .text-box h2{
    margin-bottom: 20px !important;
  }

  .featured-style-two.home-4,
  .featured-style-five{
    padding-bottom: 40px;
  }
}

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

}

@media only screen and (max-width: 499px){
  .featured-style-two:not(.home-4) .featured-block-two .inner-box{
    height: 280px;
  }

  .featured-block-one .inner-box .image-box{
    display: none;
  }

  .featured-block-one .inner-box .text-box{
    max-width: 100%;
  }

  .featured-block-one .inner-box,
  .featured-block-two .inner-box{
    padding-left: 30px;
    padding-right: 30px;
  }
}
/** age card content override **/
.featured-style-two:not(.home-4) .featured-block-two .inner-box .text-box{
  position: relative;
  z-index: 3;
  max-width: 315px;
}

.featured-style-two:not(.home-4) .featured-block-two .inner-box .text-box h2,
.featured-style-two:not(.home-4) .featured-block-two .inner-box .text-box h3,
.featured-style-two:not(.home-4) .featured-block-two .inner-box .text-box p,
.featured-style-two:not(.home-4) .featured-block-two .inner-box .text-box a{
  color: #fff !important;
}

.featured-style-two:not(.home-4) .featured-block-two .inner-box .text-box h2{
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.featured-style-two:not(.home-4) .featured-block-two .inner-box .text-box h3{
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 10px;
}

.featured-style-two:not(.home-4) .featured-block-two .inner-box .text-box p{
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 18px;
}

.featured-style-two:not(.home-4) .featured-block-two .inner-box .theme-btn{
  min-width: 146px;
  text-align: center;
}

@media only screen and (max-width: 1399px){
  .featured-style-two:not(.home-4) .featured-block-two .inner-box .text-box{
    max-width: 285px;
  }

  .featured-style-two:not(.home-4) .featured-block-two .inner-box .text-box h3{
    font-size: 19px;
  }

  .featured-style-two:not(.home-4) .featured-block-two .inner-box .text-box p{
    font-size: 14px;
  }
}

/** fluid-section **/

.fluid-section{
  position: relative;
  background: #FFD6E1;
}

.fluid-section .left-column{
  position: relative;
  float: left;
  width: 50%;
  text-align: center;
  padding: 110px 115px;
  overflow: hidden;
}

.fluid-section .left-column .big-text{
  position: absolute;
  left: -10px;
  bottom: -22px;
  width: 100%;
  text-align: center;
  font-size: 128px;
  line-height: 130px;
  font-weight: 900;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(17, 17, 17, 0.10);
}

.fluid-section .left-column .left-content{
  position: relative;
  display: block;
  max-width: 730px;
  width: 100%;
  margin: 0 auto;
}

.fluid-section .testimonial-content{
  position: relative;
  display: block;
}

.fluid-section .testimonial-content .icon-box{
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.fluid-section .testimonial-content p{
  font-size: 36px;
  line-height: 48px;
  font-weight: 500;
  color: var(--title-color);
  margin-bottom: 30px;
}

.fluid-section .testimonial-content .signature{
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.fluid-section .testimonial-content .signature img{
  display: inline-block;
}

.fluid-section .testimonial-content .thumb-box{
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  padding: 5px;
  border: dashed;
  border-width: 1px;
  margin-bottom: 12px;
}

.fluid-section .testimonial-content h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 2px;
}

.fluid-section .testimonial-content .designation{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: #6A6A6A;
}

.fluid-section .right-column{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50%;
  height: 100%;
  background: #F3F1D8;
  padding: 110px 0px 116px 125px;
}

.fluid-section .right-column .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.fluid-section .collection-block-one .inner-box{
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 30px;
}

.fluid-section .collection-block-one .inner-box .theme-btn{
  padding: 8px 30px;
  width: 100%;
}

.fluid-section .right-column .right-content{
  position: relative;
  display: block;
  margin-right: -143px;
}

.fluid-section .right-column .owl-nav{
  position: absolute;
  top: -86px;
  right: 278px;
}

.fluid-section .collection-block-one .inner-box .image-box .image{
  max-width: 216px;
}


/** rtl-css **/




/** responsive-css **/

@media only screen and (max-width: 1600px){
  .fluid-section .right-column .owl-nav{
    display: none;
  }
}

@media only screen and (max-width: 1200px){
  .fluid-section .left-column{
    padding-left: 60px;
    padding-right: 60px;
  }

  .fluid-section .right-column{
    padding-left: 60px;
  }
}

@media only screen and (max-width: 991px){
  .fluid-section .left-column{
    float: none;
    width: 100%;
  }

  .fluid-section .right-column{
    position: relative;
    width: 100%;
    height: auto;
  }

  .fluid-section .right-column .right-content{
    margin: 0px;
  }

  .fluid-section .right-column{
    padding-right: 60px;
  }
}

@media only screen and (max-width: 767px){
  .fluid-section .left-column,
  .fluid-section .right-column{
    padding: 70px 30px;
  }
}

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

}

@media only screen and (max-width: 499px){
  .fluid-section .left-column,
  .fluid-section .right-column{
    padding-left: 15px;
    padding-right: 15px;
  }

  .fluid-section .testimonial-content p{
    font-size: 24px;
    line-height: 30px;
  }
}












































/** main-footer **/

.main-footer{
  position: relative;
  background: #FAE0E7;
}

.main-footer .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 11px;
  background-repeat: repeat-x;
  background-position: bottom center;
}

.main-footer .logo-widget .footer-logo{
  position: relative;
  display: block;
  margin-bottom: 27px;
}

.main-footer .logo-widget .footer-logo img{
  max-width: 380px;
  width: 100%;
  height: auto;
}

.main-footer .info-list{
  margin-bottom: 32px;
}

.main-footer .info-list li{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
  margin-bottom: 4px;
}

.main-footer .info-list li:last-child{
  margin-bottom: 0px;
}

.main-footer .info-list li a{
  display: inline-block;
  color: var(--title-color);
}

.main-footer .info-list li a:hover{
  text-decoration: underline;
}

.main-footer .social-links{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-footer .social-links li a{
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 46px;
  font-size: 20px;
  color: #fff;
  border: dashed;
  border-width: 1px;
  border-color: #fff;
  border-radius: 50%;
  text-align: center;
  background: #004DA8;
}

.main-footer .social-links li:nth-child(2) a{
  background: #00B2F3;
}

.main-footer .social-links li:nth-child(3) a{
  background: #036DC4;
}

.main-footer .social-links li:nth-child(4) a{
  background: #FF4C8B;
}

.main-footer .widget-title{
  position: relative;
  display: block;
  margin-bottom: 27px;
}

.main-footer .widget-title h4{
  display: block;
  font-size: 20px;
  line-height: 24px;
}

.main-footer .links-widget .links-list li{
  position: relative;
  display: block;
  margin-bottom: 5px;
}

.main-footer .links-widget .links-list li:last-child{
  margin-bottom: 0px;
}

.main-footer .links-widget .links-list li a{
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
}

.main-footer .links-widget .links-list li a:hover{
  text-decoration: underline;
}

.main-footer .subscribe-widget p{
  color: var(--title-color);
  line-height: 26px;
  margin-bottom: 23px;
}

.main-footer .subscribe-widget form .form-group{
  position: relative;
  margin-bottom: 0px;
}

.main-footer .subscribe-widget form .form-group input[type='email']{
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  border: dashed;
  border-width: 2px;
  border-color: #fff;
  border-radius: 50px;
  background: rgba(247, 97, 136, 0.20);
  font-size: 16px;
  color: var(--title-color);
  padding: 10px 70px 10px 20px;
  transition: all 500ms ease;
}

.main-footer .subscribe-widget form .form-group button[type='submit']{
  position: absolute;
  display: inline-block;
  width: 56px;
  height: 50px;
  top: 5px;
  right: 5px;
  text-align: center;
  border-radius: 105px;
  font-size: 16px;
  color: #fff;
  text-align: center;
}

.main-footer .widget-section{
  border-bottom: dashed;
  border-width: 3px;
  border-color: #fff;
}

.footer-bottom{
  position: relative;
  padding: 20px 0px;
}

.footer-bottom .bottom-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom .bottom-inner .copyright p{
  color: var(--title-color);
}

.footer-bottom .bottom-inner .copyright p a:hover{
  text-decoration: underline;
}

.footer-card{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-card li a{
  position: relative;
  display: inline-block;
  border-radius: 5px;
}

.footer-card li a img{
  width: 100%;
  border-radius: 5px;
}

.main-footer .anim-shape .shape-1{
  position: absolute;
  width: 34px;
  height: 31px;
  left: 77px;
  bottom: 122px;
  background-repeat: no-repeat;
}

.main-footer .anim-shape .shape-2{
  position: absolute;
  width: 34px;
  height: 31px;
  left: 486px;
  top: 126px;
  background-repeat: no-repeat;
}

.main-footer .anim-shape .shape-3{
  position: absolute;
  width: 34px;
  height: 31px;
  right: 170px;
  top: 65px;
  background-repeat: no-repeat;
}

.main-footer .anim-shape .shape-4{
  position: absolute;
  width: 34px;
  height: 31px;
  right: 620px;
  top: 200px;
  background-repeat: no-repeat;
}

.main-footer .anim-shape .shape-5{
  position: absolute;
  left: 0px;
  top: 140px;
  width: 68px;
  height: 99px;
  background-repeat: no-repeat;
}

.main-footer .anim-shape .shape-6{
  position: absolute;
  left: 50%;
  bottom: 110px;
  width: 131px;
  height: 87px;
  background-repeat: no-repeat;
}

.main-footer .anim-shape .shape-7{
  position: absolute;
  right: 0px;
  bottom: 105px;
  width: 77px;
  height: 107px;
  background-repeat: no-repeat;
}


.footer-light{
  background: #111111;
}

.footer-light .info-list li,
.footer-light .info-list li a,
.footer-light .widget-title h4,
.footer-light .links-widget .links-list li a,
.footer-light .subscribe-widget p,
.footer-light .bottom-inner .copyright p{
  color: #fff;
}

.footer-light .social-links li a{
  border: none;
  line-height: 48px;
}

.footer-light .subscribe-widget form .form-group input[type='email']{
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.30);
}

.footer-light .subscribe-widget form .form-group input[type='email']:focus{

}

.footer-light .widget-section{
  border-color: rgba(255, 255, 255, 0.20);
}

.footer-light .anim-shape .shape-1,
.footer-light .anim-shape .shape-2,
.footer-light .anim-shape .shape-3,
.footer-light .anim-shape .shape-4{
  opacity: 0.3;
}

.main-footer.home-3{
  position: relative;
  background: #20191B;
}

.main-footer .support-box{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  background: rgba(247, 97, 136, 0.20);
  border: dashed;
  border-width: 1px;
  padding: 21px 25px;
}

.main-footer .support-box .icon-box{
  position: relative;
  display: inline-block;
  font-size: 36px;
  line-height: 40px;
  color: #fff;
}

.main-footer .support-box h3{
  display: block;
  font-size: 24px;
  line-height: 24px;
  font-weight: 800;
}

.main-footer .support-box h3 a{
  display: inline-block;
  color: #fff;
}

.main-footer .support-box h3 a:hover{

}

.main-footer .support-box span{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}

.main-footer.home-3 .widget-section{
  border-bottom: none;
}

.main-footer.home-3 .footer-bottom{
  padding: 0px;
}

.main-footer.home-3 .footer-bottom .bottom-inner{
  padding: 20px 30px;
  border-radius: 10px 10px 0px 0px;
  background: #151313;
}


/** rtl-css **/




/** responsive-css **/

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

}

@media only screen and (max-width: 991px){
  .tp-footer-widget{
    margin-bottom: 30px;
  }

  .main-footer .widget-section{
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 767px){
  .footer-bottom .bottom-inner{
    display: block;
    text-align: center;
  }

  .footer-card{
    justify-content: center;
    margin-top: 10px;
  }

  .main-footer .anim-shape{
    display: none;
  }
}

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

}

@media only screen and (max-width: 499px){
  .main-footer.home-3 .footer-bottom .bottom-inner{
    padding-left: 15px;
    padding-right: 15px;
  }
}













































/** header-top **/

.header-top{
  position: relative;
  width: 100%;
  padding: 6px 0px;
}

.header-top .top-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top .top-inner .info-list{
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-top .top-inner .info-list li{
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}

.header-top .top-inner .info-list li.chat-toggler{
  cursor: pointer;
}

.header-top .top-inner .info-list li i{
  font-size: 16px;
}

.header-top .top-inner .text p{
  font-size: 14px;
  color: #fff;
}

.header-top .top-inner .text p span{
  font-weight: 700;
}

.header-top .top-inner .right-column{
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-top .top-inner .nice-select{
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  padding-right: 15px;
}

.header-top .top-inner .nice-select:before{
  font-size: 7px;
}

.main-header .currency-box{
  position: relative;
  padding-left: 25px;
}

.main-header .currency-box .icon-box{
  position: absolute;
  left: 0px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.main-header .currency-box .icon-box img{
  width: 100%;
  border-radius: 50%;
}

.main-header .outer-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header .outer-box .support-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.main-header .outer-box .support-box .icon-box{
  position: relative;
  display: inline-block;
  font-size: 36px;
  line-height: 40px;
}

.main-header .outer-box .support-box h3{
  display: block;
  font-size: 24px;
  line-height: 24px;
  font-weight: 800;
}

.main-header .outer-box .support-box h3 a{
  display: inline-block;
  color: var(--title-color);
}

.main-header .outer-box .support-box h3 a:hover{

}

.main-header .outer-box .support-box span{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
}

.main-header .menu-right-content{
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 15px 0px;
}

.main-header .logo-box{
  position: relative;
  padding: 15px 0px;
}

.main-header .search-box{
  position: relative;
  width: 300px;
}

.main-header .search-box .form-group{
  position: relative;
  margin-bottom: 0px;
}

.main-header .search-box .form-group input[type="search"]{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  background: #F8EDF0;
  border: dashed;
  border-width: 1px;
  border-radius: 50px;
  font-size: 15px;
  color: var(--text-color);
  padding: 10px 60px 10px 20px;
}

.main-header .search-box .form-group button[type='submit']{
  position: absolute;
  top: 5px;
  right: 5px;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 42px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
}

.main-header .option-list{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.main-header .option-list li{
  position: relative;
  display: inline-block;
  font-size: 20px;
}

.main-header .option-list li button,
.main-header .option-list li a{
  display: inline-block;
  color: var(--text-color);
  transition: all 500ms ease;
}

.main-header .option-list li button:hover,
.main-header .option-list li a:hover{

}

.main-header .option-list li.shop-cart button{
  padding-right: 13px;
  padding-top: 5px;
}

.main-header .option-list li.shop-cart button span{
  position: absolute;
  display: inline-block;
  top: 0px;
  right: 0px;
  width: 19px;
  height: 19px;
  line-height: 19px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
}

.main-header .header-lower .shape{
  position: absolute;
  left: 0px;
  bottom: -10px;
  width: 100%;
  height: 11px;
  background-repeat: repeat-x;
}


/** main-menu **/

.main-menu{
  float: left;
}

.main-menu .navbar-collapse{
  padding:0px;
  display:block !important;
}

.main-menu .navigation{
  margin:0px;
}

.main-menu .navigation > li{
  position:inherit;
  float:left;
  z-index:2;
  margin: 0px 19px;
  -webkit-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  transition:all 300ms ease;
}

.main-menu .navigation > li:last-child{
  margin-right:0px !important;
}

.main-menu .navigation > li:first-child{
  margin-left: 0px !important;
}

.main-menu .navigation > li > a{
  position:relative;
  display:block;
  text-align:center;
  font-size:16px;
  line-height:26px;
  padding-top: 29.5px;
  padding-bottom: 29.5px;
  font-weight:500;
  font-family: var(--text-font);
  opacity:1;
  color: var(--title-color);
  z-index:1;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
}

.main-menu .navigation > li.dropdown > a{
  padding-right: 17px;
}

.main-menu .navigation > li.current > a,
.main-menu .navigation > li:hover > a{
  
}

.main-menu .navigation > li.dropdown > a:before{
  position: absolute;
  content: "\f107";
  font-family: 'Font Awesome 5 Pro';
  top: 29px;
  right: 0px;
  font-weight: 500;
  transition: all 500ms ease;
}

.main-menu .navigation > li > a:after{
  position: absolute;
  content: '';
  width: 100%;
  height: 2.5px;
  left: 0px;
  bottom: 20px;
  border-radius: 2px;
  transform: scale(0,0);
  transition: all 300ms ease;
}

.main-menu .navigation > li.current > a:after,
.main-menu .navigation > li:hover > a:after{
  transform: scale(1,1);
}

.main-menu .navigation > li > ul,
.main-menu .navigation > li > .megamenu{
  position:absolute;
  left: inherit;
  top:100%;
  width:230px;
  padding: 15px;
  z-index:100;
  display:none;
  background: #fff;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top center;
  border-bottom: solid;
  border-width: 3px;
  visibility: hidden;
  box-shadow: 0 12px 12px rgba(0, 80, 191, 3%);
  border-radius: 0 0 6px 6px;
  transition: all .21s cubic-bezier(.3,.02,0,.6);
}

.main-menu .navigation > li > ul.from-right{
  left:auto;
  right:0px;  
}

.main-menu .navigation > li > ul > li{
  position:relative;
  width:100%;
}

.main-menu .navigation > li > ul > li > a,
.main-menu .navigation > li > .megamenu li > a{
  position:relative;
  display:block;
  padding: 7px 16px;
  line-height:24px;
  font-weight:500;
  font-size:15px;
  text-transform:capitalize;
  font-family: var(--text-font);
  color:var(--title-color);
  text-align: left;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > a:before,
.main-menu .navigation > li > .megamenu li > a:before{
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 0%;
  top: auto;
  left: 0%;
  bottom: 0%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease-in-out;
  border-radius: 5px;
}

.main-menu .navigation > li > ul > li > a:hover:before,
.main-menu .navigation > li > .megamenu li > a:hover:before{
  top: 0;
  height: 100%;
  opacity: 1;
  visibility: visible;
}

.main-menu .navigation > li > .megamenu h4{
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
}

.main-menu .navigation > li > ul > li > a:hover,
.main-menu .navigation > li > .megamenu li > a:hover{
  color: #fff;
}

.main-menu .navigation > li > ul > li:last-child > a,
.main-menu .navigation > li > .megamenu li:last-child > a{
  border-bottom: none;
}

.main-menu .navigation > li > ul > li.dropdown > a:after{
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  position:absolute;
  right:20px;
  top:10px;
  display:block;
  line-height:24px;
  font-size:16px;
  font-weight:800;
  text-align:center;
  z-index:5;  
}

.main-menu .navigation > li > ul > li > ul{
  position:absolute;
  left:100%;
  top:0%;
  margin-top: 15px;
  background: var(--secondary-color);
  border-top: solid;
  border-width: 2px;
  width:230px;
  z-index:100;
  display:none;
  border-radius: 0px;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul.from-right{
  left:auto;
  right:0px;  
}

.main-menu .navigation > li > ul > li > ul > li{
  position:relative;
  width:100%;
}

.main-menu .navigation > li > ul > li > ul > li:last-child{
  border-bottom:none; 
}

.main-menu .navigation > li > ul > li > ul > li > a{
  position:relative;
  display:block;
  padding:10px 25px;
  line-height:24px;
  font-weight:500;
  font-size:15px;
  text-transform:capitalize;
  font-family: var(--text-font);
  color:#fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: left;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul > li:last-child > a{
  border-bottom: none;
}

.main-menu .navigation > li > ul > li > ul > li > a:hover{
  padding-left: 35px;
}

.main-menu .navigation > li > ul > li > ul > li.dropdown > a:after{
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  position:absolute;
  right:20px;
  top:12px;
  display:block;
  line-height:24px;
  font-size:16px;
  font-weight:900;
  z-index:5;  
}

.main-menu .navigation > li.dropdown:hover > ul,
.main-menu .navigation > li.dropdown:hover > .megamenu{
  visibility:visible;
  opacity:1;
  transform: scaleY(1);
  top: 100%;
}

.main-menu .navigation li > ul > li.dropdown:hover > ul{
  visibility:visible;
  opacity:1;
  top: 0%; 
  margin-top: 0px;
}

.main-menu .navigation li.dropdown .dropdown-btn{
  position:absolute;
  right:-32px;
  top:66px;
  width:34px;
  height:30px;
  text-align:center;
  font-size:18px;
  line-height:26px;
  color:#3b3b3b;
  cursor:pointer;
  display: none;
  z-index:5;
  transition: all 500ms ease;
}

.main-menu .navigation li.current.dropdown .dropdown-btn,
.main-menu .navigation li:hover .dropdown-btn{
  
}

.main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn{
  display: none;
}

.menu-area .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  background: var(--theme-color);
  display: none;
}

.mobile-menu .nav-logo img{
  max-width: 160px;
}

.menu-area .mobile-nav-toggler .icon-bar{
  position: relative;
  height: 2px;
  width: 30px;
  display: block;
  margin-bottom: 5px;
  background-color: #fff;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child{
  margin-bottom: 0px;
}


/** megamenu-style **/

.main-menu .navigation > li.dropdown > .megamenu{
  position: absolute;
  width: 100%;
  padding: 30px 50px;
  left: 0px;
  padding-right: 360px;
  border-bottom: none;
  border: 1px dashed var(--theme-color);
  border-radius: 10px;
}

.main-menu .navigation li.dropdown .megamenu li h5{
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 15px;
  padding-left: 16px;
}

.main-menu .navigation > li.dropdown > .megamenu .advice-box{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 330px;
  height: 100%;
  background: rgba(229, 45, 45, 1);
  padding: 34px 30px 40px 30px;
  border-radius: 0px 10px 10px 0px;
}

.main-menu .navigation > li.dropdown > .megamenu .advice-box .text{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  margin-bottom: 12px;
}

.main-menu .navigation > li.dropdown > .megamenu .advice-box h3{
  display: block;
  font-size: 28px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 10px;
}

.main-menu .navigation > li.dropdown > .megamenu .advice-box h4{
  display: block;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 110px;
}

.main-menu .navigation > li.dropdown > .megamenu .advice-box h4 span{
  position: relative;
  display: inline-block;
  font-weight: 400;
}

.main-menu .navigation > li.dropdown > .megamenu .advice-box .theme-btn{
  padding: 3px 22px;
}


/** mobile-menu **/

.nav-outer .mobile-nav-toggler{
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color:#3786ff;
  display: none;
}

.mobile-menu{
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right:30px;
  max-width:100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: all 900ms ease;
}

.mobile-menu .navbar-collapse{
  display:block !important; 
}

.mobile-menu .nav-logo{
  position:relative;
  padding:50px 25px;
  text-align:left;  
  padding-bottom: 100px;
}

.mobile-menu-visible{
  overflow: hidden;
}

.mobile-menu-visible .mobile-menu{
  opacity: 1;
  visibility: visible;
}

.mobile-menu .menu-backdrop{
  position: fixed;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 200ms ease !important;
  background-color: #000;
}

.mobile-menu-visible .mobile-menu .menu-backdrop{
  opacity: 0.70;
  visibility: visible;
  right: 100%;
  -webkit-transition: all 200ms ease-out 0s !important;
  -o-transition: all 200ms ease-out 0s !important;
  transition: all 200ms ease-out 0s !important;
}

.mobile-menu .menu-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #141417;
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 200ms ease !important;
}

.mobile-menu-visible .mobile-menu .menu-box{
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 200ms ease !important;
  -o-transition: all 200ms ease !important;
  transition: all 200ms ease !important;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .close-btn{
  position: absolute;
  right: 25px;
  top: 10px;
  line-height: 30px;
  width: 24px;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
}

.mobile-menu .navigation{
  position: relative;
  display: block;
  width: 100%;
  float: none;
}

.mobile-menu .navigation li{
  position: relative;
  display: block;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation:last-child{
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > ul > li:first-child{
  border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > a{
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .navigation li ul li > a{
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}

.mobile-menu .navigation li > a:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  height:0;
  border-left:5px solid #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .navigation li.current > a:before{
  height:100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn{
  position:absolute;
  right:6px;
  top:6px;
  width:32px;
  height:32px;
  text-align:center;
  font-size:16px;
  line-height:32px;
  color:#ffffff;
  background:rgba(255,255,255,0.10);
  cursor:pointer;
  border-radius:2px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
  z-index:5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open{
  color: #ffffff;
  -webkit-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);  
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul,
.mobile-menu .navigation > li.dropdown > .megamenu{
  display: none;
}

.mobile-menu .social-links{
  position:relative;
  padding:0px 25px;
}

.mobile-menu .social-links li{
  position:relative;
  display:inline-block;
  margin:0px 10px 10px;
}

.mobile-menu .social-links li a{
  position:relative;
  line-height:32px;
  font-size:16px;
  color:#ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .social-links li a:hover{
  
}

div#mCSB_1_container{
  top: 0px !important;
}

.mobile-menu .contact-info {
  position: relative;
  padding: 120px 30px 20px 30px;
}

.mobile-menu .contact-info h4 {
  position: relative;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}

.mobile-menu .contact-info ul li {
  position: relative;
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 3px;
}

.mobile-menu .contact-info ul li a{
  color: rgba(255,255,255,0.80);
}

.mobile-menu .contact-info ul li a:hover{
  
}

.mobile-menu .contact-info ul li:last-child{
  margin-bottom: 0px;
}


/** header-style-two **/

.header-style-two .main-menu .navigation > li > a{
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.header-style-two .logo-box{
  padding: 25.5px 20px;
}

.main-header .search-inner{
  position: relative;
  width: 300px;
}

.main-header .search-inner .form-group{
  position: relative;
}

.main-header .search-inner .form-group input[type='search']{
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  border-bottom: solid;
  border-width: 1px;
  border-color: #E5E5E5;
  font-size: 15px;
  color: var(--title-color);
  padding: 10px 0px;
  padding-right: 25px;
  transition: all 500ms ease;
}

.main-header .search-inner .form-group input:focus{

}

.main-header .search-inner .form-group button[type='submit']{
  position: absolute;
  top: 8px;
  right: 0px;
  font-size: 16px;
  color: var(--title-color);
  cursor: pointer;
  transition: all 500ms ease;
}

.main-header .search-inner .form-group input:focus + button,
.main-header .search-inner .form-group button:hover{

}

.mobile-menu .logo-box{
  display: none !important;
}


/** header-style-three **/

.header-style-three{
  position: relative;
}

.header-upper{
  position: relative;
  width: 100%;
  padding: 20px 0px;
  border-bottom: dashed;
  border-width: 2px;
  border-color: #D8D8D8;
}

.header-upper .upper-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-upper .search-box{
  position: relative;
  width: 850px;
}

.header-upper .search-box .form-group{
  position: relative;
  display: block;
  margin-bottom: 0px;
}

.header-upper .search-box .form-group input[type='search']{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  border: dashed;
  border-width: 2px;
  border-radius: 50px;
  background: #F8EDF0;
  font-size: 15px;
  color: #111111;
  padding: 10px 60px 10px 20px;
  transition: all 500ms ease;
}

.header-upper .search-box .form-group button[type='submit']{
  position: absolute;
  top: 5px;
  right: 5px;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  border-radius: 50%;
}

.main-header .category-toggle{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: var(--title-color);
  cursor: pointer;
  transition: all 500ms ease;
}

.main-header .category-toggle:hover{

}

.main-header .category-toggle i{
  font-size: 28px;
}


/** header-style-four **/

.header-style-four{
  position: relative;
}

.header-style-four .header-top{
  background: #E91A3E;
}

.header-style-four .header-upper{
  padding-bottom: 0px;
  border-bottom: none;
}

.header-style-four .header-lower .shape{
  height: 163px;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: -1;
  bottom: -40px;
  background-size: cover;
}


/** header-style-five **/

.header-style-five .outer-box .left-column{
  position: relative;
  display: flex;
  align-items: center;
  gap: 70px;
}

.header-style-five .outer-box .logo-box:before{
  position: absolute;
  content: '';
  border-right: dashed;
  border-width: 2px;
  border-color: #666666;
  height: 30px;
  top: 17px;
  right: -36px;
}

.main-header .header-top .option-list li button, 
.main-header .header-top .option-list li a{
  color: #fff;
}

.main-header .header-top .option-list li button span{
  background: #fff;
  color: var(--theme-color);
}

.header-style-one{
  box-shadow: 0px 40px 60px 0px rgba(0, 0, 0, 0.03);
}



/** rtl-css **/

.rtl .main-header .category-toggle{
  padding-right: 0px;
  padding-left: 28px;
}

.rtl .main-header .category-toggle:before{
  right: inherit;
  left: 0px;
}

.rtl .header-style-five .outer-box .logo-box:before{
  right: inherit;
  left: -36px;
}


/** responsive-css **/


@media only screen and (max-width: 1299px){
  .main-header .outer-box .support-box{
    display: none;
  }

  .header-style-three .outer-box .support-box{
    display: flex;
    padding: 20px 0px;
  }
}

@media only screen and (max-width: 1200px){
  .header-upper .search-box{
    width: 440px;
  }
}

@media only screen and (max-width: 991px){
  .header-top .top-inner{
    display: block;
    text-align: center;
  }

  .header-top .top-inner .info-list,
  .header-top .top-inner .right-column{
    justify-content: center;
  }
}

@media only screen and (max-width: 767px){
  .main-header .search-box{
    display: none;
  }

  .header-style-five .menu-right-content{
    display: none;
  }
}

@media only screen and (max-width: 599px){
  .main-header .search-inner{
    width: 250px;
  }
}

@media only screen and (max-width: 499px){
  .main-header .logo-box{
    max-width: 90px;
  }

  .header-top .top-inner .info-list{
    display: block;
    text-align: center;
  }

  .header-top .top-inner .info-list li{
    display: inline-block;
  }

  .main-header .search-inner{
    display: none;
  }

  .header-style-three .outer-box .support-box{
    display: none;
  }

  .header-style-three .outer-box{
    padding: 15px 0px;
  }

  .header-style-five .logo-box{
    display: none;
  }

  .header-style-five .outer-box{
    padding: 15px 0px;
  }
}



























/** highlights-section **/

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

.highlights-section .inner-container{
  position: relative;
  display: block;
  background: #FFE8EE;
  border-radius: 20px;
  border: dashed;
  border-width: 1px;
  padding: 34px 50px;
  padding-bottom: 19px;
}

.highlights-section .list-item li{
  position: relative;
  display: inline-block;
  float: left;
  width: 20%;
}

.highlights-section .list-item .single-item{
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.highlights-section .list-item .single-item .icon-box{
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 60px;
  height: 60px;
  line-height: 58px;
  min-width: 60px;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  border: dashed;
  border-width: 1px;
}

.highlights-section .list-item .single-item:hover .icon-box img,
.highlights-block-one:hover .inner-box .icon-box img{
  animation: toBottomFromTop .7s forwards;
}

.highlights-block-one .inner-box .icon-box{
  overflow: hidden;
}

.highlights-section .list-item .single-item h5{
  font-size: 18px;
  line-height: 24px;
}


/** highlights-style-two **/

.highlights-style-two{
  position: relative;
}

.highlights-style-two .inner-container{
  position: relative;
  margin: 0px -10px;
}

.highlights-style-two .list-item li{
  position: relative;
  display: block;
  float: left;
  width: 20%;
  padding: 0px 10px;
}

.highlights-block-one .inner-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 25px;
  border-radius: 20px;
  background: #FECDB1;
  margin-bottom: 20px;
}

.highlights-style-two .list-item li:nth-child(2) .highlights-block-one .inner-box{
  background: #BBD2FF;
}

.highlights-style-two .list-item li:nth-child(3) .highlights-block-one .inner-box{
  background: #A2F8B2;
}

.highlights-style-two .list-item li:nth-child(4) .highlights-block-one .inner-box{
  background: #FFACAC;
}

.highlights-style-two .list-item li:nth-child(5) .highlights-block-one .inner-box{
  background: #FFB0DF;
}

.highlights-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  min-width: 80px;
}

.highlights-block-one .inner-box h4{
  font-size: 18px;
  line-height: 24px;
}

.highlights-section .inner-container:before{
  position: absolute;
  content: '';
  background-image: url(../../images/shape/shape-82.png);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


/** rtl-css **/

.rtl .highlights-section .list-item li{
  float: right;
}


/** responsive-css **/

@media only screen and (max-width: 1400px){
  .highlights-style-two .list-item li{
    width: 33.333%;
  }
}

@media only screen and (max-width: 1200px){
  .highlights-section .list-item li{
    width: 33.333%;
  }
}

@media only screen and (max-width: 991px){
  .highlights-section .list-item li,
  .highlights-style-two .list-item li{
    width: 50%;
  }
}

@media only screen and (max-width: 767px){
  .highlights-section .list-item li{
    width: 100%;
  }

  .highlights-style-two{
    padding-bottom: 50px;
  }

  .highlights-section.pt_0{
    padding-top: 0px;
  }
}

@media only screen and (max-width: 599px){
  .highlights-style-two .list-item li{
    width: 100%;
  }
}

@media only screen and (max-width: 499px){
  .highlights-section .inner-container{
    padding-left: 30px;
    padding-right: 30px;
  }
}












































/** instagram-section **/

.instagram-section{
  position: relative;
  padding-bottom: 2px;
}

.instagram-block-one .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.instagram-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.instagram-block-one .inner-box .image-box img{
  width: 100%;
  border-radius: 10px;
  transition: all 500ms ease;
}

.instagram-block-one .inner-box:hover .image-box img{
  transform: scale(1.5);
}

.instagram-block-one .inner-box .text-box{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0,0);
  background: #fff;
  padding: 15px 29px;
  min-width: 290px;
  border-radius: 50px;
  transition: all 500ms ease;
}

.instagram-block-one .inner-box:hover .text-box{
  transform: translate(-50%,-50%) scale(1,1);
}

.instagram-block-one .inner-box .text-box a{
  position: relative;
  display: inline-block;
  padding-left: 43px;
  font-size: 18px;
  line-height: 30px;
  font-family: var(--title-font-three);
  font-weight: 600;
  color: var(--title-color);
}

.instagram-block-one .inner-box .text-box a:hover{

}

.instagram-block-one .inner-box .text-box a img{
  position: absolute;
  left: 0px;
  top: 0px;
}


/** rtl-css **/




/** responsive-css **/

@media only screen and (max-width: 1200px){
  .brands-section .brands-list{
    display: block;
    text-align: center;
  }

  .brands-section .brands-list .brands-block-one{
    display: inline-block;
  }
}

@media only screen and (max-width: 991px){
  .brands-section .pattern-layer{
    display: none;
  }
}

@media only screen and (max-width: 767px){
  .brands-style-two{
    padding: 65px 0px 50px 0px;
  }
}

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

}

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

}













































/** sign-section **/

.sign-section{
  position: relative;
}

.sign-section .form-inner{
  position: relative;
  display: block;
  max-width: 590px;
  width: 100%;
  margin: 0 auto;
  background: #FDF7F9;
  border-radius: 10px;
  padding: 29px 30px 32px 30px;
  border: dashed;
  border-width: 1px;
}

.sign-section .form-inner .form-group{
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.sign-section .form-inner .form-group label{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
  margin-bottom: 4px;
}

.sign-section .form-inner .form-group input[type='text'],
.sign-section .form-inner .form-group input[type='email'],
.sign-section .form-inner .form-group input[type='tel'],
.sign-section .form-inner .form-group input[type='date'],
.sign-section .form-inner .form-group input[type='password']{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  border: 1px dashed #D8D8D8;
  background: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 16px;
  color: var(--title-color);
  transition: all 500ms ease;
}

.sign-section .form-inner .form-group input:focus{

}

.sign-section .form-inner .form-group .theme-btn{
  width: 100%;
  color: #fff;
  padding: 8px 30px;
  border-color: #fff !important;
}

.sign-section .form-inner .form-group .theme-btn:before,
.sign-section .form-inner .form-group .theme-btn:after{
  background: #000;
}

.sign-section .form-inner .form-group .theme-btn span{
  background: var(--title-color);
}

.sign-section .form-inner .text{
  position: relative;
  display: block;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--title-color);
  margin-bottom: 22px;
  text-transform: capitalize;
}

.sign-section .form-inner .social-links li{
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.sign-section .form-inner .social-links li a{
  position: relative;
  display: block;
  width: 100%;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  color: var(--title-color);
  text-align: center;
  border: 1px dashed #D8D8D8;
  background: #fff;
  border-radius: 50px;
  padding: 9px 30px;
}

.sign-section .form-inner .social-links li a:hover{
  
}

.sign-section .form-inner .social-links li a img{
  position: relative;
  margin-right: 12px;
  top: -2px;
}

.sign-section .form-inner .other-option{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
}

.sign-section .form-inner .other-option .check-box label{
  font-size: 16px;
}

.sign-section .form-inner .other-option .forgot-password{
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--title-color);
  transition: all 500ms ease;
}

.sign-section .form-inner .other-option .forgot-password:hover{

}

.sign-section .form-inner .lower-text p{
  color: var(--title-color);
}

.sign-section .form-inner .lower-text p a{
  display: inline-block;
  font-weight: 500;
}

.sign-section .form-inner .lower-text p a:hover{
  text-decoration: underline;
}

.sign-section .form-inner .check-box label:after{
  background: none !important;
  content: '\e928';
  font-family: 'icomoon';
  font-size: 7px;
  top: 0px;
  left: 3px;
}

.sign-section .sec-title h2{
  font-size: 36px;
  line-height: 42px;
}


/** rtl-css **/

.rtl .sign-section .form-inner .social-links li a img{
  margin-right: 0px;
  margin-left: 12px;
}

/** responsive-css **/

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

}

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

}

@media only screen and (max-width: 767px){
  .sign-section{
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 599px){
  .sign-section .sec-title h2{
    font-size: 26px;
    line-height: 32px;
  }
  .sign-section .form-inner{
    padding: 24px 18px;
    border-radius: 16px;
  }
}

@media only screen and (max-width: 499px){
  .sign-section .form-inner .other-option{
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    padding-bottom: 20px !important;
  }
  .sign-section .form-inner .other-option .check-box-two{
    display: flex;
    align-items: center;
    gap: 6px;
  }
}





















/** news-section **/

.news-section{
  position: relative;
}

.news-block-one .inner-box{
  position: relative;
  display: block;
  margin-bottom: 24px;
}

.news-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.news-block-one .inner-box .image-box img{
  width: 100%;
}

.news-block-one .inner-box .image-box .overlay-image{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: translatey(-50%) scaleY(1.5);
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.5s ease;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.news-block-one .inner-box:hover .image-box .overlay-image{
  transform: translatey(0) scaleY(1);
  opacity: 1;
  filter: blur(0);
}

.news-block-one .inner-box .post-info{
  position: relative;
  display: flex;
  align-items: center;
  gap: 36px;
}

.news-block-one .inner-box .image-box .post-info{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 240px;
  z-index: 5;
  background: #fff;
  border-radius: 0px 10px 0px 0px;
  padding: 6px 0px;
}

.news-block-one .inner-box .post-info li{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 28px;
  color: var(--title-color);
  padding: 5px 0px;
  padding-right: 20px;
}

.news-block-one .inner-box .post-info li a{
  display: inline-block;
  color: var(--title-color);
}

.news-block-one .inner-box .post-info li a:hover{

}

.news-block-one .inner-box .post-info li:before{
  position: absolute;
  content: '';
  background: #E5E5E5;
  width: 20px;
  height: 1px;
  top: 18px;
  right: -19px;
}

.news-block-one .inner-box .post-info li:last-child:before{
  display: none;
}

.news-block-one .inner-box .lower-content{
  position: relative;
  display: block;
  padding-top: 24px;
}

.news-block-one .inner-box .lower-content h3{
  display: block;
  font-size: 24px;
  line-height: 30px;
}

.news-block-one .inner-box .lower-content h3 a{
  display: inline-block;
  color: var(--title-color);
}

.news-block-one .inner-box .lower-content h3 a:hover{

}

.news-section .shape-layer{
  position: absolute;
  left: 50%;
  margin-left: -73px;
  top: 50px;
  width: 146px;
  height: 176px;
  background-repeat: no-repeat;
  opacity: 0.40;
}


/** rtl-css **/

.rtl .news-block-one .inner-box .post-info li:before{
  right: inherit;
  left: -38px;
}


/** responsive-css **/

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

}

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

}

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

  .news-section{
    padding: 65px 0px 40px 0px;
  }
  
  .news-section.pt_0{
    padding-top: 0px;
  }
}

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

}

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

}












































/** page-title **/

.page-title{
  position: relative;
}

.page-title .bread-crumb{
  position: relative;
  display: flex;
  align-items: center;
}

.page-title .bread-crumb li{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 21px;
  font-family: var(--title-font);
  margin-right: 18px;
  color: var(--title-color);
}

.page-title .bread-crumb li:last-child{
  margin: 0px;
}

.page-title .bread-crumb li a{
  display: inline-block;
  color: var(--title-color);
}

.page-title .bread-crumb li a:hover{

}

.page-title .bread-crumb li:before{
  position: absolute;
  content: '';
  background: var(--secondary-color);
  width: 6px;
  height: 1px;
  top: 11px;
  right: -13px;
}

.page-title .bread-crumb li:last-child:before{
  display: none;
}


/** rtl-css **/

.rtl .page-title .bread-crumb li{
  margin-right: 0px;
  margin-left: 18px;
}

.rtl .page-title .bread-crumb li:before{
  right: inherit;
  left: -13px;
}

/** responsive-css **/

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

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

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

}

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

}

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


}












































/** popular-product **/

.popular-product{
  position: relative;
}

.popular-product .inner-container{
  position: relative;
  display: block;
  background: #fff;
  border: dashed;
  border-width: 1px;
  border-color: #D8D8D8;
  border-radius: 10px;
  z-index: 2;
}

.shop-block-one .inner-box{
  position: relative;
  display: block;
  padding: 30px 30px 0px 30px; 
  text-align: center;
  transition: all 500ms ease;
}

.shop-block-one .inner-box:before{
  position: absolute;
  content: '';
  border-right: dashed;
  border-width: 1px;
  border-color: #D8D8D8;
  top: 0px;
  right: -15px;
  height: 100%;
}

.shop-block-one .inner-box .image-box{
  position: relative;
  display: block;
}

.shop-block-one .inner-box .image-box .image{
  position: relative;
  display: block;
  max-width: 235px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.shop-block-one .inner-box .image-box .image img{
  width: 100%;
  transition: all 500ms ease;
}

.shop-block-one .inner-box:hover .image-box .image img{
  transform: scale(1.05);
}

.shop-block-one .inner-box .image-box .option-list{
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 2;
}

.shop-block-one .inner-box .image-box .option-list li{
  position: relative;
  display: block;
  margin-bottom: 10px;
  height: 40px;
  -webkit-transition: opacity 0.25s cubic-bezier(.17,.62,.44,.99),background-color 0.1s cubic-bezier(.28,.12,.22,1),color 0.1s cubic-bezier(.28,.12,.22,1),border-color 0.1s cubic-bezier(.28,.12,.22,1),-webkit-transform 0.25s cubic-bezier(.17,.62,.44,.99),-webkit-box-shadow 0.1s cubic-bezier(.28,.12,.22,1);
  transition: opacity 0.25s cubic-bezier(.17,.62,.44,.99),background-color 0.1s cubic-bezier(.28,.12,.22,1),color 0.1s cubic-bezier(.28,.12,.22,1),border-color 0.1s cubic-bezier(.28,.12,.22,1),-webkit-transform 0.25s cubic-bezier(.17,.62,.44,.99),-webkit-box-shadow 0.1s cubic-bezier(.28,.12,.22,1);
  transition: opacity 0.25s cubic-bezier(.17,.62,.44,.99),transform 0.25s cubic-bezier(.17,.62,.44,.99),background-color 0.1s cubic-bezier(.28,.12,.22,1),color 0.1s cubic-bezier(.28,.12,.22,1),border-color 0.1s cubic-bezier(.28,.12,.22,1),box-shadow 0.1s cubic-bezier(.28,.12,.22,1);
  transition: opacity 0.25s cubic-bezier(.17,.62,.44,.99),transform 0.25s cubic-bezier(.17,.62,.44,.99),background-color 0.1s cubic-bezier(.28,.12,.22,1),color 0.1s cubic-bezier(.28,.12,.22,1),border-color 0.1s cubic-bezier(.28,.12,.22,1),box-shadow 0.1s cubic-bezier(.28,.12,.22,1),-webkit-transform 0.25s cubic-bezier(.17,.62,.44,.99),-webkit-box-shadow 0.1s cubic-bezier(.28,.12,.22,1);
  opacity: 0;
  -webkit-transform: translateX(0.625rem);
  transform: translateX(0.625rem);
}

.shop-block-one .inner-box .image-box .option-list li:last-child{
  margin-bottom: 0px;
}

.shop-block-one .inner-box:hover .image-box .option-list li{
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.shop-block-one .inner-box .image-box .option-list li:first-child{
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.shop-block-one .inner-box .image-box .option-list li:nth-child(2){
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.shop-block-one .inner-box .image-box .option-list li:nth-child(3){
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.shop-block-one .inner-box .image-box .option-list li:nth-child(4){
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

.shop-block-one .inner-box .image-box .option-list li a,
.shop-block-one .inner-box .image-box .option-list li button{
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 40px;
  height: 40px;
  line-height: 42px;
  background: rgba(247, 97, 136, 0.20);
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
  color: var(--title-color);
  cursor: pointer;
  transition: all 500ms ease;
}

.shop-block-one .inner-box .image-box .option-list li a:hover,
.shop-block-one .inner-box .image-box .option-list li button:hover,
.shop-block-one .inner-box .image-box .option-list li button:focus,
.shop-block-one .inner-box .image-box .option-list li button:active{
  color: #fff;
}

.shop-block-one .inner-box .image-box .option-list li a:hover i,
.shop-block-one .inner-box .image-box .option-list li button:hover i,
.shop-block-one .inner-box .image-box .option-list li button:focus i,
.shop-block-one .inner-box .image-box .option-list li button:active i{
  animation: toBottomFromTop .7s forwards;
}

.shop-block-one .inner-box .lower-content{
  position: relative;
  display: block;
  background: #fff;
  padding-top: 35px;
  padding-bottom: 16px;
  transition: all 500ms ease;
}

.shop-block-one .inner-box:hover .lower-content{
  padding-bottom: 90px;
  margin-top: -73px;
}

.shop-block-one .inner-box .lower-content .text{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 4px;
  color: #7C7C7C;
}

.shop-block-one .inner-box .lower-content h4{
  display: block;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 4px;
}

.shop-block-one .inner-box .lower-content h4 a{
  display: inline-block;
  color: var(--title-color);
}

.shop-block-one .inner-box .lower-content h4 a:hover{

}

.shop-block-one .inner-box .lower-content .price{
  position: relative;
  display: block;
  font-size: 20px;
  color: #E92530;
  font-weight: 700;
  margin-bottom: 17px;
}

.shop-block-one .inner-box .lower-content .price del{
  font-size: 16px;
  line-height: 28px;
  color: #666666;
  font-weight: 400;
  margin-right: 10px;
}

.shop-block-one .inner-box .lower-content .btn-box{
  position: absolute;
  left: 0px;
  bottom: 40px;
  width: 100%;
  opacity: 0;
  transform: scaleX(0);
  transition: all 500ms ease;
}

.shop-block-one .inner-box:hover .lower-content .btn-box{
  opacity: 1;
  transform: scaleX(1);
}

.shop-block-one .inner-box .lower-content .btn-box .theme-btn{
  width: 100%;
  padding: 8px 30px;
}

.popular-product .owl-nav{
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: -24px;
  width: 100%;
}

.popular-product .owl-nav button{
  position: absolute;
  display: inline-block;
  top: 0px;
  font-size: 48px;
  color: var(--title-color);
  margin: 0px;
  cursor: pointer;
  transition: all 500ms ease;
}

.popular-product .owl-nav button.owl-prev{
  left: -40px;
}

.popular-product .owl-nav button.owl-next{
  right: -40px;
}

.popular-product .owl-nav button:hover{

}

.popular-product .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  top: -500px;
  width: 100%;
  height: 1579px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  background-size: cover;
}

.popular-product .pattern-layer .pattern-2{
  position: absolute;
  left: 30px;
  top: -30px;
  width: 171px;
  height: 255px;
  background-repeat: no-repeat;
}


/** rtl-css **/




/** responsive-css **/

@media only screen and (max-width: 1200px){
  .popular-product .owl-nav{
    display: none;
  }
}

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

}

@media only screen and (max-width: 767px){
  .popular-product{
    padding-bottom: 70px;
  }

  .popular-product.pt_120{
    padding-top: 65px;
  }
}

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

}

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

}













































/** shop-details **/

.shop-details{
  position: relative;
}

.product-details-content{
  position: relative;
  display: block;
}

.product-details-content .image-inner{
  position: relative;
  padding-left: 140px;
}

.product-details-content.style-two .image-inner{
  padding-left: 0px;
}

.product-details-content.style-two .slider-content .slider-pager{
  position: relative;
  margin-top: 20px;
}

.product-details-content.style-two .slider-content .thumb-box li{
  margin-bottom: 0px;
}

.product-details-content.style-two .slider-content .thumb-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.product-details-content .image-box{
  position: relative;
  display: block;
  background: #FDF7F9;
  border: dashed;
  border-width: 1px;
  border-radius: 10px;
}

.product-details-content .image-box img{
  width: 100%;
}

.product-details-content .slider-content .slider-pager{
  position: absolute;
  left: 0px;
  top: 0px;

}

.product-details-content .slider-content .thumb-box li{
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.product-details-content .slider-content .thumb-box li:last-child{
  margin-bottom: 0px;
}

.product-details-content .slider-content .thumb-box li a{
  position: relative;
  display: inline-block;
  width: 120px;
  height: 120px;
  border: 1px dashed #D8D8D8;
  cursor: pointer;
  border-radius: 10px;
  transition: all 500ms ease;
}

.product-details-content .slider-content .thumb-box li a.active{

}

.color-list{
  position: relative;
  display: flex;
  align-items: center;
}

.color-list li{
  margin-right: 8px;
}

.color-list li:last-child{
  margin: 0px;
}

.color-list .check-box input {
  display: none;
}

.color-list .check-box label {
  position: relative;
  display: inline-block;
  cursor: pointer;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 0px;
}

.color-list .check-box label:before{
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
}

.color-list .check-box label:after {
  position: absolute;
  content: "\e919";
  font-family: 'icomoon';
  left: 0px;
  top: 0px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 8px;
  color: #fff;
  background-image: none;
  opacity: 0;
  transition: all 500ms ease;
}

.color-list .check-box input:checked + label:after {
  opacity: 1;
}

.color-list .check-box label.color-1:before{
  background: #F4EDC7;
}

.color-list .check-box label.color-2:before{
  background: #ADE9B7;
}

.color-list .check-box label.color-3:before{
  background: #DBDBDB;
}

.color-list .check-box label.color-4:before{
  background: #ADBEE9;
}

.color-list .check-box label.color-5:before{
  background: #E9ADE3;
}

.product-details-content .content-box{
  position: relative;
  display: block;
  margin-top: -8px;
}

.product-details-content .content-box .upper-text{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 7px;
}

.product-details-content .content-box h2{
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 12px;
}

.product-details-content .content-box h3{
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 41px;
  color: #E92530;
  margin-bottom: 7px;
}

.product-details-content .content-box h3 del{
  font-size: 24px;
  font-weight: 400;
  color: var(--text-color);
  font-family: var(--text-font);
  margin-left: 10px;
}

.product-details-content .content-box .text-box p{
  margin-bottom: 25px;
}

.product-details-content .content-box .text-box p:last-child{
  margin-bottom: 0px;
}

.product-details-content .content-box .discription-box{
  position: relative;
  display: block;
  background: #FDF7F9;
  border: dashed;
  border-width: 1px;
  border-radius: 10px;
  padding: 21px 40px;
}

.product-details-content .content-box .discription-box li{
  position: relative;
  display: block;
  margin-bottom: 2px;
}

.product-details-content .content-box .discription-box li:last-child{
  margin-bottom: 0px;
}

.product-details-content .content-box .discription-box li strong{
  position: relative;
  display: inline-block;
  width: 160px;
  color: var(--title-color);
}

.product-details-content .content-box .discription-box li span{
  color: #28C01B;
}

.product-details-content .content-box h6{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-family: var(--text-font);
  font-weight: 400;
  margin-bottom: 10px;
}

.product-details-content .content-box h6 span{
  color: #FF2D2D;
}

.product-details-content .content-box .color-list{
  position: relative;
  display: flex;
  align-items: center;
}

.product-details-content .content-box .color-list li{
  margin-right: 6px;
}

.product-details-content .content-box .color-list .check-box label:before{
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #18181C;
  border: none !important;
  top: 0px;
}

.product-details-content .content-box .color-list li:nth-child(2) .check-box label:before{
  background: #B09F7D;
}

.product-details-content .content-box .color-list li:nth-child(3) .check-box label:before{
  background: #785099;
}

.product-details-content .content-box .color-list li:nth-child(4) .check-box label:before{
  background: #E54D4D;
}

.product-details-content .content-box .color-list .check-box label:after{
  background-image: none;
  width: 28px;
  height: 28px;
  border: solid;
  border-width: 1px;
  left: -4px;
  top: 0px;
  border-radius: 50%;
}

.product-details-content .bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-up,
.product-details-content .bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-down{
  border: none !important;
}

.product-details-content .item-quantity{
  position: relative;
  display: inline-block;
  max-width: 150px;
  width: 100%;
  float: left;
  padding: 0px 40px;
  margin-left: 0px;
  border: dashed;
  border-width: 1px;
  border-color: #D8D8D8;
  border-radius: 30px;
  height: 50px;
  z-index: 1;
}

.product-details-content .bootstrap-touchspin .input-group-btn-vertical i{
  left: 12px;
}

.product-details-content .item-quantity input.quantity-spinner {
  line-height: 48px;
  height: 46px;
  width: 43px !important;
  padding: 0px !important;
  box-shadow: none !important;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #101010;
  background: transparent;
}

.product-details-content .bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-down{
  position: absolute;
  height: 24px;
  width: 70px;
  background: transparent;
  padding: 0px 0px;
  left: -35px;
  top: 0px;
  border-radius: 0px;
  border: none !important;
  border-right: 1px solid #E5E5E5 !important;
}

.product-details-content .bootstrap-touchspin .btn.bootstrap-touchspin-up:before,
.product-details-content .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down:before{
  color: var(--title-color) !important;
}

.product-details-content .bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-up{
  position: absolute;
  height: 24px;
  width: 70px;
  background: transparent;
  padding: 0px 0px;
  right: -45px;
  top: 0px;
  margin-top: 0px;
  border-radius: 0px;
  border: none !important;
  border-left: 1px solid #E5E5E5 !important;
}

.product-details-content .bootstrap-touchspin .glyphicon-chevron-up:before {
  content: "\f067";
  font-size: 16px;
  font-style: normal;
  color: var(--title-color);
  font-family: 'Font Awesome 5 Pro';
}

.product-details-content .bootstrap-touchspin .glyphicon-chevron-down:before {
  content: "\f068";
  font-size: 16px;
  font-style: normal;
  color: var(--title-color);
  font-family: 'Font Awesome 5 Pro';
}

.product-details-content .bootstrap-touchspin .input-group-btn-vertical{
  position: absolute;
  width: 100%;
}

.product-details-content .bootstrap-touchspin .input-group-btn-vertical i{
  top: 15px;
  left: 15px;
  font-size: inherit !important; 
}

.product-details-content .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{
  margin-top: 0px;
}

.product-details-content .bootstrap-touchspin .btn:hover,
.product-details-content .bootstrap-touchspin .btn:focus{
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.product-details-content .bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-down{
  width: 40px;
  top: 12px;
}

.product-details-content .bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-up{
  width: 50px;
  top: 12px;
}

.product-details-content .addto-cart-box ul li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 15px;
}

.product-details-content .addto-cart-box .theme-btn{
  padding: 8px 60px;
}

.product-details-content .addto-cart-box ul li:last-child{
  margin-right: 0px;
}

.product-details-content .addto-cart-box ul li a,
.product-details-content .addto-cart-box ul li.like-btn button{
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px dashed #E5E5E5;
  border-radius: 50%;
  font-size: 18px;
  color: var(--title-color);
  transition: all 500ms ease;
}

.product-details-content .addto-cart-box ul li a:hover,
.product-details-content .addto-cart-box ul li.like-btn button:hover,
.product-details-content .addto-cart-box ul li.like-btn button:active,
.product-details-content .addto-cart-box ul li.like-btn button:focus{
  color: #fff;
  border-color: #fff;
}

.product-details-content .other-option li{
  position: relative;
  display: block;
  color: var(--title-color);
  margin-bottom: 8px;
}

.product-details-content .other-option li:last-child{
  margin-bottom: 0px;
}

.product-details-content .other-option li strong{
  display: inline-block;
  width: 160px;
}

.product-details-content .other-option li a{
  display: inline-block;
  color: var(--title-color);
}

.product-details-content .other-option li a:hover{

}

.product-details-content .other-option li.social-links a{
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 46px;
  color: var(--title-color);
  font-size: 20px;
  border: 1px dashed rgba(17, 17, 17, 0.15);
  border-radius: 50%;
  text-align: center;
  margin-right: 10px;
}

.product-details-content .other-option li.social-links a:hover{
  color: #fff;
  border-color: #fff;
}




.shop-details .product-discription .tab-btns{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -30px;
  border: dashed;
  border-width: 1px;
  border-radius: 100px;
  background: #fff;
  padding: 5px;
  z-index: 2;
}

.shop-details .product-discription .tab-btn-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-details .product-discription .tabs-content,
.shop-details.style-two .product-discription{
  position: relative;
  display: block;
  background: #FDF7F9;
  border: dashed;
  border-width: 1px;
  border-radius: 10px;
  padding: 63px 40px 51px 40px;
}

.shop-details.style-two .product-discription h2{
  display: block;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 15px;
}

.shop-details.style-two .product-discription .discription-content,
.shop-details.style-two .product-discription .specification-content{
  padding-bottom: 51px;
  margin-bottom: 50px;
  border-bottom: dashed;
  border-width: 1px;
}

.shop-details .product-discription .tab-btns li{
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 26px;
  font-family: var(--title-font);
  font-weight: 700;
  color: var(--title-color);
  cursor: pointer;
  padding: 12px 30px;
  border-radius: 40px;
  transition: all 500ms ease;
}

.shop-details .product-discription .tab-btns li.active-btn{
  color: #fff;
}

.shop-details .product-discription .tab-btns li:before{
  position: absolute;
  content: '';
  width: 0%;
  height: 1px;
  left: 0px;
  bottom: -1px;
  transition: all 500ms ease;
}

.shop-details .product-discription .tab-btns li.active-btn:before,
.shop-details .product-discription .tab-btns li:hover:before{
  width: 100%;
}

.shop-details .product-discription .discription-content p{
  color: var(--title-color);
  margin-bottom: 26px;
}

.shop-details .product-discription .discription-content h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 12px;
}

.shop-details .product-discription .review-content{
  position: relative;
  display: block;
}

.shop-details .product-discription .review-content .single-review{
  position: relative;
  display: block;
  padding-bottom: 40px;
  border-bottom: 1px dashed rgba(217, 217, 217, 1);
  margin-bottom: 40px;
}

.shop-details .product-discription .review-content .single-review .upper-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.shop-details .product-discription .review-content .single-review .upper-box .info-box{
  position: relative;
  display: flex;
  align-items: center;
}

.shop-details .product-discription .review-content .single-review .upper-box .info-box .image{
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

.shop-details .product-discription .review-content .single-review .upper-box .info-box .image img{
  width: 100%;
  border-radius: 50%;
}

.shop-details .product-discription .review-content .single-review .upper-box .info-box h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 3px;
}

.shop-details .product-discription .review-content .single-review .upper-box .info-box .date{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
}

.shop-details .product-discription .review-content .single-review .upper-box .option-btn{
  position: relative;
  display: flex;
  align-items: center;
}

.shop-details .product-discription .review-content .single-review .upper-box .option-btn li{
  font-size: 16px;
  color: var(--title-color);
  margin-right: 30px;
}

.shop-details .product-discription .review-content .single-review .upper-box .option-btn li:last-child{
  margin: 0px !important;
}

.shop-details .product-discription .review-content .single-review .upper-box .option-btn li button{
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: rgba(124, 124, 124, 1);
  margin-right: 7px;
  transition: all 500ms ease;
}

.shop-details .product-discription .review-content .single-review .upper-box .option-btn li button:hover,
.shop-details .product-discription .review-content .single-review .upper-box .option-btn li button:active,
.shop-details .product-discription .review-content .single-review .upper-box .option-btn li button:focus{

}

.shop-details .product-discription .review-content .single-review p{
  margin-bottom: 15px;
}

.shop-details .product-discription .review-content .single-review .image-list{
  position: relative;
  display: flex;
  align-items: center;
}

.shop-details .product-discription .review-content .single-review .image-list li{
  position: relative;
  display: inline-block;
  margin-right: 10px;
}

.shop-details .product-discription .review-content .single-review .image-list li img{
  width: 100%;
}

.shop-details .product-discription .review-content .single-review .image-list li:last-child{
  margin: 0px !important;
}

.shop-details .product-discription .review-content .single-review .reply-review{
  margin-left: 80px;
}

.shop-details .product-discription .review-content .customer-review .form-inner .form-group .upload-box{
  position: relative;
  display: flex;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(229, 229, 229, 1);
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.shop-details .product-discription .review-content .customer-review .form-inner .upload-field input{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 0px;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 999;
}

.shop-details .product-discription .review-content .customer-review .form-inner .form-group .upload-box .upload-content i{
  position: relative;
  display: inline-block;
  font-size: 32px;
  color: var(--title-color);
  margin-bottom: 10px;
}

.shop-details .product-discription .review-content .customer-review .form-inner .form-group .upload-box .upload-content span{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: var(--title-color);
}

.shop-details .product-discription .review-content .customer-review h3{
  position: relative;
  display: block;
  font-size: 28px;
  line-height: 38px;
  margin-bottom: 30px;
}

.shop-details .product-discription .review-content .customer-review .rating-box p{
  color: var(--title-color);
  margin-bottom: 10px;
}

.shop-details .product-discription .review-content .customer-review .rating-box p span{

}

.shop-details .product-discription .review-content .customer-review .rating-inner{
  position: relative;
  display: flex;
  align-items: center;
}

.shop-details .product-discription .review-content .customer-review .rating-inner .rating-list{
  position: relative;
  display: flex;
  align-items: center;
}

.shop-details .product-discription .review-content .customer-review .rating-inner .rating-list:last-child{
  margin: 0px !important;
}

.shop-details .product-discription .review-content .customer-review .rating-inner .rating-list li{
  position: relative;
  margin-right: 42px;
}

.shop-details .product-discription .review-content .customer-review .rating-inner .rating-list li:last-child{
  margin: 0px !important;
}

.shop-details .product-discription .review-content .customer-review .rating-inner .rating-list li button{
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: rgba(189, 189, 189, 1);
  transition: all 500ms ease;
}

.shop-details .product-discription .review-content .customer-review .rating-inner .rating-list li button i{
  margin-right: 8px;
}

.shop-details .product-discription .review-content .customer-review .rating-inner .rating-list li button:hover,
.shop-details .product-discription .review-content .customer-review .rating-inner .rating-list li button:active,
.shop-details .product-discription .review-content .customer-review .rating-inner .rating-list li button:focus{
  color: rgba(245, 176, 32, 1);
}

.shop-details .product-discription .review-content .customer-review .rating-inner .rating-list li:before{
  position: absolute;
  content: '';
  background: rgba(217, 217, 217, 1);
  width: 1px;
  height: 16px;
  top: 5px;
  right: -22px;
}

.shop-details .product-discription .review-content .customer-review .rating-inner .rating-list li:last-child:before{
  display: none;
}

.shop-details .product-discription .review-content .form-inner .form-group{
  position: relative;
  margin-bottom: 22px;
}

.shop-details .product-discription .review-content .form-inner .form-group label{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
  margin-bottom: 4px;
}

.shop-details .product-discription .review-content .form-inner .form-group input[type='text'],
.shop-details .product-discription .review-content .form-inner .form-group input[type='email'],
.shop-details .product-discription .review-content .form-inner .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  border: 1px dashed rgba(229, 229, 229, 1);
  border-radius: 55px;
  background: #fff;
  font-size: 16px;
  color: var(--title-color);
  padding: 10px 20px;
  transition: all 500ms ease;
}

.shop-details .product-discription .review-content .form-inner .form-group input:focus,
.shop-details .product-discription .review-content .form-inner .form-group textarea:focus{

}

.shop-details .product-discription .review-content .check-box label:before{
  top: 5px;
}

.shop-details .product-discription .review-content .form-inner .form-group textarea{
  height: 150px;
  resize: none;
  border-radius: 20px;
}

.shop-details .product-discription .specification-content .specification-list{
  position: relative;
  display: block;
  overflow: hidden;
}

.shop-details .product-discription .specification-content .specification-list li{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
}

.shop-details .product-discription .specification-content .specification-list li:last-child{
  border-bottom: none;
}

.shop-details .product-discription .specification-content .specification-list li strong{
  position: relative;
  display: inline-block;
  width: 300px;
  padding: 12px 0px;
  padding-left: 30px;
  margin-right: 40px;
  border-right: solid 5px rgba(253, 247, 249, 1);
}

.shop-details .product-discription .specification-content .specification-list li:nth-child(odd){
  background: #fff;
}

.shop-details .group-title{
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.shop-details .group-title h3{
  display: block;
  font-size: 28px;
  line-height: 38px;
}


/** rtl-css **/

.rtl .product-details-content .content-box .color-list li{
  margin-right: 0px;
  margin-left: 6px;
}

.rtl .product-details-content .content-box .color-list .check-box label:after{
  right: inherit;
  left: -3px;
  top: -1px;
}

.rtl .product-details-content .content-box .size-list li{
  margin-right: 0px;
  margin-left: 10px;
}

.rtl .product-details-content .addto-cart-box ul li{
  float: right;
  margin-right: 0px;
  margin-left: 15px;
}

.rtl .shop-details .product-discription .tab-btns li{
  float: right;
  margin-right: 0px;
  margin-left: 50px;
}

.rtl .shop-details .product-discription .review-content .single-review .upper-box .info-box .image{
  margin-right: 0px;
  margin-left: 10px;
}

.rtl .shop-details .product-discription .review-content .single-review .upper-box .option-btn li{
  margin-right: 0px;
  margin-left: 30px;
}

.rtl .shop-details .product-discription .review-content .single-review .upper-box .option-btn li button{
  margin-right: 0px;
  margin-left: 7px;
}

.rtl .shop-details .product-discription .review-content .single-review .image-list li{
  margin-right: 0px;
  margin-left: 10px;
}

.rtl .shop-details .product-discription .review-content .customer-review .rating-inner .rating-list li{
  margin-right: 0px;
  margin-left: 42px;
}

.rtl .shop-details .product-discription .review-content .customer-review .rating-inner .rating-list li:before{
  right: inherit;
  left: -22px;
}

.rtl .shop-details .product-discription .specification-content .specification-list li strong{
  margin-right: 0px;
  margin-left: 40px;
  text-align: right;
  padding-right: 30px;
  border-left: solid 5px rgba(253, 247, 249, 1);
  border-right: none;
}

.rtl .product-details-content .content-box .cs-countdown .count-col{
  margin-right: 0px;
  margin-left: 16px;
}

.rtl .product-details-content .content-box .cs-countdown .count-col:before{
  right: inherit;
  left: -10px;
}


/** responsive-css **/

@media only screen and (max-width: 1200px){
  .product-details-content .content-box{
    margin: 0px;
  }
}

@media only screen and (max-width: 991px){
  .product-details-content .content-box{
    margin-top: 30px;
  }

  .shop-details .related-product .shop-block-one{
    width: 50%;
  }
}

@media only screen and (max-width: 767px){
  .shop-details .related-product .shop-block-one{
    width: 100%;
  }

  .shop-details .product-discription .specification-content .specification-list li{
    padding: 12px 30px;
  }

  .shop-details .product-discription .specification-content .specification-list li strong{
    background: transparent;
    padding: 0px !important;
    width: auto;
    margin-right: 30px;
    border: none !important;
  }

  .shop-details .product-discription .tab-btns li{
    padding-top: 15px;
  }

  .shop-details .product-discription .review-content .customer-review .rating-inner{
    display: block;
  }

  .shop-details .product-discription .review-content .customer-review .rating-inner .rating-list{
    margin: 0px !important;
  }

  .shop-details .product-discription .review-content .customer-review .rating-inner .rating-list:before{
    display: none;
  }

  .product-details-content .content-box h2{
    font-size: 30px;
    line-height: 40px;
  }

  .shop-details{
    padding-bottom: 70px;
  }

  .shop-details .product-discription .review-content .single-review .upper-box{
    display: block;
  }

  .shop-details .product-discription .review-content .single-review .upper-box .info-box{
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 599px){
  .product-details-content .addto-cart-box ul li{
    margin-bottom: 15px;
  }

  .product-details-content .slider-content .thumb-box li a{
    width: 65px;
    height: 65px;
  }

  .product-details-content .other-option li strong,
  .product-details-content .content-box .discription-box li strong{
    width: auto;
    margin-right: 20px;
  }

  .shop-details.style-two .product-details-content .image-inner{
    padding-left: 0px;
  }

  .shop-details.style-two .product-details-content .image-inner .slider-pager{
    position: relative;
  }

  .shop-details.style-two .product-details-content .slider-content .thumb-box{
    display: flex;
    align-items: center;
    margin-top: 5px;
  }

  .shop-details.style-two .product-details-content .slider-content .thumb-box li{
    margin-right: 5px;
  }

  .shop-details.style-two .product-details-content .slider-content .thumb-box li a{
    width: 50px;
    height: 50px;
  }

  .product-details-content .image-inner{
    padding-left: 80px;
  }

  .product-details-content .bx-viewport{
    min-height: 300px !important;
  }

  .shop-details .product-discription .review-content .customer-review .rating-inner .rating-list{
    display: block;
  }

  .shop-details .product-discription .review-content .customer-review .rating-inner .rating-list li{
    margin: 0px !important;
  }

  .shop-details .product-discription .review-content .customer-review .rating-inner .rating-list li:before{
    display: none;
  }

  .shop-details .product-discription .tabs-content,
  .shop-details.style-two .product-discription,
  .product-details-content .content-box .discription-box{
    padding-left: 30px;
    padding-right: 30px;
  }

  .shop-details .product-discription .tab-btns{
    display: block;
    border-radius: 10px;
  }
}

@media only screen and (max-width: 499px){
  .shop-details .product-discription .review-content .single-review .reply-review{
    margin-left: 0px;
  }

  .product-details-content .content-box .size-list li{
    margin-right: 5px;
  }

  .rtl .product-details-content .content-box .size-list li{
    margin-left: 5px;
  }

  .shop-details .product-discription .review-content .single-review .upper-box .option-btn li{
    margin-right: 15px;
  }

  .rtl .shop-details .product-discription .review-content .single-review .upper-box .option-btn li{
    margin-left: 15px;
  }

  .product-details-content.style-two .slider-content .thumb-box{
    gap: 10px;
  }
}












































/** shop-page **/

.shop-page-section .item-shorting{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FDF7F9;
  border-radius: 16px;
  padding: 14px 22px;
  margin-bottom: 30px;
  border: 1px solid rgba(248, 61, 110, 0.12);
}

.shop-page-section .item-shorting .left-column .text p{
  font-size: 14px;
  color: var(--title-color);
}

.shop-page-section .item-shorting .left-column .text p span{
  font-weight: 700;
  color: #f83d6e;
}

.shop-page-section .item-shorting .right-column{
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.shop-page-section .item-shorting .right-column p{
  font-size: 14px;
  color: #7C7C7C;
  margin-right: 10px;
}

.shop-page-section .item-shorting .right-column .short-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.shop-page-section .item-shorting .right-column .select-box{
  min-height: 30px;
}

.shop-page-section .item-shorting .right-column .short-box .nice-select{
  font-size: 14px;
  line-height: 30px;
  color: var(--title-color);
  text-transform: capitalize;
}

.shop-page-section .item-shorting .right-column .short-box .nice-select:before{
  color: var(--title-color);
}

.shop-page-section .item-shorting .right-column .short-box .nice-select .list{
  min-width: 120px;
}

.shop-page-section .item-shorting .right-column .menu-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.shop-page-section .item-shorting .right-column .menu-box button{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  text-align: center;
  font-size: 15px;
  color: #64748b;
  cursor: pointer;
  transition: all 200ms ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.shop-page-section .item-shorting .right-column .menu-box button.on{
  background: #f83d6e !important;
  color: #ffffff !important;
  border-color: #f83d6e !important;
  box-shadow: 0 2px 6px rgba(248, 61, 110, 0.3) !important;
}

.shop-page-section .item-shorting .right-column .menu-box button:hover {
  background: #f83d6e;
  color: #ffffff;
  border-color: #f83d6e;
}

.shop-page-section .item-shorting .right-column .menu-box button img{
  display: inline-block;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 500ms ease;
}

.shop-page-section .item-shorting .right-column .menu-box button.on img{
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes fadeInLayout {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wrapper.list .shop-list-content{
  display: block;
  animation: fadeInLayout 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.wrapper.list .shop-grid-content{
  display: none;
}

.wrapper.grid .shop-list-content{
  display: none;
}

.wrapper.grid .shop-grid-content{
  display: block;
  animation: fadeInLayout 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.shop-page-section .wrapper .inner-container{
  display: flex;
  flex-wrap: wrap;
}

.shop-page-section .wrapper .inner-container .shop-block-one{
  float: none;
  width: 20%;
  margin: 0 auto;
}

.shop-page-section .shop-block-one .inner-box:before{
  display: none;
}

.shop-page-section .shop-block-one .inner-box{
  padding: 0px;
  max-width: 224px;
  margin: 0 auto;
  padding-bottom: 35px;
}

.shop-page-section .shop-block-one .inner-box .lower-content{
  padding: 0px !important;
  margin: 0px !important;
  background: transparent;
}

.shop-page-section .shop-block-one .inner-box .image-box .image{
  max-width: 180px;
}

.shop-page-section .shop-block-two .inner-box .lower-content h5{
  max-height: 24px;
}

.shop-page-section .cta-section .inner-container{
  padding-left: 540px;
}

.shop-page-section .cta-section h2{
  font-size: 40px;
  line-height: 48px;
}

.shop-block-five .inner-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  border: 1px dashed #E5E5E5;
  margin-bottom: 30px;
  border-radius: 10px;
  transition: all 500ms ease;
}

.shop-block-five .inner-box .image-box{
  position: relative;
  display: block;
  width: 277px;
  min-width: 277px;
}

.shop-block-five .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.shop-block-five .inner-box:hover .image-box img{
  transform: scale(0.9);
}

.shop-block-five .inner-box .content-box{
  position: relative;
  display: block;
  padding: 0px 50px;
}

.shop-block-five .inner-box .content-box .text{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 6px;
}

.shop-block-five .inner-box .content-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 14px;
}

.shop-block-five .inner-box .content-box h3 a{
  display: inline-block;
  color: var(--title-color);
}

.shop-block-five .inner-box .content-box h3 a:hover{
  text-decoration: underline;
}

.shop-block-five .inner-box .content-box h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 24px;
  color: #E92530;
  margin-bottom: 23px;
}

.shop-block-five .inner-box .content-box h4 del{
  font-size: 16px;
  font-weight: 400;
  color: #7C7C7C;
  margin-right: 6px;
}

.shop-block-five .inner-box .content-box .theme-btn{
  padding: 8px 60px;
}

.shop-block-five .inner-box .feature-content{
  position: relative;
  display: block;
  border-left: 1px dashed #D9D9D9;
  padding: 30px 0px 50px 60px;
}

.shop-block-five .inner-box .feature-list li{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 28px;
  padding-left: 16px;
}

.shop-block-five .inner-box .feature-list li:before{
  position: absolute;
  content: '';
  width: 5px;
  height: 5px;
  left: 0px;
  top: 12px;
  border-radius: 50%;
}

.shop-sidebar .table-outer {
  overflow-x: auto;
  position: relative;
  width: 100%;
}

.shop-sidebar .sidebar-table {
  min-width: 1585px;
  width: 100%;
}

.shop-sidebar .sidebar-table tbody{
  vertical-align: top;
}

.shop-sidebar .sidebar-table .widget-title{
  margin-bottom: 25px;
}

.shop-sidebar .sidebar-table tbody tr td{
  padding-right: 60px;
  width: 280px;
}

.shop-sidebar .sidebar-table tbody tr td:last-child{
  padding: 0px;
}

.shop-sidebar .sidebar-table tbody tr .filter-widget{
  width: 220px;
}

.shop-sidebar.style-two .category-list li label{
  display: block;
}

.shop-sidebar.style-two .category-list li{
  position: relative;
}

.shop-sidebar .category-list li span{
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 14px;
  color: var(--title-color);
}

.shop-sidebar .category-list li .check-box input:checked + label span{

}

.shop-page-section .item-shorting .left-column{
  position: relative;
  display: flex;
  align-items: center;
}

.shop-page-section .item-shorting .left-column .filter-button button{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
  padding: 8px 20px;
  width: 180px;
  border-radius: 6px;
  text-align: left;
}

.shop-page-section .item-shorting .left-column .filter-button button i{
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 7px;
}

.shop-page-section .our-shop.fluid .wrapper .inner-container .shop-block-one{
  width: 16.666%;
}


/** shop-banner **/

.shop-banner{
  position: relative;
}

.shop-banner .inner-container{
  position: relative;
  padding: 80px 30px;
  border-radius: 10px;
  overflow: hidden;
}

.shop-banner .inner-container .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.shop-banner .content-box{
  position: relative;
  display: block;
}

.shop-banner .content-box .icon-box{
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.shop-banner .content-box h2{
  display: block;
  font-size: 72px;
  line-height: 72px;
  color: #fff;
  text-shadow: 0px 5px 0px rgba(0, 0, 0, 0.10);
  margin-bottom: 20px;
}

.shop-banner .content-box h2 span{
  position: relative;
  display: block;
  font-weight: 400;
}

.shop-banner .content-box h3{
  display: block;
  font-size: 28px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
  text-shadow: 0px 5px 0px rgba(0, 0, 0, 0.10);
  margin-bottom: 35px;
}

.shop-banner .content-box .theme-btn{
  box-shadow: 0px 5px 0px 0px rgba(0, 0, 0, 0.1);
}

/** rtl-css **/

.rtl .shop-page-section .item-shorting .right-column .menu-box button.mr_10{
  margin-right: 0px;
  margin-left: 10px;
}

.rtl .shop-page-section .item-shorting .right-column p{
  margin-right: 0px;
  margin-left: 10px;
}

.rtl .shop-block-five .inner-box .feature-content{
  padding-left: 0px;
  padding-right: 60px;
  border-left: none;
  border-right: 1px solid #D9D9D9;
}

.rtl .shop-block-five .inner-box .feature-list li{
  padding-left: 0px;
  padding-right: 16px;
}

.rtl .shop-block-five .inner-box .feature-list li:before{
  left: inherit;
  right: 0px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){
  .shop-page-section .wrapper .inner-container .shop-block-one{
    width: 33.333%;
  }

  .shop-page-section .cta-section .inner-container{
    padding-left: 30px;
  }

  .shop-page-section .our-shop.fluid .wrapper .inner-container .shop-block-one{
    width: 33.333%;
  }
}

@media only screen and (max-width: 991px){
 .shop-page-section .wrapper .inner-container .shop-block-one{
  width: 50%;
 }

 .shop-page-section .our-shop.fluid .wrapper .inner-container .shop-block-one{
  width: 50%;
 }
}

@media only screen and (max-width: 767px){
  .shop-block-five .inner-box{
    display: block;
  }

  .shop-page-section .wrapper .inner-container,
  .shop-page-section .our-shop .wrapper .inner-container,
  .shop-page-section .shop-grid-content .inner-container {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px 8px !important;
    width: 100% !important;
  }

  .shop-page-section .wrapper .inner-container .shop-block-one,
  .shop-page-section .our-shop.fluid .wrapper .inner-container .shop-block-one,
  .shop-page-section .our-shop .wrapper .inner-container .shop-block-one,
  .shop-page-section .shop-grid-content .inner-container .shop-block-one {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    float: none !important;
    clear: none !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .shop-block-five .inner-box .feature-content{
    padding: 0px;
    border: none;
    margin-top: 30px;
  }

  .shop-sidebar{
    margin-bottom: 40px;
  }

  .rtl .shop-block-five .inner-box .feature-content{
    padding-right: 0px;
    border: none;
  }

  .shop-block-five .inner-box .content-box{
    padding-left: 0px;
    padding-right: 0px;
  }

  .shop-banner .content-box h2{
    font-size: 50px;
    line-height: 60px;
  }
}

@media only screen and (max-width: 599px){
  .shop-page-section .item-shorting{
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 14px !important;
  }

  .shop-page-section .item-shorting .right-column{
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
}

@media only screen and (max-width: 499px){
  .shop-block-five .inner-box .image-box{
    width: 100%;
    min-width: 100%;
    margin-bottom: 20px;
  }

  .shop-block-five .inner-box .content-box .theme-btn{
    padding-left: 30px;
    padding-right: 30px;
  }

  .shop-block-five .inner-box{
    padding-left: 30px;
    padding-right: 30px;
  }

  .shop-page-section .item-shorting .right-column .short-box{
    margin-right: 15px;
  }

  .rtl .shop-page-section .item-shorting .right-column .short-box{
    margin-left: 15px;
    margin-right: 0px;
  }

}












































/** shop-sidebar **/

.shop-sidebar{
  position: relative;
}

.shop-sidebar .sidebar-widget{
  position: relative;
  display: block;
  border: dashed;
  border-width: 1px;
  border-color: #D8D8D8;
  border-radius: 10px;
  padding: 32px 30px 40px 30px;
  margin-bottom: 20px;
}

.shop-sidebar .sidebar-widget:last-child{
  margin-bottom: 0px;
}

.shop-sidebar .search-widget{
  padding-top: 40px;
}

.shop-sidebar .search-widget .form-group{
  position: relative;
  margin-bottom: 0px;
}

.shop-sidebar .search-widget .form-group input[type='search']{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  border: dashed;
  border-width: 1px;
  border-radius: 50px;
  padding: 10px 70px 10px 20px;
  font-size: 15px;
  background: #F8EDF0;
  color: var(--title-color);
  transition: all 500ms ease;
}

.shop-sidebar .search-widget .form-group button[type='submit']{
  position: absolute;
  top: 5px;
  right: 5px;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 44px;
  border-radius: 50%;
  text-align: center;
  font-size: 17px;
  color: #fff;
  transition: all 500ms ease;
}

.shop-sidebar .search-widget .form-group input:focus + button,
.shop-sidebar .search-widget .form-group button:hover{
  background: #FFAC00;
}

.shop-sidebar .sidebar-widget .widget-title h4 {
  font-size: 20px;
  line-height: 30px;
}

.price-range-slider{
  position: relative;
  width:100%;
}

.price-range-slider .range-value{
  position: relative;
  display: flex;
  align-items: center;
}

.price-range-slider .range-value span{
  font-size: 14px;
  line-height: 24px;
  color: var(--title-color);
  margin-right: 5px;
}

.price-range-slider .range-value input{
  width: 100%;
  background: none;
  font-size: 14px;
  line-height: 24px;
  font-family: var(--text-font);
  color: var(--title-color);
  box-shadow: none;
  border: none;
}

.price-range-slider .range-bar{
  border: none;
  height: 2px;  
  width: 100%;
  background: rgba(247, 97, 136, 0.20);
  border-radius: 30px;
}

.price-range-slider .ui-slider-range{
  height: 2px;
}

.price-range-slider .ui-slider-handle{
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  top: -8px;
  border: none;
}

.price-range-slider .range-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-range-slider .range-box .theme-btn{
  padding: 4.5px 21px;
  border-color: #fff !important;
  color: #fff !important;
}

.shop-sidebar .check-box input {
  display: none;
}

.shop-sidebar .check-box label {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: var(--title-color);
  padding-left: 26px;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 0px;
}

.shop-sidebar .check-box label:before{
  position: absolute;
  content: '';
  left: 0px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border-style: solid;
  border-width: 1px;
  border-color: #DDDDDD;
  background: transparent;
}

.shop-sidebar .check-box label:after {
  position: absolute;
  content: '\e919';
  font-family: 'icomoon';
  left: 0px;
  top: 6px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  font-size: 8px;
  color: #fff;
  background-image: none;
  opacity: 0;
}

.shop-sidebar .check-box input:checked + label:after {
  opacity: 1;
}

.shop-sidebar .check-box input:checked + label:before{

}

.shop-sidebar .category-widget .accordion{
  position: relative;
}

.shop-sidebar .category-widget .accordion .acc-btn{
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: var(--title-color);
  padding-left: 28px;
  padding-right: 30px;
  cursor: pointer;
}

.shop-sidebar .category-widget .accordion .acc-btn:before{
  position: absolute;
  content: '';
  left: 0px;
  top: 7px;
  width: 15px;
  height: 15px;
  border-radius: 2px;
  border-style: solid;
  border-width: 1px;
  border-color: #DDDDDD;
  background: transparent;
}

.shop-sidebar .category-widget .accordion .acc-btn.active:before{

}

.shop-sidebar .category-widget .accordion .acc-btn .icon-box{
  position: absolute;
  content: '';
  right: 0px;
  top: 7px;
  width: 17px;
  height: 16px;
  border-radius: 2px;
  border-style: solid;
  border-width: 1px;
  border-color: #B5B5B5;
  font-size: 14px;
  color: #B5B5B5;
  text-align: center;
  background: transparent;
  font-weight: 600;
}

.shop-sidebar .category-widget .accordion .acc-btn.active .icon-box{

}

.shop-sidebar .category-widget .accordion .acc-btn .icon-box:before{
  position: absolute;
  content: '+';
  text-align: center;
  width: 16px;
  height: 16px;
  line-height: 10px;
  left: 0px;
  top: 0px;
  right: 0px;
}

.shop-sidebar .category-widget .accordion .acc-btn.active .icon-box:before{
  content: '-';
  font-size: 30px;
  font-weight: 400;
  line-height: 3px;
}

.shop-sidebar .category-widget .accordion .acc-content{
  padding-left: 27px;
  margin-bottom: 10px;
}

.shop-sidebar .color-widget .color-list{
  position: relative;
  display: inline-block;
}

.shop-sidebar .color-widget .color-list li{
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0px;
}

.shop-sidebar .color-widget .color-list li .check-box label{
  padding: 0px;
}

.shop-sidebar .color-widget .color-list li .check-box label:before,
.shop-sidebar .color-widget .color-list li .check-box label:after{
  top: -19px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
}

.shop-sidebar .color-widget .color-list li .check-box label:after{
  color: #fff;
}

.shop-sidebar .color-widget .color-list li .check-box label:after{
  line-height: 22px;
}

.shop-sidebar .color-widget .color-list li:first-child .check-box label:before{
  background: #F8CD2E;
}

.shop-sidebar .color-widget .color-list li:nth-child(2) .check-box label:before{
  background: #0578FF;
}

.shop-sidebar .color-widget .color-list li:nth-child(3) .check-box label:before{
  background: #FF6B00;
}

.shop-sidebar .color-widget .color-list li:nth-child(4) .check-box label:before{
  background: #000000;
}

.shop-sidebar .color-widget .color-list li:nth-child(5) .check-box label:before{
  background: #792424;
}

.shop-sidebar .color-widget .color-list li:nth-child(6) .check-box label:before{
  background: #2EC8F8;
}

.shop-sidebar .color-widget .color-list li:nth-child(7) .check-box label:before{
  background: #FF0000;
}

.shop-sidebar .color-widget .color-list li:nth-child(8) .check-box label:before{
  background: #6100FF;
}

.shop-sidebar .color-widget .color-list li:nth-child(9) .check-box label:before{
  background: #4DB8A5;
}

.shop-sidebar .color-widget .color-list li:nth-child(10) .check-box label:before{
  background: #92DE57;
}

.shop-sidebar .color-widget .color-list li:nth-child(11) .check-box label:before{
  background: #C24444;
}

.shop-sidebar .color-widget .color-list li:nth-child(12) .check-box label:before{
  background: #B72EF8;
}

.shop-sidebar .color-widget .color-list li:nth-child(13) .check-box label:before{
  background: #063F83;
}

.shop-sidebar .color-widget .color-list li:nth-child(14) .check-box label:before{
  background: #FFA96A;
}

.shop-sidebar .color-widget .color-list li:nth-child(15) .check-box label:before{
  background: #0578FF;
}

.shop-sidebar .color-widget .color-list li:nth-child(16) .check-box label:before{
  background: #FF6B00;
}

.shop-sidebar .review-widget .category-list li label i{
  font-size: 16px;
  margin-right: 7px;
  color: #FFC844;
}

.shop-sidebar .review-widget .category-list li label i.light{
  color: #D3D3D3;
}


/** rtl-css **/

.rtl .shop-sidebar .check-box label{
  padding-left: 0px;
}

.rtl .shop-sidebar .check-box label:after{
  left: inherit;
  right: 0px;
}

.rtl .shop-sidebar .category-widget .accordion .acc-btn:before{
  left: inherit;
  right: 0px;
}

.rtl .shop-sidebar .category-widget .accordion .acc-btn .icon-box{
  right: inherit;
  left: 0px;
}

/** responsive-css **/

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

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

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

}

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

}

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


}






























/** shop-section **/

.shop-section{
  position: relative;
}

.shop-section .inner-container{
  position: relative;
  display: block;
  padding-left: 430px;
}

.shop-section .ads-block{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 430px;
  border-radius: 10px;
  overflow: hidden;
  padding: 60px 40px 712px 40px;
}

.shop-section .ads-block .text{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 26px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.shop-section .ads-block h2{
  display: block;
  font-size: 36px;
  line-height: 44px;
  color: #fff;
  margin-bottom: 30px;
}

.shop-section .ads-block .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.shop-section .shop-block-one .inner-box{
  padding: 0px;
}

.shop-section .shop-block-one .inner-box:before{
  display: none;
}

.shop-section .shop-block-one .inner-box .image-box{
  background: #FFF6F8;
  border-radius: 10px;
}

.shop-section .shop-block-one .inner-box .image-box .option-list{
  top: 20px;
  right: 20px;
}

.shop-section .owl-nav{
  position: absolute;
  top: -91px;
  right: 0px;
}

.shop-section .shop-block-one .inner-box .image-box .image{
  max-width: 280px;
}

.shop-section .content-box{
  position: relative;
  display: inline-block;
  width: 100%;
  margin-top: -8px;
}

.shop-section .shape-layer .shape-1{
  position: absolute;
  top: 0px;
  right: 25px;
  width: 123px;
  height: 131px;
  background-repeat: no-repeat;
}

.shop-section .shape-layer .shape-2{
  position: absolute;
  right: 0px;
  bottom: -70px;
  width: 189px;
  height: 298px;
  background-repeat: no-repeat;
}


/** shop-style-two **/

.shop-style-two{
  position: relative;
}

.shop-style-two .content-box .four-item-carousel{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 20px;
  border: dashed;
  border-width: 1px;
  border-color: #D8D8D8;
}

.shop-style-two .shop-block-one .inner-box .image-box{
  background: transparent;
}

.shop-style-two .shop-block-one .inner-box{
  border-right: 1px dashed #D8D8D8;
}

.shop-style-two .shop-block-one .inner-box .lower-content{
  padding: 0px 30px 40px 30px !important;
  margin: 0px !important;
  background: transparent;
}

.shop-style-two .shop-block-one .inner-box .lower-content .btn-box{
  position: relative;
  bottom: 0px;
  opacity: 1;
  transform: scaleX(1);
}

.shop-style-two .ads-block{
  padding-bottom: 324px;
  background: #E91A3E;
}

.shop-style-two .pattern-layer{
  position: absolute;
  left: 0px;
  top: -500px;
  width: 100%;
  height: 1657px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.shop-section .shape-layer .shape-3{
  position: absolute;
  top: 55px;
  right: 690px;
  width: 156px;
  height: 161px;
  background-repeat: no-repeat;
}

.shop-section .shape-layer .shape-4{
  position: absolute;
  right: 0px;
  bottom: -50px;
  width: 179px;
  height: 188px;
  background-repeat: no-repeat;
}


/** shop-style-three **/

.shop-style-three{
  position: relative;
  background: #E2D1FF;
}

.project-tab .p-tab {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
}

.project-tab .p-tab.active-tab {
  position: relative;
  visibility: visible;
  opacity: 1;
  z-index: 5;
}

.project-tab .p-tabs-content {
  position: relative;
  display: block;
}

.project-tab .p-tab.active-tab .shop-block-one,
.project-tab .p-tab.active-tab .collection-block-one {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  -moz-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
}

.project-tab .p-tab .shop-block-one,
.project-tab .p-tab .collection-block-one {
  position: relative;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  -moz-transform: scaleX(0);
  transform: scaleX(0);
}

.shop-style-three .title-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-style-three .tab-btns{
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 4px;
  border: dashed;
  border-width: 1px;
  border-color: #D8D8D8;
}

.shop-style-three .tab-btns li{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  padding: 5px 35px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 500ms ease;
}

.shop-style-three .tab-btns li.active-btn{
  color: #fff;
}

.shop-style-three .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 11px;
  background-repeat: repeat-x;
}

.shop-style-three:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: 190px;
  left: 0px;
  bottom: 0px;
}

.shop-style-three .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: calc(100% - 190px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.shop-style-three .pattern-layer-2{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 1478px;
  background-repeat: no-repeat;
  background-position: top center;
}


/** shop-style-four **/

.shop-style-four{
  position: relative;
}

.shop-style-four .inner-container{
  padding-left: 0px;
  padding-right: 670px;
}

.shop-style-four .ads-block{
  left: inherit;
  right: 0px;
  width: 640px;
  padding-bottom: 231px;
  border-radius: 20px;
}

.shop-style-four .content-box{
  margin-top: 0px;
}

.shop-style-four .ads-block:before{
  position: absolute;
  content: '';
  border: dashed;
  border-width: 2px;
  border-color: #fff;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  left: 10px;
  top: 10px;
  border-radius: 16px;
}

.shop-style-four .ads-block h3{
  display: block;
  font-size: 28px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 35px;
}

.shop-style-four .ads-block h3 span,
.shop-style-four .ads-block h2 span{
  font-weight: 400;
}

.shop-style-four .ads-block h2{
  font-size: 48px;
  line-height: 54px;
  margin-bottom: 15px;
}

.shop-block-two .inner-box{
  position: relative;
  display: block;
  text-align: center;
  border: dashed;
  border-width: 1px;
  border-color: #D8D8D8;
  border-radius: 20px;
  overflow: hidden;
  transition: all 500ms ease;
}

.shop-block-two .inner-box .image-box{
  position: relative;
  display: block;
  background: #FFF6F8;
}

.shop-block-two .inner-box .image-box .image img{
  width: 100%;
  transition: all 500ms ease;
}

.shop-block-two .inner-box:hover .image-box .image img{
  transform: scale(1.05);
}

.shop-block-two .inner-box .image-box .reaction-btn button{
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 42px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
  color: var(--title-color);
  cursor: pointer;
  transition: all 500ms ease;
}

.shop-block-two .inner-box .image-box .reaction-btn button:hover,
.shop-block-two .inner-box .image-box .reaction-btn button:active,
.shop-block-two .inner-box .image-box .reaction-btn button:focus{
  color: #fff;
}

.shop-block-two .inner-box .lower-content{
  position: relative;
  display: block;
  background: #fff;
  padding: 15px 20px 24px 20px;
  transition: all 500ms ease;
}

.shop-block-two .inner-box .lower-content .text{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 4px;
  color: #7C7C7C;
}

.shop-block-two .inner-box .lower-content h4{
  display: block;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 4px;
}

.shop-block-two .inner-box .lower-content h4 a{
  display: inline-block;
  color: var(--title-color);
}

.shop-block-two .inner-box .lower-content h4 a:hover{

}

.shop-block-two .inner-box .lower-content .price{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 24px;
  color: #E92530;
  font-weight: 700;
}

.shop-block-two .inner-box .lower-content .price del{
  font-size: 16px;
  line-height: 28px;
  color: #666666;
  font-weight: 400;
  margin-right: 10px;
}

.shop-style-four .owl-nav{
  top: 50%;
  margin-top: -24px;
  width: 100%;
}

.shop-style-four .owl-nav button.owl-prev{
  position: absolute;
  left: -24px;
  top: 0px;
}

.shop-style-four .owl-nav button.owl-next{
  position: absolute;
  right: -24px;
  top: 0px;
}


/** shop-style-five **/

.shop-style-five{
  position: relative;
}

.shop-style-five:before{
  position: absolute;
  content: '';
  width: 100%;
  height: calc(100% - 110px);
  left: 0px;
  top: 55px;
  opacity: 0.19;
}

.shop-style-five .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 55px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.shop-style-five .pattern-layer .pattern-2{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 55px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.shop-style-five .title-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-style-five .tab-btns{
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.shop-style-five .tab-btns li{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  color: #666666;
  background: #fff;
  cursor: pointer;
  text-align: center;
  border: dashed;
  border-width: 1px;
  border-color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 500ms ease;
}

.shop-style-five .tab-btns li.active-btn,
.shop-style-five .tab-btns li:hover{
  color: #fff;
}

.shop-style-five .inner-content{
  position: relative;
  margin: 0px -15px;
}

.shop-style-five .inner-content .shop-block-one{
  position: relative;
  float: left;
  width: 20%;
  padding: 0px 15px;
}

.shop-style-five .inner-content .shop-block-one .inner-box:before{
  border: none;
}

.shop-style-five .inner-content .shop-block-one .inner-box{
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  padding-bottom: 0px;
  margin-bottom: 30px;
}

.shop-style-five .inner-content .shop-block-one .inner-box:hover .lower-content{
  margin-top: -75px;
}

.shop-style-five .inner-content .shop-block-one .inner-box .image-box{
  background: #FFF6F8;
  border-radius: 8px;
  border: dashed;
  border-width: 1px;
}

.shop-style-five .inner-content .shop-block-one .inner-box .lower-content{
  padding-left: 20px;
  padding-right: 20px;
}

.shop-style-five .inner-content .shop-block-one .inner-box .lower-content .btn-box{
  width: calc(100% - 20px);
  left: 10px;
}


/** shop-style-six **/

.shop-style-six{
  position: relative;
}

.shop-style-six .content-block{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 20px;
  border: dashed;
  border-width: 1px;
  border-color: #D8D8D8;
  overflow: hidden;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.04);
}

.shop-style-six .pattern-layer{
  position: absolute;
  left: 0px;
  top: -350px;
  width: 100%;
  height: 1475px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.shop-style-six .owl-carousel .owl-stage-outer{
  overflow: visible;
}

.shop-style-six .owl-carousel .owl-stage-outer .owl-item{
  opacity: 0;
  visibility: hidden;
}

.shop-style-six .owl-carousel .owl-stage-outer .owl-item.active{
  opacity: 1;
  visibility: visible;
}

.shop-style-six .shop-block-one .inner-box .lower-content{
  padding: 0px 0px 40px 0px !important;
  margin: 0px !important;
}

.shop-style-six .shop-block-one .inner-box .lower-content .btn-box{
  position: relative;
  bottom: 0px;
  opacity: 1;
  transform: scaleX(1);
}

.shop-style-six .single-column:first-child .content-block{
  margin-right: -70px;
}

.shop-style-six .single-column:last-child .content-block{
  margin-left: -70px;
}

.shop-style-six .ads-block-one{
  margin-left: 70px;
  margin-right: 70px;
}

.ads-block-one .inner-box{
  position: relative;
  display: block;
  background: #B468FF;
  border-radius: 20px;
  padding: 40px 30px 232px 30px;
}

.ads-block-one .inner-box .text{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 26px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ads-block-one .inner-box h2{
  font-size: 36px;
  line-height: 44px;
  color: #fff;
  margin-bottom: 30px;
}

.ads-block-one .inner-box .theme-btn{
  background: transparent;
  color: #fff;
  border-color: #fff !important;
}

.shop-style-six .owl-nav{
  position: absolute;
  top: -100px;
  right: 0px;
}

.shop-style-six .owl-nav button{
  background: transparent;
}


/** shop-style-seven **/

.shop-style-seven{
  position: relative;
}

.shop-style-seven .shop-block-one .inner-box{
  padding: 0px;
}

.shop-style-seven .shop-block-one .inner-box:before{
  display: none;
}

.shop-style-seven .shop-block-one .inner-box .image-box{
  background: #FFF6F8;
  border-radius: 10px;
}

.shop-block-three .inner-box{
  position: relative;
  display: block;
  background: #FFF6F8;
  border-radius: 10px;
  padding: 50px 30px;
  border: dashed;
  border-width: 1px;
}

.shop-block-three .inner-box .image-box{
  position: relative;
  max-width: 252px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
}

.shop-block-three .inner-box .cs-countdown{
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.shop-block-three .inner-box .count-col{
  position: relative;
  display: inline-block;
  width: 70px;
  height: 60px;
  text-align: center;
  background: #FFE8EE;
  border-radius: 8px;
  border: dashed;
  border-width: 1px;
  padding: 12px 0px;
}

.shop-block-three .inner-box .count-col span{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 3px;
}

.shop-block-three .inner-box .count-col h6{
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.shop-block-three .inner-box .count-col:before{
  position: absolute;
  content: '';
  width: 3px;
  height: 3px;
  top: 22px;
  right: -9px;
  border-radius: 50%;
}

.shop-block-three .inner-box .count-col:after{
  position: absolute;
  content: '';
  width: 3px;
  height: 3px;
  bottom: 22px;
  right: -9px;
  border-radius: 50%;
}

.shop-block-three .inner-box .count-col:last-child:before,
.shop-block-three .inner-box .count-col:last-child:after{
  display: none;
}

.shop-block-three .inner-box .lower-content{
  position: relative;
  display: block;
}

.shop-block-three .inner-box .lower-content .text{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 4px;
  color: #7C7C7C;
}

.shop-block-three .inner-box .lower-content h3{
  display: block;
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 4px;
}

.shop-block-three .inner-box .lower-content h3 a{
  display: inline-block;
  color: var(--title-color);
}

.shop-block-three .inner-box .lower-content h3 a:hover{

}

.shop-block-three .inner-box .lower-content .price{
  position: relative;
  display: block;
  font-size: 20px;
  color: #E92530;
  font-weight: 700;
  margin-bottom: 17px;
}

.shop-block-three .inner-box .lower-content .price del{
  font-size: 16px;
  line-height: 28px;
  color: #666666;
  font-weight: 400;
  margin-right: 10px;
}

.shop-style-seven .owl-nav{
  position: absolute;
  top: -100px;
  right: 0px;
}

.shop-style-seven .shop-block-one .inner-box .image-box .option-list{
  top: 20px;
  right: 20px;
}

.shop-style-seven .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  top: -90px;
  width: 158px;
  height: 266px;
  background-repeat: no-repeat;
}

.shop-style-seven .pattern-layer .pattern-2{
  position: absolute;
  right: 0px;
  bottom: -120px;
  width: 189px;
  height: 298px;
  background-repeat: no-repeat;
}

.shop-style-three.home-4{
  background: transparent;
}

.shop-style-three.home-4 .pattern-layer-2{
  position: absolute;
  left: 0px;
  top: -400px;
  width: 100%;
  height: 1695px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  background-size: cover;
}

.shop-style-three.home-4:before{
  display: none;
}

.shop-style-three.home-4 .pattern-layer-3{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 171px;
  height: 255px;
  background-repeat: no-repeat;
}

.shop-style-seven.home-4 .shop-block-three .inner-box{
  background: transparent;
  overflow: hidden;
}

.shop-style-seven.home-4 .shop-block-three .inner-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: calc(50% + 64px);
  left: 0px;
  top: 0px;
}

.shop-style-seven.home-4 .shop-block-three .inner-box .count-col{
  background: #fff;
}

.shop-style-seven .pattern-layer .pattern-3{
  position: absolute;
  top: 20px;
  left: 70%;
  width: 123px;
  height: 131px;
  background-repeat: no-repeat;
}

.shop-style-seven .pattern-layer .pattern-4{
  position: absolute;
  left: -40px;
  bottom: 0px;
  width: 127px;
  height: 80px;
  background-repeat: no-repeat;
}

.shop-style-four.home-4 .inner-container{
  padding-right: 0px;
  padding-left: 670px;
}

.shop-style-four.home-4 .ads-block{
  right: inherit;
  left: 0px;
}

.shop-style-four.home-4 .ads-block:before{
  display: none;
}


/** shop-style-eight **/

.shop-style-eight{
  position: relative;
}

.shop-style-eight .content-column{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  border: dashed;
  border-width: 1px;
  border-color: #D8D8D8;
  overflow: hidden;
  margin-bottom: 30px;
}

.shop-style-eight .content-column .title-box{
  position: relative;
  display: block;
  background: #0AB31B;
  padding: 40px 40px 46px 40px;
}

.shop-style-eight .single-column:nth-child(2) .content-column .title-box{
  background: #F76188;
}

.shop-style-eight .single-column:nth-child(3) .content-column .title-box{
  background: #AD00FE;
}

.shop-style-eight .content-column .title-box h2{
  display: block;
  font-size: 36px;
  line-height: 45px;
  color: #fff;
  margin-bottom: 6px;
}

.shop-style-eight .content-column .title-box span{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 500;
}

.shop-block-four{
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px;
}

.shop-block-four .image-box{
  position: relative;
  display: block;
  width: 110px;
  min-width: 110px;
}

.shop-block-four .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.shop-block-four:hover .image-box img{
  transform: scale(1.05);
}

.shop-block-four .content-box h4{
  display: block;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 5px;
}

.shop-block-four .content-box h4 a{
  display: inline-block;
  color: var(--title-color);
}

.shop-block-four .content-box h4 a:hover{

}

.shop-block-four .content-box h5{
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: #E92530;
}

.shop-block-four .content-box h5 del{
  font-size: 16px;
  font-weight: 400;
  color: #666666;
}

.shop-style-eight .content-column .shop-block-four{
  border-bottom: dashed;
  border-width: 1px;
  border-color: #D8D8D8;
}

.shop-style-eight .content-column .shop-block-four:last-child{
  border-bottom: none;
}


/** shop-style-nine **/

.shop-style-nine{
  position: relative;
}

.shop-style-nine .title-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-style-nine .tab-btns{
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 4px;
  border: dashed;
  border-width: 1px;
  border-color: #D8D8D8;
}

.shop-style-nine .tab-btns li{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  padding: 5px 35px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 500ms ease;
}

.shop-style-nine .tab-btns li.active-btn{
  color: #fff;
}

.shop-style-nine .shop-block-one .inner-box{
  padding: 0px;
}

.shop-style-nine .shop-block-one .inner-box:before{
  display: none;
}

.shop-style-nine .shop-block-one .inner-box .image-box .image{
  max-width: 100%;
  border-radius: 10px;
}

.shop-style-nine .shop-block-one .inner-box .lower-content{
  padding: 15px 30px 0px 30px !important;
  margin: 0px !important;
}

.shop-block-one .inner-box .image-box .reaction-btn{
  position: absolute;
  top: 30px;
  right: 25px;
  z-index: 5;
}

.shop-block-one .inner-box .image-box .reaction-btn button{
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--title-color);
  cursor: pointer;
  transition: all 500ms ease;
}

.shop-block-one .inner-box .image-box .reaction-btn button:hover,
.shop-block-one .inner-box .image-box .reaction-btn button:focus,
.shop-block-one .inner-box .image-box .reaction-btn button:active{

}

.shop-style-nine .owl-nav{
  position: absolute;
  left: 0px;
  top: 28%;
  width: 100%;
}

.shop-style-nine .owl-nav button{
  position: absolute;
  top: 0px;
}

.shop-style-nine .owl-nav button.owl-prev{
  left: -38px;
}

.shop-style-nine .owl-nav button.owl-next{
  right: -38px;
}

.shop-style-nine .owl-nav button:hover{
  
}




/** rtl-css **/

.rtl .shop-section .owl-nav{
  right: inherit;
  left: 0px;
}

.rtl .shop-style-five .inner-content .shop-block-one{
  float: right;
}

.rtl .shop-style-six .owl-nav{
  right: inherit;
  left: 0px;
}

.rtl .shop-style-seven .owl-nav{
  right: inherit;
  left: 0px;
}

.rtl .shop-style-eight .content-column .title-box .image{
  right: inherit;
  left: 0px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){
  .shop-section .inner-container{
    padding-left: 0px;
  }

  .shop-section .ads-block{
    position: relative;
    margin: 0 auto;
    padding-bottom: 120px;
  }

  .shop-section .content-box{
    margin-top: 30px;
    padding-left: 0px;
  }

  .shop-section .inner-container{
    padding-right: 0px;
  }

  .shop-style-five .inner-content .shop-block-one{
    width: 33.333%;
  }

  .shop-style-five .title-inner{
    display: block;
  }

  .shop-style-five .title-inner .sec-title{
    margin-bottom: 30px;
  }

  .ads-block-one .inner-box h2{
    font-size: 24px;
    line-height: 30px;
  }

  .shop-style-seven .pattern-layer{
    display: none;
  }

  .shop-style-four.home-4 .inner-container{
    padding-left: 0px;
  }
}

@media only screen and (max-width: 991px){
  .shop-style-three .title-box{
    display: block;
  }

  .shop-style-three .title-box .sec-title{
    margin-bottom: 40px;
  }

  .shop-style-three .tab-btns,
  .shop-style-nine .tab-btns{
    display: inline-flex;
  }

  .shop-style-five .inner-content .shop-block-one{
    width: 50%;
  }

  .shop-style-six .single-column:first-child .content-block{
    margin-right: 0px;
    margin-bottom: 40px;
  }

  .shop-style-six .ads-block-one{
    margin: 0px;
  }

  .shop-style-six .single-column:last-child .content-block{
    margin-left: 0px;
    margin-top: 40px;
  }

  .shop-style-three.home-4 .pattern-layer-3{
    display: none;
  }

  .shop-style-nine .title-box{
    display: block;
  }

  .shop-style-nine .title-box .sec-title{
    margin-bottom: 30px;
  }

  .shop-style-nine .owl-nav{
    display: none;
  }
}

@media only screen and (max-width: 767px){
  .shop-section{
    padding: 70px 0px 40px 0px;
  }

  .shop-section .owl-nav,
  .shop-section .shape-layer{
    display: none;
  }

  .shop-style-two{
    padding-bottom: 60px;
  }

  .shop-style-three.popular-product.pt_110{
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .shop-style-three .tab-btns,
  .shop-style-nine .tab-btns{
    display: block;
  }

  .shop-style-four .ads-block{
    width: 100%;
  }

  .shop-style-five .inner-content .shop-block-one{
    width: 100%;
  }

  .shop-style-five .tab-btns{
    display: block;
  }

  .shop-style-five .tab-btns li{
    margin-bottom: 5px;
  }

  .shop-style-five{
    padding: 110px 0px 80px 0px;
  }

  .shop-style-six .owl-nav,
  .shop-style-seven .owl-nav{
    display: none;
  }

  .shop-style-six{
    padding: 65px 0px 70px 0px;
  }

  .shop-style-three.home-4{
    padding-top: 0px;
  }

  .shop-style-seven.home-4{
    padding-top: 65px;
    padding-bottom: 70px;
  }

  .shop-section.home-4{
    padding-top: 0px;
  }

  .shop-style-eight{
    padding-top: 70px;
  }

  .shop-style-three.home-5{
    padding-top: 65px;
  }
}

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

}

@media only screen and (max-width: 499px){
  .shop-section .ads-block,
  .shop-style-three .tab-btns li{
    width: 100%;
  }

  .shop-style-three .tab-btns li{
    text-align: center;
  }

  .shop-block-four{
    display: block;
  }

  .shop-block-four .image-box{
    margin-bottom: 15px;
  }

  .shop-style-eight .content-column .title-box .image{
    display: none;
  }
}












































/** subscribe-section **/

.subscribe-section{
  position: relative;
}

.subscribe-section .bg-color{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 50%;
  background: #20191B;
}

.subscribe-section .inner-container{
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  padding: 40px 80px;
}

.subscribe-section .inner-container:before{
  position: absolute;
  content: '';
  border: dashed;
  border-width: 1px;
  border-color: #fff;
  border-radius: 8px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  left: 10px;
  top: 10px;
}

.subscribe-section h2{
  display: block;
  font-size: 48px;
  line-height: 56px;
  color: #fff;
  font-weight: 700;
}

.subscribe-section .form-inner .form-group{
  position: relative;
  margin-bottom: 0px;
}

.subscribe-section .form-inner .form-group input[type='email']{
  position: relative;
  display: block;
  width: 100%;
  height: 70px;
  background: #fff;
  border-radius: 10px;
  border: dashed;
  border-width: 2px;
  font-size: 16px;
  color: rgba(17, 17, 17, 0.70);
  padding: 10px 80px 10px 30px;
}

.subscribe-section .form-inner .form-group button[type='submit']{
  position: absolute;
  top: 5px;
  right: 5px;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  border-radius: 8px;
}


/** rtl-css **/

.rtl .subscribe-section .form-inner{
  margin-left: 0px;
  margin-right: 130px;
}


/** responsive-css **/

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

}

@media only screen and (max-width: 991px){
  .subscribe-section .form-inner{
    margin-left: 0px;
    margin-top: 30px;
  }

  .rtl .subscribe-section .form-inner{
    margin-right: 0px;
  }
}

@media only screen and (max-width: 767px){
  .subscribe-section .inner-container{
    padding-left: 60px;
    padding-right: 60px;
  }

  .subscribe-section h2{
    font-size: 36px;
    line-height: 44px;
  }
}

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

}

@media only screen and (max-width: 499px){
  .subscribe-section .inner-container{
    padding-left: 30px;
    padding-right: 30px;
  }
}












































/** testimonial-section **/

.testimonial-section{
  position: relative;
}

.testimonial-section .big-text{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  text-align: center;
  font-size: 300px;
  line-height: 210px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #E5E5E5;
}

.testimonial-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 10px;
  border: 1px dashed #D8D8D8;
  padding: 25px 30px;
  margin-bottom: 20px;
}

.testimonial-block-one .inner-box h4{
  display: block;
  font-size: 20px;
  line-height: 24px;
}

.testimonial-block-one .inner-box .date{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 2px;
}

.testimonial-block-one .inner-box .rating{
  margin-bottom: 20px;
}

.testimonial-block-one .inner-box p{
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  font-style: italic;
  color: var(--title-color);
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}

.testimonial-block-one .inner-box .author-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 23px;
}

.testimonial-block-one .inner-box .author-box .thumb-box{
  position: relative;
  display: inline-block;
  width: 75px;
  height: 75px;
  min-width: 75px;
  border-radius: 50%;
}

.testimonial-block-one .inner-box .author-box .thumb-box img{
  width: 100%;
  border-radius: 50%;
}

.testimonial-block-one .inner-box .author-box h5{
  display: block;
  font-size: 20px;
  line-height: 24px;
  color: #E92530;
  margin-top: 5px;
}

.testimonial-section .owl-carousel .owl-stage-outer{
  overflow: visible;
}

.testimonial-section .owl-carousel .owl-stage-outer .owl-item:nth-child(odd){
  margin-top: 60px;
}

.testimonial-block-one .inner-box .author-box h4 a{
  color: var(--title-color);
}

.testimonial-block-one .inner-box .author-box h4 a:hover{

}

.testimonial-section .testimonial-carousel{
  position: relative;
  display: block;
  max-width: 1650px;
  width: 100%;
  margin: 0 auto;
}

.testimonial-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: -300px;
  width: 100%;
  height: 1475px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  background-size: cover;
}


.testimonial-section.style-two .owl-carousel .owl-stage-outer .owl-item:nth-child(odd){
  margin-top: 0px;
}

.testimonial-section.style-two .testimonial-block-one .inner-box p{
  padding-bottom: 0px;
  border-bottom: none;
  color: #6A6A6A;
  font-weight: 400;
  font-style: normal;
}

.testimonial-section.style-two .testimonial-block-one .inner-box h4{
  font-weight: 600;
}

.testimonial-block-one .inner-box .designation{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 22px;
}

.testimonial-section.style-two .testimonial-block-one .inner-box .author-box .thumb-box{
  width: 60px;
  height: 60px;
  padding: 4px;
  border: dashed;
  border-width: 1px;
  min-width: 60px;
}

.testimonial-section.style-two .testimonial-block-one .inner-box .author-box{
  gap: 15px;
}

.testimonial-section.style-two .big-text{
  top: 75px;
}

.testimonial-block-one .inner-box .quote-icon{
  position: absolute;
  right: 50px;
  bottom: 50px;
  font-size: 50px;
  opacity: 0.1;
}

.testimonial-section.style-two .owl-nav{
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: -24px;
  width: 100%;
}

.testimonial-section.style-two .owl-nav button{
  position: absolute;
  display: inline-block;
  top: 0px;
  font-size: 48px;
  color: var(--title-color);
  margin: 0px;
  cursor: pointer;
  transition: all 500ms ease;
}

.testimonial-section.style-two .owl-nav button:hover{

}

.testimonial-section.style-two .owl-nav button.owl-prev{
  left: -40px;
}

.testimonial-section.style-two .owl-nav button.owl-next{
  right: -40px;
}

.testimonial-section.style-two .owl-carousel .owl-stage-outer{
  overflow: hidden;
}

.testimonial-section.about-page .outer-container{
  padding-bottom: 90px;
}


/** rtl-css **/

.rtl .testimonial-block-one .inner-box{
  direction: rtl;
}


/** responsive-css **/

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

}

@media only screen and (max-width: 991px){
  .testimonial-section.style-two .owl-nav{
    display: none;
  }
}

@media only screen and (max-width: 767px){
  .testimonial-section.style-two{
    padding: 70px 0px 40px 0px;
  }

  .testimonial-section .big-text{
    display: none;
  }

  .testimonial-section .inner-container.pb_90,
  .testimonial-section.about-page .outer-container{
    padding-bottom: 40px;
  }

  .testimonial-section.about-page .outer-container{
    padding-top: 70px;
  }

  .testimonial-section.about-page{
    margin-top: 0px;
  }
}

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

}

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

}












































.testimonial-section:not(.style-two) .testimonial-block-one .inner-box p{
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
  margin-bottom: 0 !important;
}
