@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

body {
    overflow-x: hidden;
    word-break: break-word;
    color: var(--textColor);
    background-color: var(--bodyColor);
    font: 15px/25px 'Montserrat', sans-serif;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

:root {
    --black: #000;
    --white: #fff;
    --bodyColor: #ebe7db;
    --textColor: #131212;
    --themeColor: #3b4636;
    --themeColor2: #9faa8a;
    --themeColor3: #3b554c;
    --themeColor4: #2e453d;
    --headingColor: #1a000c;
    --secondary-color: #e5e7eb;
    --primary-color: var(--themeColor);
    --track-height: 5px;
    --thumb-size: 20px;
}

a {
    white-space: initial;
    text-decoration: none;
    display: inline-block;
    color: var(--themeColor);
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}

img {
    max-width: 100%
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-size: 85px;
    margin: 0 0 0px;
    font-weight: 400;
    color: var(--white);
    font-family: 'Cinzel';
}

h2 {
    line-height: 1;
    font-size: 70px;
    margin: 0 0 0px;
    font-weight: 400;
    font-family: 'Cinzel';
    color: var(--themeColor);
}

h3 {
    font-size: 30px;
    margin: 0 0 0px;
    font-weight: 500;
    font-family: 'Cinzel';
    color: var(--themeColor);
}

h4 {
    font-size: 18px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Cinzel';
}

h5 {
    font-size: 16px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Cinzel';
}

h6 {
    font-size: 14px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Montserrat';
}

p {
    margin: 0px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0px;
    color: var(--textColor);
    font-family: 'Montserrat';
}

.add-padding {
    width: 100%;
    margin: 0px auto;
    max-width: 1500px;
}

.theme-btn-1 {
    gap: 10px;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    border-width: 1px;
    width: max-content;
    padding: 18px 50px;
    border-style: solid;
    border-radius: 10px;
    color: var(--white);
    align-items: center;
    transition: ease-in-out;
    justify-content: center;
    font-family: 'Montserrat';
    text-transform: uppercase;
    transition-duration: 0.5s;
    border-color: var(--white);
    background-color: var(--themeColor);
    box-shadow: 0px 11px 14px 0px rgba(22, 26, 29, 0.13);

}

.theme-btn-1:hover {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor2);
}



.section-heading {
    text-align: center;
    margin-bottom: 25px;
}

.section-heading p {
    width: 80%;
    margin: auto;
    opacity: 0.5;
    max-width: 950px;
}


/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    position: relative;
    text-align: center;
    align-items: center;
    text-transform: capitalize;
    justify-content: space-between;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: var(--white);
}

.menuSection {
    left: 0;
    top: 20px;
    z-index: 9;
    width: 100%;
    padding: 10px 4%;
    position: absolute;
    border-top: 1px solid #ffffff9c;
    border-bottom: 1px solid #ffffff9c;
}

.menuSection .row {
    align-items: center;
}

.header-btn {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-cart {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    color: var(--black);
    justify-content: center;
    background-color: var(--white);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.header-logo {
    top: -6px;
    height: 15px;
    position: relative;
    width: fit-content;
}

.header-logo a,
.header-logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/*header css start */


/*banner css start */


.main_slider {
    min-height: 550px;
    position: relative;
    padding: 160px 4% 100px;
    background-image: url(../images/banner-bg.png);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.main_slider::before {
    left: 0;
    bottom: 0;
    width: 100%;
    content: '';
    height: 60px;
    position: absolute;
    background-image: url(../images/section-before.png);
    background-position: top center;
    background-size: cover;
}

.banner_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(40px 40px 36px #141414ce);
}

.banner_img {
    width: 100%;
    display: flex;
    height: 570px;
    align-items: center;
    justify-content: center;
}

.bannerTextSlider .slick-slide {
    opacity: 1;
    margin: 0px;
}

.bannerTextSlider .slick-list,
.bannerImgSlider .slick-list {
    overflow: visible;
}

.banner_text {
    z-index: 1;
    position: relative;
}

.banner_text h1 span {
    display: block;
    padding-left: 15%;
    white-space: nowrap;
    position: relative;
    color: var(--themeColor);
}

.banner_text h1 span::after {
    top: 0;
    left: 0;
    bottom: 0;
    width: 13%;
    height: 3px;
    margin: auto;
    content: '';
    position: absolute;
    background-color: var(--themeColor);
}

.banner_text h1 span::before {
    top: 0;
    right: -60%;
    content: '';
    z-index: -1;
    height: 100%;
    width: 100vw;
    position: absolute;
    background-color: var(--bodyColor);
}

.banner_text h1 {
    margin-bottom: 20px;
}

.banner_text p {
    opacity: 0.5;
    padding-left: 10%;
    color: var(--white);
    margin-bottom: 25px;
}

.banner_text .theme-btn-1 {
    margin-left: 10%;
}

.bannerImgSlider .slick-slide {
    margin: 0px 5px;
}

.bannerImgSlider .slick-dots {
    right: 0;
    bottom: 0;
    height: 100%;
    margin: auto;
    display: flex;
    position: absolute;
    width: fit-content;
    align-items: flex-end;
    flex-direction: column;
    justify-content: center;
}

.bannerImgSlider .slick-dots li {
    width: 25px;
    height: 25px;
    display: flex;
    opacity: 0.5;
    position: relative;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}

.bannerImgSlider .slick-dots li::before {
    top: 0;
    bottom: 0;
    left: 100%;
    content: '';
    height: 1px;
    margin: auto;
    width: 0vw;
    position: absolute;
    background-color: var(--white);
}

.bannerImgSlider .slick-dots li.slick-active {
    opacity: 1;
    border: 1px solid var(--white);
}

.bannerImgSlider .slick-dots li.slick-active::before {
    width: 100vw;
}

.bannerImgSlider .slick-dots li button {
    height: 100%;
    width: 100%;
}

.bannerImgSlider .slick-dots li button:before {
    opacity: 1;
    width: 100%;
    height: 100%;
    line-height: 24px;
    color: var(--white);
}

.bannerImgSlider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--white);
}









/*banner css end*/

/* inner banner */
section.main_slider.inner-banner-sec {
    margin-bottom: 100px;
}

section.main_slider.inner-banner-sec .banner_img {
    z-index: 1;
    height: 400px;
    position: relative;
    align-items: flex-start;
}

section.main_slider.inner-banner-sec .banner_img img {
    height: 550px;
}

section.main_slider.inner-banner-sec .banner_text h1 span {
    white-space: unset;

}

section.main_slider.inner-banner-sec .banner_text h1 span::after {
    display: none;
}

section.main_slider.inner-banner-sec .banner_text h1 span {
    padding-left: 0;
}


/* inner banner */

/* about-sec */

.about-sec {
    padding: 100px 4%;
}

.about-img {
    padding-right: 15%;
}

.about-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 20px;
    border: 10px solid var(--white);
}

.about-img h3 {
    margin-bottom: 10px;
}

.about-img p {
    opacity: 0.5;
    margin-bottom: 25px;
}

.about-text img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-top: 20px;
    border: 10px solid var(--white);
}

.about-text p {
    opacity: 0.5;
    margin-bottom: 25px;
}

