@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap');

/* jost-regular - latin */
@font-face {
    font-display: swap; 
    font-family: 'Jost';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/jost-v15-latin-regular.eot'); 
    src: url('../fonts/jost-v15-latin-regular.eot?#iefix') format('embedded-opentype'), 
         url('../fonts/jost-v15-latin-regular.woff2') format('woff2'), 
         url('../fonts/jost-v15-latin-regular.woff') format('woff'),
         url('../fonts/jost-v15-latin-regular.ttf') format('truetype'), 
         url('../fonts/jost-v15-latin-regular.svg#Jost') format('svg');
  }
  /* jost-500 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Jost';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/jost-v15-latin-500.eot'); /* IE9 Compat Modes */
    src: url('../fonts/jost-v15-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('../fonts/jost-v15-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/jost-v15-latin-500.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('../fonts/jost-v15-latin-500.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
        url('../fonts/jost-v15-latin-500.svg#Jost') format('svg'); /* Legacy iOS */
}
  /* jost-600 - latin */
  @font-face {
    font-display: swap; 
    font-family: 'Jost';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/jost-v15-latin-600.eot');
    src: url('../fonts/jost-v15-latin-600.eot?#iefix') format('embedded-opentype'), 
         url('../fonts/jost-v15-latin-600.woff2') format('woff2'),
         url('../fonts/jost-v15-latin-600.woff') format('woff'), 
         url('../fonts/jost-v15-latin-600.ttf') format('truetype'), 
         url('../fonts/jost-v15-latin-600.svg#Jost') format('svg'); 
  }
  /* jost-700 - latin */
  @font-face {
    font-display: swap;
    font-family: 'Jost';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/jost-v15-latin-700.eot');
    src: url('../fonts/jost-v15-latin-700.eot?#iefix') format('embedded-opentype'),
         url('../fonts/jost-v15-latin-700.woff2') format('woff2'), 
         url('../fonts/jost-v15-latin-700.woff') format('woff'),
         url('../fonts/jost-v15-latin-700.ttf') format('truetype'),
         url('../fonts/jost-v15-latin-700.svg#Jost') format('svg'); 
  }
  
  @font-face {
    font-family: 'Downey';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Downey-Regular.eot');
    src: url('../fonts/Downey-Regular.eot') format('embedded-opentype'), 
         url('../fonts/Downey-Regular.woff2') format('woff2'),
         url('../fonts/Downey-Regular.woff') format('woff'),
         url('../fonts/Downey-Regular.ttf') format('truetype');
  }
  @font-face {
    font-family: 'Downey';
    font-style: normal;
    font-weight: bold;
    src: url('../fonts/Downey-Bold.eot');
    src: url('../fonts/Downey-Bold.eot') format('embedded-opentype'), 
         url('../fonts/Downey-Bold.woff2') format('woff2'),
         url('../fonts/Downey-Bold.woff') format('woff'),
         url('../fonts/Downey-Bold.ttf') format('truetype');
  }

/* 
    font-family: 'Jost', sans-serif;
*/

:root{
    --fontJost:'Jost', sans-serif;
    --fontDown:'Downey', sans-serif;
    --themeOrange:#E86A56;
    --txtBlack:#050404;
    --txtGray:#545454;
    --themeBg:#FFFAF6;
    --white:#fff;
    --bs-accordion-btn-icon:url('../image/arrow_up.png');
    --bs-accordion-btn-active-icon:url('../image/arrow_up.png');
}
body{
    font-family: var(--fontJost);
    line-height: 28px;
    background-color: var(--themeBg);
    overflow-x: hidden !important;
}
a{
    text-decoration: none;
    display: inline-block;
}
ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
h1,h2,h3,h4,h5,h6,p{
    margin: 0;
}
.spacer{
    padding: 70px 0;
}
.spacer-top{
    padding-top: 70px;
}
.spacer-bottom{
    padding-bottom: 70px;
}
.bg-black{
    background-color: var(--txtBlack);
}
.bg-orange{
    background-color: var(--themeOrange);
}
.text-orange{
    color: var(--themeOrange);
}
.font-downey{
    font-family: var(--fontDown);
}
.img-fit{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fw-500{
    font-weight: 500;
}

/* Start Header */

.fixed {
    position: fixed;
    top:0; 
    left:0;
    width: 100%; 
    background-color: var(--themeBg);
    z-index: 9999;
    box-shadow: 0 7px 10px rgba(232, 106, 86, 0.1);
}   
header.sticky.fixed > .container{
    border: none !important;
}
.side_icon a{
    background-color: #000;
    height: 45px;
    width: 45px;
    color: var(--white);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-left: 10px;
    transition: .3s;
}
.side_icon a:hover{
    color: var(--themeOrange);
}

.main_menu li a{
    color: #000;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.82px;
    text-transform: uppercase;
    padding: 15px 20px !important;
    position: relative;
}
.main_menu li a.active::before, .main_menu li a:hover::before{
    content: '';
    height: 3px;
    width: 30%;
    background: linear-gradient(90deg, rgba(255, 144, 153, 0.70) 2.98%, rgba(254, 145, 68, 0.70) 98.41%);
    position: absolute;
    left: 50%;
    bottom: 13px;
    transform: translateX(-50%);
}
.navbar-toggler{
    border: none;
    box-shadow: none !important;
}

/* banner */
.main_banner{
    padding: 50px 0 100px;
}
.title_txt{
    color: #000;
    text-align: center;
    font-family: var(--fontDown);
    font-size: 70px;
    font-style: normal;
    font-weight: 700;
    line-height: 168.178%; /* 117.724px */
    letter-spacing: 0.7px;
    text-transform: capitalize;
    /* position: relative; */
    /* left: 50px; */
}
.txt_img{
    display: inline-block;
    width: 180px;
    height: 77px;
    background-image: url('../image/Rect.png');
    vertical-align: text-bottom;
}
.spirit_txt{
    position: relative;
}
.wave_line{
    position: absolute;
    left: 0;
    bottom: -5px;
}
.banner-girl{
    position: absolute;
    top: 0;
    left: 0;
}
.banner-men{
    position: absolute;
    /* width: 300px; */
    right: 80px;
    top: 100px;
    z-index: -1;
}
.slidebar_list{
    position: relative;
    top: 60px;
}
.banner_sidebar li{
    position: relative;
}
.banner_sidebar li a{
    color: var(--themeOrange);
    font-size: 20px;
    font-weight: 600;
    line-height: 151%; /* 30.2px */
    letter-spacing: 1.3px;
    text-transform: uppercase;
    padding: 15px;
    border-bottom: 1px #FFC3B4 solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .3s;
}
.banner_sidebar li:hover > a{
    color: var(--txtBlack);
}
.list_hvr_img{
    position: absolute;
    right: 50px;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%) rotate(-20deg);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
.banner_sidebar li:hover .list_hvr_img{
    visibility: visible;
    opacity: 1;
    transform: translateY(-50%) rotate(0deg);
}

/* Revamp */
.main_revamp{
    margin-top: 100px;
    
    position: relative;
}
.sec_title::before,
.sec_title::after{
    display: none;
}
.main_revamp .sec_title::before,
.main_revamp .sec_title::after{
    content: '';
    background-image: url('../image/dots.svg');
    width: 40px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
}
.main_revamp .sec_title::after{
    left: auto;
    right: 0;
}
.sec_title{
    padding: 50px 0;
    text-align: center;
    position: relative;
    
}
.sec_border{
    border-top: 1px var(--themeOrange) solid;
    border-bottom: 1px var(--themeOrange) solid;
}
.sec_title p.h1{
    font-family: var(--fontDown);
    color: #000;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.sec_title p.sub_title{
    color: #545454;
    text-align: center;
    font-size: 20px;
    line-height: normal;
    letter-spacing: 0.2px;
    width: 60%;
    margin: auto;
}
.single_pro{
    padding: 50px 80px;
    /* border: 1px solid var(--themeOrange); */
}
.single_pro:nth-child(1){
    border-right: 1px solid var(--themeOrange);
    border-bottom: 1px solid var(--themeOrange);
}
.single_pro:nth-child(2){
    border-right: 1px solid var(--themeOrange);
    border-bottom: 1px solid var(--themeOrange);
}
.single_pro:nth-child(3){
    border-bottom: 1px solid var(--themeOrange);
}
.pro_box{
    border: 6px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .3s;
}
.pro_img{
    position: relative;
    top: -50px;
}
.pro_content{
    padding: 0 20px 20px;
}
.pro_name{
    font-family: var(--fontDown);
    font-size: 24px;
    font-weight: bold;
}
.explore_link{
    font-family: var(--fontDown);
    color: var(--themeOrange);
    font-size: 15px;
    text-decoration: underline;
    text-underline-offset: 5px;
}
.single_pro:hover .pro_box{
    border-radius: 250px 250px 5px 5px;
}
.box1{
    background: rgba(255, 146, 109, 0.24);
}
.single_pro:hover .pro_box.box1{
    border-color: var(--themeOrange);
}
.box2{
    background: #E2E3FC;
}
.single_pro:hover .pro_box.box2{
    border-color: #777bff;
}
.box3{
    background: #D5EFF0;
}
.single_pro:hover .pro_box.box3{
    border-color: #22777a;
}
.box4{
    background: #FDEEC7;
}
.single_pro:hover .pro_box.box4{
    border-color: #e2a200;
}
.box5{
    background: #D7EDD6;
}
.single_pro:hover .pro_box.box5{
    border-color: #2e502d;
}
.box6{
    background: #FFE0F1;
}
.single_pro:hover .pro_box.box6{
    border-color: #ce2582;
}

/* product tag list */
.pro_tag_list{
    background-color: var(--txtBlack);
    color: var(--white);
    text-align: center;
}
.pro_tag_list span{
    margin-right: 12px;
    text-transform: uppercase;
    font-family: var(--fontDown);
    position: relative;
}
.pro_tag_list span::after{
    content: '';
    height: 5px;
    width: 5px;
    background-color: var(--white);
    border-radius: 50%;
    position: absolute;
    right: -10px;
    top: 45%;
    transform: translateY(-50%);
}
.pro_tag_list span:last-child:after{
    display: none;
}

/* why choose us */
.why_choose_us{
    background-image: url('../image/why_choose_line.png');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 40%;
}
.sec_title .wave_line{
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.why_choose .accordion-button{
    background-color: transparent !important;
    color: white;
    padding: 22px 0;
    font-size: 20px;
    font-weight: 600 !important;
    text-transform: capitalize;
}
.why_choose .accordion-item{
    background-color: transparent !important;
    color: white;
}
.why_choose .accordion-item:last-child{
    border-bottom: 1px #fff solid;
}
.why_choose .accordion-body{
    padding: 0 0 16px;
    font-size: 14px;
    text-transform: capitalize;
}
.acc_item_count{
    position: absolute;
    left: -60px;
}
.accordion-button:focus{
    box-shadow: none;
}
.accordion-button::after{
    display: none;
}
.accordion-button:not(.collapsed) > span > img{
    transform: rotate(0deg);
}
.accordion-button > span > img{
    transform: rotate(90deg);
}
.why_choose_img{
    position: relative;
}
.white_star{
    position: absolute;
    top: 27%;
    left: 27px;
    z-index: 1;
}
.orange_star{
    position: absolute;
    top: -20%;
    right: -20px;
    z-index: 1;
}
    
/* Discount */

.time_counter{
    display: flex;
    text-align: center;
    font-size: 30px;
    font-family: var(--fontDown);
    font-weight: 900;
    position: relative;
}
.time_label{
    margin: 10px;
    display: block;
    padding: 0px 15px;
    background-color: var(--themeOrange);
    color: white;
    border-radius: 30px;
    font-size: 14px;
    font-family: var(--fontJost);
    font-weight: normal;
}
.hour {
    background: linear-gradient(90deg, #1E1713 12.82%, #723930 107.69%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.minute{
    background: linear-gradient(92deg, #64332B 5.02%, #E86A56 110.71%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.second{
    color: #E86A56;
}
.discount_side_img{
    position: relative;
    left: -150px;
    z-index: -1;
}
.sec_discount .sec_title p.h1{
    background: #FFFAF6;
    border-radius: 30px;
    padding-top: 8px;
}
.explore_circle{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: var(--txtBlack);
    color: white;
    border-radius: 50%;
    position: relative;
    transition: .3s;
    &:hover{
        background-color: var(--themeOrange);
        color: var(--white);
    }
    &::before{
        content: '';
        height: 72px;
        width: 72px;
        border: 2px var(--themeOrange) dotted;
        position: absolute;
        top: -11px;
        left: -11px;
        border-radius: 50%;
    }
}
.explore_text{
    color: var(--txtBlack);
    font-family: var(--fontJost);
    font-weight: bold;
    padding-left: 3px;
    background-color: var(--themeBg);
    position: relative;
    z-index: 1;
}
.review_text{
    font-size: 20px;
    line-height: 30px;
    color: #545454;
}

/* Our Client Story */
.client_story{
    background: linear-gradient(103deg, rgba(255, 192, 178, 0.15) 2.97%, rgba(232, 106, 86, 0.15) 99.3%);
    padding-bottom: 150px;
}
.client_circle{
    left: -10px;
    bottom: -15px;
}
.comma_icon{
    width: 10% !important;
}
.client_explore
{
    background-color:#FDE6E0;
}
.bg_box{
    background: linear-gradient(280deg, rgba(232, 106, 86, 0.30) 6.58%, rgba(255, 189, 175, 0.30) 81.63%);
    width: 100%;
    height: 250px;
}
.client_info{
    position: relative;
    top: -150px;
    left: 120px;
    text-align: center;
}
.client_img{
    height: 292px;
    width: 190px;
    border-radius: 0 0 95px 95px;
    overflow: hidden;    
    border-bottom: 5px var(--themeOrange) solid;
}
.client_img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.client_men{
    position: absolute;
    bottom: 0;
    right: -68px;
}
.client_men img{
    width: 85%;
}
.see_all{
    position: absolute;
    right: 120px;
    bottom: 0;
    width: auto;
}
#testimonial .owl-stage-outer{
    padding-top: 323px;
}
.our_client_title{
    position: absolute;
    top: 150px;
    right: 0;
}
#testimonial .owl-dots{
    margin: 0;
    position: absolute;
    left: 45%;
    bottom: 5px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    &::before{
        content: '';
        width: 1px;
        background: rgba(255, 162, 142, 0.70);
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
    }
}
#testimonial .owl-dots .owl-dot{
    display: block;
    position: relative; 
}
#testimonial .owl-dots .owl-dot span{
    height: 70px;
    width: 5px;
    background-color: transparent;
    transition: .3s;
    border-radius: 0;
    margin: 0;
}
#testimonial .owl-dots .owl-dot.active span{
    background-color: #FFA28E;
}
.item_count_start{
    color: #E86A56;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    bottom: -23px;
    left: 44.1%;
    height: 303px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}


