/* ============================:: common css start ::=========================*/

:root{
    --white: #ffffff;
    --black: #000000;
    --text: #D8D7D8;
    --pcolor: #777;
    --primary-color: #212529;
    --secondary-color: #ca0000;
    --secondary-color2: #ca000040;
    /* --title-color: #212529; */
    --bg-color: #f9f9f9;
    --bg-black: #181818;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html{
    scroll-behavior: smooth;
    font-family: Gotham-Regular;
}

body{
    font-size: 16px;
    font-family: Gotham-Regular;
    scroll-behavior: smooth;
}

@font-face {
    font-family: Expansiva-Regular;
    src: url('../font/Expansiva.otf');
}
@font-face {
    font-family: Expansiva-Bold;
    src: url('../font/Expansiva\ bold.otf');
}
@font-face {
    font-family: Expansiva-italic;
    src: url('../font/Expansiva\ italic.otf');
}
@font-face {
    font-family: Expansiva-bold-italic;
    src: url('../font/Expansiva\ bold\ italic.otf');
}
@font-face {
    font-family: Gotham-Regular;
    src: url('../font/GothamBook.ttf');
}
@font-face {
    font-family: Gotham-Bold;
    src: url('../font/GothamBold.ttf');
}
@font-face {
    font-family: Gotham-Medium;
    src: url('../font/GothamMedium.ttf');
}
@font-face {
    font-family: Gotham-Light;
    src: url('../font/GothamLight.ttf');
}
@font-face {
    font-family: Gotham-italic;
    src: url('../font/GothamBookItalic.ttf');
}


.pl-0 {padding-left: 0;}
.pr-0 {padding-right: 0;}
a {text-decoration: none !important;}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.wrap_padding{padding: 80px 0;}
.mt-10{margin-top: 10rem;}
.mb-10{margin-bottom: 10rem;}
.form-control:focus,
.btn-close:focus{
    border-color: var(--primary-color);
    outline: 0;
    /* box-shadow: 0 0 0 0.25rem rgb(190 143 45 / 25%); */
    box-shadow: none;
}

/* scrollbar styling */
/* width */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    /* display: none; */
  }
  
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--secondary-color); 
    border-radius: 10px;
}

/* scroll to top styling */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 10px;
    display: none;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary-color);
    z-index: 99;
}
.back-to-top:hover{
    color: var(--primary-color);
    background: transparent;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus,.form-select:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: none;
    /* box-shadow: 0 0 0 0.25rem rgb(85 45 132 / 25%); */
}

.navbar-toggler:focus{
    box-shadow: none !important;
}

/* Text Selection Color */
::selection {
    color: #fff;
    background: var(--secondary-color);
}

/* ============================:: common css end ::=========================*/


/* ============================:: Header/Navbar styling start ::=========================*/
.chirmi-head{
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: var(--black);
}

.navbar-toggler{
    color: var(--white);
    border: 1px solid var(--white);
}

.nav-brand{
    display: flex;
    width: 20%;
    margin: auto;
    height: 34px;
    color: var(--white);
    flex-direction: column;
    justify-content: center;
    margin-bottom: 15px;
}

.nav-brand:hover .chirmi-logo1,
.chirmi-logo2{
    display: none;
}

.nav-brand:hover .chirmi-logo2{
    display: block;
}

.navbar .navbar-nav .nav-item .nav-link{
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .2em;
    color: var(--white);
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 10px;
    gap: 5px;
}

.navbar .navbar-nav .nav-item .nav-link:hover,
.navScrolled.lsheader .navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link.active,
.navScrolled.lsheader .navbar .navbar-nav .nav-item .nav-link.active{
    color: var(--secondary-color);
}

.lsheader:after {
    content: '';
    position: absolute;
    display: block;
    bottom: 0;
    width: 100vw;
    height: 1px;
    background: var(--white);
    opacity: .1;
    -webkit-transition: background .8s;
    transition: background .8s;
    -webkit-transition-timing-function: cubic-bezier(.25,.1,.25,1);
    transition-timing-function: cubic-bezier(.25,.1,.25,1);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.sidenavOffcanvas{
    background-color: var(--bg-black);
}

.sidenavOffcanvas .offcanvas-head{
    width: 20%;
}

.sidenavOffcanvas .offcanvas-header{
    border-bottom: 1px solid #dee2e6;
}

.collapsible{
    border-bottom: 1px solid #d9d9d9;
    overflow: hidden;
}

.collapsible-btn{
    display: block;
    position: relative;
    width: 100%;
    padding: 20px 0;
    text-align: left;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .2em;
    color: var(--white);
}

.collapsible-btn:hover{
    color: var(--white);
}

.collapsible-icon{
    position: absolute;
    right: 0;
    top: calc(50% - 5.5px);
    width: 11px;
    height: 11px;
}

.collapsible-inr{
    display: block;
    padding: 13px 0;
    color: #ffffff80;
    margin-left: 16px;
}

.collapsible-inr:hover{
    color: #ffffff80;
}

.collapse{
    border-bottom: none;
} 

.collapse .collapsible{
    border-bottom: none;
}

.hireBtn{
    color: var(--white) !important;
    background-color: var(--primary-color);
}

/* == scroll to top Progress == */

.progress-wrap {
	position: fixed;
	right: 40px;
	bottom: 115px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset  0 0 0 2px rgba(255,255,255,0.2);
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
	position: absolute;
	font-family: 'bootstrap-icons';
	content: '\F148';
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	color: var(--secondary-color);
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: .6;
}
.progress-wrap::before {
	position: absolute;
	font-family: 'bootstrap-icons';
	content: '\F148';
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	opacity: 0;
	background-image: linear-gradient(298deg, var(--secondary-color), var(--yellow));
	-webkit-background-clip: text;
    background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path { 
	fill: none; 
}
.progress-wrap svg.progress-circle path {
	stroke: var(--secondary-color);
	stroke-width: 4;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/* == scroll to top Progress == */

.chirmi-switch{
    display: flex;
    align-items: center;
    gap: 20px;
    width: 20%;
}

.chirmi-icon{
    position: relative;
    width: 24px;
}

.chirmi-icon .badge{
    position: absolute;
    top: -8px;
    right: -12px;
    width: 18px;
    height: 18px;
    font-size: 8px;
    color: var(--white);
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chirmi-toggle-switch{
    display: flex;
    font-size: 14px;
    gap: 8px;
    color: var(--white);
    align-items: center;
    text-transform: uppercase;
}


/* The switch - the box around the slider */
.switch {
    font-size: 17px;
    position: relative;
    display: inline-block;
    width: 3em;
    height: 1.4em;
}
   
/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
   
/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #545454;
    transition: .4s;
    border-radius: 30px;
    border: 1px solid var(--white);
}
   
.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    border-radius: 20px;
    left: 2px;
    top: 2px;
    background-color: white;
    transition: .4s;
}
   
input:checked + .slider:before {
    transform: translateX(1.6em);
}

.chirmi-user-links{
    width: 20%;
    display: flex;
    justify-content: end;
}

.chirmi-user-links .chirmi-icon{
    width: 24px;
}

.chirmi-user-links .chirmi-icon:not(:last-child){
    margin-right: 16px;
}

.main-nav .mega-drop .mega-drop-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    /* margin-top: 15px; */
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
    transform-origin: 0 0 0;
    transition: all 0.5s ease 0s;
    z-index: 99999;
    background: var(--white);
    padding: 8px 0;
    border-radius: 4px;
    min-width: 200px;
    box-shadow: 0 6px 20px rgb(0 0 0 / 15%);
    display: flex;
    justify-content: center;
    gap: 50px;
}

.main-nav .mega-drop:hover > .mega-drop-content {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    /* margin-top: 0; */
}

.mega-drop-content .mega-list-items .mega-list-link{
    display: block;
    font-weight: 600;
    color: var(--black);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.mega-drop-content .mega-list-items .mega-list-link:hover,
.mega-drop-content .mega-list-items .mega-list-link.active{
    color: var(--secondary-color);
}



/* ============================:: Header/Navbar styling end ::=========================*/


/* ============================:: home styling start ::=========================*/
.home-area{
    position: relative;
}

.homeVideo{
    width: 100%;
}

.homeCarousel{
    width: 100%;
    height: 100vh;
    float: right;
    position: relative;
}

.homeSlideritem_frame{
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    height: 100vh;
    width: 100%;
}

.homeCover_overlay{
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    background-color: #0000009c;
    width: 100%;
    height: 100%;
}

.homeMain-info{
    color: var(--white);
}

.main-nav .drop-down ul {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 15px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    /* transform: scaleY(0); */
    /* transform-origin: 0 0 0; */
    transition: all 0.5s ease 0s;
    z-index: 99999;
    background: var(--white);
    padding: 8px 0;
    border-radius: 4px;
    min-width: 200px;
    box-shadow: 0 6px 20px rgb(0 0 0 / 15%);
}

.main-nav .drop-down ul a {
    padding: 7px 25px;
    font-size: 15px;
    color: var(--dark-blue);
    display: flex;
    text-transform: capitalize;
    position: relative;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    white-space: nowrap;
}

.main-nav .drop-down ul a:hover{
    color: var(--secondary-color);
    padding-left: 35px;
    font-family: Montserrat-Medium;
}

.main-nav .drop-down ul a::before{
    content: '\F138';
    font-family: bootstrap-icons;
    position: absolute;
    left: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    /* width: 8px;
    height: 8px; */
    -webkit-transition: 0.6s;
    transition: 0.6s;
    /* background-color: var(--secondary-color); */
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;

}

.main-nav .drop-down ul a:hover::before{
    opacity: 1;
    visibility: visible;
}

.main-nav .drop-down:hover > ul {
    opacity: 1;
    visibility: visible;
    /* transform: scaleY(1); */
    margin-top: 0;
}

.main-nav .drop-down a i{
    color: var(--white);
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.main-nav .drop-down:hover a i{
    transform: rotate(-180deg);
}

.home-slider,.slide-inner{
    position: relative;
    height: 90vh;
}
.swiper-img{
    height: inherit;
}

.swiper-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mySwiper .swiper-pagination-progressbar{
    top: unset !important;
    bottom: 10.3%;
    width: 20% !important;
    text-align: center;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.mySwiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    background: var(--swiper-pagination-color,var(--secondary-color)) !important;
}

.mySwiper .swiper-button-next:after, .mySwiper .swiper-button-prev:after {
    font-family: bootstrap-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none!important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

.mySwiper .swiper-button-next:after, .mySwiper .swiper-rtl .swiper-button-prev:after {
    content: '\F138';
}

.mySwiper .swiper-button-prev:after, .mySwiper .swiper-rtl .swiper-button-next:after {
    content: '\F12F';
}

.mySwiper .swiper-button-next, .mySwiper .swiper-button-prev{
    width: unset !important;
    height: unset !important;
    margin-top: unset !important;
    color: var(--white) !important;
    top: var(--swiper-navigation-top-offset,86%) !important;
}

.mySwiper .swiper-button-prev, .mySwiper .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset,35%) !important;
    right: auto;
}

.mySwiper .swiper-button-next, .mySwiper .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset,35%) !important;
    left: auto;
}

