/* FONT IMPORT */


/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* Local Font */

@font-face {
    font-family: "silk-serif";
    src: url("../fonts/silk-serif.otf");
}

:root {
    --white: #fff;
    --black: #000;
    --primary: #8E2732;
    --secondary: #333333;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #8E273220;
    overflow-x: hidden;
    height: 100%;
    font-family: "Roboto", sans-serif;
}

section {
    position: relative;
}

h1,
h2,
h3 {
    font-family: "silk-serif";
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
}

.cursor-inner {
    width: 8px;
    height: 8px;
    z-index: 10000001;
    background-color: var(--primary);
    transition: 0.05s ease-in-out;
}

.cursor-outer {
    margin-left: -1.25rem;
    margin-top: -1.25rem;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--white);
    mix-blend-mode: difference;
    opacity: 0.3;
    z-index: 10000001;
}


/* Cursor End */


/* PRELOADER */

body.loading {
    overflow: hidden;
    height: 100vh;
}

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 11113;
}

.preLoader .counter {
    color: var(--white);
    font-size: 15rem;
    font-weight: bold;
    position: absolute;
    bottom: 0rem;
    right: 5rem;
}

.preLoader .bar {
    height: 20%;
    width: 100vw;
    background-color: var(--primary);
}


/* PRELOADER */


/* NAV HEADER CSS */

.topBar p {
    font-size: 0.875rem;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    color: var(--white);
    padding: 0.75rem 0;
}

.topBar {
    background: #16151A;
}

.navbar-brand {
    padding: 0;
    margin: 2.5rem 0;
}

.navbar-brand img {
    width: 150px;
}

.navbar-nav {
    align-items: center;
    gap: 4rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 0.9375rem;
    color: #130304;
    padding: 0 0;
    display: inline-block;
    position: relative;
}

.navbar-nav .nav-item .nav-link:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 0;
    height: 3px;
    bottom: -5px;
    transition: 0.5s ease;
}

.navbar-nav .nav-item .nav-link:hover:before {
    width: 100%;
}

.form-inline {
    gap: 1.5625rem;
}

.form-inline a {
    color: #0C0C0C;
    font-size: 1.375rem;
}

.navbar .nav-item.drop-down {
    position: relative;
    z-index: 1;
}

.navbar .drop-down>a:after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    padding-left: 5px;
    color: var(--primary);
}

.navbar .drop-down ul {
    display: block;
    position: absolute;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
}

.navbar .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .drop-down li {
    min-width: 200px;
    position: relative;
    list-style: none;
}

.navbar .drop-down ul a {
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
    color: #151515;
    display: block;
}

.navbar .drop-down ul a:hover {
    background: var(--primary);
    color: #fff;
}

/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 840px;
    background: url(../images/banner.png)center/cover;
}

.main-slider:before {
    content: "";
    position: absolute;
    background: var(--black);
    inset: 0;
    opacity: 22%;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
    display: flex;
    align-items: center;
}

.homeSlider .swiper-pagination {
    bottom: 4rem;
}

.homeSlider .swiper-pagination-bullet {
    height: 18px;
    width: 18px;
    display: inline-block;
    opacity: 1;
    background: rgb(255 255 255 / 23%);
    transition: 0.5s ease;
    margin: 0 6px !important;
}

.homeSlider .swiper-pagination-bullet-active {
    background: var(--white);
}

.slideOne h1 {
    color: var(--white);
    text-transform: uppercase;
    font-size: 6.875rem;
    line-height: 0.9;
    text-shadow: 0 4px rgb(0 0 0 / 25%);
}

.slideOne ul li span {
    color: var(--white);
    font-size: 1.375rem;
    padding-left: 5px;
}

.slideOne ul {
    margin: 2.8125rem 0 2.1875rem 0;
}

.slideOne ul li+li {
    margin-top: 0.625rem;
}