.about-text .theme-btn-1 {
    margin-bottom: 20px;
}

/* about-sec */

/* abuot-more-text */

.abuot-more-text {
    margin-top: 40px;
}

.abuot-more-text p {
    opacity: 0.5;
    margin-bottom: 25px;
}

/* abuot-more-text */


/* stories-sec */

.stories-sec {
    padding: 0px 0px 100px;
}

.storiesSlider .slick-slide {
    opacity: 1;
    margin: 0px 10px;
}

.stories-box {
    width: 100%;
    height: 360px;
    margin: 15px 0px;
    position: relative;
    border: 10px solid var(--white);
}

.stories-box .stories-img {
    width: 100%;
    height: 100%;
}

.stories-box .stories-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stories-text {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 25px;
    display: flex;
    position: absolute;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    background: linear-gradient(181deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.stories-text h3 {
    opacity: 0.8;
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--white);
}

.stories-text p {
    opacity: 0.5;
    color: var(--white);
}

.suctom-mt {
    margin-top: 80px;
}

/* stories-sec */

/* product-sec */

.product-sec-heading {
    padding: 80px 4%;
    position: relative;
    background-color: #fefefd;
}

.product-sec-heading::before {
    left: 0;
    bottom: 0;
    width: 100%;
    content: '';
    height: 60px;
    position: absolute;
    background-image: url(../images/section-before.png);
    background-position: top center;
    background-size: cover;
}

.product-sec-heading::after {
    left: 0;
    top: 0;
    width: 100%;
    content: '';
    height: 60px;
    position: absolute;
    transform: rotate(180deg);
    background-image: url(../images/section-before.png);
    background-position: top center;
    background-size: cover;
}

.product-heading {
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.product-heading .nav {
    gap: 20px;
    border: none;
}

.product-heading .nav .nav-link.theme-btn-1 {
    box-shadow: none;
    font-weight: 500;
    padding: 18px 30px;
    border-radius: 10px;
    color: var(--themeColor);
}

.product-heading .nav .nav-link:hover,
.product-heading .nav .nav-link.active {
    border-width: 1px;
    color: var(--white);
    border-color: var(--white);
    background-color: var(--themeColor);
    box-shadow: 0px 11px 14px 0px rgba(22, 26, 29, 0.13);
}

.product-list-sec .custom-pl {
    padding-left: 50px;
}

.product-box {
    max-width: 320px;
    margin: 20px auto;
    background-color: var(--white);
}

.product-img {
    padding: 25px;
    display: block;
    border: 1px solid #e1e1e1;
}

.product-img img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    filter: drop-shadow(-21px 29px 36px #141414ce);
}

.product-img h3 {
    font-size: 20px;
    margin: 30px 0px 20px;
}

.product-img ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-img ul li h6 {
    color: #515151;
}

.product-img ul li h6 span {
    margin-right: 10px;
    padding-right: 10px;
    display: inline-flex;
    border-right: 1px solid #d9d9d9;
}

.product-img ul li h6 span i {
    font-size: 12px;
    color: #ff4138;
}

.product-img ul li h6 span i:last-child {
    color: #e5e5e5;
}

.product-img ul li h4 {
    font-size: 26px;
    color: #03563d;
}

.product-button {
    display: flex;
    padding: 30px 10px;
    align-items: center;
    justify-content: center;
    background-color: var(--themeColor);
}

/* product-sec */

/* why-choose-sec */

.why-choose-sec {
    position: relative;
    padding: 160px 0px 0px;
    background-image: url(../images/why-choose-bg.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.why-choose-sec::before {
    left: 0;
    top: 0;
    width: 100%;
    content: '';
    height: 60px;
    position: absolute;
    transform: rotate(180deg);
    background-image: url(../images/section-before.png);
    background-position: top center;
    background-size: cover;

}

.why-choose-sec::after {
    left: 0;
    bottom: 0;
    width: 100%;
    content: '';
    height: 60px;
    position: absolute;
    background-image: url(../images/section-before.png);
    background-position: top center;
    background-size: cover;
}

.why-choose-img {
    width: 100%;
    height: 600px;
    margin-right: 25px;
    border: 10px solid var(--white);
}

.why-choose-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-text h2 {
    margin-bottom: 10px;
    color: var(--bodyColor);
}

.why-choose-text p {
    opacity: 0.5;
    margin-bottom: 20px;
    color: var(--white);
}

/* why-choose-sec */

/* music-sec */

.music-sec {
    padding: 100px 4%;
}

.music-img {
    width: 100%;
    height: 500px;
    min-height: 100%;
    border: 10px solid var(--white);
}

.music-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.music-text img {
    width: 300px;
    height: 280px;
    float: inline-end;
    object-fit: cover;
    margin-top: 200px;
    border: 10px solid var(--white);
}

.music-text {
    padding-left: 20px;
}

.music-text h2 {
    margin-bottom: 5px;
}

.music-text p {
    opacity: 0.5;
    margin-bottom: 25px;
}

/* music-sec */

/* review-sec */

.review-sec {
    padding: 100px 0px;
}

.review-box {
    gap: 20px;
    display: flex;
    padding: 25px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: #f5f3ed;
}

.review-box img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 10px;
}

.review-box h5 {
    font-size: 18px;
    text-align: center;
    color: var(--textColor);
}

.review-box h5 span {
    display: block;
    font-size: 12px;
    opacity: 0.5;
    color: var(--textColor);
    font-family: 'Montserrat';
}

.review-box .review-star {
    gap: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-box .review-star i {
    font-size: 10px;
    color: #ff9c00;
}

.reviewSlider .slick-slide {
    opacity: 1;
    margin: 0px 10px;
}

.review-box-text {
    width: 100%;
    height: 90px;
    padding-right: 5px;
    font-style: italic;
    overflow-y: scroll;
    text-align: center;
}

.review-box-text * {
    opacity: 0.5;
}

.review-box-text::-webkit-scrollbar {
    width: 4px;
    background-color: #fff;
}

.review-box-text::-webkit-scrollbar-thumb {
    background-color: var(--themeColor2);
    outline: 1px solid var(--themeColor2);
    border-radius: 100px;
}

.review-box-text::-webkit-scrollbar-track {
    box-shadow: inset 0 0 10px rgb(0 0 0 / 55%);
}


/* review-sec */

/* product detail starts */

section.product-detail {
    padding: 100px 4%;
}

.product-detail .productdetailportion {
    height: 450px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    border-radius: 17px;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 33px 0px rgba(0, 0, 0, 0.07);
}

.productdetailfor .slick-slide img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.productdetailnav .slick-slide {
    margin: 0 10px;
    cursor: pointer;
}

.productdetailsmallportion {
    width: 100%;
    display: flex;
    height: 110px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    border: 1px solid #ececec;
    background-color: var(--white);
}

.productdetailsmallportion img {
    width: 90%;
    height: 90%;
    transition: 0.3s;
    object-fit: contain;
}

.productdetailnav .slick-slide.slick-current .productdetailsmallportion {
    position: relative;
}

.productdetailnav .slick-slide.slick-current .productdetailsmallportion::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: -10px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background-color: var(--white);
    z-index: -1;
}

.productdetailnav .slick-slide.slick-current .productdetailsmallportion {
    padding: 5px;
    border-radius: 5px;
    background: var(--white);
    box-shadow: 0px 0px 33px 0px rgba(0, 0, 0, 0.07);
}

.product-content .top-section h6 {
    font-size: 35px;
    margin-bottom: 15px;
    font-family: '';
}

.product-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-content ul li {
    margin-right: 5px;
    font-size: 17px;
    color: black;
    font-weight: 600;
}

.product-content ul li i.fas.fa-star {
    color: #ffc107;
}

.product-content hr {
    margin: 20px 0;
    border-color: #eee;
}

.row.flexEnd.price_rev ul {
    display: flex;
}

.row.flexEnd.price_rev p {
    font-size: 17px;
    color: black;
    font-weight: 600;
    font-size: 17px;
}

.brand p {
    color: #666;
    line-height: 1.6;
}

.product-detail .slick-active {
    opacity: 1;
}

.product-detail .slick-slide {
    transition: all ease-in-out .3s;
    opacity: 1;
    margin: 8px 10px;
}

ul.brand h3 {
    color: #00000082;
    font-size: 22px;
    padding: 20px 0 20px 0;
    text-decoration: line-through;
}

.price_rev {
    margin-bottom: 15px;
}

ul.brand h2 {
    line-height: 1;
    font-size: 35px;
    font-weight: 600;
    padding: 0 0 10px 0;
    color: var(--headingColor2);
}

ul.brand h4 {
    font-size: 16px;
    margin: 20px 0px;
    font-family: 'Poppins';
    text-transform: uppercase;
}

ul.brand p {
    padding: 0 0 30px 0;
}

.quanity.product-detail div {
    gap: 10px;
    display: flex;
    align-items: center;
    margin: 0px 0px 20px;
    border-radius: 0 !important;
    justify-content: flex-start;
}

.quanity.product-detail .num-block.skin-2 .num-in,
.quanity.product-detail .num-block.skin-2 {
    gap: 0;
    margin-bottom: 0px;
}

.quan-count {
    height: 60px;
    width: 140px;
    display: flex;
    padding: 0px 10px;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbcbcb;
}

.sku {
    display: flex;
    justify-content: space-between;
    width: 60%;
}

.sku p {
    font-size: 17px;
    font-weight: 600;
    padding: 0 0 10px 0;
    color: var(--headingColor2);
}

.sku span {
    font-size: 17px;
    font-weight: 600;
    color: var(--headingColor2);
}

ul.share-icon {
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.share-icon li {
    font-size: 17px;
    font-weight: 600;
    color: var(--headingColor2);
}

.sku p {
    margin-bottom: 10px;
}

.sku p.position-relative {
    top: 10px;
}

ul.share-icon a {
    width: 40px;
    height: 40px;
    display: flex;
    opacity: 0.5;
    font-size: 16px;
    border-radius: 50%;
    align-items: center;
    transition: ease-in-out;
    justify-content: center;
    transition-duration: 0.5s;
    color: var(--headingColor2);
    border: 1px solid var(--headingColor2);
}

ul.share-icon a:hover {
    opacity: 1;
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--headingColor2);
}

/*  product Detail Review Section Start */


/* Rating Stars */

.prod-detail-description .rating:not(:checked)>input {
    position: absolute;
    -webkit-appearance: none;
}

.prod-detail-description .rating:not(:checked)>label {
    float: right;
    cursor: pointer;
    font-size: 30px;
    color: #666;
}

.prod-detail-description .rating:not(:checked)>label:before {
    content: "ÃƒÂ¢Ã‹Å“Ã¢â‚¬Â¦";
}

.prod-detail-description .rating>input:checked+label:hover,
.prod-detail-description .rating>input:checked+label:hover~label,
.prod-detail-description .rating>input:checked~label:hover,
.prod-detail-description .rating>input:checked~label:hover~label,
.prod-detail-description .rating>label:hover~input:checked~label {
    color: #e58e09;
}

.prod-detail-description .rating:not(:checked)>label:hover,
.prod-detail-description .rating:not(:checked)>label:hover~label {
    color: #ff9e0b;
}

.prod-detail-description .rating>input:checked~label {
    color: #ffa723;
}

.price_rev .col-6 {
    width: fit-content;
}

/* Rating Stars */

.prod-detail-description {
    position: relative;
    padding: 0 4% 100px;
}

.prod-detail-description .nav-tabs .nav-link {
    padding: 15px;
    font-size: 25px;
    font-weight: 500;
    width: fit-content;
    margin-right: 10px;
    background: transparent;
    text-transform: uppercase;
    color: var(--headingColor2);
    border-radius: 0 !important;
    font-family: '';
}

.prod-detail-description .nav-tabs .nav-link.active,
.prod-detail-description .nav-tabs .nav-item.show .nav-link {
    border: 0;
    border-bottom: 3px solid var(--headingColor2) !important;
}

.prod-detail-description .nav-tabs .nav-link:hover,
.prod-detail-description .nav-tabs .nav-link:focus {
    border: 0;
    border-bottom: 3px solid var(--headingColor2) !important;
}

.prod-detail-description .nav-tabs {
    margin-bottom: 15px;
    border: 0;
    border-bottom: 1px solid #dee2e6;
}

.prod-detail-description .prd-review-input label {
    font-size: 16px;
    color: var(--black);
    font-weight: 600;
    text-transform: capitalize;
}

.prod-detail-description .prd-review-input input {
    width: 100%;
    height: 50px;
    padding: 0 10px;
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
    border: 1px solid var(--black);
    margin: 5px 0 20px;
    background-color: transparent;
}

.prod-detail-description .prd-review-input input::placeholder,
.prod-detail-description .prd-review-input textarea::placeholder {
    color: var(--black);
    font-weight: 600;
    font-size: 16px;
}

.prod-detail-description .prd-review-input textarea {
    width: 100%;
    height: 200px;
    padding: 13px;
    border: 1px solid var(--black);
    margin: 5px 0 0;
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    resize: none;
    background-color: transparent;
}

.prod-detail-description .rating-stars input {
    width: auto !important;
    height: auto;
    border: 0;
}

.prod-detail-description .rating-stars {
    display: inline-grid;
    justify-items: baseline;
}

.prod-detail-description .rating {
    display: block;
    /* align-items: center; */
    /* justify-content: flex-start; */
    /* gap: 5px; */
    margin: 20px 0;
    float: left;
}

.prod-detail-description .prd-review-input.give-review h4 {
    font-size: 30px;
    color: var(--black);
    text-transform: uppercase;
}

.prod-detail-description .prd-review-input.give-review button {
    padding: 15px 40px;
    border-radius: 0;
    border: 1px solid var(--black);
    font-size: 16px;
    text-transform: uppercase;
    background: var(--black);
    color: var(--white);
}

.prod-detail-description .client-review-box {
    box-shadow: 0 0 5px 1px #989898;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.prod-detail-description ul.client-list-review {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
}

.prod-detail-description ul.client-list-review li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.prod-detail-description ul.client-list-review img {
    width: 80px;
    height: 80px;
    border-radius: 100px;
    object-fit: cover;
    box-shadow: 0 0 5px 1px #989898;
}

.prod-detail-description ul.client-list-review h5 {
    font-size: 24px;
    color: var(--black);
    text-transform: capitalize;
    font-weight: 500;
}

.prod-detail-description ul.client-list-review h6 {
    font-size: 16px;
    color: #666;
    font-family: "Poppins";
}

.prod-detail-description ul.client-list-review li i {
    font-size: 20px;
    color: #c78b1b;
}

.prod-detail-description .client-info {
    margin-left: 15px;
}

.prod-detail-description .client-review-box p {
    font-size: 16px;
    color: var(--black);
}

.prod-detail-description .prd-det-review-form .row {
    align-items: center;
}

.prod-detail-description .prd-det-discription-content p {
    margin: 0;
    font-size: 16px;
    padding-bottom: 10px;
    color: var(--headingColor2);
}

.prod-detail-description .prd-det-additional-content p {
    text-align: justify;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 10px;
}

.prod-detail-description .prd-det-discription-content ul li p {
    text-transform: uppercase;
}

.product-detail1 .skin-2 .num-in {
    height: 50px;
    width: 150px;
    float: left;
    display: flex;
    border-radius: 25px;
    cursor: pointer;
    align-items: center;
    position: relative;
}

.product-detail1 .skin-2 .num-in span:before,
.product-detail1 .skin-2 .num-in span:after {
    opacity: 1;
    content: '';
    position: absolute;
    background-color: var(--black);
    height: 2px;
    width: 10px;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -5px;
}

section.inner_gift_sec1 .about_text h3 {
    font-size: 44px;
}

.product-detail1 .skin-2 .num-in span.plus:after {
    transform: rotate(90deg);
    opacity: 1;
}

ul.disc-list li {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* product detail ends */


/*CART PAGE CSS*/

.shopping_cart {
    padding: 80px 0;
}

.shopping_cart_table h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--black);
}

.shopping_cart_table table th {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    padding-bottom: 10px;
}

.shopping_cart_table table thead {
    border-bottom: 1px solid #b8b8b8;
}

.shopping_cart_table table tbody td {
    padding: 25px 0;
    border-bottom: 1px solid #b8b8b8;
}

.shopping_cart_table table tbody .cart_box_product {
    display: flex;
    gap: 10px;
    align-items: center;
}

.shopping_cart_table table tbody .cart_box_product .cart_product_name h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.shopping_cart_table table tbody .cart_box_product .cart_product_name p {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    color: var(--headingColor);
    text-transform: capitalize;
}

.shopping_cart_table table tbody td select {
    height: 40px;
    padding-left: 10px;
    appearance: auto;
    border: 1px solid #b8b8b8;
}

.shopping_cart_table table tbody td .skin-2 .num-in {
    height: 60px;
    border-radius: 10px !important;
    border-width: 1px;
    border-color: rgba(0, 0, 0, 0.281);
    border-style: solid;
    border-radius: 10px;
    background-color: rgba(255, 251, 235, 0.658);

}

.shopping_cart_table table tbody td .t_price {
    font-size: 36px;
    font-weight: 400;
    font-family: 'Cinzel';
    color: var(--headingColor2);
}

th.w-40 {
    width: 40%;
}

.shopping_cart_table table tbody td i.fas.fa-times {
    font-size: 20px;
    color: var(--black);
}

.minus,
.plus {
    font-size: 20px;
    padding: 0.5rem;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 0.5rem;
    cursor: pointer;
    user-select: none;
    /* Prevent text selection */
}

.minus.dis {
    color: #aaa;
    cursor: not-allowed;
}

.minus:hover:not(.dis),
.plus:hover {
    border-color: #102d26;
    color: #102d26;
}

#number {
    height: 25px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    font-family: 'Cinzel';
}

.cart_recipt {
    display: flex;
    margin-top: 30px;
    align-items: flex-start;
    justify-content: space-between;
}

.cart_recipt>a {
    font-size: 16px;
    font-weight: 500;
    color: #151414;
    padding: 15px 30px;
    letter-spacing: 1px;
    border-radius: 10px;
    text-transform: uppercase;
    border: 1px solid #b8b8b8;
}

.cart_recipt>a i {
    margin-right: 10px;
}

.recipt {
    width: 30%;
}

.cart_product_img img {
    height: 100%;
    width: fit-content;
    object-fit: contain;
    object-position: left;
}

.cart_product_img {
    width: 100px;
    display: flex;
    height: 130px;
    flex-shrink: 0;
    border-radius: 2px;
    align-items: center;
    justify-content: center;
}

.recipt li {
    display: flex;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    align-items: center;
    text-transform: uppercase;
    justify-content: space-between;
}

.recipt li:last-child {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #b8b8b8;
}

.recipt li span {
    font-size: 16px;
    letter-spacing: 2px;
}

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: #c7c4ba;
}

