/* Stories Section */

html {
    scroll-behavior: smooth;
}

.section-1 {
    padding-top: 30px;
}

.exchange-stories {
    color: #490A0C;
    font-size: 64px;
    font-family: "Fraunces", serif;
    font-weight: 400;
    line-height: 120.00000476837158%;
    letter-spacing: -2%;
}

.circle-popup .modal-content {
    background: transparent;
    border: none;
}

.circle-popup .btn-close {
    right: 0;
    position: absolute;
    background: url("https://staticimg.tanishq.co.in/microsite/gold-exchange/images/icons/close.svg");
    height: 20px;
    width: 20px;
    outline: none;
    border: none;
}

.circle-popup .btn-close:focus-visible {
    outline: none;
}

.circle-popup .btn-close:focus {
    outline: none;
    box-shadow: none;
}

.circle-popup .modal-header {
    border: 0;
}

.circle-content a {
    text-decoration: none;
    color: #000 !important;
    z-index: 0;
}

.section-padd {
    padding: 20px 0;
}

.circle-catogeries {
    display: flex;
    gap: 40px;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
}

.circle-catogeries a {
    text-decoration: none;
}

.circle-list {
    flex: 0 125px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.circle-content span {
    font-size: 14px;
    font-weight: 700;
    color: #5B0438;
}

.circle-content h4 {
    color: #000;
    font-size: 14px;
}

.clcircle {
    /* border: 2.5px solid #5B0438; */
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.circle-list:hover .clcircle:before {
    border: 2.5px dashed #f1dcb2;
    animation-name: rotate;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.clcircle:before {
    content: "";
    border: 2.5px solid #e2b579;
    position: absolute;
    border-radius: 50%;
    width: 110px;
    height: 110px;
}

@keyframes rotate {
    from {
        transform: rotate(-360deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.clcircle img {
    height: 105px;
    width: 105px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;

}

/* Exchange Counter Animation */

.section-3 {
    padding: 30px 0;
}

.ex-content {
    display: contents;
    background: #490A0C;
}

.count-value {
    font-size: 50px;
    display: block;
    font-family: "Fraunces", serif;
    color: #490A0C;
    letter-spacing: 10px;
}

.exchange-counter {
    color: #490A0C;
    font-size: 50px;
    font-family: "Fraunces", serif;
    font-weight: 400;
    line-height: 120.00000476837158%;
    letter-spacing: 2px;
}

.counter-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.exchange-p {
    font-size: 20px;
    font-family: "Fraunces", serif;
    text-align: center;
}

/* Leadgen Section */

.section-4 {
    padding: 30px 0 0;
}

.section-4 .custom-upload {
    margin: auto;
    display: flex;
    justify-content: center;
}

.forms-background {
    background: rgba(242, 231, 233, 0);
    background: linear-gradient(360deg, rgba(242, 231, 233, 0) 0%, rgba(226, 181, 121, 1) 200%);
    border-radius: 7px;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    padding: 0 15px;
}

.lead-gen-container {
    padding: 40px 20px;
}

.lead-gen-heading {
    margin-bottom: 40px;
}

.lead-gen-h2 {
    color: #490A0C;
    font-size: 35px;
    font-family: "Fraunces", serif;
    font-weight: 400;
    line-height: 120.00000476837158%;
    letter-spacing: 2px;
}

.lead-gen-h2 span {
    font-size: 45px;
    display: block;
}

.form-label-heading {
    margin-bottom: 20px;
}

.form-label {
    position: relative;
    display: block;
    clear: both;
    max-width: 400px;
}

.form-label label {
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(50%);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    position: absolute;
    top: -15%;
    left: 1em;
    background: none;
    color: #767469;
    font-weight: 500;
    cursor: text;
    pointer-events: none;
    font-family: "Fraunces", serif;
    z-index: 3;
}

.form-label input {
    display: block;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-transition: border-color;
    -moz-transition: border-color;
    transition: border-color;
    box-sizing: border-box;
    background-color: transparent;
    border: 1px solid #767469;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
    font-family: "Fraunces", serif;
    font-size: 1em;
    margin-right: 0;
    margin-bottom: 20px;
    width: 350px;
}

.form-label input:focus~label,
.form-label input.hascontent~label {
    top: -48%;
    font-size: .8em;
    padding: 0 .3em;
    background-color: #fff;
    border-radius: 5px;
}

.form-label .form-control:focus {
    border-color: unset;
    outline: 0;
    box-shadow: none;
    background-color: transparent;
}

.custom-upload {
    margin: 10px 0;
}

.custom-upload-p {
    font-family: "Fraunces", serif;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    margin: auto;
    margin-bottom: 20px;
}

.custom-upload input[type='file'] {
    opacity: 0;
    display: contents;
}

#fileLabel {
    font-family: "Fraunces", serif;
    border-radius: 19px;
    border: 1.4px solid #000;
    padding: 5px 20px;
    margin: 0 0 1rem 19%;
    cursor: pointer;
}

.custom-input-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90.18deg, rgba(131, 39, 41, 0.6) 0.17%, rgba(99, 21, 23, 0.6) 99.86%);
    transition-duration: 150ms;
    padding: 0.8rem 0.75rem 0.8rem 2rem;
    border-radius: 9999px;
    width: fit-content;
    cursor: pointer;
}

.custom-input-button:hover {
    color: #ffffff;
    text-decoration: none;
    background-color: rgb(131 39 41 / 1) !important;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    transform: translateY(-2%);
}

.custom-input-button a {
    text-decoration: none;
    color: #ffffff;
}

.arrow-image {
    box-shadow: 16px 16px 15.9px 4px #6315174F inset;
    -shadow: -1px -1px 4px 0px #A76767 inset;
    background-color: rgb(167 103 103 / 1);
    border-radius: 9999px;
    display: block;
    text-align: center;
    width: 30px;
    max-width: 30px;
    height: 30px;
    max-height: 30px;
}

.arrow-image img {
    width: 20px;
    max-width: 20px;
}

.gold-value p {
    font-family: "Fraunces", serif;
    color: #ffffff;
    font-weight: 300;
    margin: 0 !important;
    padding-right: 15px;
}

/* Wishlist Recommender */

.section-5 {
    padding: 30px 10px;
}

.whislist-swiper {
    margin-top: 30px;
}

.wishlist-h2 {
    font-family: "Fraunces", serif;
    color: #000000;
    font-size: 45px;
    font-weight: 500;
    text-align: left;
}

.wishlist-p {
    font-family: "Fraunces", serif;
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    text-align: left;
}

.wishlist-p a {
    color: #000000;
}

.whislist-swiper .swiper-button-next,
.whislist-swiper .swiper-button-prev {
    width: 60px !important;
    height: 60px !important;
    background-size: cover !important;
    z-index: 1;
}

.rec-nav {
    position: relative;
    display: block;
}

.rec-nav .swiper-button-prev {
    background-image: url('https://staticimg.tanishq.co.in/microsite/gold-exchange/images/icons/swiper_arrow.png') !important;
    transform: translateX(15px) rotate(180deg);
}

.rec-nav .swiper-button-next {
    background-image: url('https://staticimg.tanishq.co.in/microsite/gold-exchange/images/icons/swiper_arrow.png') !important;
    transform: translateX(-15px);
}

.left-unset {
    left: unset !important;
    right: 20px;
}

.right-150 {
    right: 150px !important;
    left: auto;
}

.whislist-swiper .swiper-button-next:after,
.swiper-rtl .whislist-swiper .swiper-button-prev:after {
    content: '';
}

.whislist-swiper .swiper-button-prev:after,
.swiper-rtl .whislist-swiper .swiper-button-next:after {
    content: '';
}

.pdp-images {
    /* width:300px;
    height:300px; */
    transition-duration: 150ms;
    cursor: pointer;
    --tw-bg-opacity: 1;
    background-color: rgb(245 245 244 / var(--tw-bg-opacity))
}

.pdp-images:hover {
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    transform: translateY(-2px);
}

.pdp-title {
    margin: 0.5rem 0 0.5rem 0;
    font-family: "Fraunces", serif;
    font-size: 16px;
    font-weight: 400;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.pdp-price {
    font-family: "Fraunces", serif;
    font-size: 16px;
    font-weight: 400;
}

.exchange-price {
    font-family: "Fraunces", serif;
    font-size: 16px;
    font-weight: 500;
    color: #832729;
}

.exchange-price span {
    font-weight: 700;
}

.exchange-price.gold-color {
    color: #A76F25;
}

.button-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.cart-button {
    width: fit-content;
}

.go-to-cart {
    border-radius: 35px;
    border: 1.4px solid #000;
    padding: 0.75rem 2.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    text-decoration: none;
    font-family: "Fraunces", serif;
    color: #000000;
    font-size: 20px;
}

.go-to-cart:hover {
    color: #000000;
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    transition-duration: 100ms;
}

/* Exchange Advantage */

.section-6 {
    padding: 30px 10px;
}

.exchange-advantage-div {
    display: flex;
    border: 0.5px solid #d4d4d4d8;
    border-radius: 6px;
    margin: 30px 0;
}

.ea-left {
    width: 30%;
}

.ea-right {
    width: 70%;
}

.br-24 {
    border-radius: 6px 0 0 6px;
}

.ea-slider-h2 {
    font-family: "Fraunces", serif;
    color: #A87026;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}

.ea-slider-p {
    font-family: "IBM Plex Sans", sans-serif;
    color: #5F5F5F;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.ea-slider-div {
    display: flex;
    height: 100%;
    align-items: center;
    position: relative;
}

.ea-slider .swiper-slide h2 {
    transition: color 0.3s ease;
}

.ea-slider .swiper-slide p {
    transition: opacity 0.3s ease;
}

.ea-slider .swiper-slide-active {
    border-top: 0.5px solid #d4d4d4d8;
    border-bottom: 0.5px solid #d4d4d4d8;
    border-left: none;
    border-right: none;
}

.ea-slider .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ea-slider .swiper-button-prev,
.ea-slider .swiper-button-next {
    content: '';
}

.swiper-pagination {
    text-align: center;
}

.ea-slider .swiper-slide-active h2 {
    color: #A87026;
}

.ea-slider .swiper-slide-active p {
    opacity: 1;
}

.ea-slider .swiper-slide:not(.ea-slider .swiper-slide-active) h2 {
    color: #adb5bd;
}

.ea-slider .swiper-slide:not(.ea-slider .swiper-slide-active) p {
    opacity: 0;
}

.swiper-button {
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.ea-slider-div .swiper {
    height: 70vh;
    margin: auto 5%;
}

.ea-slider-btn {
    position: absolute;
    display: flex;
    right: 7%;
}

.ea-slider-btn .swiper-button-next,
.ea-slider-btn .swiper-button-prev {
    width: auto;
    z-index: 9;
    flex-direction: column;
}

.ea-slider-btn .swiper-button-next:after,
.ea-slider-btn .swiper-rtl .swiper-button-prev:after {
    content: '';
    background-image: url('https://staticimg.tanishq.co.in/microsite/gold-exchange/images/exchange-advantage/arrow.svg');
    background-size: cover;
    background-repeat: no-repeat;
    width: 60px;
    height: 60px;
    bottom: 65%;
    position: absolute;
}

.ea-slider-btn .swiper-button-next,
.ea-slider-btn .swiper-rtl .swiper-button-prev {
    left: auto;
    right: 0;
}

.ea-slider-btn .swiper-button-prev:after,
.ea-slider-btn .swiper-rtl .swiper-button-next:after {
    content: '';
    background-image: url('https://staticimg.tanishq.co.in/microsite/gold-exchange/images/exchange-advantage/arrow.svg');
    background-size: cover;
    background-repeat: no-repeat;
    width: 60px;
    height: 60px;
    transform: rotate(180deg);
    top: 65%;
    position: absolute;
}

.ea-slider-btn .swiper-button-prev,
.ea-slider-btn .swiper-rtl .swiper-button-next {
    left: auto;
    right: 0;
}

.exchange-advantage-h2 {
    font-family: "Fraunces", serif;
    color: #000000;
    font-size: 45px;
    font-weight: 500;
    text-align: center;
}

.exchange-advantage-p {
    font-family: "Fraunces", serif;
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
}

.compare-img {
    width: 20px;
}

.compare-table {
    font-family: "Fraunces", serif;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
}

.compare-table td,
tr,
th {
    font-family: "Fraunces", serif;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
}

.compare-table thead tr>th {
    position: sticky;
    padding: .5rem;
    z-index: 2;
    top: 0;
    text-align: center;
}

.compare-table thead tr> :first-child {
    z-index: 3;
    left: 0;
    top: 0;
}

.compare-table td {
    text-align: left;
    vertical-align: middle;
}

.compare-table tbody tr> :first-child {
    position: sticky;
    z-index: 1;
    left: 0;
    width: 40%;
}

.compare-table tbody tr> :nth-child(2) {
    width: 30%;
    text-align: center;
}

.compare-table tbody tr> :nth-child(3) {
    width: 30%;
    text-align: center;
}

.compare-table .table>:not(:first-child) {
    border-top: none;
}

.br-50 {
    border-radius: 50%;
}

/* Popular Choices */

.section-8 {
    padding: 30px 10px;
}

/* Store Locater */

.section-9 {
    padding: 30px 10px;
}

.heading-arrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-nav {
    position: relative;
    display: block;
}

.article-swiper .swiper-pagination {
    display: none;
}

.article-swiper .swiper-slide {
    width: auto !important;
    /* z-index: 0; */
    /* transform: rotate(5deg) !important; */
}

.article-swiper .swiper-slide .artical-size {
    transition: all 0.15s;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 350px;
}

.article-nav .swiper-button-next,
.article-nav .swiper-button-prev {
    width: 60px !important;
    height: 60px !important;
    background-size: cover !important;
    z-index: 1;
}

.article-nav .swiper-button-prev {
    background-image: url('https://staticimg.tanishq.co.in/microsite/gold-exchange/images/icons/swiper_arrow.png') !important;
    transform: translateX(15px) rotate(180deg);
}

.article-nav .swiper-button-next {
    background-image: url('https://staticimg.tanishq.co.in/microsite/gold-exchange/images/icons/swiper_arrow.png') !important;
    transform: translateX(-15px);
}

.article-nav .left-unset {
    left: unset !important;
    right: 20px;
}

.article-nav .right-150 {
    right: 150px !important;
    left: auto;
}

.article-nav .swiper-button-next:after,
.swiper-rtl .article-nav .swiper-button-prev:after {
    content: '';
}

.article-nav .swiper-button-prev:after,
.swiper-rtl .article-nav .swiper-button-next:after {
    content: '';
}

.article-swiper a {
    color: inherit;
    text-decoration: none;
}

.article-swiper .swiper-slide .article-size {
    transition: all 0.15s;
}

.article-swiper .swiper-slide .article-size {
    width: -moz-fit-content;
    width: fit-content;
}

.article-swiper-mxw3 {
    max-width: 300px;
}

.article-image img {
    border-radius: 0.75rem;
}

.article-title {}

.article-title-h2 {
    margin-top: 1.25rem;
    font-family: "Fraunces", serif;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
}

.article-description {
    display: none;
}

.swiper-slide-active .article-description {
    display: block;
}

.article-description-p {
    font-family: "Fraunces", serif;
    color: #000000;
    font-size: 14px;
    font-weight: 300;
}

.date-time {
    display: flex;
    gap: 10px;
}

.date-time-p {
    font-family: "Fraunces", serif;
    color: #000000;
    font-size: 12px;
    font-weight: 300;
}

/* Tanishq Exchange */

.section-10 {
    padding: 30px 10px;
}

.tanishq-experience {
    /* background-image: url('images/bg/uniqueBorder.png');
    background-repeat: no-repeat;
    background-size: contain; */
    padding: 60px 40px;
    position: relative;
}

.z-index-1 {
    z-index: 1;
}

.tanishq-experience-img {
    position: absolute;
    top: 18%;
}

.t-experience-h2 {
    margin-top: 1.25rem;
    font-family: "Fraunces", serif;
    color: #000000;
    font-size: 45px;
    font-weight: 400;
    text-align: left;
}

.t-experience-p {
    font-family: "Fraunces", serif;
    color: #000000;
    font-size: 18px;
    font-weight: 300;
}

/* Visit Store */

.section-11 {
    padding: 30px 10px;
}

.visit-store-slider a {
    color: inherit;
    text-decoration: none;
}

.visit-store-cards {
    transition-duration: 200ms;
    border-color: rgb(224 224 224 / 1);
    border-radius: 10px;
    cursor: pointer;
    width: fit-content;
}

.visit-store-cards:hover {
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    transform: translateY(-5px);
    transition-duration: 200ms;
}

.visit-store-border {
    border-radius: 10px;
}

.visit-store-cards .card-body {
    padding: 0;
}

.visit-store-cards .card-title {
    display: flex;
    justify-content: center;
    margin: 2.5rem 1.8rem;
    font-family: "Fraunces", serif;
    color: #000000;
    font-size: 24px;
    font-weight: 400;
}

.visit-store-slider .swiper-pagination {
    display: none;
}

/* Exchange Advantage */

.section-7 {
    padding: 20px 10px 30px;
}

.how-it-works-h2 {
    font-family: "Fraunces", serif;
    color: #000000;
    font-size: 45px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}

.store-heading-step {
    font-family: "Fraunces", serif;
    color: #e2b579;
    font-size: 25px;
    font-weight: 500;
    text-align: center;
}

.store-heading-find {
    font-family: "Fraunces", serif;
    color: #000000;
    font-size: 22px;
    font-weight: 400;
    text-align: center;
}

.store-details-background {
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, .24) 0px 3px 8px;
    padding: 40px 30px;
}

.store-details-heading-h2 {
    font-family: "Fraunces", serif;
    color: #954648;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: left;
}

.store-details-heading-p {
    font-family: "Fraunces", serif;
    color: #56544e;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
}

.store-details-searchbar-p {
    font-family: "Fraunces", serif;
    color: #56544e;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
}

.store-details-searchbar .form-label input {
    display: block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px 4px 0px 0px;
    -webkit-transition: border-color;
    -moz-transition: border-color;
    transition: border-color;
    box-sizing: border-box;
    background-color: transparent;
    border: 1px solid #767469;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
    font-family: "Fraunces", serif;
    font-size: 1em;
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
    z-index: 2;
    position: relative;
}

.search-dropdown {
    position: relative;
}

.search-dropdown-data {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    align-items: baseline;
    flex-direction: column;
    width: 100%;
    height: auto;
    font-family: "Fraunces", serif;
    border: 0.1px solid #767469;
    border-top: 0px;
    border-radius: 0px 0px 5px 5px;
    margin-bottom: 0;
    padding-left: 20px;
    background: #ffffff;
    z-index: 1;
}

.search-dropdown-p {
    padding: 7px 0;
    margin: 0;
    font-family: "Fraunces", serif;
    color: #56544e;
    font-size: 18px;
    transition: .15s all cubic-bezier(.4, 0, .2, 1);
    cursor: pointer;
}

.store-icons {
    padding-top: 20px;
}

.store-icons-images {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.store-icons-heading-h2 {
    font-family: "Fraunces", serif;
    color: #56544e;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 20px;
}

.store-count {
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, .24) 0px 3px 8px;
    margin: .5rem 0;
    transition-duration: .15s;
    padding: 1.25rem .5rem .5rem .5rem;
    width: 100px;
    height: auto;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    width: 90px;
    height: fit-content;
}

.store-count:hover {
    transform: scale(1.1);
}

.store-count-span {
    font-family: "Fraunces", serif;
    color: #56544e;
    font-size: 14px;
    font-weight: 400;
    position: absolute;
    top: 0px;
    background: transparent linear-gradient(270deg, #FDF0F1 0%, #ECE4E5 51%, #FCCCCC 100%) 0% 0% no-repeat padding-box;
    width: 100%;
    border-radius: 10px 10px 0 0;
    text-align: center;
}

.store-name {
    font-family: "Fraunces", serif;
    color: #832729;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    position: absolute;
    bottom: 5px;
}

.step-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.store-list {
    max-height: 320px;
    overflow-y: auto;
}

.store-direction {
    display: flex;
}

.store-direction-img {
    display: block;
    margin: auto;
}

.store-details-list {
    padding: 15px 0;
}

.store-list a {
    text-decoration: none;
}

.store-details-name {
    font-family: "Fraunces", serif;
    font-size: 16px;
    font-weight: 600;
    color: #767469;
    margin-bottom: 5px;
}

.store-details-timing {
    font-family: "Fraunces", serif;
    font-size: 16px;
    font-weight: 400;
    color: #228D53;
    margin-bottom: 5px;
}

.store-details-address {
    font-family: "Fraunces", serif;
    font-size: 16px;
    font-weight: 400;
    color: #767469;
    margin-bottom: 5px;
    overflow-wrap: break-word;
    /* max-width: 400px; */
}

.img-arrow {
    position: absolute;
    top: -30px;
    left: -20px;
}

.back-arrow {
    width: 2em;
    height: 2em;
}

.stores-results {
    transition: .15s all cubic-bezier(.4, 0, .2, 1);
    display: none;
}

.stores-search {
    transition: .15s all cubic-bezier(.4, 0, .2, 1);
    display: block;
}

/* How it works */

.section-7 .accordion-button{
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 1rem;
    text-align: left;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
}

.section-7 .accordion-item:first-of-type {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.section-7 .accordion-button:not(.collapsed) {
    color: #000000;
    /* background-color: #e6e6e694; */
    background: linear-gradient(360deg, rgba(242, 231, 233, 0) 0%, rgba(226, 181, 121, 1) 200%);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
    border: 0px;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}

.section-7 .accordion-item:not(:first-of-type) {
    border-top: 0;
}

.section-7 .accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px);
}

.section-7 .accordion-item {
    /* border: 0px; */
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, .125);
    
}

.section-7 .accordion-item:first-of-type {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    background-color: #ffffff;
}

.section-7 .accordion-item:first-of-type .accordion-button.accordion-button:not(.collapsed) {
    /* background-color: #e6e6e694; */
    background: linear-gradient(360deg, rgba(242, 231, 233, 0) 0%, rgba(226, 181, 121, 1) 200%);
}

.section-7 .accordion-item:first-of-type .accordion-button {
    background-color: #ffffff;
}

.section-7 .accordion-item:last-of-type .accordion-button.collapsed {
    /* border-top-left-radius: 0px;
    border-top-right-radius: 0px; */
    background-color: #ffffff;
}

.section-7 .accordion-item:last-of-type .accordion-button.accordion-button:not(.collapsed) {
    /* background-color: #e6e6e694; */
    background: linear-gradient(360deg, rgba(242, 231, 233, 0) 0%, rgba(226, 181, 121, 1) 200%);
}

.section-7 .accordion-button {
    padding: 1rem 0rem;
    background-color: #ffffff;
    color: #000000;
    font-family: "Fraunces", serif;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    border: 0px;
    width: 100%;
    font-size: 1rem;
    text-align: left;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
}

.section-7 .accordion-button:focus {
    border: none;
    box-shadow: none;
}

.section-7 .accordion-body {
    background-color: #ffffff;
    color: #000000;
    padding: 1rem 1.25rem;
    font-family: "IBM Plex Sans", sans-serif;
}

.section-7 .accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "-";
    color: #000000;
    font-style: normal;
    transform: none;
    background-image: none;
    transition: all .2s ease-in;
    font-size: 20px;
}

.section-7 .accordion-button:not(.collapsed)::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "+";
    color: #000000;
    font-style: normal;
    transform: none;
    background-image: none;
    transition: all .2s ease-in;
    font-size: 20px;
}

.accordion-pointer-svg {
    height: 10px;
    width: 10px;
    margin-right: 12px;
}

/* FAQ */

.section-12 {
    padding: 30px 0;
    background-color: #2b0a09;
}

.faq-h2 {
    font-family: "Fraunces", serif;
    color: #ffffff;
    font-size: 45px;
    font-weight: 500;
    text-align: left;
    margin-bottom: 40px;
}

.section-12 .accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #2b0a09;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
    border: 0px;
}

.section-12 .accordion-item {
    border: 0px;
    background-color: transparent;
}

.section-12 .accordion-item:first-of-type {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    background-color: #2b0a09;
}

.section-12 .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    background-color: #2b0a09;
}

