* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --cherry: #812D32;
    --dark: #100606;
    --dark-light: #1F1919;
    --white: #FFFFFF;
    --yellow: #FAC251;

    --font-playfair: 'Playfair Display', sans-serif;

    --tansition: 0.5s;
}

body {
    font-size: 16px;
    font-weight: 400;
    word-break: break-word;
    color: var(--black);
    background: var(--white);
    /* font-family: 'Inter' sans-serif; */
    font-family: 'Inter';

}

header {
    position: fixed;
    z-index: 99999;
    width: 100%;
    background: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
strong,
ul,
ol,
li {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    transform: translate(0%);
}

li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}
button{
    border: none;
}
/* GLOBAL START */
.nav-shadow {
    opacity: 0.95;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}

/* BACKTOP START */
.btm-to-top.show {
    opacity: 1;
    visibility: visible;
}

.btm-to-top {
    display: inline-block;
    background-color: var(--orange);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    border-radius: 2px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    visibility: hidden;
    z-index: 9998;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.btm-to-top:hover {
    cursor: pointer;
    opacity: 0.7;
    color: var(--white);
}

/* BACKTOP END */
h1,
h1 span {
    font-size: 70px;
    font-weight: 400;
    color: var(--white);
    font-family: var(--font-playfair);
    text-transform: uppercase;
}

h1 span {
    font-weight: 700;
}

h2 {
    font-size: 20px;
    font-weight: 400;
}

h3 {
    font-size: 45px;
    font-weight: 700;
    color: var(--cherry);
    font-family: var(--font-playfair);
    letter-spacing: 2.25px;
    text-transform: uppercase;
}

h4 {
    font-size: 25px;
    font-weight: 600;
    color: var(--dark-light);
    font-family: var(--font-playfair);
}

h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    font-family: var(--font-playfair);
}

p,
span,
a {
    font-size: 16px;
    font-weight: 600;
    color: #221F1F;
}

.nav-btn a, .form-group button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background: var(--yellow);
    border-radius: 5px;
    min-height: 50px;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.9px;
    font-family: var(--font-playfair);
    border: 2px solid var(--yellow);
}

.nav-btn a:hover,.form-group button:hover {
    color: var(--yellow);
    background: transparent;
}

.underline {
    display: flex;
    gap: 5px;
    align-items: center;
    max-width: 150px;
    margin: 0 auto;
}

.underline span {
    width: 64px;
    height: 3px;
    background: linear-gradient(357deg, #FAC251 0%, rgba(111, 94, 62, 0.00) 91.71%);
}

.underline p img {
    width: 26px;
    height: 30px;
    object-fit: contain;
    object-position: center;
}

/* GLOBAL END */

/* HEADER START */
.header .navbar {
    padding: 15px 0;
}

.header .nav-main {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-main-lft,
.nav-main-rht {
    width: 43%;
}

.nav-main-mid {
    width: 14%;
}

.nav-main-lft .navbar-nav {
    justify-content: flex-end;
}


.nav-main-mid {
    position: relative;
}

.nav-main-mid .nav-main-mid-logo-wrap {
    width: 100%;
    height: auto;
    position: absolute;
}

.nav-main-mid .nav-main-mid-logo-wrap {
    top: -47px;
    left: 50%;
    transform: translateX(-50%);
}

.nav-main-mid .nav-main-mid-logo-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: top;
}

.nav-main-rht {
    display: flex;
    align-items: center;
}

.nav-btn-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-cart-btn{
    position: relative;
}
.nav-cart-btn button {
    font-size: 32px;
    background-color: transparent;
}
.nav-cart-btn span{
    width: 20px;
    height: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    border-radius: 50%;
    font-weight: 600;
    color: var(--black);
    background-color: var(--yellow);
    position: absolute;
    right: -8px;
}
.header .navbar .nav-link,
.topfooter  .nav-link{
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-playfair);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--dark);
}

.header .navbar .nav-main-lft .nav-link {
    padding: 0 30px 0 0;
}

.header .navbar .nav-main-rht .nav-link {
    padding: 0 0 0 30px;
}

.header .navbar .nav-link:hover,
.header .navbar .nav-link.active {
    color: var(--cherry);
}