.payment_card h3 {
    font-size: 35px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 50px;
    border-bottom: 1px solid #c7c4ba;
}

.credit_paypal a {
    padding: 10px 20px;
    border: 1px solid #e0dcd0;
    border-radius: 30px;
    gap: 10px;
    display: inline-flex;
    align-items: center;
    color: var(--black);
    font-weight: 500;
    background-color: #e0dcd0;
    font-size: 15px;
    justify-content: space-between;
}

.table-responsive table {
    max-width: 1000px;
    width: auto !important;
    min-width: 100%;
    overflow-x: auto;
}

.credit_paypal a img {
    height: 20px;
    object-fit: contain;
    margin-right: 10px;
    filter: brightness(0);
}

.credit_paypal {
    padding-bottom: 20px;
    border-bottom: 1px solid #c7c4ba;
}

.payment_card form label {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: var(--black);
}

.payment_card form {
    margin-top: 15px;
}

.payment_card form input {
    padding: 0;
    width: 100%;
    height: 50px;
    border: none;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 15px;
    background: transparent;
    border-bottom: 1px solid #c7c4ba;
}

.payment_card form input::placeholder {
    color: var(--black);
    font-weight: 500;
}

.payment_card form select {
    width: 100%;
    padding: 0;
    height: 50px;
    border: none;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 15px;
    background: transparent;
    border-bottom: 1px solid #c7c4ba;
}