.themeBtn {
    font-size: 1.875rem;
    font-weight: 600;
    background: var(--primary);
    border-radius: 7px;
    color: var(--white);
    display: inline-block;
    padding: 1.25rem 2em;
    font-family: "Raleway", sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.themeBtn:before {
    content: "";
    position: absolute;
    background: var(--black);
    inset: 0;
    z-index: -1;
    transform: scale(0);
    transition: 0.5s ease;
}

.themeBtn:hover:before {
    transform: scale(1);
}

.themeBtn:hover {
    color: var(--white);
}


/* !MAIN HERO SLIDER CSS */


/* Category Sec Css Start */

.categorySec {
    padding: 3.4375rem 0 5.9375rem 0;
}

.secHeading {
    font-size: 3.75rem;
    text-transform: uppercase;
    color: #16151A;
    position: relative;
}

.secHeading:before {
    content: "";
    position: absolute;
    background: #16151A;
    width: 182px;
    height: 1px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -12px;
    animation: bounse1 2s infinite linear;
    transform-origin: bottom center;
}

.secHeading .char {
    display: inline !important;
}

.subHeading {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1F1F1F;
}

@keyframes bounse1 {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.categoryWrap {
    position: relative;
}

.categoryWrap+.categoryWrap {
    margin-top: 2.5rem;
}

.categoryContent {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    height: 100%;
    z-index: 1;
    width: 100%;
}

.categoryContent:after {
    content: "";
    position: absolute;
    border: 1px solid var(--white);
    height: 100%;
    width: 100%;
    transition: 0.8s ease;
    inset: 0;
    display: grid;
    place-items: center;
    margin: auto;
}

.categoryWrap:hover .categoryContent:after {
    width: 93%;
    height: 90%;
}

.categoryContent:before {
    content: "";
    position: absolute;
    background: linear-gradient(0deg, #000000, #00000000);
    height: 55%;
    width: 100%;
    bottom: 0;
    z-index: -1;
    transition: 0.8s ease;
}

.categoryWrap:hover .categoryContent:before {
    height: 100%;
}

.categoryContent h4 {
    font-size: 3.125rem;
    font-weight: 300;
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 0 0 4.375rem 3.125rem;
    color: var(--white);
    z-index: 11;
}

.categoryContent h4 a {
    transform: rotate(45deg);
    font-size: 2.5rem;
    color: var(--white);
}

.categoryWrap:hover .categoryContent a {
    transform: rotate(90deg);
}


/* Category Sec Css End */


/* Arrival Sec Css Start */

.arrivalSec {
    padding: 4.375rem 0;
    background: #EDEDED;
}

.arrivalSec .row {
    gap: 4.0625rem 0;
}

.arrivalSec .container,
.customerSec .container {
    max-width: 1450px;
}

.viewBtn {
    text-align: right;
    margin-bottom: 2.5rem;
}

.viewBtn a {
    color: var(--black);
    font-size: 1.875rem;
    font-weight: 600;
    font-family: 'Raleway';
    text-decoration: underline !important;
    display: block;
}

.viewBtn:hover a {
    transform: translateY(-10px);
    color: var(--primary);
}

.arrivalCard figure {
    background: var(--white);
    text-align: center;
    padding: 2.5rem 0 1rem 0;
    overflow: hidden;
}

.arrivalCard figure img {
    transition: 0.8s ease;
}

.arrivalCard figure:hover img {
    transform: scale(1.1);
}

.cartBox {
    margin-top: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateY(4rem);
    transition: 0.7s ease;
}

.arrivalCard:hover .cartBox {
    transform: translateY(0);
}

.cartBtn {
    font-size: 0.75rem;
    background: #1F1F1F;
    color: var(--white);
    padding: 0.625rem 7.5em;
    border-radius: 50px;
}

.heart {
    border: 1px solid #3E3E3E;
    width: 36px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: #3E3E3E;
    font-size: 1.125rem;
}

.cartBtn:hover,
.heart:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.arrivalContent h4 {
    color: #1F1F1F;
    font-size: 1.25rem;
    margin-top: 1rem;
}

.arrivalContent a {
    color: var(--primary);
    font-weight: 600;
}

.arrivalContent ul {
    display: flex;
    gap: 3px;
    margin-top: 5px;
}

.arrivalContent ul li {
    color: #1F1F1F;
}


/* Arrival Sec Css End */


/* Jewelry Sec Css Start */
.jewelrySec figure img {
    width: 100%;
    height: 714px;
    object-fit: cover;
}

.jewelryContent {
    background: #F1D5DB;
    padding: 0 5.3125rem;
    min-height: 715px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: baseline;
}

.jewelryContent h2 {
    margin-bottom: 4.6875rem;
}

.jewelryContent h2:before {
    margin: unset;
    bottom: -2.5rem;
}

.jewelryContent span {
    font-size: 1.375rem;
    color: #1F1F1F;
}

.jewelryContent ul {
    margin: 2.1875rem 0;
}

.jewelryContent ul li span {
    font-size: 1.5625rem;
    color: #16151A;
}

.jewelryTwo {
    background: #FEE8D7;
}

.jewelryTwo span {
    display: block;
    line-height: 1.1;
    margin-bottom: 2.8125rem;
}


/* Jewelry Sec Css End */


/* Customer Sec Css Start */

.customerSec {
    padding: 5.625rem 0;
}

.customerCard figure {
    position: relative;
}

.customerCard figure img {
    width: 100%;
    height: 264px;
    object-fit: cover;
}

.videoBtn {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: var(--white);
    width: fit-content;
    margin: auto;
    outline: unset;
}

.customerCard figure:hover .videoBtn {
    color: var(--primary);
}

.quote {
    margin: 1rem 0 1rem 0;
}

.quote i {
    color: var(--black);
    font-size: 3rem;
}

.customerContent p {
    color: var(--black);
    font-size: 1.125rem;
    line-height: 1.83;
}

.user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user h4 {
    font-weight: bold;
    color: var(--black);
    font-size: 1.25rem;
    margin: 0;
}


/* Customer Sec Css End */


/* Footer Css Start */

footer {
    padding-top: 4.375rem;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    background: #16151A;
    width: 90%;
    height: 1px;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
}

footer h3 {
    text-transform: uppercase;
    color: #16151A;
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

footer ul li a:hover {
    color: var(--primary);
    transform: translateX(10px);
}

.links li a,
.contactList li a {
    color: #130304;
    font-size: 0.9375rem;
    display: block;
}

.links li+li {
    margin-top: 0.625rem;
}

.contactList li a {
    margin-bottom: 2.1875rem;
    display: block;
}

.contactList li a i {
    font-size: 1.25rem;
    color: #16151A;
    padding-right: 0.625rem;
}

.socialMedia {
    display: flex;
    gap: 0.75rem;
}

.socialMedia li a {
    background: #525252;
    width: 40px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--white);
    transition: 0.5s ease;
}

.socialMedia li a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-10px);
}

.footPara {
    color: #4D4D4D;
    font-size: 1.125rem;
    line-height: 1.38;
}

.newsForm {
    margin-top: 1.75rem;
}

.newsForm input {
    background: unset;
    outline: unset;
    box-shadow: unset;
    border: unset;
    border-radius: unset;
    border-bottom: 1px solid #16151A;
    width: 100%;
    font-size: 1.125rem;
    margin-bottom: 3.125rem;
    color: #C3C3C3;
}

.newsForm input::placeholder {
    color: #C3C3C3;
}

.newsForm .themeBtn {
    border: unset;
    outline: unset;
}

.copyRight {
    border-top: 1px solid #16151A;
    margin-top: 3.75rem;
    padding: 2rem 0;
}

.copyRight p {
    text-align: center;
    color: #130304;
    margin: 0;
}


/* Footer Css End */


/* SEARCH BAR CSS */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 10000;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff !important;
    background: rgba(0, 0, 0, 0);
    font-size: 55px;
    line-height: 65px;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-family: arial;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: limegreen;
    border: black;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 15px 120px;
    font-size: 20px;
}