.swiper-content{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    z-index: 99;
}

.swiper-inner-content{
    text-align: center;
}

.swiper-main{
    margin-bottom: 80px;
}

.swiperHome-title{
    font-size: 42px;
    color: var(--white);
    text-transform: uppercase;
    font-family: Expansiva-Bold;
}

.swiperHome-subtitle{
    font-size: 30px;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-family: Expansiva-Bold;
}

.swiper-btn{
    display: inline-block;
    font-size: 14px;
    padding: 0 22px;
    border-radius: 40px;
    color: var(--white);
    text-transform: uppercase;
    border: 2px solid var(--white);
    background-color: rgba(255, 255, 255, 0.3);
    font-family: Gotham-Light;
    letter-spacing: 2px;
}

.has-mask-fill{
    color: var(--black);
    font-size: calc(1rem + 4.15vw);
    text-transform: capitalize;
    font-family: Gotham-Medium;
}

.has-mask-info-fill{
    font-size: 18px;
    color: #444;
}

.chrmi-product-inner{
    display: flex;
    flex-wrap: wrap;
    padding: 50px 0px 0px 100px;
}

.chrmi-product-inner main{
    float: left;
    text-align: center;
    padding-top: 100px;
    padding-right: 100px;
}

.chrmi-product-inner .half{
    width: 50%;
}

.half-product{
    text-align: center;
}

.half-product-img{
    height: 40vw;
    margin-bottom: 10px;
    clip-path: inset(0 0 0 0);
    overflow: hidden;
    background-color: #EDEDED;
    transition: clip-path 0.8s cubic-bezier(0.07, 0.72, 0.29, 0.96);

}

.half-product-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s cubic-bezier(.165,.84,.44,1);
}

.half-product-title{
    font-size: 28px;
    letter-spacing: .5px;
    margin: 22px 0;
    text-transform: uppercase;
}

.half-product-btn{
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    min-width: 130px;
    padding: 16px 25px;
    color: var(--black);
    border: 1px solid var(--black);
    border-radius: 40px;
    font-weight: 600;
    font-family: Gotham-Light;
    text-transform: uppercase;
    background-image: linear-gradient(to right, var(--secondary-color) 0%, var(--secondary-color) 50%, transparent 50%, transparent 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
    overflow: hidden;
    will-change: color,border-color,background-position;
    transition: color .25s,border-color .25s,background-position .25s;
}

.half-product-btn:hover{
    color: var(--white);
    border: 1px solid var(--secondary-color);
    background-position: 0 0;
}

.half-product:hover .half-product-img{
    clip-path: inset(3% 3% 3% 3%);
}

.half-product:hover .half-product-img img{
    transform: scale(1.09);
}

.productInner-img{
    position: relative;
    display: flex;
    height: 30vw;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background-color: #EDEDED;
    overflow: hidden;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;

}
.productInner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .6s ease-in-out;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
}
.swiper-productInner a:hover .productInner-img img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.product-list-wrap{
    margin-top: 4rem;
}
.productInner-title{
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--black);
    margin-bottom: 4px;
    text-transform: uppercase;
    font-family: Gotham-Bold;
}

.productInner-clr{
    font-size: 16px;
    color: var(--black);
    margin-bottom: 4px;
    letter-spacing: 2px;
    font-family: Gotham-Light;
    text-transform: capitalize;
}

.productInner-amnt{
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: 2px;
    font-family: Gotham-Light;
    text-transform: uppercase;
}

.productInner-btn{
    position: relative;
    color: var(--black);
    text-transform: capitalize;
}