.expiry_cvv {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.expiry_date {
    width: 70%;
}

.cvv_box {
    width: 26%;
}

.month_year {
    display: flex;
    justify-content: space-between;
}

.month_year select {
    width: 48% !important;
    appearance: auto;
}

.month_year select option {
    color: var(--black);
}

.payment_card form .btn1 {
    margin: 30px 85px;
    border: 1px solid;
}

.shopping_cart_table {
    padding-right: 40px;
}

.skin-2 .num-in {
    height: 40px;
    width: 150px;
    float: left;
    display: flex;
    border-radius: 25px;
    cursor: pointer;
    align-items: center;
}

.skin-2 .num-in span {
    width: 40px;
    height: 40px;
    border: none;
}

.skin-2 .num-in span.plus:after {
    transform: rotate(90deg);
}

.num-in input.in-num {
    background-color: #ffffff;
    width: 38%;
}

.skin-2 .num-in input {
    float: left;
    width: 40px;
    height: 40px;
    border: none;
    text-align: center;
    background: transparent;
}

.cart-to-check-box {
    display: flex;
    margin-top: 25px;
    align-items: center;
    justify-content: center;
}

/*CART PAGE CSS END*/


/* product list page */

.product-list-sec {
    padding: 100px 4%;
}

.show-prg-num {
    gap: 10px;
}

.show-prg-num div {
    gap: 15px;
    display: flex;
    align-items: center;
}

.show-prg-num div a {
    font-size: 15px;
    color: #000000;
    font-family: 'Cinzel';
}

.showing-icon {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 20px 25px 20px 0px;
}

.found-box {
    padding: 30px 0px;
    border-right: 1px solid #e2ddd7;
}

.showing-icon>.product-select {
    width: 90%;
    position: relative;
}

.right-side-top {
    margin-bottom: 80px;
    border-bottom: 1px solid #e2ddd7;
}

.product-select select {
    width: 100%;
    height: 40px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 40px 8px 10px;
    /* space for the icon */
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid #dedad1;
    background-color: #e9e6dc;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.product-select i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    pointer-events: none;
    font-size: 12px;
}

.right-side-top p {
    margin: 0;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    font-family: 'montserrat', sans-serif;
}

.view-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.grid_box {
    position: relative;
}

.grid_box:hover p {
    opacity: 1;
}

.grid_box>p {
    position: absolute;
    width: 90px;
    background: var(--themeColor);
    color: #fff;
    top: -50px;
    left: -40px;
    height: 40px;
    display: flex;
    font-family: 'Cinzel';
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    opacity: 0;
}

.grid_box p:after {
    position: absolute;
    content: "";
    width: 20px;
    height: 10px;
    left: 35px;
    bottom: -9px;
    background: var(--themeColor);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.grid-view {
    gap: 10px;
    display: flex;
    align-items: center;
}

.product-side-bar {
    position: relative;
    border-right: 1px solid #d1cec3;
}

.product-side-bar::before {
    top: -80px;
    width: 1px;
    right: -1px;
    content: '';
    height: 80px;
    position: absolute;
    background-color: #d1cec3;
}

.product-side-bar h4 {
    font-size: 28px;
    text-transform: uppercase;
    font-family: 'Blender_Pro';
}

.product-side-bar ul {
    margin-top: 25px;
}

.product-side-bar ul li {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #d1cec3;
}

.product-side-bar .form-group {
    display: block;
}

.product-side-bar .form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.product-side-bar .form-group label {
    cursor: pointer;
    position: relative;
    color: var(--black);
    font-family: 'Montserrat';
}

.product-side-bar .form-group label:before {
    content: '';
    -webkit-appearance: none;
    width: 15px;
    background-color: var(--white);
    height: 15px;
    padding: 0px;
    cursor: pointer;
    margin-right: 5px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #42403f;
}

.product-side-bar .form-group input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 6px;
    left: 6px;
    width: 4px;
    height: 9px;
    border: solid #42403f;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.page-item {
    gap: 10px;
    display: flex;
    margin-top: 25px;
    align-items: center;
    justify-content: center;
}

.page-item button::before {
    top: 0;
}

.page-item button {
    width: 45px;
    height: 45px;
    font-size: 16px;
    border-radius: 50%;
    font-family: 'Cinzel';
    color: var(--themeColor);
    background-color: transparent;
    border: 1px solid var(--themeColor);
}

.page-item button.active {
    color: var(--white);
    background-color: var(--themeColor);
}

.right-side-top .found-box p {
    font-size: 18px;
    font-family: 'Cinzel';
}

/* product list page */


/* account sec */

.account-sec {
    padding: 100px 0px;
}

section.account-sec .waraper h5 {
    color: var(--themeColor);
    font-size: 42px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
    margin-bottom: 10px;
}

section.account-sec .form {
    padding: 50px 30px;
    border-radius: 10px;
    background-color: #fff;
    transition: ease-in 0.5s;
    box-shadow: 0px 0px 16px 0px rgba(63, 63, 63, 0.15);
}

section.account-sec .form:hover {
    transition: ease-in 0.5s;
    border: 1px solid var(--white);
    background-color: var(--themeColor3);
}

section.account-sec .form h5 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 15px;
}