/* Client Logo */
.logo_box{
    top: -65px;
    box-shadow: 0px 10px 50px 0px #FFECE7;
}
#client_logo .item img{
    aspect-ratio: 2/1;
    object-fit: scale-down;
}

/* Newsletter */
.input_element{
    width: 60%;
}
.txt_box{
    padding: 25px 50px 25px 30px;
    border-radius: 5px;
    background: linear-gradient(270deg, #FFE9E0 1.82%, #FFE0D7 97.26%);
    width: 100%;
    border: none;
    outline: none;
    text-transform: capitalize;
    font-size: 18px;
}
.news_submit{
    background-color: #FFFAF6;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 7px;
    padding: 14px 60px;
    color: #E86A56;
    outline: none;
    font-size: 20px;
    font-weight: 500;
    &:hover{
        background-color: var(--themeOrange);
        color: white;
    }
    &:active{
        border: none;
    }
}

/* footer */
footer{
    background-image: url('../image/footer_bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}
.dark_footer{
    border-radius: 5px;
}
.foot_menu a{
    text-transform: uppercase;
    color: white;
    font-size: 12px;
    letter-spacing: 3px;
    &:hover, &.active{
        color: var(--themeOrange);
    }
    &:first-child{
        padding-left: 0;
    }
}
.visit_store{
    font-family: var(--fontDown);
    font-size: 14px;
    position: relative;
    margin-top: 50px;
    &::before{
        content: '';
        height: 168px;
        width: 250px;
        border-radius: 50%;
        border: 1px var(--themeOrange) solid;
        position: absolute;
        top: 50%;
        left: 50%;
        translate: -50% -50%;
        rotate: -20deg;
        -webkit-rotate: -20deg;
    }
}
.visit_store svg{
    scale: 0.7;
}

.social_icon a{
    height: 40px;    
    width: 40px;    
    background-color: #272626;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin: 5px;
    transition: .3s;
    &:hover{
        background-color: var(--themeOrange);
    }
}

.contact_sec{
    margin-top: 100px;
    
    border-bottom: 1px #5A5A5A solid;
}
.contact_info ul li{
    margin-left: 50px;
    color: white;
}
.contact_info ul li i{
    color: var(--themeOrange);
}
.city_name{
    text-transform: uppercase;
    color: white;
    font-size: 12px;
    letter-spacing: 2px;
    text-align: center;
    word-spacing: 10px;
    font-weight: 500;
}
.info_title{
    font-family: var(--fontDown);
    font-size: 24px;
    color: #1C0906;
    line-height: 39px;
    font-weight: 700;
}
.foot_txt{
    content: '@';
    position: absolute;
    top: 50%;
    right: 20px;
    translate: 0 -50%;
    font-size: 30px;
}
.foot_extra_info{
    border-bottom: 1px white solid;
}
.email_txt{
    border-radius: 5px;
    border: 1.5px solid #E8553E;
    background: rgba(255, 255, 255, 0.60);
    font-weight: 500;
}
.email_txt::placeholder{
    letter-spacing: 0.64px;
    color: rgba(232, 106, 86,0.9);
}
/* ----------------------------Categories page ---------------------------*/

.bread_title{
    position: absolute;
    top: 35%;
    left: 110px;
    translate: 0 -50%;
}
.bread_title p{
    font-family: var(--fontDown);
    text-transform: uppercase;
    font-weight: bold;
}
.breadcrumb-item a{
    color: #000;
}
.breadcrumb-item.active a{
    color: var(--themeOrange);
}

/* feature product */

.product_tab{
    padding: 10px;
    background-color: white;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(125px,1fr));
    /* justify-content: space-between; */
    box-shadow: 0px 10px 49px 0px #FDE5DD;
    gap: 2px;
}
.product_tab .nav-item{
    text-align: center;
}
.product_tab .nav-link{
    color: #000;
    padding: 10px 20px;
    font-size: 21px;
    display: block;
    width: 100%;
}
.product_tab .nav-link.active{
    color: white;
    background: var(--2, linear-gradient(64deg, #E86A56 21.64%, #FF7E2E 94.6%));
    border-radius: 5px;
}
.product_tab .nav-link:hover{
    background-color: #f5f5f5;
}
.cate_single_pro{
    position: relative;
    margin: 30px 0;
}
.cate_pro_img{
    height: 450px;
}
.cate_pro_img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.cate_name_btn{
    padding: 15px 20px;
    border: 1px white solid;
    position: absolute;
    left: 50%;
    translate: -50% -50%;
    background-color: #000;
    color: white;
    z-index: 1;
    width: 80%;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: .3s;
    
}
.cate_single_pro:hover .cate_name_btn{
        background: linear-gradient(64deg, rgba(232, 106, 86, 0.70) 21.64%, rgba(255, 126, 46, 0.70) 94.6%);
        backdrop-filter: blur(8px);
}
.breadcrumbs{
    height: 700px;
    background-image: url('../image/breadcrumb_line.png');
    background-repeat: no-repeat;
    background-position: left center;
}
.breadcrumb_tag{
    position: absolute;
    width: 100%;
    bottom: 111px;
    left: 0;
    padding: 20px 0;
    font-size: 22px;
    font-weight: bold;
    rotate: -7.5deg;
    scale: 1.1;
    border: 10px #FFFAF6 solid;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    z-index: 1;
}
.breadcrumb_logo{
    display: flex;
    position: absolute;
    background-color: #FFFAF6;
    bottom: 61px;
    left: 0;
    width: 100%;
    justify-content: space-between;
    border-top: 1px var(--themeOrange) solid;
    border-bottom: 1px var(--themeOrange) solid;
    padding: 6px;
    rotate: 3.5deg;
}
.breadcrumb_logo img{
    height: 100px;
    width: 100px;
    object-fit: contain;
    margin: 0px 30px;
}
.breadcrumb_lady{
    position: absolute;
    right: 10%;
    bottom: 140px;
}
.breadcrumb_shirt{
    position: absolute;
    top: 30%;
    left: 30%;
}

/* -----------------------About Page-------------------- */
.about_text{
    padding: 20px 20px 20px 40px;
    border-left: 4px var(--themeOrange) solid;
    color: white;
    font-size: 20px;
    line-height: 31px;
}
.about_center_img{
    height: 420px;
    padding-left: 50px;
}
.about_center_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.left_round_img{
    position: absolute;
    top: -330px;
    width: 80%;
}
.wear_lable{
    top: 50px;
}

#counter-container{
    color: white;
    text-align: center;
}
.single_count span{
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
}
.single_count::before{
    content: '';
    width: 2px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-image: linear-gradient(#000, #E86A56, #000);
}
.single_count:last-child::before{
    display: none;
}
#counter-container div:nth-child(2) .count.percent::after,
#counter-container div:nth-child(3) .count.percent::after{
    content: 'K+';
}
#counter-container div:nth-child(4) .count.percent::after{
    content: 'M+';
}
#counter-container .count.percent{
    /* color: var(--themeOrange); */
    font-family: var(--fontDown);
    background: linear-gradient(64deg, #E86A56 21.64%, #FF7E2E 94.6%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
    font-weight: 700;
    padding: 10px 0;
}
#gallery .owl-stage .owl-stage-outer{
    height: 400px;
}
#gallery .owl-stage{
    display: flex;
    height: 400px;
    align-items: center;
}
#gallery .owl-item{
    position: relative;
    left: 100px;
}
#gallery .owl-item.active:nth-child(odd) .item{
    scale: 1.3;
    position: relative;
    z-index: 10;
    transition: .3s;
}
#gallery .owl-item .item{
    position: relative;
    z-index: 0;
    transition: .3s;
}