.productInner-btn:after{
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -3px;
    left: 0;
    background-color: var(--black);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.productInner-btn:hover:after{
    transform: scaleX(1);
    transform-origin: bottom left;
}

.product-listSwiper .swiper-pagination-progressbar,.product-listSwiper .swiper-scrollbar-horizontal{
    top: unset !important;
    bottom: 0;
    width: 50% !important;
    text-align: center;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.product-listSwiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill,.product-listSwiper .swiper-scrollbar-drag{
    background: var(--swiper-pagination-color,var(--secondary-color)) !important;
}

.product-listSwiper .swiper-wrapper{
    margin-bottom: 50px;
}

.chirmi-banner{
    background-color: #131313;
}

.chirmi-banner-title{
    font-size: 26px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-family: Expansiva-Regular;
}

.chirmi-banner-subtitle{
    display: block;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 8rem;
    text-transform: uppercase;
    font-family: Gotham-italic;
}

.chirmi-banner-inner{
    padding-top: 80px;
}

.chirmi-banner-img{
    height: 38vw;
}

.chirmi-banner-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.chirmi-banner-pdetail .productInner-title,
.chirmi-banner-pdetail .productInner-clr,
.chirmi-banner-pdetail .productInner-amnt,
.chirmi-banner-pdetail .productInner-btn{
    color: var(--white);
}
.chirmi-banner-pdetail .productInner-btn:after{
    background-color: var(--white);
}

.chirmi-footer{
    padding: 30px 0;
    background-color: #181818;
}

.footer-logo .nav-brand{
    width: 60%;
    margin: 0px 0px 40px;
}

.footer-link{
    font-size: 14px;
    position: relative;
    color: var(--white);
    text-transform: capitalize;
}

.footer-link:after{
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -3px;
    left: 0;
    background-color: var(--white);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.footer-link:hover:after{
    transform: scaleX(1);
    transform-origin: bottom left;
}

.footer-ulist .footer-linkItems:not(:last-child){
    margin-bottom: 15px;
}

.footer-bottom-title {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 40px;
    font-family: Gotham-Bold;
    text-transform: uppercase;
}

.footer-top-wrap{
    margin-bottom: 30px;
}

.chirmi-payment,
.chirmi-social{
    display: flex;
    gap: 20px;
    color: var(--black);
    align-items: center;
}

.chirmi-social {
    justify-content: center;
}

.chirmi-payment-items{
    font-size: 14px;
}


.chirmi_socialIcon_link{
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 50%;
    color: var(--secondary-color);
    outline: 1px solid var(--secondary-color);
    transition-property: outline-offset, outline-color, background-color;
    transition-duration: .25s;
}

.chirmi_socialIcon_link:hover {
    outline-offset: 4px;
    outline: 1px solid var(--secondary-color);
    background-color: var(--secondary-color2);
}

.chirmi_socialIcon_link:hover i {
    animation: shake .25s;
}

@keyframes shake{
    10%{transform: rotate(15deg);}
    20%{transform: rotate(-15deg);}
    30%{transform: rotate(15deg);}
    40%{transform: rotate(-15deg);}
}

.footer-bottom-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.developer_area{
    color: #ababab;
}

.developer_area a{
    color: var(--secondary-color);
}

.opus-area{
    height: 60vh;
    display: flex;
    align-items: center;
}

.opus-title{
    font-size: 32px;
    color: var(--white);
    font-family: Expansiva-Bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.opus-text{
    padding: 40px 0;
}

.opus-text-info{
    font-size: 18px;
    margin: 0;
    color: var(--black);
    text-transform: uppercase;
}

.opus-product{
    padding-bottom: 4rem;
}
.mobNavbar-nav{
    display: none;
}

.search-products-view__header{
    position: sticky;
    top: 6rem;
    z-index: 2;
    padding-top: 30px;
    background-color: var(--white);
}

.search-products-sections-bar{
    display: flex;
    justify-content: flex-start;
    -ms-overflow-style: none;
    overflow-x: auto;
    scrollbar-width: none;
}
.search-products-sections-bar .search-products-sections-bar__items:not(:last-child){
    margin-right: 24px;
}
.search-products-sections-bar .search-products-sections-bar__items a{
    position: relative;
    font-size: 14px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 300;
    display: block;
    line-height: 30px;
}
.search-products-sections-bar .search-products-sections-bar__items a.active{
    font-weight: 900;
}
.search-products-sections-bar .search-products-sections-bar__items a.active::after{
    position: absolute;
    width: 6px;
    height: 2px;
    content: '';
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--black);
}
.search-products-searchBox{
    padding: 20px 0;
}
.search-products-form__search-form .form-control{
    border: none;
    border-radius: 0;
    padding: 0.8rem 0;
    font-size: 14px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--black);
}
.search-products-form__suggestions-title{
    font-size: 14px;
    text-transform: uppercase;
    padding: 20px 0;
    letter-spacing: 0.8px;
    font-weight: 800;
}
.search-products-form__suggestions-list{
    display: flex;
    font-size: 12px;
    align-items: center;
    text-transform: uppercase;
}
.search-products-form__suggestions-list .search-products-form__suggestions-listItems:not(:last-child){
    margin-right: 12px;
}

.search-products-recent{
    margin-top: 20px;   
}
.search-products-recent__title-wrapper{
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.search-products-recent__title{
    margin: 0;
    font-size: 12px;
    color: var(--black);
    letter-spacing: 0.8px;
    font-weight: 900;
    text-transform: uppercase;
}
.search-products-recent__clear{
    font-size: 12px;
    color: var(--black);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background-color: transparent;
    border: none;
}
.search-products-recent__list{
    display: flex;
    gap: 8px;
    -ms-overflow-style: none;
    overflow-x: scroll;
    scrollbar-width: none;
}
.search-products-tile{
    display: flex;
    align-items: center;
    white-space: nowrap;
    border: 1px solid var(--black);
}
.search-products-tile__main-btn{
    font-size: 12px;
    color: var(--black);
    text-transform: uppercase;
    padding: 4px 7px 4px 12px;
    letter-spacing: 0.8px;
    border: none;
    background: transparent;
}
.search-products-tile__delete-item-btn{
    font-size: 16px;
    color: var(--black);
    padding: 4px 12px 4px 0;
    border: none;
    background: transparent;
}
.search-products-recommendations,.search-products-recommendations__product{
    margin-top: 50px;
}
.search-products-recommendations__title{
    font-size: 14px;
    color: var(--black);
    letter-spacing: 0.8px;
    font-weight: 900;
    text-transform: uppercase;
}
.newsletter-inner{
    text-align: center;
    padding: 48px 96px;
    background-color: #F6F6F6;
}
.newsletterForm__title{
    font-size: 24px;
    font-family: Gotham-Medium;
}
.input-form{
    width: 50%;
    margin: auto;
    position: relative;
}
.input-form i{
    position: absolute;
    top: 12px;
    right: 20px;
}
.input-form .form-control{
    padding: 0 16px;
    min-height: 46px;
    appearance: none;
    color: var(--black);
    border-radius: 46px;
    border: 1px solid var(--black);
    background-color: transparent;
    -webkit-appearance: none;
}
.newsletterForm__subtitle{
    margin-bottom: 40px;
}
.page-meta-content{
    padding: 40px 0;
    border-bottom: 1px solid #D8D5D2;
}
.page-meta-content-title{
    text-align: center;
    font-size: 28px;
    margin: 0;
    text-transform: capitalize;
    font-family: Gotham-Medium;
}
.filter-bar{
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #D8D5D2;
}
.short-fltr{
    margin: 0 30px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--black);
    text-transform: uppercase;
}
.sort-filter-collapse-content{
    padding: 20px 0;
    border-bottom: 1px solid #D8D5D2;
}
.sort-filter-link{
    display: block;
    padding: 6px 0;
    font-size: 14px;
    text-align: center;
    color: var(--black);
    text-transform: uppercase;
}
.sort-filter-link:hover{
    color: var(--secondary-color);
}
/* .catagory-inner-area{
    margin-top: 3rem;
} */

.addto-cart{
    margin-top: 6.3rem;
    width: 48% !important;
}
.addto-cart .offcanvas-title{
    font-size: 26px;
    color: var(--black);
    text-transform: capitalize;
    font-family: Gotham-Medium;
}
.addto-cart .offcanvas-header{
    border-bottom: 1px solid var(--secondary-color);
}
.addto-cart .offcanvas-header,.addto-cart .offcanvas-body{
    padding: 1rem 2rem;
}
.cart-items-info{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.count-items{
    margin: 0;
    font-size: 14px;
    color: var(--black);
}
.total-amnt{
    margin: 0;
    font-size: 14px;
    font-family: Gotham-Medium;
}
.mini-cart__items{
    flex: 1;
    overflow: auto;
    height: 100%;
}
.mini-cart__items-list{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    overflow-x: auto;
}
.mini-cart-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-bottom: 40px;
}
.mini-cart-item__image{
    padding-top: 4px;
    flex: 0 1 120px;
}
.mini-cart-item__image a{
    width: 100%;
    height: 10vw;
    display: inline-block;
    background-color: #EDEDED;
}
.mini-cart-item__image a img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.mini-cart__content{
    display: flex;
    margin-top: 20px;
    flex-direction: column;
    height: calc(100vh - 20rem);
}
.mini-cart-item__info{
    flex: 1;
    padding: 0 30px;
    font-size: 16px;
    position: relative;
    letter-spacing: .5px;
    font-family: Gotham-Medium;
}
.mini-cart-item__name,.mini-cart-item__price,.mini-cart-item__color{
    margin-bottom: 6px;
}
.mini-cart-item__name{
    width: 90%;
}
.quantity-inner{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 12px 0;
}
.quantity-label{
    width: auto;
    font-weight: 600;
    margin: 0 8px 0 0;
    display: inline-flex;
}
.quantity-inner .quantity-count{
    order: 2;
    margin: 0 8px;
    width: 20px;
    display: flex;
    justify-content: center;
}
.quantity-inner .decrease{
    order: 1;
}
.quantity-inner .increase{
    order: 3;
    color: var(--secondary-color);
}

.quantity-inner .decrease,.quantity-inner .increase{
    border: none;
    line-height: 1;
    font-size: 24px;
    background-color: transparent;
}
.mini-cart-item__remove{
    position: absolute;
    top: 0;
    right: 10px;
    cursor: pointer;
}
.mini-cart__proceed{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 5rem;
    background-color: var(--white);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fancy {
    background-color: transparent;
    border: 2px solid #000;
    border-radius: 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 1.25em 2em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease-in-out;
    user-select: none;
    font-size: 13px;
}
   
.fancy::before {
    content: " ";
    width: 1.5625rem;
    height: 2px;
    background: black;
    top: 50%;
    left: 1.5em;
    position: absolute;
    transform: translateY(-50%);
    transform-origin: center;
    transition: background 0.3s linear, width 0.3s linear;
}
   
.fancy .text {
    font-size: 1.125em;
    line-height: 1.33333em;
    padding-left: 2em;
    display: block;
    text-align: left;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    text-decoration: none;
    color: black;
}
   
.fancy .top-key {
    height: 2px;
    width: 1.5625rem;
    top: -2px;
    left: 0.625rem;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, left 0.3s ease-out;
}
   
.fancy .bottom-key-1 {
    height: 2px;
    width: 1.5625rem;
    right: 1.875rem;
    bottom: -2px;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}
   
.fancy .bottom-key-2 {
    height: 2px;
    width: 0.625rem;
    right: 0.625rem;
    bottom: -2px;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}
   
.fancy:hover {
    color: white;
    background: black;
}
   
.fancy:hover::before {
    width: 0.9375rem;
    background: white;
}
   
.fancy:hover .text {
    color: white;
    padding-left: 1.5em;
}
   
.fancy:hover .top-key {
    left: -2px;
    width: 0px;
}
   
.fancy:hover .bottom-key-1,
.fancy:hover .bottom-key-2 {
    right: 0;
    width: 0;
}
.wishlist-title{
    text-align: center;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding-bottom: 4rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid #D8D5D2;
    font-family: Expansiva-bold-italic;
}
.opus-product-inner{
    position: relative;
}
.opus-product-inner .wishlist-item__remove{
    position: absolute;
    top: -12px;
    right: -12px;
    background-color: var(--white);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    border-radius: 50%;
    -webkit-box-shadow: 0 2px 24px 0 rgb(0 0 0 / 30%);
    box-shadow: 0 2px 24px 0 rgb(0 0 0 / 30%);

}
.opus-product-inner .wishlist-item__remove img{
    width: 16px;
}


.retailDetail-product-detail{
    position: relative;
    padding: 20px 0;
    border: 1px solid #D8D5D2;
}

.retailDetail-product-tab{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.retailDetail-product-tab .nav-tabs{
    border-bottom: none;
}

.retailDetail-product-tab .nav-tabs li:not(:last-child){
    margin-right: 22px;
}

.retailDetail-product-tabimg img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.retailDetail-product-tab .nav-tabs li a{
    display: flex;
    width: 80px;
    height: 80px;
    padding: 12px;
    margin: auto;
    justify-content: center;
    background-color: #EDEDED;
}

.retailDetail-product-tabcontentimg{
    position: relative;
    display: flex;
    /* padding: 50px; */
    height: 35vw;
    cursor: crosshair;
    align-items: center;
    justify-content: center;
    background-color: #EDEDED;
}

.retailDetail-product-tabcontentimg img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.retailDetail-product-tab .nav-tabs li a.active{
    outline: 1px solid #000;
}

/* .retailDetail-product-brand{
    font-size: 20px;
    display: block;
    margin-bottom: 6px;
    text-transform: uppercase;
} */

.retailDetail-product-title{
    font-size: 26px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.retailDetail-product-price{
    font-size: 23.8px;
}


.retailDetail-btn {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    padding: 0.7em 2em;
    border: 3px solid var(--secondary-color) ;
    border-radius: 2px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
    color: var(--secondary-color) ;
    text-decoration: none;
    transition: 0.3s ease all;
}
   
.retailDetail-btn:before {
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: '';
    background-color: var(--secondary-color);
    z-index: -1;
}
   
.retailDetail-btn:hover, .retailDetail-btn:focus {
    color: white;
}
   
.retailDetail-btn:hover:before, .retailDetail-btn:focus:before {
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
}  
.retailDetail-btn:active {
    transform: scale(0.9);
}
.product-similarProduct{
    margin-top: 10rem;
}
.similarProduct-title{
    font-size: 20px;
    letter-spacing: 4px;
    word-spacing: 8px;
    margin-bottom: 3rem;
    text-align: center;
    font-family: Expansiva-bold-italic;
}
.retailDetail-product-title,.retailDetail-product-price{
    padding: 0 20px;
}
.retailDetail-product-detail .accordion-button{
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}
.retailDetail-product-detail .accordion-button:focus{
    border-color: unset;
    box-shadow: unset;
}
.retailDetail-product-detail .accordion-button:not(.collapsed){
    color: unset;
    background-color: #f6f5f4;
}
.retailDetail-product-detail .accordion-button:not(.collapsed)::after{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ca0000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.retailDetail-product-detail .accordion-body{
    font-size: 14px;
}
.retailDetail-product-detail .accordion-flush .accordion-item:last-child{
    border-bottom: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.swatch{
    display: flex;
    flex-wrap: wrap;
}
.product-quantity,.swatch,.product-cartWrap{
    margin: 8px 20px;
}
.swatch-head{
    width: 100%;
    margin-bottom: 10px;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}
.swatch-element{
    width: 45px;
    height: 32px;
    border-radius: 4px;
    position: relative;
    margin-bottom: 10px;
    margin-right: 10px;
    box-shadow: 0 0 3px #0003;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
.swatch-element.active{
    border: 2px solid var(--secondary-color);
}
.swatch-element .swatch-tooltip{
    position: absolute;
    background-color: #fff;
    bottom: 50px;
    width: 150px;
    box-shadow: 0 0 2px #0003;
    text-align: center;
    font-weight: 500;
    left: -45px;
    pointer-events: none;
}
.swatch-element:hover .swatch-tooltip{
    opacity: 1;
}
.bg_black{
    background-color: #000;
}
.bg_red{
    background-color: red;
}
.bg_blue{
    background-color: blue;
}
.product-quantity .form-label{
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}

.product-quantity .form-control{
    border-radius: 0;
    width: 34%;
    border: 1px solid #D8D5D2;
}
.product-cartWrap{
    display: flex;
    margin-top: 2rem;
    align-items: center;
}
.retailDetail-product-img{
    position: sticky;
    top: 10.4rem;
}
.ec-Addwishlist{
    border: 1px solid #D8D5D2;
    padding: 8px 12px;
    color: var(--pcolor);
    background: transparent;
    margin-left: 16px;
}
.product-description{
    margin-top: 40px;
}
.info-page-title{
    font-size: 20px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-weight: 600;
}
.info-page-info-title{
    font-size: 18px;
    font-weight: 800;
    color: var(--black);
}
.info-page-info:not(:last-child){
    margin-bottom: 2rem;
}







.checkout-primary-title{
    font-size: 20px;
    color: #000;
    text-decoration: none;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.checkout-primary-title:hover{
    color: #ca0000;
}

.border-right{
    padding-top: 3rem;
    border-right: 1px solid #d4d4d4;
    padding-right: calc(6rem * .5) !important;
}

.border-left{
    padding-top: 3rem;
    padding-left: calc(6rem * .5) !important;
}

.check-out-info input.form-control:focus,
.check-out-info input.form-check-input:focus,
.check-out-info select.form-select:focus,
.check-out-info textarea.form-control:focus{
    border-color: #000;
    box-shadow: unset;
}

.checkout-wrapper .form-check-input:checked {
    background-color: #000;
    border-color: #000;
}

.checkout-main .form-check{
    margin-top: 12px;
    margin-bottom: 40px;
}

.chackout-nxt{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chackout-nxt a{
    display: flex;
    gap: 10px;
    color: #88898c;
    text-decoration: none;
    align-items: center;
}

.chackout-nxt a:hover,
.check-out-logo:hover{
    color: #ca0000;
}

.chackout-nxt-btn {
    position: relative;
    display: inline-block;
    padding: 10px 18px;
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #ca0000;
    background: transparent;
    cursor: pointer;
    transition: ease-out 0.5s;
    border: 2px solid #ca0000;
    border-radius: 10px;
    box-shadow: inset 0 0 0 0 #ca0000;
}
  
.chackout-nxt-btn:hover {
    color: white !important;
    box-shadow: inset 0 -100px 0 0 #ca0000;
}
  
.chackout-nxt-btn:active {
    transform: scale(0.9);
}



.check-out-prdt-detail{
    display: flex;
    align-items: center;
    gap: 20px;
}

.prdt-detail-image-check-out{
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 4px;
    border: 1px solid #d4d4d4;
}

.prdt-detail-image-check-out img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.prdt-detail-info{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
.check-out-prdt-divider{
    width: 100%;
    height: 1px;
    background-color: #d4d4d4;
    margin: 20px 0;
}

.mycart_paymentDetails{
    margin: 0;
    padding: 0;
}

.mycart_paymentDetails li:not(:last-child){
    margin-bottom: 10px;
}

.retailDetail-product-detail{
    position: relative;
}

.order-sum{
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
    background-color: #f6f6f6;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    text-decoration: none;
}

.order-sum-text{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #767676;
}

.order-sum span{
    font-size: 20px;
    color: #000;
}

.checkout-shipping{
    border: 1px solid #eaeaec;
    margin-bottom: 40px;
    vertical-align: top;
    border-radius: 4px;
    position: relative;
    padding: 20px;
    box-shadow: 0 0 4px rgb(40 44 63 / 20%);
}

.addressBlocksSelectCheck{
    position: absolute;
    top: 20px;
    left: 18px;
}

.addressDetailsDesktopAddressTitle{
    display: flex;
}

.addressDetailsName{
    font-size: 18px;
    color: #282c3f;
    text-transform: capitalize;
    word-break: break-all;
}

.addressDetailsAddressField{
    margin-top: 12px;
    font-size: 16px;
}

.addressBlocksInnerContentBlock{
    font-size: 14px;
}

.addressDetailsMobile{
    margin: 16px 0;
    font-size: 16px;
}

.addressBlocksBtns{
    display: flex;
}

.addressBlocksEditremove{
    padding: 3px 10px;
    font-size: 14px;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    transition: all .4s;
    text-transform: uppercase;
    margin-right: 6px;
}
.thankyou-area{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.thank-anim{
    width: 30%;
    margin: auto;
}
.user-profile_nav{
    position: sticky;
    top: 110px;
}
.user-profile_logo{
    padding: 20px 0 34px 0px;
    border-bottom: 1px solid var(--secondary-color);
}
.user-profile_userMenu{
    margin-top: 2rem;
}
.profile_logo{
    width: 50%;
    margin: auto;
}
.user-profile_nav,.user-profile_userContent{
    padding: 20px;
    background-color: var(--white);
    width: 100%;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
    -webkit-box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
}
.user-profile_userMenu .nav-tabs{
    display: block;
    border-bottom: none;
    margin-bottom: 30px;
}
.user-profile_userMenu .nav-tabs li a{
    display: block;
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 10px;
    color: var(--black);
    text-transform: capitalize;
}
.user-profile_userMenu .nav-tabs li a.active{
    color: var(--primary-color);
    background-color: #CACFD2;
}
.user-profile_userContent{
    padding: 40px;
    height: 100%;
}
.user-profile_innerHeader{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--secondary-color);
}
.user-profile_infoLabel{
    font-size: 24px;
    color: var(--black);
    margin: 0;
    text-transform: capitalize;
    font-family: Gotham-Medium;
}
.profile_editBtn {
    border: 2px solid var(--white);
    display: inline-block;
    font-size: 16px;
    letter-spacing: 2px;
    border-radius: 18px;
    color: var(--white);
    padding: 4px 14px;
    text-transform: uppercase;
    transition: all .3s;
    font-weight: 700;
    background-color: #545454;
    box-shadow: 0px 3px 6px #00000029;
}
.profile_editBtn:hover {
    color: var(--secondary-color);
}
.user-profile_userContent-inner .table td,.user-profile_userContent-inner .table th{
    width: 50%;
    height: 50px;
    margin: 10px;
    padding: 0 4px;
    font-size: 16px;
    border-bottom-width: 0;
    text-transform: capitalize;
    vertical-align: baseline;
}
.user-profile_areaBg{
    height: 40vh;
}
.user-profile_innerArea{
    position: relative;
    top: -60px;
}
.profile-detail_modal .modal-content{
    border: 0;
    border-radius: 22px;
    background-color: var(--black);
}

.profile-detail_modal .modal-title {
    font-size: 1.2rem;
    text-transform: capitalize;
    color: var(--secondary-color);
    font-family: Gotham-Medium;
    text-transform: uppercase;
}
.profile-detail_modal .modal-footer{
    justify-content: start;
}
.profile-detail_modal .modal-header,.profile-detail_modal .modal-body,.profile-detail_modal .modal-footer{
    border: none;
    padding: 1.8rem 2rem;
}
.profile-detail_modal .modal-body{
    padding: 1.2rem 4rem;
}
.input-block{
    position: relative;
}
.input-block span.placeholder {
    position: absolute;
    display: flex;
    align-items: center;
    top: 8px;
    left: 17px;
    padding: 0 4px;
    transition: all 0.2s;
    transform-origin: 0% 0%;
    background: none;
    pointer-events: none;
    font-size: 15px;
    text-transform: capitalize;
}
.input-block input:valid + span.placeholder,
.input-block input:focus + span.placeholder,
.input-block select:focus + span.placeholder,
.input-block select:valid + span.placeholder,
.input-block textarea:focus + span.placeholder,
.input-block textarea:valid + span.placeholder {
    transform: scale(0.8) translateY(-22px);
    background: var(--white);
    opacity: 1;
}
.input-block input:focus,
.input-block select:focus,
.input-block textarea:focus{
    border-color: var(--secondary-color);
    box-shadow: none;
}
.input-block input:focus + span.placeholder,
.input-block select:focus + span.placeholder,
.input-block textarea:focus + span.placeholder {
    color: var(--secondary-color);
}

.myorder-content .nav-tabs{
    gap: 20px;
    border-bottom: 0;
    margin-bottom: 4rem;
}
.myorder-content .nav-tabs li a{
    color: var(--black);
    text-transform: capitalize;
}
.myorder-content .nav-tabs li a.active{
    font-weight: 800;
    color: var(--secondary-color);
}
.order-card{
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #D5D9D9;
}
.order-card:not(:last-child){
    margin-bottom: 1rem;
}
.box-order-info{
    background-color: #F0F2F2;
    border-bottom: 1px solid #D5D9D9;
}
.box-order-info,.ship-address,.box-order-shipment,.ship-review{
    padding: 14px 18px;
}
.c-spanLabel{
    margin: 0;
    font-size: 12px;
    line-height: 16px;
    color: #565959;
    font-weight: 600;
    text-transform: uppercase;
}
.c-spanValue{
    color: #565959;
    font-size: 14px;
    line-height: 20px;
    text-transform: capitalize;
}
.invoice{
    color: var(--black);
    text-transform: capitalize;
}
.invoice:hover{
    color: var(--secondary-color);
}
.productshort_title{
    font-size: 14px;
    color: var(--black);
    white-space: nowrap;
    width: 230px;
    overflow: hidden;
    line-height: 1;
    margin-bottom: 12px;
    text-overflow: ellipsis;
    font-weight: 700;
}
.productshort_desc {
    font-size: 13px;
    color: var(--pcolor);
    line-height: 1;
    margin-bottom: 8px;
}
.review-btn{
    text-align: end;
}
.review-btn a{
    font-size: 14px;
    padding: 10px 25px;
    border-radius: 30px;
    color: var(--black);
    border: 1px solid #D5D9D9;
    text-transform: capitalize;
}
.c-spanValue-collapse{
    color: var(--secondary-color);
}
.ship-address-title{
    font-size: 16px;
    margin-bottom: 22px;
    font-family: Gotham-Medium;
}
.ship-address{
    border-bottom: 1px solid #D5D9D9;
}
.ship-review{
    border-top: 1px solid #D5D9D9;
}


/* rating star */

#full-stars-example-two{
    margin-bottom: 1rem;
}
#full-stars-example-two .rating-group {
    display: inline-flex;
}
#full-stars-example-two .rating__icon {
    pointer-events: none;
}
#full-stars-example-two .rating__input {
    position: absolute !important;
    left: -9999px !important;
}
#full-stars-example-two .rating__input--none {
    display: none;
}
#full-stars-example-two .rating__label {
    cursor: pointer;
    padding: 0 0.1em;
    font-size: 1.2rem;
}
#full-stars-example-two .rating__icon--star {
    color: orange;
}
#full-stars-example-two .rating__input:checked ~ .rating__label .rating__icon--star {
    color: #ddd;
}
#full-stars-example-two .rating-group:hover .rating__label .rating__icon--star {
    color: orange;
}
#full-stars-example-two .rating__input:hover ~ .rating__label .rating__icon--star {
    color: #ddd;
}
.c-span-status{
    display: flex;
    gap: 10px;
    align-items: end;
    flex-direction: column;
}
.productStatus{
    font-size: 14px;
    line-height: 1;
    color: var(--black);
}
.productStatus > span {
    font-size: 11px;
    margin-right: 6px;
}
.green{
    color: #26a541 !important;
}
.red{
    color: #FF0000 !important;
}
.yellow{
    color: #FFD814 !important;
}
.orange{
    color: #FFA500 !important;
}
.product-track-wrap{
    display: flex;
    align-items: center;
    justify-content: end;
}
.Address-verticalDivider {
    width: 2px;
    height: 13px;
    margin: 0 8px;
    border-left: 1px solid #D5D9D9;
}

/* order tracking */

.line-container {
    display: flex;
    width: 100%;
    margin: 50px 0;
}
.line-container .progress-line {
    position: relative;
    margin: 0 auto;
    border-radius: 10px;
    width: 64%;
    background: grey;
    height: 4px;
    z-index: 1;
    display: flex;
    justify-content: space-between;
}
.line-container .progress-line .progress {
    position: absolute;
    width: 75%;
    height: 100%;
    background: #26a541;
    transition: width 1s ease-in-out;
}
.line-container .status {
    position: relative;
    top: -7px;
}
.line-container .status .dot {
    font-size: 11px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: white;
    border: 5px solid grey;
    cursor: pointer;
}
.line-container .status .dot.completed {
    background: #26a541;
    border: 5px solid #26a541;
}
.topContent {
    position: absolute;
    top: -26px;
    width: max-content;
    color: #26a541;
    font-family: Gotham-Medium;
}
.bottomContent {
    position: absolute;
    top: 26px;
    width: max-content;
}
.line-container .status .dot.completed::after {
    content: '';
    position: absolute;
    top: calc(50% - -2px);
    left: calc(50% - 5px);
    height: 5px;
    width: 10px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform-origin: center;
    transform: rotate(-45deg);
    z-index: 2;
}
.line-container .status .dot.current {
    background: white;
    border: 5px solid #26a541;
}
.line-container .status .dot.cancelled {
    background: #FF0000;
    border: 5px solid #FF0000;
}
.line-container .status .dot.pending {
    background: #FFD814;
    border: 5px solid #FFD814;
}
.modal{
    --bs-modal-zindex: 9999;
}
.info-area{
    height: 50vh !important;
    top: 102px !important;
    background-color: var(--secondary-color) !important;
}
.info-area .btn-close{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}
.info-product-img{
    height: 16vw;
}
.info-product-img img,.info-product-img video{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.info-product__content-title{
    font-size: 18px;
    color: var(--white);
    letter-spacing: .5px;
    margin-bottom: 2rem;
    font-family: Gotham-Medium;
}
.info-product-detaail .productInner-btn{
    color: var(--white);
}
.info-product-detaail .productInner-btn:after{
    background-color: var(--white);
}
.opus-video-wrap video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.coupon-wrap{
    display: flex;
    margin-top: 1rem;
    justify-content: space-between;
}
.coupon-wrap .form-floating{
    width: 80%;
}
.discount-btn{
    display: flex;
    align-items: center;
    border: none;
    padding: 0 16px;
    border-radius: 4px;
    color: var(--white);
    text-transform: capitalize;
    background-color: var(--secondary-color);
}
.subcatagory-area{
    height: 50vh;
}
.subcatagory-filter{
    position: relative;
    /* padding: 20px 0px; */
}
.subcatagory-filter .chirmi-icon{
    width: 100%;
    gap: 14px;
    display: flex;
    color: var(--white);
    align-items: center;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.subcatagory-filter .chirmi-icon a{
    width: 2%;
}
.subcatagory-filter__wrap{
    padding: 16px 0;
}
.subcatagory-filter__content{
    background-color: var(--secondary-color);
}
.subcatagory-filter__content .chirmi-icon a{
    width: 11%;
}
.subcatagory-filter__content-content{
    padding: 16px 0;
    display: flex;
    gap: 30px;
    justify-content: center;
    background-color: #E2E2E2;
}
.subcatagory-filter__content-content .dropdown-center>a{
    color: var(--black);
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
}
.b2b-mail{
    width: 82px;
}
.b2bhome-slider,.b2bhome-slider .slide-inner{
    height: 100vh !important;
}



/* wishlist button start */

.wish-btn {
    position: relative;
    padding: 8px 45px;
    background: #FEC195;
    font-size: 17px;
    font-weight: 500;
    color: #181818;
    border: 1px solid #FEC195;
    border-radius: 8px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, .2));
}
  
.wish-btn:hover {
    border: 1px solid #f3b182;
    background: linear-gradient(85deg, #FEC195, #fcc196, #fabd92, #fac097, #fac39c);
    animation: wind 2s ease-in-out infinite;
}
  
@keyframes wind {
    0% {
      background-position: 0% 50%;
    }
  
    0% {
      background-position: 50% 100%;
    }
  
    0% {
      background-position: 0% 50%;
    }
}
  
.icon-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    transform-origin: 0 0;
    transform: rotate(10deg);
    transition: all .5s ease-in-out;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, .3));
}
  