section.account-sec .form:hover h5 {
    color: #fff;
    transition: ease-in 0.5s;
}

section.account-sec .form:hover button {
    color: #013220;
    transition: ease-in 0.5s;
    background-color: #fff;
}

section.account-sec .form:hover input,
section.account-sec .form:hover select {
    color: #fff;
    border-radius: 5px;
    border: 1px solid #fff;
    transition: ease-in 0.5s;
    background-color: transparent;
}

section.account-sec .form:hover select option {
    color: var(--black);
}

section.account-sec .form:hover input::placeholder {
    color: #fff;
    transition: ease-in 0.5s;
}

section.account-sec .form:hover .form-check label {
    color: #fff;
    transition: ease-in 0.5s;
}

section.account-sec .form:hover .forget a.bnts {
    color: #fff;
    transition: ease-in 0.5s;
}

section.account-sec .form:hover .para p,
section.account-sec .form:hover .para p a {
    color: #fff;
    transition: ease-in 0.5s;
}

section.account-sec .form input,
section.account-sec .form select {
    width: 100%;
    margin: 12px 0px;
    padding: 14px 20px;
    color: #59564f;
    border-radius: 10px;
    background-color: #fff;
    transition: ease-in 0.5s;
    border: 1px solid #e0dcdc;
}

section.account-sec .form input::placeholder {
    font-size: 16px;
    transition: ease-in 0.5s;
    color: #59564f;
}

section.account-sec .form button {
    width: 100%;
    border: 0px;
    color: #fff;
    padding: 12px 0;
    font-size: 16px;
    transition: 0.4s;
    font-weight: 500;
    border-radius: 10px;
    transition: ease-in 0.5s;
    text-transform: uppercase;
    background-color: var(--themeColor);
}

section.account-sec .form button#login {
    margin: 10px 0px;
}

section.account-sec .form:hover .toggle-password {
    color: #fff;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #000;
}

section.account-sec .form-check input#rememberMe {
    width: auto;
    padding: 8px;
    margin-right: 10px;
    border-radius: 0px;
    transition: ease-in 0.5s;
    background-color: #fff;
    border: 1px solid #f2f2f2;
}

section.account-sec .form-check label {
    font-size: 16px;
    margin-bottom: 0px;
    transition: ease-in 0.5s;
    color: #a7a7a7;
}

section.account-sec .forget {
    display: flex;
    justify-content: space-between;
    transition: ease-in 0.5s;
    align-items: center;
}

section.account-sec .form-check {
    padding-left: 0px !important;
    transition: ease-in 0.5s;
}

section.account-sec .form button:hover {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    transition: ease-in 0.5s;
}

section.account-sec .forget a.bnts {
    font-size: 16px;
    color: #a7a7a7;
    transition: ease-in 0.5s;
}

section.account-sec .forget a.bnts:hover {
    color: #000;
}

section.account-sec .form-check input#rememberMe:focus {
    outline: 0px !important;
    box-shadow: unset;
}