/* -------------------------Trending---------------------- */

.img_text{
    box-sizing: border-box;
    padding: 30px 0px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    font-size: 24px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}
.collection_product{
    background-image: url('../image/collection_shape.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
}
.single_collection .collection_img{
    overflow: hidden;
    height: 450px;
    transition: .3s;
    padding: 10px;
    margin: auto;
    width: 100%;
}
.single_collection:hover .collection_img{
    background-color: var(--themeOrange);
    transform: scale(1.1);
    width: 80%;
}

.single_collection .collection_img>img{
    transition: .3s;
}
.single_collection:hover .collection_img>img{
    filter: grayscale(100%);
}
.single_collection .img_text{
    transition: .3s;
}
.single_collection:hover .img_text{
    background-color: rgba(255, 255, 255, .2);
    backdrop-filter: blur(5px);
}

.handbags_accessories{
    background-image: linear-gradient(103deg, rgba(255, 192, 178, 0.15) 2.97%, rgba(232, 106, 86, 0.15) 99.3%);
    
}
.handbags_bg_img{
    background-image: url('../image/handbag_left_top.png'), 
                      url('../image/handbag_right_bottom.png'), 
                      url('../image/handbag_right2.png');
    background-repeat: no-repeat;
    background-size: 15%, 10%, 10%;
    background-position: -50px 30%, right bottom, right 70%;
}

.single_trend_pro{
    text-align: center;
    position: relative;
    margin-top: 200px;
    padding: 0 20px;
}
.single_trend_pro .trend_img{
    position: absolute;
    bottom: 100px;
    left: 50px;
    right: 50px;
    height: 340px;
    object-fit: cover;
    overflow: hidden;
}
.trend_title{
    padding: 170px 20px 20px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-family: var(--fontDown);
    font-weight: bold;
}
.trend_title a{
    width: 80%;
    margin: 0 auto;
}
.trend_bg_1{
    background: #FFE1D5;
}
.trend_bg_2{
    background: #F5F5B7;
}
.trend_bg_3{
    background: #DBEEFB;
}
.single_trend_pro .trend_img>img{
    transition: .3s;
}
.single_trend_pro:hover .trend_img>img{
    transform: scale(1.1);
}

/* ------------------trends detail--------------- */

.trends_img{
    margin: 30px 50px;
    text-align: center;
    position: relative;
}
.trends_img::before{
    content: '';
    height: 100%;
    width: 100%;
    background-color: #FFE1D5;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: scale(1.1) rotate(0deg);
    transition: .3s;
    border-radius: 5px;
}
.single_trends:hover .trends_img::before{
    transform: scale(1.1) rotate(8deg);
    background-color: var(--themeOrange);
}
.single_trends .trends_img>img{
    transition: .3s;
    border: 7px transparent solid;
}
.single_trends:hover .trends_img>img{
    transform: rotate(-8deg) scale(1.1);
    border-color: white;
}

/* --------------------------Customize------------------------- */

.customize .sec_title h1{
    font-family: var(--fontDown);
    font-size: 32px;
    font-weight: bold;
    width: 87%;
    margin: 0 auto;
}
.customize_small_img{
    display: grid;
    grid-template-columns: repeat(7,1fr);
    padding: 70px 0;
}
.customize_wave_line{
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
}
.single_small{
    overflow: hidden;
    border-radius: 50px;
    height: 92px;
    width: 272px;
    border: 7px solid #FFF;
    position: relative;
    /* display: inline-block; */
}
.single_small img{
    border-radius: 50px;
}
.single_small:nth-child(2){
    transform: rotate(20deg) translateX(-40px);
    z-index: 1;
}
.single_small:nth-child(3){
    transform: translate(-69px,69px);
    z-index: 1;
}
.single_small:nth-child(4){
    transform: rotate(-15deg) translate(-172px,-68px);
    z-index: 1;
}
.single_small:nth-child(5){
    transform: rotate(10deg) translate(-248px,83px);
    z-index: 1;
}
.single_small:nth-child(6){
    transform: rotate(5deg) translate(-300px,9px);
    z-index: 1;
}
.single_small:nth-child(7){
    transform: rotate(5deg) translate(-320px,97px);
    z-index: 1;
}
.personalize_img{
    border-radius: 300px 300px 5px 5px;
    border: 10px solid #FFF;
    box-shadow: 44px 56px 87px 0px #FFE1DD;

}

/* ---------------------Contact Us-------------------------- */

.call_icon{
    height: 40px;
    width: 40px;
    background-color: #000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.contact_form input, .contact_form textarea{
    background-color: transparent;
    border: 0.5px solid #555;
    border-radius: 0;
    padding: 25px;
    resize: none;
    &:focus{
        border-color: initial;
        box-shadow: none;
        background-color: transparent;
    }
}
.contact-btn{
    padding: 14px 50px;
    font-weight: 500;
    font-size: 18px;
}
.close_note{
    padding: 15px;
    background: var(--2, linear-gradient(64deg, rgba(232, 106, 86,0.3), rgba(255, 126, 46,0.3)));
    width: 80%;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
}
.location_icon{
    height: 40px;
    width: 40px;
    margin: 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: var(--themeOrange);
    border-radius: 50%;
    font-size: 20px;
}
.all_map_location{
    background-image: url('../image/contact_map.png');
    height: 700px;
    background-size: cover;
}
.location{
    position: absolute;
}
.location-1{
    top: 0;
    left: 12%;
}
.location-2{
    top: -70px;
    left: 30%;
}
.location-3{
    top: 0px;
    right: 7%;
}
.location-4{
    top: 210px;
    left: 12%;
}
.location-5{
    top: 100px;
    left: 41%;
}
.location-6{
    top: 208px;
    right: 11%;
}
.location-7{
    bottom: 230px;
    left: 19%;
}
.location-8{
    bottom: 300px;
    left: 50%;
}
.location-9{
    bottom: 0px;
    left: 17%;
}
.location-10{
    bottom: 120px;
    left: 44%;
}
.location-11{
    bottom:148px;
    right: 5%;
}