.wish-btn:hover .icon-1 {
    animation: slay-1 3s cubic-bezier(0.52, 0, 0.58, 1) infinite;
    transform: rotate(10deg);
}
  
@keyframes slay-1 {
    0% {
      transform: rotate(10deg);
    }
  
    50% {
      transform: rotate(-5deg);
    }
  
    100% {
      transform: rotate(10deg);
    }
}
  
.icon-2 {
    position: absolute;
    top: 0;
    left: 25px;
    width: 12px;
    transform-origin: 50% 0;
    transform: rotate(10deg);
    transition: all 1s ease-in-out;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, .5));
}
  
.wish-btn:hover .icon-2 {
    animation: slay-2 3s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
    transform: rotate(0);
}
  
@keyframes slay-2 {
    0% {
      transform: rotate(0deg);
    }
  
    50% {
      transform: rotate(15deg);
    }
  
    100% {
      transform: rotate(0);
    }
}
  
.icon-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    transform-origin: 50% 0;
    transform: rotate(-5deg);
    transition: all 1s ease-in-out;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, .5));
}
  
.wish-btn:hover .icon-3 {
    animation: slay-3 2s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
    transform: rotate(0);
}
  
@keyframes slay-3 {
    0% {
      transform: rotate(0deg);
    }
  
    50% {
      transform: rotate(-5deg);
    }
  
    100% {
      transform: rotate(0);
    }
}