section.account-sec .form-check-input:checked[type="checkbox"] {
    filter: brightness(0);
    background-color: transparent !important;
    transition: ease-in 0.5s;
}

section.account-sec .form .para p {
    font-size: 14px;
    color: #000;
    margin-bottom: 16px;
    transition: ease-in 0.5s;
    padding-left: 3px;
}

section.account-sec .form .para p a {
    font-weight: 600;
    transition: 0.4s;
    color: var(--themeColor);
    text-decoration: underline;
}

section.account-sec .form .para p a:hover {
    color: #ffff;
    transition: ease-in 0.5s;
}

/* account sec */

/* soundtrack-sec */

.soundtrack-sec {
    padding: 80px 0px 0px;
}

.audio-player-wrap {
    gap: 15px;
    display: flex;
    padding: 30px 0px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #d8d7cb;
}

.last-audio-player .audio-player-wrap:last-child {
    border-bottom: none;
}

.audio-player-img {
    width: 120px;
    height: 110px;
    flex-shrink: 0;
    overflow: hidden;
}

.audio-player-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play_btn {
    width: 70px;
    height: 70px;
    display: flex;
    flex-shrink: 0;
    border-radius: 50%;
    align-items: center;
    color: var(--themeColor2);
    justify-content: center;
    background-color: transparent;
    border: 1px solid var(--themeColor);
}

.control-btn {
    gap: 5px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-start;
}

.control-btn button {
    gap: 3px;
    border: none;
    width: 50px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: transparent;
}

.audio-player-progress {
    width: 100%;
    display: flex;
    margin-left: 20px;
    align-items: center;
    justify-content: space-between;
}

.player-progress-bar {
    width: 85%;
    background-image: url(../images/play-bar-blue.png);
    background-size: contain;
    height: 67px;
    background-position-x: left;
    background-position-y: center;
    cursor: pointer;
    background-repeat: no-repeat;
}

.player-progress-bar img {
    height: 51px;
    width: 100%;
    object-fit: contain;
    object-position: left;
    margin-top: 9px;
    margin-left: 0;
}

.time-stamp {
    opacity: 0.5;
    font-size: 14px;
    font-weight: 500;
    color: var(--textColor);
}

.time-stamp.current-time {
    left: 15px;
    position: relative;
    padding-right: 10px;
    margin-right: 10px;
}

.time-stamp.current-time::before {
    top: 0;
    bottom: 0;
    width: 1px;
    content: '';
    right: -4px;
    height: 80%;
    margin: auto;
    position: absolute;
    transform: rotate(18deg);
    background-color: var(--textColor);
}

.volume-btn {
    font-size: 25px;
    color: var(--themeColor2);
}

.player-progress-bar {
    position: relative;
}

.player-progress-bar::before {
    top: 0;
    bottom: 0;
    left: -20px;
    content: '';
    height: 8px;
    width: 8px;
    margin: auto;
    position: absolute;
    border-radius: 50%;
    background-color: var(--themeColor2);
}

.soundtrack-sec.all-song-sec {
    padding: 100px 0px;
}

.music-tab .nav .nav-link.theme-btn-1 {
    border: none;
    box-shadow: none;
    font-weight: 500;
    padding: 18px 30px;
    border-radius: 10px;
    color: var(--themeColor);
    background-color: var(--white);
}

.music-tab .nav .nav-link:hover,
.music-tab .nav .nav-link.active {
    border-width: 1px;
    color: var(--white);
    border-color: var(--white);
    background-color: var(--themeColor);
    box-shadow: 0px 11px 14px 0px rgba(22, 26, 29, 0.13);
}

.music-tab .nav {
    gap: 20px;
    border: none;
    justify-content: center;
}

.audio-player-wrap a.theme-btn-1 {
    flex-shrink: 0;
    padding: 12px 20px;
}

#musicTabContent .time-stamp.current-time::before {
    right: 3px;
}

.group-box {
    display: flex;
    padding: 20px;
    flex-wrap: wrap;
    border-radius: 10px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--themeColor3);
}

.group-box .audio-player-wrap {
    gap: 5px;
    width: 48.5%;
    flex-wrap: wrap;
}

.group-box .audio-player-img {
    width: 100%;
    height: 260px;
}

.group-box .control-btn {
    width: 100%;
    margin: 25px 0px 5px;
    justify-content: space-between;
}

.group-box .play_btn {
    z-index: 1;
    position: relative;
    margin: -20px auto -110px;
}

.group-box .audio-player-progress {
    flex-wrap: wrap;
    justify-content: flex-start;
}

.group-box .player-progress-bar {
    width: 100%;
}

.group-box .time-stamp {
    width: 50px;
    left: -6px;
}

.group-box .audio-player-actions {
    margin: -32px 0px 0px auto;
}

.group-box .audio-player-wrap:last-child {
    border-bottom: 1px solid #d8d7cb;
}

.group-box .theme-btn-1 {
    width: 100%;
    margin-top: 15px;
}

/* soundtrack-sec */

/*Billing start */

.billing_form {
    padding: 40px;
    /*background-color: #0e194a;*/
}

.billing_form h3 {
    font-size: 40px;
    margin: 0;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--black);
}

.billing_form label {
    font-size: 14px;
    color: #7c7c7c;
    line-height: 20px;
    font-weight: 600;
}

.radiosss p {
    color: #7C7C7C;
    font-size: 14px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0;
    font-weight: 400;
    background: transparent;
}

.billing_form input {
    width: 100%;
    height: 50px;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
    padding-left: 15px;
    background-color: #fff0;
    border-radius: 0px;
}

.billing_form input::placeholder {
    color: #7c7c7c;
    font-size: 13px;

}

.cart_sidebar .cart_lst li:not(:last-child) {
    margin-bottom: 15px;
}

.cart_sidebar .cart_lst li {
    font-size: 14px;
    color: #7c7c7c;
    font-weight: 500;
}

.cart_sidebar .cart_lst li span {
    float: right;
}

.cart_sidebar .cart_lst li:last-child {
    font-size: 17px;
    font-weight: 500;
    color: var(--black);
    font-family: '';
}

.cart_sidebar .cart_lst {
    margin-top: 20px;
    margin-bottom: 40px;
}

.thankyou_txt {
    padding: 50px;
    border: 2px solid #b7b7b7;
}

.thankyou_txt h3 {
    font-size: 35px;
    color: var(--black);
    font-weight: 800;
    margin: 0;
}

.thankyou_txt h3 i {
    font-size: 40px;
    margin-right: 15px;
}

.order_det h5 {
    font-size: 20px;
    color: #7c7c7c;
    font-weight: 400;
}

.order_det p {
    font-weight: 700;
    font-size: 20px;
    color: var(--black);
    margin: 0;
}

.order_complete_detail h3 {
    font-size: 22px;
    color: var(--black);
    font-weight: 700;
}

.order_detail_table {
    padding: 40px;
    border: 1px solid #b7b7b7;
}

.order_detail_table h5 {
    margin-top: 0px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dbdbdb;
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}

.order_detail_table ul {
    margin-top: 20px;
    margin-bottom: 30px;
}

.order_detail_table ul li:not(:last-child) {
    margin-bottom: 25px;
}

.order_detail_table ul li {
    font-size: 14px;
    color: #7c7c7c;
}

