@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

html {
    font-size: 16px;
    overflow-x: clip;
}

body {
    position: relative;
    font-family: "Jost", sans-serif;
    background: #fff;
}

/*.container {
    max-width: 1170px;
}*/

:root {
    --white: #ffffff;
    --black: #000;
    --gary-color: #727272;
    --lightgary-color: #b2b9bd;
    --theme-color: #680538;
    --primary-color: #93292d;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

section {
    position: relative;
    padding: 5rem 0;
    overflow: clip;
}

/* PRELOADER */
body.loading {
    overflow: hidden;
    height: 100vh;
}

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: start;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 11113;
}

.preLoader .counter {
    color: var(--white);
    font-size: 15rem;
    font-weight: 700;
    position: absolute;
    bottom: 0rem;
    right: 5rem;
}

.preLoader .bar {
    height: 20%;
    width: 100vw;
    background-color: var(--theme-color);
}

/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}

/* Cursor End */

/* btn css */

.themeBtn {
    background: var(--theme-color);
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 1.04em 1.96em;
    border-radius: 50px;
    line-height: normal;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 0.7em 1.95em;
}

/* btn css */

/* mouse animation css  */

.bounce-element {
    animation: bounce 0.9s infinite alternate;
    -webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-15px);
    }
}

.mouse {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 11;
    text-align: center;
}

/* mouse animation css  */

/* navigation css */

.main-navigate {
    background: var(--theme-color);
    padding: 8px 0;
}

ul.top-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.dropdown1 {
    position: relative !important;
}

.dropdown1 .dropdown-menu {
    overflow: unset;
    width: 100%;
}

.dropdown1 ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.dropdown1 ul li {
    min-width: 180px;
    position: relative;
    list-style: none;
}

.dropdown1 ul li a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #151515;
    display: block;
}

.dropdown1:hover ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

ul.top-menu li .nav-item,
.dropdown1 .caret {
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
}

.dropdown1 .caret:after {
    content: "\f0d7";
    padding-left: 5px;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
}

.main-navigate p {
    text-align: center;
    color: var(--white);
    margin: 0;
    font-weight: 500;
}

ul.deliver {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

ul.deliver li a {
    font-size: 15px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
}

ul.deliver li .dropdown1 button {
    background: transparent !important;
    border: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

ul.deliver li .dropdown1 .dropdown-menu .dropdown-item {
    color: var(--black);
    text-transform: capitalize;
}

.menuBar {
    position: relative;
    z-index: 11;
}

.btn-menu {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-direction: column;
    box-shadow: unset !important;
    position: relative;
    z-index: 11;
}

.btn-menu span {
    display: block;
    width: 56px;
    height: 6px;
    border-radius: 3px;
    background-color: var(--black);
    transition: 0.5s;
    margin-right: auto;
}

.btn-menu span:nth-child(2) {
    width: 43px;
    margin-left: auto;
    margin-right: 0;
}

.btn-menu span:nth-child(3) {
    margin-left: auto;
    width: 36px;
    margin-right: 0;
}

.isopen .btn-menu span {
    background-color: var(--white);
}

.isopen .btn-menu span:nth-child(1) {
    transform: rotate(45deg) translate(16px, 9px);
}

.isopen .btn-menu span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.isopen .btn-menu span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -1px);
    width: 56px;
}

.menulist {
    position: fixed;
    top: -100%;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background-color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 !important;
    margin: 0;
    z-index: 9;
    transition: 0.5s ease;
}

.menulist .search {
    display: none;
}

.menulist li+li {
    margin-top: 1rem;
}

.menulist li a {
    font-size: 2.5rem;
    color: var(--white);
}

.menulist li a:hover {
    color: var(--primary);
}

.isopen .menulist {
    top: 0;
}

.search .input-group form {
    height: 48px;
    display: flex;
    align-items: center;
    position: relative;
    background: #F8F8F8;
    border-radius: 50px;
}

.search .input-group-prepend button {
    background: transparent;
    border: 0;
    height: 48px;
    font-size: 14px;
    color: #040504;
    font-weight: 500;
    border-right: 1px solid #707070;
    border-radius: 0;
    padding: 0 21px;
}