/* wishlist button end */

.productInner-text{
    position: absolute;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding: 4px 8px;
    color: var(--white);
    font-size: 14px;
    font-family: Gotham-italic;
    background-color: var(--secondary-color);
}
.concept-card-img{
    overflow: hidden;
    position: relative;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
    filter: blur(8px);
    -webkit-filter: blur(8px);
    transition: all .3s;
    height: 30vw;
}

.concept-card-img img{
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    transition: all .5s;
}

.concept-card-wrap:hover .concept-card-img{
    -webkit-clip-path: inset(5px 10px);
    clip-path: inset(5px 10px);
    filter: blur(0);
    -webkit-filter: blur(0);
}

.concept-card-wrap:hover .concept-card-img img{
    transform: scale(1.05);
}

.concept-card-cont{
    margin-top: 30px;
    text-align: center;
}

.concept-card-cont-title{
    font-size: 18px;
    color: #000;
    text-transform: uppercase;
}

.concept-card-wrap{
    text-decoration: none;
}

.concept-card{
    padding: 0 40px;
    margin: 40px 0;
}

.concept-card-mrg{
    margin-top: 100px;
}
.concept-area .half-product{
    position: relative;
}
.concept-area .half-product a{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
.concept-area .half-product-img{
    /* filter: blur(8px);
    -webkit-filter: blur(8px); */
    transition: all .3s;

}
/* .concept-area .half-product:hover .half-product-img{
    filter: blur(0);
    -webkit-filter: blur(0);
} */
.concept-modal .nav-brand{
    margin: 0;
}
.concept-modal .chackout-nxt {
    margin-top: 20px;
}


.catalogue-card {
    background: #f5f5f5;
    position: relative;
    cursor: pointer;
    box-shadow: 0px 2px 5px rgba(35,35,35,0.3);
    transition: box-shadow .3s ease-in-out;
}
.catalogue-card-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    text-align: center;
}
.catalogue-card-img {
    position: relative;
    height: 28vw;
    z-index: 2;
    transition: transform .3s ease-in-out;
}
.catalogue-card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.catalogue-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}
.catalogue-subtitle {
    letter-spacing: 1px;
    font-size: 0.9em;
    margin: 0;
}
.catalogue-card:hover {
    box-shadow: 1px 2px 10px rgba(35,35,35,0.5);
}
.catalogue-card:hover .catalogue-card-img {
    transform: translateY(-21%);
}
.half-product-link{
    color: var(--black);
    background: linear-gradient(to left,var(--white) 50%,var(--black) 50%);
    background-size: 200% 100%;
    background-position: 0%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 20px;
    letter-spacing: 0.5px;
    padding: 0 0 5px;
    display: inline-block;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease 0s;
}
.half-product-link:hover,
.half-product-link:focus{
    background-position: -100%;
    text-shadow: -2px -2px var(--secondary-color);
}
.half-product-link:before{
    content: "";
    background: repeating-linear-gradient(40deg ,var(--secondary-color) 0px,var(--secondary-color) 6px,transparent 6px,transparent 12px);
    width: 0;
    height: 3px;
    position: absolute;
    right: 0;
    bottom: 0;
    transition: all 0.4s ease-in-out;
}
.half-product-link:hover:before{ width: 100%; }
@media only screen and (max-width: 767px){
    .half-product-link{ margin-bottom: 30px; }
}
.about-area{
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
}
.about-title{
    font-size: 7vw;
    font-weight: 700;
    text-transform: uppercase;
}