.order_detail_table ul li span {
    float: right;
}

.order_detail_table ul li:last-child {
    font-weight: 700;
    color: var(--black);
}

.order_detail_table h6 {
    font-size: 17px;
    font-weight: 700;
    color: var(--black);
    padding: 25px 0;
    border-top: 1px solid #dbdbdb;
    margin: 0;
}

.order_detail_table h6 span {
    float: right;
}

.check_menu ul {
    text-align: center;
    margin-bottom: 40px;
}

.check_menu ul li {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #7c7c7c;
    margin: 0 14px;
}

.check_menu ul li i {
    font-size: 18px;
}

.cart_sidebar {
    padding: 30px 30px;
    border-radius: 10px;
    background-color: var(--white);
}

.cart_sidebar .theme-btn-1 {
    margin: 0px auto;
}

section.checkout_page {
    padding: 80px 0;
    margin-bottom: 7%;
}

.cart_sidebar h3 {
    font-size: 22px;
    color: var(--black);
    margin-top: 0px;
    line-height: 25px;
    margin-bottom: 20px;
}

.cart_sidebar .h-sub {
    font-weight: 500;
    color: var(--black);
    font-size: 20px;
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 20px;
    line-height: 0;
    padding-bottom: 30px;
    padding-top: 20px;
}

.cart_sidebar h5 span {
    float: right;
    color: var(--black);
}

.cart_sidebar h4 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--black);
    text-transform: capitalize;
}

.cart_sidebar ul li input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.cart_sidebar ul li label {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #7c7c7c;
}

.cart_sidebar ul li label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #c6c6c6;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
}

.cart_sidebar ul li input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #c6c6c6;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cart_sidebar ul li:not(:last-child) {
    margin-bottom: 15px;
}

.cart_sidebar form {
    margin-top: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #b7b7b7;
}

.cart_sidebar form h4 {
    font-size: 14px;
    font-weight: 400;
    color: #b7b7b7;
}

.cart_sidebar form select {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    border-radius: 0;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
    appearance: auto;
    color: #b7b7b7;
}

.cart_sidebar form select option {
    color: var(--black);
}

.cart_sidebar form input {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    border-radius: 0;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
    appearance: auto;
    color: #b7b7b7;
}

.cart_sidebar form input::placeholder {
    color: #b7b7b7;
}

.cart_sidebar form button {
    color: var(--black);
    font-size: 15px;
    border-radius: 0px;
    font-family: 'Poppins', sans-serif;
    padding: 10px 40px;
    background-color: #ebebeb;
    border: 2px solid #ebebeb;
}

.cart_sidebar form button:hover {
    background-color: transparent;
    transition: 0.3s ease-in-out;
}

.checkout_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0% auto;
    color: var(--white);
    font-size: 16px;
    text-transform: uppercase;
    height: 50px;
    width: 150px;
    background: var(--black);

}

.checkout_btn:hover {
    color: white;
}

.Quick_info ul li a {
    text-transform: lowercase;
    font-size: 14px;
}

ul.shipping-ul {
    border-bottom: 1px solid #dbdbdb;
    margin: 0;
    padding-bottom: 30px;
}

h6.payment-h {
    font-size: 22px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 30px;
    font-family: '';
}

label {
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
    color: #7c7c7c;
    font-weight: 500;
    margin-bottom: 12px;
}

.cart_sidebar .radiosss-payments li label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #b7b7b7;
    box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 50px;
}

.cart_sidebar .radiosss-payments li input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 7px;
    border-radius: 20px;
    left: 6px;
    border: 0;
    width: 10px;
    height: 10px;
    background-color: var(--themeColor3);
}

.radiosss-payments .card.card-body {
    padding: 0;
    border: none;
    margin-left: 0;
    padding: 0px 30px;
    background-color: transparent;
}

.billing_form {
    padding: 20px;
}

.cart_sidebar a {
    margin: 0 auto;
}

.cart_sidebar a i {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: #f95180;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    margin-left: 15px;
}

/*Billing End */

/* Inner Contcat Us Start */

section.contact-us {
    margin: 100px 0;
}

.touch {
    z-index: 1;
    height: 563px;
    position: relative;
    padding: 80px 80px 100px 55px;
    border-radius: 15px 0px 0px 15px;
    background-color: var(--themeColor4);
}

.contact-details {
    padding: 80px 80px 100px 55px;
    background-color: #1d2c33;
    position: relative;
    z-index: 1;
    height: 563px;
    border-radius: 0px 15px 15px 0px;
}

.touch h4,
.contact-details h4 {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.touch button {
    width: 62px;
    border: none;
    bottom: 10px;
    height: 52px;
    padding-top: 5px;
    position: relative;
    border-radius: 5px;
}

.contact-details h4 {
    position: relative;
    z-index: 9;
}

.touch button i {
    color: var(--themeColor4);
    font-size: 20px;
}

.touch input[type="text"],
.touch select,
.touch textarea {
    border-bottom: 1px solid #545d61;
    border-top: none;
    border-right: none;
    border-left: none;
    width: 43%;
    padding: 20px 20px 20px 0;
    margin: 15px;
    font-size: 14px;
    font-family: 'Montserrat';
    color: #fff;
    font-weight: 600;
    background: transparent;
    outline: none;
}

.touch input[type="text"]::placeholder,
.touch select::placeholder,
.touch textarea::placeholder {
    font-size: 14px;
    font-family: 'Montserrat';
    color: #fff;
    font-weight: 600;
}

.select-icon {
    position: relative;
    display: inline;
}

.touch select option {
    color: #000;
    font-weight: 500;
}

.select-icon i.fas.fa-sort-down {
    position: absolute;
    top: 0;
    color: #fff;
    right: 30px;
    font-size: 25px;
}

.touch textarea {
    height: 70px;
    width: 55%;
    display: inline-block;
    resize: none;
    margin: 15px 25px 15px 15px;
}

.touch button.theme_btn {
    display: inline-block;
    position: relative;
    top: -20px;
}

.contact-details {
    position: relative;
}

.contact-details::before {
    top: 0;
    right: 0;
    z-index: 0;
    content: '';
    width: 100%;
    height: 563px;
    position: absolute;
    border-radius: 0px 15px 15px 0px;
    background-color: var(--themeColor3);
}

.contact-details-location,
.contact-details-call,
.contact-details-mail {
    display: flex;
    justify-content: start;
    align-items: center;
    margin: 45px 0 0 0;
    position: relative;
    z-index: 9;
}

.contact-details-location p,
.contact-details-num span,
.contact-details-email a {
    font-size: 14px;
    font-family: 'Montserrat';
    color: #fff;
    width: 66%;
    margin: 0 0 0 20px;
    font-weight: 600;
}

.contact-details-num span,
.contact-details-email a {
    margin: 0 0 0 30px;
}

.contact-details-num a {
    font-size: 14px;
    font-family: 'Montserrat';
    color: #fff;
    margin: 0 100px 0 0;
}

.contact-details-email a {
    margin: 0 13px 0 30px;
}

.contact-map {
    position: relative;
    z-index: 0;
    margin: 0 0 -330px 0;
}

.contact-txt {
    margin: 0 auto;
    box-shadow: 0px 5px 18px 2px #0000004f;
}

.contact-details img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(5%) saturate(831%) hue-rotate(289deg) brightness(119%) contrast(100%);
}