.section-12 .accordion-item:last-of-type .accordion-button.collapsed {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    background-color: #2b0a09;
}

.section-12 .accordion-button {
    padding: 1rem 0rem;
    background-color: #2b0a09;
    color: #ffffff;
}

.section-12 .accordion-button:focus {
    border: none;
    box-shadow: none;
}

.section-12 .accordion-body {
    background-color: #2b0a09;
    color: #ffffff;
}

.section-12 .accordion-button::after {
    content: "-";
    color: #ffffff;
    font-style: normal;
    transform: none;
    background-image: none;
    transition: all .2s ease-in;
    font-size: 20px;
}

.section-12 .accordion-button:not(.collapsed)::after {
    content: "+";
    color: #ffffff;
    font-style: normal;
    transform: none;
    background-image: none;
    transition: all .2s ease-in;
    font-size: 20px;
}

.accordion-pointer-svg {
    height: 10px;
    width: 10px;
    margin: 0 12px;
}

.modal{
    backdrop-filter: blur(10px);
}
.pip-video {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: auto;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    background: black;
    cursor: pointer;
    z-index: 1000;
    display: flex;
}

.pip-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pip-close {
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    justify-content: center;
    color: #ffffff !important;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    text-decoration: none;
}

/* Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.video-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    height: 100%;
    width: 100%;
    background: #00000000;
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    margin-top: 0 !important
}

.modal-content video {
    width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 0;
    right: 5px;
    background: none;
    color: #00000070 !important;
    background-color: #ffffff;
    border-radius: 50%;
    height: 30px;
    font-size: 24px;
    border: .5px solid #00000070;
    width: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}


/* Responsive Code */