/* HEADER END */
/* BANNER START */
.banner,.inner-banner {
    padding: 260px 0 170px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner h1 {
    margin-bottom: 25px;
}

.banner h5 {
    max-width: 680px;
    line-height: 30px;
    margin-bottom: 45px;
}

/* BANNER END */
/* REVIEW START */
.review {
    padding: 100px 0;
}

.review-slider-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.review-slider-inner .review-slider-ratings {
    margin-bottom: 25px;
}

.review-slider-inner .review-slider-ratings i {
    color: var(--yellow);
}

.review-slider .owl-dots {
    text-align: center;
    padding-top: 25px;
}

.review-slider .owl-dots .owl-dot {
    height: 7px;
    width: 7px;
    border-radius: 50%;
    margin: 0 4px;
    background: #A0A0A0;
}

.review-slider .owl-dots .owl-dot.active {
    background: var(--yellow);
}

/* REVIEW END */
/* ABOUT START */
.about {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.about::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(233deg, rgba(253, 253, 253, 0.84) 5.18%, rgba(195, 177, 141, 0.84) 100%);
    top: 0;
}

.about-outer {
    padding: 90px 0 120px 0;
    position: relative;
}

.about-outer::before {
    position: absolute;
    content: '';
    width: 400px;
    height: 335px;
    background-image: url('../assets/images/about-lft-ring.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 99;
    bottom: -165px;
    left: 0;
}

.about-outer::after {
    position: absolute;
    content: '';
    width: 400px;
    height: 335px;
    background-image: url('../assets/images/about-rht-ring.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 99;
    right: 0;
    top: -150px;
}

.about-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 99;
}

.about-lft,
.about-rht {
    width: 47%;
}

.about-rht {
    text-align: center;
}

.about-rht h3 {
    margin-bottom: 20px;
}

.about-rht h4 {
    max-width: 350px;
    margin: 0 auto 30px auto;
}

.about-rht p {
    font-size: 18px;
    max-width: 500px;
    color: #221F1F;
    margin: 0 auto 30px auto;
}

.about-rht .underline {
    margin-bottom: 20px;
}

.about-rht .underline p {
    margin: 0;
}

.about-lft-img {
    position: relative;
}

.about-lft-inner-img {
    position: absolute;
    right: -80px;
    bottom: -90px;
}

.about-lft-img img {
    border-radius: 10px;
}

.about-lft-inner-img img {
    width: 170px;
    height: 240px;
}

/* ABOUT END */
/* CATEGORIES START */
.categories {
    padding: 90px 0;
    background: #F5F5F5;
}

.categories-top,.contactSec-top {
    text-align: center;
    margin-bottom: 45px;
}

.categories-top h3,.contactSec-top h3 {
    margin-bottom: 20px;
}

.categories-btm-tab-wrap .nav {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.categories-btm-tab-wrap .nav {
    padding: 16px;
    background: var(--white);
    border-radius: 16px;
}

.categories-btm-tab-wrap .nav .nav-item {
    width: 20%;
}

.categories-btm-tab-wrap .nav .nav-item .nav-link {
    width: 100%;
    padding: 20px;
    border: 0;
    display: flex;
    gap: 7px;
    flex-direction: column;
    align-items: center;
}

.categories-btm-tab-wrap .nav .nav-item .nav-link.active {
    border: 0;
    border-radius: 10px;
    background: rgba(250, 194, 81, 0.15);
}

.categories-btm-tab-wrap .nav .nav-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    object-position: center;
}

.categories-btm-tab-wrap .nav .nav-item span {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.08px;
    text-transform: uppercase;
    font-family: var(--font-playfair);
}

.categories-btm-content-wrap {
    max-width: 85%;
    margin: 0 auto;
    padding-top: 35px;
}

.categories-item-wrap {
    display: grid;
    grid-gap: 60px;
    grid-template-columns: repeat(3, 1fr);
}

.categories-item {
    border-radius: 10px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    overflow: hidden;
}

.categories-item-top {
    padding-top: 300px;
}

.categories-item-btm {
    height: 100%;
    padding: 24px 80px;
    background: rgba(14, 1, 1, 0.90);
    transition: var(--tansition);
}

.categories-item:hover .categories-item-btm {
    background: rgba(129, 45, 50, 0.90);
}

.categories-item-img {
    text-align: center;
    margin-bottom: 20px;
}

.categories-item-img img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    object-position: center;
}

.categories-item-text {
    text-align: center;
}

.categories-item-text h5 {
    margin-bottom: 20px;
}

.nav-btn .categories-item-text a {
    min-height: 55px;
}

.nav-btn .categories-item-text a i {
    margin-right: 20px;
}

/* CATEGORIES END */
/* DISCOVER START */
.discover {
    padding: 140px 0 200px 0;
    position: relative;
}

.discover::after {
    position: absolute;
    content: '';
    width: 345px;
    height: 200px;
    background-image: url('../assets/images/discover-top-img.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    right: 0;
    top: -100px;
}

.discover-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.discover-lft,
.discover-rht {
    width: 47%;
}

.discover-lft {
    position: relative;
}

.discover-lft-img {
    max-width: 80%;
    margin: 0 auto;
}

.discover-lft-img img {
    border-radius: 10px;
}

.discover-lft-inner-img img {
    width: 250px;
    height: 230px;
    position: absolute;
    left: 0;
    bottom: -120px;
}

.discover-rht {
    text-align: center;
}

.discover-rht h3 {
    margin-bottom: 25px;
}

.discover-rht .underline {
    margin-bottom: 20px;
}

.discover-rht > p {
    max-width: 580px;
    margin: 0 auto 20px auto;
}

/* DISCOVER END */
/* EXCLUSIVE START */
.exclusive{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 130px 0 80px;
}
.exclusive::after{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    background: rgba(129, 45, 50, 0.90);
}
.exclusive-outer,.exclusive-inner{
    position: relative;
    z-index: 10;
}
.exclusive-outer::after{
    content: '';
    position: absolute;
    width: 370px;
    height: 220px;
    background-image: url('../assets/images/ex-outer-img-1.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 99;
    right: 50px;
    top: -70px;
}
.exclusive-outer::before{
    content: '';
    position: absolute;
    width: 240px;
    height: 260px;
    background-image: url('../assets/images/ex-outer-img-2.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 99;
    bottom: -165px;
    left: 0;
}
.exclusive-top {
    text-align: center;
    margin-bottom: 45px;
}
.exclusive-top h3 {
    margin-bottom: 20px;
    color: var(--white);
}
.exclusive-top .underline,
.contactSec-top .underline{
    margin-bottom: 30px;
}
.exclusive-top .underline span{
    background: linear-gradient(357deg, #fff 0%, rgba(111, 94, 62, 0.00) 91.71%);
}
.exclusive-top p {
    font-size: 18px;
    color: var(--white);
    font-weight: 600;
    text-transform: capitalize;
}
.exclusive-item{
    padding: 25px 50px;
    border-radius: 12px;
    text-align: center;
    background-color: var(--white);
}
.exclusive-item .exclusive-item-img{
    width: 225px;
    height: 190px;
    margin: 0 auto;
}
.exclusive-item .exclusive-item-text h5{
    color: var(--cherry);
    margin: 30px 0 25px;
}
.exclusive-item .exclusive-item-text p{
    font-weight: 400;
    margin-bottom: 25px;
}
.exclusive-slider .owl-nav {
    text-align: center;
    padding-top: 70px;
}
.exclusive-slider .owl-nav button{
    width: 54px;
    height: 54px;
    background-color: var(--white)!important;
}
.exclusive-slider .owl-nav button span{
    font-size: 60px;
    line-height: 40px;
}
.exclusive-slider .owl-nav button:hover{
    background-color: var(--yellow)!important;
}
/* EXCLUSIVE END */
/* CONTACT START */
.contactSec{
    padding: 90px 0;
}
.contact-details-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.contact-items > img {
    width: 45px;
    height: 45px;
}
.contact-items h5{
    color: var(--cherry); 
    margin: 20px 0;   
}
.contact-items p,.contact-items p a{
    color: #221F1F;
	font-weight: 400;
}

.form-wrapper {
	padding: 65px 60px;
    border-radius: 30px;
    background-color: #AA3147;
}
.form-group{
    margin-top: 35px;
}
.form-wrapper .form-group:first-child{
    margin-top: 0px;
}
.form-control{
    border-radius: 12px;
    height: 60px;
    margin-top: 10px;
	background-color: var(--white);
	transition: .5s;
}
.form-control:focus{
    border: 1px solid#3e3e3e2b;
    box-shadow: none;
	transition: .5s;
}
.form-group textarea{
    height: 140px;
    resize: none;
}
::placeholder{
    color: #9A9999;
	font-weight: 500;
}
.recaptcha {
    width: 275px;
    height: auto;
    margin-top: 35px;
}
/* CONTACT END */
/* FOOTER START */
footer{
    background-color: var(--cherry);
}
.topfooter{
    padding: 100px 0 60px;
}

.topfooter h2,.topfooter h4{
    color: var(--white);
    margin-bottom: 20px;
}
.topfooter ul.social-media{
    display: flex;
    align-items: center;
    margin-top: 30px;
}
.topfooter ul.social-media li{
    background: var(--yellow);
    border-radius: 50%;
    margin: 0 10px;
    width: 40px;
    height: 40px;
}
.topfooter ul.social-media li:first-child{
    margin-left: 0;
}
.topfooter ul.social-media li a{
    font-size: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.footer-logo {
    text-align: center;
}
.topfooter .footer-nav ul{
    display: flex;
    flex-wrap: wrap;
    
}
.topfooter .footer-nav ul li{
    width: 50%;
    margin-bottom: 20px;
}
.topfooter .footer-nav ul li a,
.btmfooter p{
    color: var(--white);
    font-weight: 400;
}
.topfooter .footer-nav ul li a:hover{
    color: var(--yellow);
}
.btmfooter{
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #AAA6A6;
}
/* FOOTER END */
/* ABOUT US PAGE START */
/* INNER BANNER START */
.inner-banner,.container-inner{
    position: relative;
}
.inner-banner::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(0,0,0,1) 15%, rgba(255,255,255,0) 50%);
}
.container-inner{
    z-index: 10;
}
.container-inner ol.breadcrumb{
    margin-top: 40px;
}
.container-inner ol li.breadcrumb-item,
.breadcrumb-item+.breadcrumb-item::before,
.container-inner ol li.breadcrumb-item a{
    color: var(--white);
}
/* INNER BANNER  */
/* EXPERIENCE START */
.experience{
    padding: 90px 0;
}
.experience  .row{
    align-items: center;
}
.experience-wrap {
    text-align: center;
    padding-right: 100px;
}
.experience-wrap h4{
    margin: 30px 0;
}
.experience-image{
    border-radius: 12px;
    overflow: hidden;
}
/* EXPERIENCE END */
/* ABOUT US PAGE END */