.search .input-group input {
    height: 48px;
    border: 0;
    border-top-right-radius: 50px !important;
    border-bottom-right-radius: 50px !important;
    padding: 0 60px 0 15px;
    font-size: 14px;
    background: #F8F8F8;
    font-weight: 500;
}

.search .input-group .searchs {
    position: absolute;
    right: 20px;
    color: var(--black);
    font-size: 1rem;
}

.search .input-group .searchs i {
    font-weight: 300;
}

.cart-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

ul.cart-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

ul.cart-list li a {
    width: 56px;
    height: 56px;
    background: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #E6E6E6;
    color: var(--black);
}

a.top-logo {
    width: 151px;
    height: 181px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 75.5px;
    margin: 0 auto -3rem;
    position: relative;
    z-index: 2;
}

ul.cart-list li:last-child a {
    width: 80px;
    border-radius: 27.5px;
    justify-content: space-between;
    padding: 0 0.9rem;
}

/* navigation css */

/* slider css */

/* .mainSlider .swiper-slide {
	-webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
} */
.mainSlider {
    padding: 0;
}

.slide-inner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    /* padding: 0 5rem; */
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 0;
}

.radius-img img {
    border-radius: 27px;
}

.slideOne h2 {
    font-size: 1.875rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
}

.slideOne h3 {
    font-size: 3.75rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
}

.slideOne p {
    font-size: 1.5625rem;
    color: var(--white);
    line-height: 2.5625rem;
    margin: 0 0 1.9rem;
}

.slide-inner:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(0 0 0 / 50%);
    border-radius: 27px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.mainSlider :is(.swiper-button-prev, .swiper-button-next),
.blogSlider-btn :is(.swiper-button-prev, .swiper-button-next) {
    width: 74px;
    height: 74px;
    background: var(--white);
    border-radius: 50%;
    border: 1px solid var(--black);
    z-index: 1;
}

.mainSlider .swiper-button-prev {
    left: 3rem;
}

.mainSlider .swiper-button-next {
    right: 3rem;
}

.mainSlider .swiper-button-prev:after,
.mainSlider .swiper-button-next:after,
.blogSlider-btn .swiper-button-prev:after,
.blogSlider-btn .swiper-button-next:after {
    font-size: 1.5rem;
    color: var(--black);
    font-weight: 800;
}

.mainSlider .swiper-slide-active .slide-inner {
    opacity: 1;
}

/* slider css */


.sub-heading {
    font-size: 1.375rem;
    color: #0B0B0B;
    font-weight: 400;
    text-transform: uppercase;
}

.heading {
    font-size: 3.125rem;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

.exploreSlider .swiper-pagination {
    top: inherit;
    bottom: 0;
    background: #EFEFEF;
    height: 2px;
}

.exploreSlider .swiper-pagination .swiper-pagination-progressbar-fill {
    background: var(--theme-color);
}

.explore-card figure {
    width: 100%;
    height: 300px;
    position: relative;
}

.explore-card figure .themeBtn.borderBtn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2rem;
    width: fit-content;
    margin: auto;
    font-size: 1.375rem;
    font-weight: 400;
    padding: 0.44em 1.5em;
    border: 0;
    background: rgb(255 255 255 / 10%);
    backdrop-filter: blur(4.8px);
    overflow: hidden;
}

.explore-card figure:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(185deg, rgb(0 0 0 / 0%), #000000);
    border-radius: 18px;
    opacity: 55%;
}

.explore-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.exploreSlider {
    padding-bottom: 3rem;
}

.explore-card figure .themeBtn.borderBtn:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    box-shadow: inset 12.4px -12.4px 12.4px 0 rgb(0 0 0 / 10%);
    height: 12.4px;
    filter: blur(12.4px);
}

.explore-card figure .themeBtn.borderBtn:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 12.4px -12.4px 12.4px 0 rgb(0 0 0 / 10%);
    height: 12.4px;
    filter: blur(12.4px);
}

.trendSlider .swiper-wrapper {
    transition-timing-function: linear;
}