.scroll-down{
    position: absolute;
    bottom: 2%;
    right: 0;
    z-index: 9;
    text-align: end;
}

.sd-down-inner{
    display: inline-flex;
    align-items: center;
    height: 50px;
    text-decoration: none;
    transform: rotate(-90deg);
    transform-origin: center left;
}

.sd-arrow{
    position: relative;
    width: 55px;
}

.sd-arrow,
.sd-arrow::before,
.sd-arrow::after{
    height: 2px;
}

.sd-arrow::before,
.sd-arrow::after{
    position: absolute;
    display: block;
    content: "";
    left: 0;
    width: 12px;
    background-color: var(--secondary-color);
    transition: width .3s;
}

.sd-arrow::before{
    top: 0px;
    transform: rotate(-45deg);
    transform-origin: bottom left;
}

.sd-arrow::after{
    bottom: 0px;
    transform: rotate(45deg);
    transform-origin: top left;
}

.sd-arrow-inner{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--secondary-color);
    animation: scroll-down-swipe-line 4s infinite;
}

@keyframes scroll-down-swipe-line {
	80% {
		transform-origin: left;
		transform: scaleX(1); 
	}
	90% {
		transform-origin: left;
		transform: scaleX(0); 
	}
	90.1% {
		transform-origin: right;
		transform: scaleX(0); 
	}
	100% {
		transform-origin: right;
		transform: scaleX(1); 
	}
}

.sd-text{
    margin-left: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
}

.sd-down-inner:hover .sd-arrow::before, 
.sd-down-inner:hover .sd-arrow::after {
    width: 16px;
}
.about-banner{
    height: 100vh;
}
.inner-about__text-title{
    font-size: 28px;
    margin-bottom: 2rem;
    text-transform: capitalize;
    color: var(--secondary-color);
    font-family: Gotham-Medium;
}
.inner-about__text-info{
    font-size: 16px;
    line-height: 30px;
    color: var(--black);
    text-transform: uppercase;
}
.about-imgArea{
    position: relative;
    background-color: #191919 !important;
}
.about-imgArea__inner{
    position: relative;
}
.bg-mask{
    width: calc(100% - 120px);
    height: calc(100% - 120px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #131313;
}
.box-img,.box-info{
    position: relative;
    z-index: 2;
}
.box-img{
    margin-right: 60px;
}
.box-product-img{
    height: 30vw;
}
.box-product-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.box-img .box-product-img:first-child{
    padding-right: 30px;
}
.box-img .box-product-img:last-child{
    padding: 40px 0 0 120px;
}
.box-info-titleBox{
    display: flex;
    margin-top: 120px;
    text-transform: uppercase;
}
.box-info-subTitle{
    position: relative;
    letter-spacing: 3px;
    font-size: 16px;
    font-weight: 400;
    padding-left: 25px;
    color: var(--white);
}
.box-info-subTitle::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transform: translateY(-50%);
    background-color: var(--secondary-color);
}
.box-info-Title{
    font-size: 30px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 1.3rem;
    padding-right: 90px;
}
.box-info-textInfo{
    font-size: 15px;
    color: var(--white);
    opacity: .8;
    line-height: 26px;
    text-transform: capitalize;
    padding-right: 90px;
}
.box-image-parallax,.box-item-post,.box-image-link{
    position: relative;
}
.box-item-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.box-image-link-img{
    height: 70vh;
}
.box-image-link-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.box-image-link-img::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .4;
}
.box-post-content{
    align-self: center;
    margin: 0 50px;
}
.box-post-meta{
    display: block;
    margin-bottom: 10px;
    color: var(--black);
}
.box-post-title{
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--black);
    text-transform: uppercase;
    font-family: Gotham-Medium;
}
.box-post-text{
    color: var(--pcolor);
}
/* .chirmi-b2b-head{
    position: fixed;
    width: 100%;
} */
.virtual-tour_area{
    position: relative;
    width: 100%;
    height: calc(100vh - 88px);
    z-index: 0;
}
.virtual-tour_area iframe{
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.b2bhome-slider .swiper-inner-content{
    position: relative;
    top: -120%;
}
.b2bhome-slider{
    position: relative;
}

.work-accordian .accordion-button{
    padding: 1.5rem 1.25rem;
    border-radius: 30px !important;
    font-size: 18px;
    font-weight: 700;
}

.work-accordian .accordion-flush .accordion-item{
    margin: 20px 0;
    border-radius: 30px;
    box-shadow: 0px 0px 50px 0 rgba(0, 0, 1, 0.09);
}

.work-accordian .accordion-button:focus{
    border-color: unset;
    box-shadow: unset;
}

.work-accordian .accordion-button:not(.collapsed){
    box-shadow: unset;
    color: var(--black);
    background-color: #CACFD2;
}

.work-accordian .accordion-item{
    border: unset;
}

.work-accordian .accordion-button:not(.collapsed)::after{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ca0000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.conceptBanner-area{
    position: relative;
    height: 100vh;
}
.conceptBanner-heading{
    font-size: 32px;
    margin-bottom: 2rem;
    text-transform: capitalize;
    color: var(--secondary-color);
    font-family: Gotham-Medium;
}
.conceptBanner-info{
    font-size: 16px;
    line-height: 30px;
    color: var(--black);
    text-transform: uppercase;
}
.conceptDetail-contact{
    position: relative;
    margin-top: 135px;
    padding-top: 20px;
    background-color: var(--black);
    border-top: 14px solid var(--secondary-color);

}
.conceptDetail-contact::before{
    position: absolute;
    content: "";
    left: 0;
    top: -130px;
    background-color: #181818;
    -webkit-clip-path: polygon(0 100%, 35% 0, 100% 60px, 100% 100%);
    clip-path: polygon(0 100%, 35% 0, 100% 60px, 100% 100%);
    height: 130px;
    width: 100%;
}
.conceptDetail-contact__block{
    position: relative;
}
.contactDetail-section .nav-brand {
    width: 36%;
    margin: 0px 0px 20px;
}
.contactDetail-contact__form{
    padding-right: 2rem;
    padding-bottom: 6rem;
}
.contactDetail-contact__form .form-control{
    border: none;
    border-radius: 0;
    min-height: 58px;
    padding: 5px 20px;
    color: var(--white);
    background-color: var(--black);
}
.contactDetail-contact__subtitle{
    color: #c9c6c6;
    opacity: .8;
    margin-bottom: 3rem;
}
.contactDetail-contactBtn {
    position: relative;
    margin: auto;
    padding: 0.8em 1em;
    outline: none;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    background-color: #333;
    border-radius: 10px;
    color: #fff;
    font-weight: 300;
    font-size: 18px;
    font-family: inherit;
    z-index: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}
  
.contactDetail-contactBtn:hover {
    animation: sh0 0.5s ease-in-out both;
}
  
@keyframes sh0 {
    0% {
      transform: rotate(0deg) translate3d(0, 0, 0);
    }
  
    25% {
      transform: rotate(7deg) translate3d(0, 0, 0);
    }
  
    50% {
      transform: rotate(-7deg) translate3d(0, 0, 0);
    }
  
    75% {
      transform: rotate(1deg) translate3d(0, 0, 0);
    }
  
    100% {
      transform: rotate(0deg) translate3d(0, 0, 0);
    }
}
  
.contactDetail-contactBtn:hover span {
    animation: storm 0.7s ease-in-out both;
    animation-delay: 0.06s;
}
  
.contactDetail-contactBtn::before,
.contactDetail-contactBtn::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
    z-index: -1;
    transform: translate(100%, -25%) translate3d(0, 0, 0);
}
  
.contactDetail-contactBtn:hover::before,
.contactDetail-contactBtn:hover::after {
    opacity: 0.15;
    transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
}
  
.contactDetail-contactBtn:hover::before {
    transform: translate3d(50%, 0, 0) scale(0.9);
}
  
.contactDetail-contactBtn:hover::after {
    transform: translate(50%, 0) scale(1.1);
}
.contactDetail-contact__formImg{
    padding-left: 2rem;
}

.contactDetail-contact__image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}  

.scrolldown {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    --color: #ca0000;
    --sizeX: 30px;
    --sizeY: 50px;
    width: var(--sizeX);
    height: var(--sizeY);
    margin-left: var(sizeX / 2);
    border: calc(var(--sizeX) / 10) solid var(--color);
    border-radius: 50px;
    box-sizing: border-box;
    margin-bottom: 16px;
    cursor: pointer;
}
  
.scrolldown::before {
    content: "";
    position: absolute;
    bottom: 30px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background-color: var(--color);
    border-radius: 100%;
    animation: scrolldown-anim 2s infinite;
    box-sizing: border-box;
    box-shadow: 0px -5px 3px 1px #ca000066;
}
  