/* !SEARCH BAR CSS */


/* Inner Pages Css Start */

.innerBan {
    background: url(../images/inner-banner.png) no-repeat center/cover;
    height: 550px;
    display: flex;
    align-items: center;
}

.innerBan--about {
    background: url(../images/banner-about.webp) no-repeat center/cover;
}

.innerBan--jewelry {
    background: url(../images/banner-jewelry.webp) no-repeat 100% 70%/cover;
}

.innerBan--book {
    background: url(../images/banner-book.webp) no-repeat center/cover;
}

.innerBan--events {
    background: url(../images/banner-events.webp) no-repeat 100% 70%/cover;
}

.innerBan--care {
    background: url(../images/banner-care1.png) no-repeat 100% 90%/cover;
}

.innerBan--contact {
    background: url(../images/banner-contact1.png) no-repeat 100% 90%/cover;
}

.innerBan h1 {
    text-transform: capitalize;
}

.parmamentInner {
    padding: 4.6875rem 0 3.125rem 0;
}

.parmamentInner figure img {
    width: 100%;
    height: 636px;
    object-fit: cover;
}

.permanetntHeadingss h3 {
    font-size: 1.875rem;
    color: #16151A;
    margin: 1rem 0 2rem 0;
}

.permanetntHeadingss h2:before {
    display: none;
}

.permanetntHeadingss p {
    font-size: 0.9375rem;
    color: #5C5C5C;
    width: 74%;
    margin: 0 auto 2.5rem;
    line-height: 1.9;
}

.linkedBtn {
    margin-top: 2rem;
    text-align: center;
}

.processSect .container {
    max-width: 1440px;
}

.processText ul li span {
    color: #242424;
    font-size: 1.25rem;
    line-height: 1.7;
    width: 91%;
    display: block;
}

.processText ul {
    list-style: auto;
}

.processText ul li+li {
    margin-top: 3.75rem;
}