.arrival-main {
    background: url(../images/arrivalbg.webp) no-repeat top center/ cover fixed;
    overflow: hidden;
    height: 927px;
    display: flex;
    align-items: center;
}

.arrival-main:before,
.what-we-offer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 95%);
}

.arrival-content .heading {
    color: var(--white);
    margin: 0 0 0.8rem;
}

.arrival-content p {
    font-size: 1.1875rem;
    color: var(--white);
    line-height: 1.9375rem;
    margin: 0 0 2rem;
}


.trendSlider span {
    font-size: 1.666875rem;
    color: var(--white);
    display: flex;
    align-items: center;
    white-space: nowrap;
    writing-mode: tb-rl;
    transform: scale(-1);
    font-weight: 400;
    text-transform: uppercase;
}

/* .trendSlider .swiper-slide{
    height: 100% !important;
    width: 100%;
} */
.trendSlider {
    height: 100%;
    /* Adjust height as needed */
    display: table;
    margin-left: auto;
}

.arrival-content ul {
    border-left: 1px solid var(--white);
    margin-left: 0rem;
    position: relative;
    padding: 1rem 4rem;
    margin-bottom: 3rem;
}

.arrival-content ul li a {
    font-size: 1.666875rem;
    color: var(--white);
    font-weight: 400;
    text-transform: uppercase;
}

.arrival-content ul li+li {
    margin: 1.3rem 0 0;
}

.arrival-content ul:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    background: #fff;
    width: 1px;
    height: 100%;
}

.swiper-container {
    height: 100%;

}

.arrivalimgSlider1 .swiper-slide,
.arrivalimgSlider2 .swiper-slide {
    transition: transform 0.5s ease-in-out;
}

.arrivalimgSlider1 .swiper-wrapper {
    gap: 9.5rem;
}

.arrivalimgSlider2 .swiper-wrapper {
    gap: 9.5rem;
}

.arrivalimgSlider2 {
    transform: rotate(180deg);
}

.arrivalimgSlider2 figure img {
    transform: rotate(-180deg);
}

.best-seller {
    padding: 5rem 0 5rem 5rem;
}

.seller-card {
    margin-bottom: 2rem;
}

.seller-card figure {
    position: relative;
}

.seller-card figure img {
    width: 100%;
    border-radius: 10px;
}

.seller-card figure .heart {
    position: absolute;
    right: 20px;
    top: 20px;
}

.seller-card figure .heart i {
    font-size: 1.5rem;
    color: var(--white);
}

.seller-card figure .heart i.fas.fa-heart {
    position: absolute;
    right: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 0;
}

.seller-content {
    padding: 1.5rem 0 0;
}

.seller-content h2 {
    font-size: 1.125rem;
    text-transform: uppercase;
    margin: 0 0 4px;
}

.seller-content p {
    color: rgb(0 0 0 / 50%);
    margin: 0 0 0.4rem;
}

.seller-content .star {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 0 1rem;
}

.seller-content .star i {
    color: #EEC200;
    font-size: 0.8rem;
}

.seller-content .star span {
    margin-left: 5px;
    font-size: 17px;
    color: #828282;
    font-weight: 400;
}

.seller-content h4 {
    font-size: 1.109375rem;
    font-weight: bold;
}

.seller-content .themeBtn {
    margin: 1rem 0 0;
    padding: 0.75em 1.5em;
    background: var(--black);
}

.seller-content .themeBtn:hover {
    background: var(--theme-color);
    color: var(--white);
}

.botom-set {
    margin-bottom: -6rem;
}