@keyframes scrolldown-anim {
    0% {
      opacity: 0;
      height: 6px;
    }
  
    40% {
      opacity: 1;
      height: 10px;
    }
  
    80% {
      transform: translate(0, 20px);
      height: 10px;
      opacity: 0;
    }
  
    100% {
      height: 3px;
      opacity: 0;
    }
}
.banner__parallax1,.banner__parallax2,.banner__parallax3{
    height: 100vh;
}
.contact-title{
    letter-spacing: 4px;
    text-transform: uppercase;
}  
.contact-area .inner-about__text-info{
    display: flex;
    justify-content: center;
}
.contact-area .inner-about__text-info a{
    color: var(--secondary-color);
}
.contact-form {
    border: 1px solid #D8D5D2;
}
.contact-form .form-control{
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #D8D5D2;
    padding: 20px 40px;
}
.contact-form__input{
    display: flex;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #D8D5D2;
}
.contact-form__input label{
    width: 50px;
}
.contact-form__input .form-select{
    border: none;
    border-radius: 0px;
    cursor: pointer;
    
}
.contact-btn{
    border-radius: 0;
    width: 100%;
    display: block;
    color: var(--white);
    background-color: var(--black);
}
.mob-nav-list .mob-nav-items .mob-nav-link .mob-nav-img2,.mob-nav-list .mob-nav-items .mob-nav-link.active .mob-nav-img1{
    display: none;
}
.mob-nav-list .mob-nav-items .mob-nav-link.active .mob-nav-img2{
    display: block;
}
.mfp-wrap{
    z-index: 99999 !important;
}
.mfp-arrow-left:before{
    border-right: none !important; 
}
.mfp-arrow-right:before {
    border-left: none !important;
}
.reTob-subtitle{
    color: var(--bg-color);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    word-spacing: 6px;
    text-align: justify;
}
.mail-screen{
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #E1D3C6c6;
    transition: all 2s;
    z-index: 9;
}
.mail-screen__close{
    position: absolute;
    top: 3%;
    right: 2%;
    z-index: 9;
}
.mail-screen .form-control{
    border: 0;
    border-radius: 0;
    padding-left: 0;
    font-family: Gotham-Bold;
    background-color: transparent;
    border-bottom: 2px solid var(--black);
}
.mail-screen .form-control::placeholder{
    opacity: 1 !important;
    color: var(--black);
    letter-spacing: 1px;
}
.mail-screen .form-control::placeholder-shown{
    text-overflow: ellipsis;
}
.form-input{
    display: flex;
    align-items: center;
}
.form-input label{
    width: 50px;
    color: var(--black);
    font-family: Gotham-Bold;
}
.form-input .form-select{
    border: 0;
    border-radius: 0;
    background-color: transparent;
    font-family: Gotham-Bold;
}
.form-input .form-select option{
    background-color: #E1D3C6c6 !important;
}
.form-input .form-select option:hover{
    background-color: #E1D3C6 !important;
}
.mail-btn{
    width: auto;
    display: inline-block;
    font-size: 16px;
    padding: 4px 16px;
    border-radius: 40px;
    color: var(--white);
    text-transform: uppercase;
    border: 2px solid var(--black);
    background-color: rgba(0, 0, 0, 0.3);
    font-family: Gotham-Bold;
    letter-spacing: 2px;
}
.b2b-social a{
    position: fixed;
    right: 40px;
    bottom: 40px;
    height: 46px;
    width: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background-color: var(--secondary-color);
}


















/* ============================:: responsive css start ::=========================*/


@media only screen and  (min-width: 992px) {
    .container-fluid{
        --bs-gutter-x: 6rem;
    }
    .conceptDetail-contact::before{
        -webkit-clip-path: polygon(0 150px, 49% 0, 100% 90px, 100% 100%, 0 100%);
        clip-path: polygon(0 150px, 49% 0, 100% 90px, 100% 100%, 0 100%);
        height: calc(100% + 150px);
        width: 50%;
        top: auto;
        bottom: 0;
    }
}

@media only screen and  (max-width: 991px) {
    .sidenavOffcanvas{
        width: 60% !important;
    }
}