/* Inner Contcat Us End */

/* ------------------------------------ Footer ------------------------------ */

ul.footer-socials li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    border-radius: 100px;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    transition: 0.2s;
    font-size: 15px;
}

ul.footer-socials li a:hover {
    background-color: #428661;
    color: #fff;
    border: transparent;
}

/* ------------------------------------ Footer ------------------------------ */

/*footer start*/

.footerSec {
    padding: 80px 4% 40px;
    background-color: var(--themeColor3);
}

.footerSec h4 {
    opacity: 0.5;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--white);
    text-decoration: underline;
}

.footer-about p {
    opacity: 0.5;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-about {
    padding-right: 10%;
    padding-bottom: 50px;
    border-right: 1px solid #ffffff28;
}

.footer-text {
    min-height: 100%;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 20px;
    border-left: 1px solid #ffffff28;
    border-right: 1px solid #ffffff28;
}

.ul-links {
    padding-left: 3%;
}

.ul-links ul {
    columns: 2;
}

.ul-links ul li a {
    font-size: 13px;
    line-height: 47px;
    color: var(--white);
    text-transform: uppercase;
}

.news-inp input {
    width: 100%;
    height: 54px;
    color: var(--white);
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid #667a73;
}

.news-inp input::placeholder {
    color: var(--white);
    font-weight: 500;
}

.ftr-news {
    padding-left: 25px;
}

.footer-text ul li a {
    display: flex;
    font-size: 14px;
    padding: 1px 0px;
    line-height: 24px;
    align-items: center;
}

.footer-text ul {
    gap: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.footer-text ul li i {
    font-size: 20px;
    color: var(--bodyColor);
}

.footer-text ul li a span {
    max-width: 200px;
    font-size: 13px;
    color: var(--white);
}

.copyrightsection {
    padding: 15px;
    border-top: 1px solid #ffffff24;
    background-color: var(--themeColor4);
}

.copyrightsection p {
    color: var(--white);
}

.footer-text ul li {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.ftr-news p {
    margin-bottom: 20px;
    color: var(--white);
}


/* Footer css  end */



/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1290px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 520px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 519px) {}


/*Media Query End*/
/* View Switcher Styles */

/* Active state for buttons */
.grid-view .grid_box.active p {
    opacity: 1;
}

.grid-view .grid_box.active {
    background-color: #e9e6dc;
}

.grid-view .grid_box {
    cursor: pointer;
}

/* Large Grid View (2 columns) */
.product-grid.large-grid-view-class>div {
    flex: 0 0 auto;
    width: 50%;
}

/* List View (1 column) */
.product-grid.list-view-class>div {
    flex: 0 0 auto;
    width: 100%;
}

.product-grid.list-view-class .product-box {
    max-width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid #e1e1e1;
    margin: 20px 0;
}

.product-grid.list-view-class .product-img {
    display: flex;
    align-items: center;
    flex-grow: 1;
    border: none;
    text-align: left;
    padding: 20px;
}

.product-grid.list-view-class .product-img img {
    width: 200px;
    height: 200px;
    margin-right: 30px;
    object-fit: contain;
}

.product-grid.list-view-class .product-text {
    flex-grow: 1;
}

.product-grid.list-view-class .product-button {
    width: 200px;
    height: 100%;
    min-height: 240px;
    /* match image height + padding */
    align-self: stretch;
    flex-direction: column;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .product-grid.large-grid-view-class>div {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .product-grid.list-view-class .product-box {
        flex-direction: column;
    }

    .product-grid.list-view-class .product-img {
        flex-direction: column;
        text-align: center;
    }

    .product-grid.list-view-class .product-img img {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .product-grid.list-view-class .product-button {
        width: 100%;
        min-height: auto;
        padding: 15px;
    }
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bodyColor);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader-wrapper.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    --background: linear-gradient(135deg, var(--themeColor), var(--themeColor2));
    --shadow: rgba(59, 70, 54, 0.28);
    --text: var(--themeColor);
    --page: rgba(255, 255, 255, 0.36);
    --page-fold: rgba(255, 255, 255, 0.52);
    --duration: 3s;
    width: 200px;
    height: 140px;
    position: relative;
}

.loader:before,
.loader:after {
    --r: -6deg;
    content: "";
    position: absolute;
    bottom: 8px;
    width: 120px;
    top: 80%;
    box-shadow: 0 16px 12px var(--shadow);
    transform: rotate(var(--r));
}

.loader:before {
    left: 4px;
}

.loader:after {
    --r: 6deg;
    right: 4px;
}

.loader div {
    width: 100%;
    height: 100%;
    border-radius: 13px;
    position: relative;
    z-index: 1;
    perspective: 600px;
    box-shadow: 0 4px 6px var(--shadow);
    background-image: var(--background);
}

.loader div ul {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}

.loader div ul li {
    --r: 180deg;
    --o: 0;
    --c: var(--page);
    position: absolute;
    top: 10px;
    left: 10px;
    transform-origin: 100% 50%;
    color: var(--c);
    opacity: var(--o);
    transform: rotateY(var(--r));
    -webkit-animation: var(--duration) ease infinite;
    animation: var(--duration) ease infinite;
}

.loader div ul li:nth-child(2) {
    --c: var(--page-fold);
    -webkit-animation-name: page-2;
    animation-name: page-2;
}

.loader div ul li:nth-child(3) {
    --c: var(--page-fold);
    -webkit-animation-name: page-3;
    animation-name: page-3;
}

.loader div ul li:nth-child(4) {
    --c: var(--page-fold);
    -webkit-animation-name: page-4;
    animation-name: page-4;
}

.loader div ul li:nth-child(5) {
    --c: var(--page-fold);
    -webkit-animation-name: page-5;
    animation-name: page-5;
}

.loader div ul li svg {
    width: 90px;
    height: 120px;
    display: block;
}

.loader div ul li:first-child {
    --r: 0deg;
    --o: 1;
}

.loader div ul li:last-child {
    --o: 1;
}

.loader span {
    display: block;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 20px;
    text-align: center;
    color: var(--text);
    font-weight: bold;
    font-size: 1.2rem;
}

@keyframes page-2 {
    0% {
        transform: rotateY(180deg);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    35%,
    100% {
        opacity: 0;
    }

    50%,
    100% {
        transform: rotateY(0deg);
    }
}

@keyframes page-3 {
    15% {
        transform: rotateY(180deg);
        opacity: 0;
    }

    35% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }

    65%,
    100% {
        transform: rotateY(0deg);
    }
}

@keyframes page-4 {
    30% {
        transform: rotateY(180deg);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    65%,
    100% {
        opacity: 0;
    }

    80%,
    100% {
        transform: rotateY(0deg);
    }
}

@keyframes page-5 {
    45% {
        transform: rotateY(180deg);
        opacity: 0;
    }

    65% {
        opacity: 1;
    }

    80%,
    100% {
        opacity: 0;
    }

    95%,
    100% {
        transform: rotateY(0deg);
    }
}