.arrow .swiper-button-prev {
    top: 120px;
    right: -12rem;
    width: auto;
    width: 47px;
    height: 47px;
    border: 1px solid #D9D9D9;
    border-radius: 50%;
    left: 0;
    margin: auto;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.arrow .swiper-button-next {
    left: 0;
    right: -20rem;
    margin: auto;
    top: 120px;
    width: 47px;
    height: 47px;
    border: 1px solid #D9D9D9;
    border-radius: 50%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.arrow .swiper-button-prev:after {
    font-size: 1.2rem;
    color: #D9D9D9;
    content: "\f177";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.arrow .swiper-button-next:after {
    font-size: 1.2rem;
    color: #D9D9D9;
    content: "\f178";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
}

.arrow .swiper-button-prev:hover,
.arrow .swiper-button-next:hover {
    border-color: var(--black);
}

.arrow .swiper-button-prev:hover:after,
.arrow .swiper-button-next:hover:after {
    color: var(--black);
}

.swiper-slide-next .seller-card figure .heart i.fas.fa-heart {
    opacity: 1;
    color: var(--theme-color);
}

.featureSlider .swiper-slide {
    margin-top: 0 !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.featureSlider .swiper-wrapper {
    flex-direction: unset !important;
}

.featureSlider {
    margin: 0 -8rem;
}


.featureSlider .seller-card figure img {
    height: 400px;
    object-fit: cover;
}

.feature-tab .nav-tabs {
    gap: 1rem;
}

.feature-tab .nav-tabs .nav-link {
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 3.125rem;
    background: transparent;
    color: var(--black);
    border: none;
}

.feature-tab .nav-tabs .nav-link.active,
.feature-tab .nav-tabs .nav-link:hover {
    background: var(--theme-color);
    color: var(--white);
}

/* what-we-offer */
.what-we-offer {
    background: url("../images/what-we-offer-bg.webp") no-repeat center / cover fixed;
}

.what-we-offer::before {
    background: rgb(234, 233, 239, 95%);
}

.what-we-offer .container {
    position: relative;
}

.offer-card {
    padding: 2rem;
    border: 2px solid transparent;
    border-radius: 1rem;
    background: var(--white);
    box-shadow: 0px 4px 14px rgb(0, 0, 0, 8%);
    position: relative;
    margin-bottom: 2.25rem;
    transition: all 0.3s ease;
}

.offer-card:hover {
    border-color: var(--theme-color);
}

.offer-card__content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
}

.offer-card__content p {
    font-size: 16px;
    color: #828282;
    margin: 0;
}

.offer-card__icon {
    position: relative;
    padding: 2.5rem 2.5rem 1.5rem;
}

.offer-card__icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.offer-card__icon::before {
    content: "";
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgb(104, 5, 56, 10%);
    position: absolute;
    top: 0;
    left: 0;
}


/* our-blog */
.blogSlider {
    margin: 0 -24rem;
}

.blog-card_img {
    height: 460px;
    border-radius: 1.125rem;
    overflow: hidden;
    margin-bottom: 1.75rem;
}

.blog-card_img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card__content h4 {
    font-size: 2.125rem;
    font-weight: 600;
    color: #0B0B0B;
}

.blog-card__content p {
    font-size: 1.125rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.blog-card__content a {
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--theme-color);
}

.blogSlider-btn .swiper-button-prev {
    left: 15rem;
}

.blogSlider-btn .swiper-button-next {
    right: 15rem;
}

/* how-it-work */
.how-it-work {
    background: url("../images/how-it-work-bg.webp") no-repeat center / cover fixed;
}

.work-card-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.work-card__icon {
    width: 200px;
    min-height: 200px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0px 0px 28px rgb(0, 0, 0, 8%);
    display: grid;
    place-items: center;
    margin: 0 auto 1.75rem;
}

.work-card__icon img,
.footerSocial-links li a i {
    transition: all 0.3s ease-in-out;
}

.work-card:hover .work-card__icon img {
    filter: brightness(0) saturate(100%) invert(8%) sepia(63%) saturate(5163%) hue-rotate(317deg) brightness(92%) contrast(102%);
}

.work-card__content .sub-heading {
    max-width: 200px;
    font-weight: 500;
    margin: 0;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.work-card:hover .work-card__content .sub-heading {
    color: var(--primary-color);
}

/* brand-logo */
.brand-logo-img {
    height: 180px;
    background: #FAFAFA;
    border-radius: 0.625rem;
    display: grid;
    place-items: center;
}

.brand-logo-img img {
    width: 150px;
    aspect-ratio: 3/2;
    object-fit: contain;
    mix-blend-mode: darken;
}

.logoSlider-one {
    margin-bottom: 1.75rem;
}

.logoSlider-one .swiper-wrapper,
.logoSlider-two .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.insta-img {
    height: 420px;
    border-radius: 1.125rem;
    overflow: hidden;
}

.insta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.5s ease-in-out;
}

.insta-img:hover img {
    transform: scale(1.15);
}

/* newsletter-section */
.newsletter-section {
    background: url("../images/newsletter-bg.webp") no-repeat center / cover fixed;
}

.newsletter-img img {
    object-fit: cover;
}

.newsletter-box {
    padding: 5rem 7.8125rem;
    background: var(--black);
    border-radius: 0.875rem;
}

.newsletter-form,
.signUp-input {
    position: relative;
}

.newsletter-form input {
    display: block;
    width: 100%;
    padding: 1.5rem;
    border: 2px solid var(--white);
    border-radius: 3.125rem;
    background: var(--black);
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    outline: none;
}

.newsletter-form input::placeholder,
.signUp-input input::placeholder {
    color: var(--white);
}

.newsletter-form .themeBtn {
    position: absolute;
    top: 50%;
    right: 0.625rem;
    transform: translateY(-50%);
    outline: none;
}

/* footer */
.footer {
    padding-top: 8rem;
    background: var(--black);
}

.footer * {
    color: var(--white);
}

.footer h3 {
    font-size: 1.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.125rem;
}

.footerLinks li+li {
    margin-top: 0.75rem;
}

.footerLinks li a {
    font-size: 1.125rem;
}

.footer a:hover,
.footerSocial-links li a:hover i {
    color: var(--primary-color);
}

.signUp-form .radio input {
    accent-color: var(--white);
}

.signUp-input input {
    display: block;
    width: 100%;
    padding: 1rem 1rem 1rem 0;
    background: var(--black);
    border: none;
    border-bottom: 1px solid var(--white);
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    outline: none;
}

.signUp-input button {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(-32deg);
}

.footerSocial-links {
    margin-top: 1.25rem;
    gap: 1rem;
}

.footerSocial-links li a {
    font-size: 1.5rem;
}

.copyRight {
    margin-top: 6.25rem;
    border-top: 1px solid #848484;
    padding: 1.5rem 0;
}

/* .tab-content>.tab-pane {
    opacity: 0;
}
.tab-content>.active {
    opacity: 1;
} */


/* inner pages css start */

.inner-banner {
    padding: 0;
}

.inner-banner img {
    height: 580px;
    object-fit: cover;
    border-radius: 27px;
}

.inner-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.inner-banner .overlay h3 {
    font-size: 5rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

.inner-banner .overlay figure {
    text-align: center;
}

.aboutpg-content {
    background: #FAFAFA;
    margin-left: -7rem;
    padding: 8rem 2rem 6rem 6rem;
    border-radius: 18px;
}

.aboutpg-content p {
    font-size: 1.125rem;
    line-height: 2.5625rem;
    margin: 0;
}

.aboutpg-content p+p {
    margin-top: 2rem;
}

figure.radius-img {
    position: relative;
    z-index: 1;
}

.abtpg-choose {
    background: url(../images/arrivalbg.webp) no-repeat top center/ cover;
    position: relative;
    padding: 8rem 0;
}

.abtpg-choose:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(0 0 0 / 95%);
}

.whychose-content h4 {
    font-size: 1.375rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
}

.whychose-content p {
    font-size: 1.125rem;
    color: var(--white);
    line-height: 2.5625rem;
    margin: 0 0 2rem;
}

.whychose-content .heading {
    margin: 0 0 1.5rem;
}

.abtpg-brand {
    display: flex;
    align-items: center;
    flex-flow: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.abtpg-brand .brand-logo-img {
    width: 245px;
}

.abt-brands {
    padding-bottom: 0;
}

.inner-banner .overlay p {
    font-size: 1.5625rem;
    color: var(--white);
    margin: 0;
}

/* .blog-page .blog-card {
    margin-bottom: 6rem;
} */
.blog-page {
    padding-bottom: 0;
}


.contact-info {
    display: block;
    padding: 2rem;
    background: #F4F7FC;
}

.contact-info span {
    font-size: 3.5rem;
    color: var(--black);
    display: inline-block;
    margin: 0 0 7px;
}

.contact-info h4 {
    margin-bottom: 0.7rem;
    font-size: 1.5625rem;
    text-transform: uppercase;
    color: #000;
    font-weight: 600;
}

.contactForm-group :is(input, select, textarea) {
    display: block;
    width: 100%;
    background: transparent;
    border-width: 0 0 1px 0;
    padding: 1rem 0;
    border-color: #16151A;
    color: #989898;
    outline: none;
    resize: none;
    margin-bottom: 2.25rem;
}

.contact-info h6 {
    color: #5C5C5C;
    margin: 0;
    font-size: 15px;
}

.contact-info h6.line {
    color: #5C5C5C;
    display: inline-block;
    border-bottom: 1px solid #5C5C5C;
}

.contact-info h6 strong {
    color: var(--black);
    font-weight: 500;
}

.contactForm .themeBtn.d-block {
    border: 0;
    margin: auto;

}

.rabge-set label {
    font-size: 1rem;
    color: #828282;
    margin: 0 0 20px;
    font-weight: 400;
}

.shop-filter .heading {
    font-size: 1.875rem;
    margin: 0 0 3rem;
}

.shop-filter h3 {
    font-size: 1.375rem;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 1.5rem;
}

.rabge-set p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.rabge-set p input {
    width: 63px;
    height: 33px;
    border: 1px solid #C1C1C1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
}

.rabge-set .ui-slider .ui-slider-handle {
    width: 10px;
    height: 10px;
    background: #828282;
    border-radius: 50%;
    border: 0;
}

.rabge-set .ui-slider-horizontal .ui-slider-range {
    height: 1px;
    background: #828282;
    border: 0;
    width: 100% !important;
    left: 0 !important;
}

.rabge-set .ui-widget.ui-widget-content {
    border: 0;
    margin: 0;
}

div#accordion {}

.faq-content .card {
    border: 0;
    background: transparent;
    margin-bottom: 3rem;
}

.faq-content .card .card-header {
    background: transparent;
    /* font-size: 22px; */
    /* color: #0B0B0B; */
    padding: 0;
    border-color: #828282;
}

.faq-content .card .card-header button.btn {
    font-size: 22px;
    color: #0B0B0B;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 0px 1rem;
}

.faq-content .card .card-body {
    padding: 25px 0 0;
}

ul.discount li a {
    font-size: 1.125rem;
    color: #252525;
    font-weight: 400;
}

ul.discount li+li {
    margin: 10px 0 0;
}

.rabge-set {
    margin-bottom: 2.5rem;
}

ul.star li a {
    display: flex;
    align-items: center;
    gap: 1rem;
}

ul.star li a .star {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #EEC200;
}

ul.star li a span {
    font-size: 1.125rem;
    color: #252525;
    font-weight: 400;
}

ul.star li+li {
    margin: 7px 0 0;
}

.filter div {
    display: flex;
    align-items: center;
    gap: 16px;
}

.filter div ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter div ul li a {
    font-size: 1.2rem;
    color: #D9D9D9;
}

.filter div span {
    font-size: 1rem;
    color: #828282;
    font-weight: 400;
}

.filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.filter select {
    font-size: 1rem;
    color: #828282;
    font-weight: 400;
    width: 169px;
    border-color: #C1C1C1;
    height: 38px;
    padding: 0 10px;
    font-weight: 400;
}

.pagination {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination a {
    width: 41px;
    height: 41px;
    border: 1px solid #D9D9D9;
    border-radius: 3.11px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F6F6F6;
    font-size: 1.25rem;
    color: #D9D9D9;
    font-weight: 400;
}

.pagination a:first-child {
    background: var(--theme-color);
}

.pagination a:last-child {
    background: var(--black);
}

/* inner pages css end */
.mouse-cursor {
    display: none !important;
}