@media only screen and (max-width: 991px){
    .chirmi-head{
        position: fixed;
        bottom: 0;
        top: unset;
        width: 100%;
    }
    .chirmi-switch,
    .chirmi-user-links,
    .nav-brand,
    .progress-wrap {
        display: none;
    }
    .mob-nav-list{
        display: flex;
        align-items: center;
    }

    .mob-nav-list .mob-nav-items a{
        display: block;
        width: 30%;
        margin: auto;
    }
    .mob-nav .navbar{
        padding: 20px 0;
    }

    .mob-nav-list .mob-nav-items .chirmi-toggle-switch{
        width: 8rem;
        flex-direction: column;
    }
    .home-slider, .slide-inner {
        height: 60vh;
    }
    .swiperHome-title {
        font-size: 28px;
        font-family: Expansiva-regular;
    }
    .mySwiper .swiper-pagination-progressbar{
        width: 60% !important;
    }
    .wrap_padding {
        padding: 40px 0;
    }
    .has-mask-fill{
        font-size: calc(1rem + 1.15vw);
    }
    .has-mask-info-fill,
    .opus-text-info{
        font-size: 14px;
    }
    .chrmi-product-inner{
        padding: 50px 0px 0px 50px;
    }
    .chrmi-product-inner main{
        padding-top: 50px;
        padding-right: 50px;
    }
    .half-product-img{
        height: 50vw;
    }
    .productInner-title,
    .productInner-clr,
    .productInner-amnt,
    .productInner-btn{
        font-size: 14px;
        letter-spacing: 1px;
    }
    .chirmi-banner-inner {
        padding-top: 40px;
    }
    .chirmi-banner-title{
        font-size: 16px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
    .chirmi-banner-subtitle{
        font-size: 14px;
        margin-bottom: 3rem;
    }
    .footer-logo .nav-brand{
        display: block;
        width: 40%;
        margin: 0px 0px 24px;
    }
    .footer-ulist .footer-linkItems:not(:last-child) {
        margin-bottom: 10px;
    }
    .footer-bottom-title{
        margin-bottom: 20px;
    }
    .chirmi-footer{
        margin-bottom: 7rem;
    }
    .navbar-brand.nav-brand{
        display: block;
        margin: 0;
    }
    .offcanvas-body .navbar-nav {
        display: none;
    }
    .mobNavbar-nav{
        display: block;
        padding-top: 2rem;
    }
    .mobNav-item a{
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-transform: uppercase;
        font-size: 16px;
        letter-spacing: .2em;
        color: var(--white);
        position: relative;
        padding: 14px 18px;
        margin-bottom: 10px;
    }
    .collapse-inner-content{
        background-color: #131313;
        padding: 18px;
    }
    .main-nav{
        padding: 0;
    }
    .collapse-list .collapse-list-items .collapse-list-link{
        color: var(--white);
        opacity: .3;
        padding: 5px 0px 5px 14px;
    }
    .collapse-list .collapse-list-items:not(:last-child){
        margin-bottom: 14px;
    }
    .productInner-img{
        height: 40vw;
    }
    .opus-area{
        height: 40vh;
    }
    .about-area{
        height: 90vh;
    }
    .about-title{
        text-align: center;
    }
    .scroll-down{
        display: none;
    }
    .sd-down-inner{
        transform-origin: center;
    }
    .about-banner {
        height: 50vh;
    }
    .box-info-Title{
        font-size: 16px;
    }
    .box-info-subTitle{
        font-size: 10px;
        padding-left: 20px;
    }
    .box-info-subTitle::before{
        width: 12px;
        height: 12px;
    }
    .box-info-textInfo{
        font-size: 12px;
        line-height: 18px;
    }
    .box-img {
        margin-right: 20px;
    }
    .box-image-link-img {
        height: 20vh;
    }
    .box-post-content{
        margin: 0 25px;
    }
    .box-post-meta{
        font-size: 12px;
        margin-bottom: 6px;
    }
    .box-post-title{
        font-size: 16px;
    }
    .box-post-text{
        font-size: 13px;
    }
    .subcatagory-area {
        height: 40vh;
    }
    .chirmi-head{
        z-index: 99;
    }
    .offcanvas.offcanvas-bottom{
        height: 50%;
        border-radius: 25px 25px 0 0;
    }
    .fliter-bottom__title{
        font-size: 14px;
        color: var(--black);
        font-weight: 600;
        letter-spacing: .8px;
        margin-bottom: 1.2rem;
        text-transform: uppercase;
    }
    .fliter-bottom__inner .fliter-bottom:not(:last-child){
        margin-bottom: 1.4rem;
    }
    .b2bhome-slider, .b2bhome-slider .slide-inner{
        height: calc(100vh - 120px) !important;
    }
    .b2bhome-slider .swiper-inner-content {
        bottom: 25px;
    }
    .virtual-tour_area{
        height: calc(100vh - 120px);
    }
    .catalogue-card-img{
        height: auto;
    }
    .catalogue-card-info{
        padding: .6rem;
    }
    .catalogue-title{
        font-size: 13px;
    }
    .catalogue-subtitle{
        font-size: 10px;
    }
    .retailDetail-product-img{
        top: 0;
    }
    .retailDetail-product-tab .nav-tabs li a{
        width: 60px;
        height: 60px;
        padding: 9px;
    }
    .swatch-element:hover .swatch-tooltip{
        display: none;
    }
    .mob-logo__hamburger{
        position: absolute;
        top: 10%;
        left: 50%;
        z-index: 9;
        transform: translateX(-50%);
    }
    .c-brand{
        display: block;
        width: 80%;
        margin: auto;
    }
    .c-hamburger{
        display: block;
        width: 20%;
        margin: auto;
        margin-top: 24px;
    }
    .user-profile_areaBg {
        height: 20vh;
    }
    .user-profile_areaBg {
        height: 20vh;
    }
    .profile_logo {
        width: 30%;
        margin: auto;
    }
    .user-profile_userMenu .nav-tabs{
        display: flex;
        overflow: scroll;
        margin-bottom: 0;
    }
    .about-image__wrap{
        padding-bottom: 8rem;
    }
    .inner-about__text-title,.conceptBanner-heading{
        font-size: 26px;
        margin-bottom: 1.2rem;
    }
    .inner-about__text-info,.conceptBanner-info{
        font-size: 14px;
        line-height: 28px;
    }

}

@media only screen and (max-width: 576px){
    .sidenavOffcanvas{
        width: 80% !important;
    }
    .wrap_padding {
        padding: 30px 0;
    }
    .has-mask-info-fill, .opus-text-info {
        font-size: 12px;
    }
    .chrmi-product-inner {
        padding: 50px 0px 0px 20px;
    }
    .chrmi-product-inner main {
        padding-top: 20px;
        padding-right: 20px;
    }
    .half-product-title{
        font-size: 13px;
        margin-bottom: 8px;
    }
    .half-product-btn{
        font-size: 10px;
        padding: 6px 20px;
        min-width: fit-content;
    }
    .productInner-img {
        height: 58vw;
    }
    .chirmi-banner-img {
        height: 60vw;
        margin-bottom: 2rem;
    }
    .chirmi-banner-inner {
        padding-top: 12px;
    }
    .chirmi-banner-title,
    .footer-bottom-title{
        font-size: 14px;
    }
    .chirmi-banner-subtitle {
        font-size: 12px;
        margin-bottom: 2rem;
    }
    .chirmi-banner{
        padding-bottom: 40px;
    }
    .mobNav-item a{
        padding: 8px 18px;
    }
    .navbar-brand.nav-brand{
        width: 40%;
    }
    .footer-link,
    .footer-bottom-content,.newsletterForm__subtitle{
        font-size: 12px;
    }
    .chirmi-social {
        justify-content: start;
        margin-top: 20px;
    }
    .chirmi_socialIcon_link{
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    .mob-nav-list .mob-nav-items .chirmi-toggle-switch{
        font-size: 12px;
        gap: 6px;
        width: 4rem;
    }
    .mob-nav-list .mob-nav-items a{
        width: 40%;
    }
    .mob-nav .navbar {
        padding: 8px 0;
    }
    .chirmi-footer {
        margin-bottom: 5rem;
    }
    .b2b-mail {
        width: 22%;
    }
    .retailDetail-product-tabcontentimg{
        height: 60vw;
    }
    .retailDetail-product-tab .nav-tabs li:not(:last-child) {
        margin-right: 6px;
    }
    .retailDetail-product-tab .nav-tabs li a{
        width: 40px;
        height: 40px;
        padding: 4px;
    }
    .newsletter-inner{
        padding: 30px 15px;
    }
    .input-form{
        width: 90%;
    }
    .newsletterForm__title{
        font-size: 18px;
    }
    .newsletterForm__subtitle {
        margin-bottom: 20px;
    }
    .input-form .form-control{
        font-size: 12px;
        min-height: 38px;
    }
    .product-similarProduct {
        margin-top: 3rem;
    }
    .similarProduct-title{
        font-size: 14px;
        letter-spacing: 2px;
        word-spacing: 2px;
    }
    .retailDetail-product-title{
        font-size: 18px;
        margin-bottom: 10px;
    }
    .retailDetail-product-price {
        font-size: 15.8px;
    }
    .retailDetail-product-detail .accordion-button,.profile_editBtn{
        font-size: 12px;
    }
    .profile_editBtn{
        padding: 4px 11px;
    }
    .retailDetail-product-detail .accordion-button::after{
        width: 1rem;
        height: 1rem;
        background-size: 1rem;
    }
    .addto-cart {
        margin-top: 0;
        width: 100% !important;
    }
    .addto-cart .offcanvas-title{
        font-size: 16px;
    }
    .addto-cart .offcanvas-header, .addto-cart .offcanvas-body {
        padding: 1rem 1rem;
    }
    .mini-cart__proceed{
        bottom: 1%;
    }
    .cart-items-info{
        gap: 4px;
        align-items: start;
        flex-direction: column;
    }
    .mini-cart-item{
        flex-direction: column;
    }
    .mini-cart-item__image a{
        height: 40vw;
    }
    .mini-cart-item__image{
        flex: 0 1 170px;
    }
    .mini-cart-item__info{
        padding: 0;
    }
    .box-img{
        display: none;
    }
    .bg-mask{
        width: calc(100% - 40px);
        height: calc(100% - 40px);
    }
    .box-info{
        padding: 0 30px 80px;    
    }
    .box-info-titleBox{
        margin-top: 50px;
    }
    .box-info-Title,.box-info-textInfo{
        padding-right: 0;
    }
    .box-info-Title {
        font-size: 14px;
        margin-bottom: 1rem;
    }
    .box-info-textInfo,.box-post-meta,.productInner-text{
        font-size: 10px;
    }
    .box-product-img {
        height: 50vw;
    }
    .inner-about__text{
        padding: 0 10px;
    }
    .inner-about__text-title{
        margin-bottom: 1rem;
    }
    .inner-about__text-info,.conceptBanner-info{
        font-size: 10px;
        line-height: 18px;
    }
    .about-banner {
        height: 30vh;
    }
    .box-post-text{
        display: none;
    }
    .box-post-content{
        margin: 0 12px;
    }
    .box-post-title {
        font-size: 14px;
    }
    .product-listSwiper .swiper-wrapper {
        margin-bottom: 10px;
    }
    .chirmi-product-category .chrmi-product-inner {
        padding: 20px 0px 100px 20px;
    }
    .mini-cart-item {
        margin-bottom: 25px;
    }
    .border-right{
        padding-top: 2rem;
        border-right: unset;
        padding-right: calc(1rem * .5) !important;
    }
    .border-left {
        padding-top: 2rem;
        padding-left: calc(1rem * .5) !important;
    }
    .chackout-nxt,.order-sum{
        gap: 20px;
        align-items: unset;
        flex-direction: column;
    }
    .check-out-info {
        margin-top: 1rem;
    }
    .search-products-view__header{
        top: 0;
    }
    .search-area {
        padding-top: 0;
    }
    .search-products-sections-bar::-webkit-scrollbar{
        display: none;
    }
    .b2bhome-slider .mySwiper .swiper-pagination-progressbar{
        bottom: 6.3%;
    }
    .concept-card-mrg {
        margin-top: 50px;
    }
    .catalogue-card-img{
        height: auto;
    }
    .subcatagory-area {
        height: 30vh;
    }
    .subcatagory-filter .chirmi-icon a {
        width: 5%;
    }
    .profile-detail_modal .modal-header, .profile-detail_modal .modal-body, .profile-detail_modal .modal-footer {
        padding: 0.9rem 1rem;
    }
    .reTob-title{
        font-size: 18px;
    }
    .reTob-subtitle{
        font-size: 10px;
    }
    .catalogue-card-info{
        padding: 0.5rem;
    }
    .catalogue-title{
        font-size: 10px;
    }
    .catalogue-subtitle{
        font-size: 8px;
    }
    .catalogue-card:hover .catalogue-card-img {
        transform: translateY(-24%);
    }
    .b2bhome-slider, .b2bhome-slider .slide-inner {
        height: calc(100vh - 88px) !important;
    }
    .b2bhome-slider .swiper-inner-content {
        bottom: 20px;
    }
    .mini-cart__content{
        height: calc(100vh - 16rem);
    }
    .user-profile_areaBg {
        height: 14vh;
    }
    .user-profile_innerArea {
        position: relative;
        top: -25px;
    }
    .user-profile_nav, .user-profile_userContent{
        padding: 12px;
    }
    .user-profile_logo{
        padding: 10px 0 20px 0px;
    }
    .user-profile_userMenu .nav-tabs,.myorder-content .nav-tabs {
        width: 100%;
        overflow: scroll;
        flex-wrap: nowrap;
        white-space: nowrap;
    }
    .user-profile_userMenu .nav-tabs::-webkit-scrollbar,.myorder-content .nav-tabs::-webkit-scrollbar {
        display: none;
    }
    .user-profile_infoLabel{
        font-size: 16px;
    }
    .user-profile_userMenu .nav-tabs li a{
        font-size: 12px;
        padding: 8px 12px;
        border-radius: 5px;
    }
    .user-profile_userContent-inner .table td, .user-profile_userContent-inner .table th{
        height: 30px;
        font-size: 12px;
    }
    .user-profile_innerHeader{
        padding-bottom: 10px;
    }
    .myorder-content .nav-tabs{
        margin-bottom: 2rem;
        font-size: 12px;
    }
    .check-out-prdt-detail{
        align-items: start;
        flex-direction: column;
    }
    .review-btn a{
        font-size: 10px;
        padding: 6px 14px;
    }
    .ship-address-title {
        font-size: 14px;
        margin-bottom: 14px;
    }
    .addressDetailsName,.addressDetailsAddressField,.addressDetailsMobile{
        font-size: 12px;
    }
    .fancy{
        padding: 1em 2em;
    }
    .wishlist-title{
        padding-bottom: 2rem;
        margin-bottom: 3rem;
    }
    .inner-about__text-title,.conceptBanner-heading{
        font-size: 16px;
    }
    .contact-form .form-control,.contact-form__input{
        font-size: 10px;
        padding: 10px 12px;
    }
    .b2b-footer .chirmi-social{
        margin-top: 8px;
        margin-bottom: 20px;
    }
    .about-image__wrap{
        padding-bottom: 6rem;
    }
    .mail-screen__close{
        top: 4%;
        right: 5%;
    }
    .mail-screen .form-control{
        font-size: 12px;
        border-bottom: 1px solid var(--black);
    }
    .form-input,.form-input .form-select{
        font-size: 12px;
    }
    .form-input label{
        width: 35px;
    }
    textarea:placeholder-shown {
        text-overflow: ellipsis !important;
    }
    textarea::placeholder {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
    .contact-form__input label {
        width: 30px;
    }
    .contact-form__input .form-select{
        font-size: 10px;
        padding: 0px 10px;
    }
    .profile-detail_modal .modal-title {
        font-size: 14px;
    }
}

/* ============================:: responsive css end ::=========================*/