.processSect p {
    width: 100%;
    font-size: 1.4rem;
}

.processParagraph {
    padding: 3.125rem 0 5rem 0;
}

.appointmentList ul {
    list-style: disc;
    margin-left: 3rem;
}

.appointmentList ul li+li {
    margin-top: 0.75rem;
}

.jewelryImgs {
    margin-top: 4rem;
}

.pricingSect {
    padding: 3.125rem 0 5rem 0;
}

.pricingText h3 {
    font-size: 2.0625rem;
    color: #16151A;
    margin-bottom: 1.5rem;
}

.pricingText ul {
    list-style: disc;
    list-style-position: inside;
}

.pricingText ul li span {
    font-size: 1.25rem;
    color: #242424;
}

.pricingText ul li+li {
    margin-top: 8px;
}

.bookInner,
.contactInner {
    padding: 4.6875rem 0 6.25rem 0;
}

.bookImages .permanetntHeadingss p {
    margin: 40px auto 0;
    width: 77%;
}

.bookImages img {
    height: 700px;
    object-fit: cover;
}

.bookForm .form-control,
.bookForm select {
    background: unset;
    border: unset;
    border-radius: unset;
    box-shadow: unset;
    outline: unset;
    border-bottom: 1px solid #16151A;
    font-size: 1.375rem;
    text-transform: uppercase;
    width: 100%;
    color: #16151A;
    padding-left: 0;
}

.bookForm .form-control::placeholder {
    color: #16151A;
}

.bookForm input,
.bookForm select {
    height: 50px;
    margin-bottom: 5rem;
}

.bookForm .themeBtn {
    margin-top: 3.125rem;
    border: unset;
    outline: unset;
    padding: 1.25rem 3.5em;
}

.bookFormSect {
    padding-bottom: 5rem;
}

.jewelrycareInner {
    padding: 5rem 0 11.25rem 0;
}

.jewelrycareInner figure img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.careText h3 {
    color: #16151A;
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    /* white-space: nowrap; */
}

.careText p {
    font-size: 0.9375rem;
    color: #5C5C5C;
    line-height: 1.8;
}

.jewelrycareInner .row+.row {
    margin-top: 6.25rem;
}

.callBox {
    width: 100%;
    text-align: center;
    /* background: #F8F8F8; */
    padding: 3.125rem 0 1.875rem 0;
    height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.callBox div i {
    font-size: 4rem;
    color: #16151A;
    margin-bottom: 1rem;
}

.callBox h3 {
    font-size: 1.875rem;
    color: #16151A;
    font-family: 'Roboto';
    text-transform: uppercase;
}

.callBox a,
.callBox span {
    font-size: 0.9375rem;
    color: #5C5C5C;
    display: block;
    line-height: 2;
}

.contactBoxes a span {
    color: var(--black);
}

.contactBoxes a {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.contactBoxes a+a {
    margin-top: 1rem;
}

.contactInner .row+.row {
    margin-top: 6rem;
}

.faqs #accordion .card .btn-link {
    --height: 5rem;
    --width: 4.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    color: #16151A;
    padding: 0;
    border: 0;
    font-size: 1.375rem;
    border-radius: 0px;
    overflow: hidden;
    padding-left: 0rem;
    border-bottom-left-radius: 0;
    border-bottom: 1px solid var(--black);
    text-transform: uppercase;
    padding-bottom: 10px;
}

.faqs #accordion .card {
    border: none;
    border-radius: 0px;
    padding: 1rem 0rem;
    background: transparent;
}

.faqs #accordion .card .btn-link span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--height);
    margin-right: 1rem;
    font-size: 2.125rem;
}

.faqs #accordion .card .btn-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #BBBBBB;
    margin-left: auto;
    font-size: 1.5rem;
    font-weight: 400;
}

.faqs #accordion .card .btn-link i::before {
    content: '\f067';
}

.faqs #accordion .card .btn-link.collapsed {
    color: black;
}

.faqs #accordion .card .btn-link.collapsed i {
    color: #BBBBBB;
}

.faqs #accordion .card+.card {
    margin-top: 0;
}

.faqs #accordion .card .card-body {
    padding: 0rem 4rem 0rem 0rem;
}

.faqs #accordion .card .card-body p {
    font-size: 15px;
    font-weight: 400;
    padding-left: 0;
    margin: 0;
    color: #5C5C5C;
    line-height: 1.7;
    padding-top: 1rem;
}

.calenderSect {
    padding: 5rem 0;
}

.about {
    padding: 5rem 0;
}

.about__img {
    height: 600px;
}

.about__img img {
    object-fit: cover;
}

/* Inner Pages Css End */