@media screen and (min-width: 1400px) {
    .ea-slider-h2 {
        font-size: 24px;
    }

    .ea-slider-p {
        font-size: 18px;
    }

    .ea-slider-btn {
        right: 5%;
    }
}

@media screen and (min-width:600px) {
    .article-swiper .swiper-slide-active .article-size {
        max-width: 500px;
    }
}

@media screen and (max-width:767px) {

    .ea-slider .swiper-button-prev,
    .ea-slider .swiper-button-next {
        display: none !important;
    }

    /* Stories Section */
    .section-padd {
        margin: 0 -20px;
    }

    .circle-list {
        flex: 0 111px !important;
        margin: 10px;
        margin-bottom: 0;
    }

    .circle-catogeries {
        gap: 0px !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        justify-content: inherit !important;
        margin: 0 -15px;
    }

    .circle-catogeries a{
        margin-bottom: 3px;
    }

    .pip-video {
        display: none;
    }

    .no-padd {
        padding: 0;
        padding-left: 10px;
    }

    .clcircle img {
        height: 65px !important;
        width: 65px !important;

    }

    .clcircle {
        position: relative;
        width: 75px !important;
        height: 75px !important;

    }

    .clcircle:before {
        width: 80px !important;
        height: 80px !important;
    }

    .circle-content span {
        font-size: 12px !important;

    }

    .circle-content h4 {

        font-size: 12px !important;
    }

    .exchange-stories {
        font-size: 35px;
        text-align: left;
    }

    .exchange-stories-ctnr {
        padding-bottom: 10px;
    }

    .ea-slider-div .swiper {
        height: 300px;
    }

    .exchange-advantage-div{
        flex-direction: column;
    }

    .ea-left {
        width: 100%;
    }

    .ea-right {
        width: 100%;
    }

    .ea-slider-div{
        height: 250px;
    }

    .ea-slider .swiper-slide{
        height: 300px;
    }

    .ea-slider .swiper-slide-active{
        border: none;
    }

    .ea-slider{
        position: relative;
        bottom: 15%;
    }

    .ea-slider .swiper-pagination{
        z-index: 9;
    }

    .ea-slider .swiper-pagination-bullet{
        background-color: #f6a8ab;
        height: 10px;
        width: 10px;
        border-radius: 0;
        transition: all 0.5s;
    }

    .ea-slider .swiper-pagination-bullet-active{
        background-color:#832729;
        transform: rotate(45deg) !important;
    }

    .ea-slider .swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .ea-slider .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{
        padding: 10px 0;
    }

    /* Leadgen Section */

    .lead-gen-h2 {
        font-size: 25px;
    }

    .lead-gen-h2 span {
        font-size: 30px;
    }

    .testimonial-responsive {
        padding: 0;
    }

    .forms-background {
        margin-bottom: 20px;
    }

    .counter-container {
        flex-direction: column;
    }

    .count-value {
        font-size: 35px;
        text-align: center;
    }

    .exchange-counter {
        font-size: 26px;
        text-align: center;
    }

    .exchange-p {
        font-size: 16px;
    }

    .lead-gen-container {
        padding: 30px 10px;
    }

    #fileLabel {
        margin: 0 0 1rem 10%;
    }

    .form-label input {
        width: 290px;
    }

    .form-label label {
        top: -8%;
        font-size: 14px;
    }

    .gold-value p {
        font-size: 14px !important;
    }

    /* Wishlist Section */

    .wishlist-h2 {
        font-size: 25px;
    }

    .wishlist-p {
        font-size: 16px;
    }

    .whislist-swiper .container-fluid {
        padding: 0;
        margin: 0;
    }

    .button-nav {
        justify-content: center;
        padding: 40px 0 0;
    }

    .cart-button {
        width: 100%;
    }

    .go-to-cart {
        padding: 0.75rem 1rem;
        font-size: 16px;
        width: 100%;
    }

    .rec-nav {
        display: none;
    }

    .whislist-swiper .swiper-pagination {
        display: block;
    }

    .whislist-swiper .swiper-button-next,
    .whislist-swiper .swiper-button-prev {
        width: 50px !important;
        height: 50px !important;
    }

    .whislist-swiper .swiper-pagination {
        bottom: 20% !important;
        display: block;
    }

    .whislist-swiper .swiper-pagination-bullet {
        width: 10px !important;
        height: 10px !important;
        background-color: #f6a8ab !important;
        border-radius: 0 !important;
        transition: all 0.5s;
    }

    .whislist-swiper .swiper-pagination-bullet-active {
        transform: rotate(45deg) !important;
        background-color: #832729 !important;
        width: 10px !important;
        height: 10px !important;
    }

    /* Exchange Advantage */

    .section-6 {
        padding: 15px 10px;
    }

    .exchange-advantage-h2 {
        font-size: 25px;
    }

    .how-it-works-h2 {
        font-size: 25px;
        margin-bottom: 15px;
    }

    .exchange-advantage-p {
        font-size: 16px;
    }

    .store-heading-step,
    .store-heading-find {
        font-size: 20px;
    }

    .store-details-heading-h2 {
        font-size: 22px;
    }

    .store-details-heading-p {
        font-size: 16px;
    }

    .compare-table {
        font-size: 16px;
    }

    .compare-table td,
    tr,
    th {
        font-size: 14px;
    }

    .section-4 {
        padding-top: 20px;
    }

    .section-7 {
        padding: 15px 10px;
    }

    .section-8 {
        padding: 15px 10px;
    }

    /* Tanishq Exchange */

    .section-9 {
        padding: 15px 10px;
    }

    .article-swiper {
        padding: 1.5rem 0;
    }

    .article-nav {
        display: none;
    }

    .article-swiper .swiper-slide {
        width: -webkit-fill-available !important;
    }

    .article-swiper .swiper-pagination {
        bottom: 0px !important;
        display: block;
    }

    .article-swiper .swiper-pagination-bullet {
        width: 10px !important;
        height: 10px !important;
        background-color: #f6a8ab !important;
        border-radius: 0 !important;
        transition: all 0.5s;
    }

    .article-swiper .swiper-pagination-bullet-active {
        transform: rotate(45deg) !important;
        background-color: #832729 !important;
        width: 10px !important;
        height: 10px !important;
    }

    .article-swiper-mxw3 {
        margin: auto;
        max-width: 100%;
    }

    /* Tanishq Experience */

    .section-10 {
        padding: 15px 10px;
    }

    .button-m-auto {
        margin: 0 auto;
        position: relative;
        top: 5px;
    }

    .tanishq-experience {
        padding: 20px 0px;
        position: relative;
    }

    .tanishq-experience-img {
        top: 4%;
        padding: 10px 20px;
    }

    .t-experience-h2 {
        font-size: 25px;
        text-align: center;
    }

    .t-experience-p {
        font-size: 16px;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .tanishq-exchange-logo {
        width: 100px;
        display: block;
        margin: auto;
    }

    .tanishq-exchange-gif {
        width: 250px;
        display: block;
        margin: auto;
    }

    /* Visit Store */

    .section-11 {
        padding: 0px 10px 20px 10px;
    }

    .visit-store-cards {
        width: 100%;
    }

    .visit-store-cards .card-title {
        font-size: 20px;
    }

    .visit-store-slider {
        padding: 1.5rem 0;
    }

    .visit-store-slider .swiper-pagination {
        bottom: 5% !important;
        display: block;
    }

    .visit-store-slider .swiper-pagination-bullet {
        width: 10px !important;
        height: 10px !important;
        background-color: #f6a8ab !important;
        border-radius: 0 !important;
        transition: all 0.5s;
    }

    .visit-store-slider .swiper-pagination-bullet-active {
        transform: rotate(45deg) !important;
        background-color: #832729 !important;
        width: 10px !important;
        height: 10px !important;
    }

    /* Exchange Advantage */

    .store-count {
        width: 50px;
        padding: 1.25rem .3rem .5rem .3rem;
        margin: 5px;
    }

    .store-details-background {
        padding: 20px;
    }

    .store-details-background .stores-results {
        padding: 40px 20px 20px 20px;
    }

    .img-arrow {
        top: 0px;
        left: 0px;
    }

    .store-count-span {
        font-size: 8px;
    }

    .store-count-span,
    .store-name {
        font-size: 10px;
    }

    .step-container {
        gap: 25px;
        padding-top: 25px;
    }

    .store-details-name {
        font-size: 16px;
    }

    .store-details-timing {
        font-size: 15px;
    }

    .store-details-address {
        font-size: 14px;
        max-width: 250px;
    }

    .store-details-list {
        padding: 10px 0;
    }

    /* FAQ */

    .section-12 {
        margin-top: 30px;
    }

    .faq-h2 {
        font-size: 25px;
    }
}