@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --white: #fff;
  --black: #000;
  --theme-color: #c49d5c;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #000000;
  overflow-x: hidden;
  height: 100%;
  /* font-family: "Montserrat", sans-serif; */
  font-family: "Poppins", sans-serif;
}

.df {
  display: flex;
}

.aic {
  align-items: center;
}
.ais {
  align-items: flex-start;
}
.aie {
  align-items: flex-end;
}

.jcc {
  justify-content: center;
}

.jcsb {
  justify-content: space-between;
}

.frr {
  flex-direction: row-reverse;
}

.fw {
  flex-wrap: wrap;
}

.fnw {
  flex-wrap: nowrap;
}

.gap1 {
  gap: 1rem;
}

.gap2 {
  gap: 2rem;
}

@media (min-width: 1700px) {
  .container {
    max-width: 1366px;
  }
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #828288;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  /* font-family: "Montserrat", sans-serif; */
  font-family: "Poppins", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

.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;
}

figure {
  margin: 0;
}

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

.navbar-brand img {
  transition: 0.3s ease-in-out;
}
.topRow {
  padding: 0.5rem 0;
  text-align: center;
  background: var(--theme-color);
}
.topRow p {
  color: var(--white);
  margin: 0;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 400;
}
header {
  /* position: absolute; */
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99999;
  top: 0;
  width: 100%;
  transition: 0.3s ease-in-out;
}

header.sticky {
  position: fixed;
}

header.sticky .navbar-brand img {
  max-width: 100px;
}

.navbar-nav {
  gap: 1rem 2.5rem;
}
.navbar-nav .nav-item .nav-link {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--white);
  padding: 0;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
}
.navbar-nav .nav-item .nav-link::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: transform 0.3s ease-in-out;
  background-color: var(--theme-color);
  transform-origin: center;
  transform: scaleX(0);
}
.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
  transform: scaleX(1);
}
.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item .nav-link:hover {
  color: var(--theme-color);
}
.form-inline {
  gap: 2rem;
  margin-left: 3rem;
}
.form-inline a {
  color: var(--white);
  font-size: 1.375rem;
}
.form-inline a:hover {
  color: var(--theme-color);
}
.cartBtn {
  position: relative;
}
.cartBtn span {
  position: absolute;
  right: -0.5rem;
  top: 0rem;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: var(--theme-color);
  color: var(--white);
  font-size: 10px;
  display: inline-grid;
  place-items: center;
}
.main-slider {
  position: relative;
}
.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-slider h1 {
  font-size: 12.5rem;
  color: var(--white);
  font-weight: 700;
  line-height: 0.8;
  margin-bottom: 0;
}
.main-slider h2 {
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-weight: 400;
  line-height: 1;
  font-size: 3.75rem;
}
.themeBtn {
  display: inline-block;
  background: var(--theme-color);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  color: var(--white);
  padding: 0.75em 1.5em;
  margin: 0.5rem 0;
  text-transform: uppercase;
  border: 1px solid var(--theme-color);
}
.themeBtn:hover {
  color: var(--theme-color);
  background: var(--white);
}
.secHeading {
  font-weight: 700;
  font-size: 3.75rem;
  font-family: "Playfair Display", serif;
  color: var(--white);
  line-height: 1;
  margin-bottom: 2rem;
  position: relative;
  text-transform: uppercase;
}
.secHeading.fs-50 {
  font-size: 3.125rem;
}
/* Search Box */
.searchBox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1111;
  height: 100%;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgb(0 0 0 / 50%);
}
.searchBox .form-group {
  width: 100%;
  max-width: 50%;
  margin: 0 auto;
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.searchBox input {
  min-height: 60px;
  width: 100%;
  border: none;
  padding: 1rem;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}
.searchBox button {
  background: #fff;
  color: #000;
  width: 60px;
  min-height: 60px;
  border: none;
}
.searchBox .searchClose {
  position: absolute;
  display: block;
  right: 2rem;
  top: 2rem;
  color: #fff;
  font-size: 2.15rem;
  cursor: pointer;
}
/* popular-collection */
.pop-card {
  /* transition: 0.3s ease-in-out; */
}
.pop-card .imgWrap {
  overflow: hidden;
  position: relative;
}
.pop-card .imgWrap img {
  width: 100%;
}
.pop-card a.bt-arrow {
  font-family: "Playfair Display", serif;
  position: relative;
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
}
.pop-card a.bt-arrow i {
  font-size: 1.375rem;
  transition: 0.3s ease-in-out;
  color: var(--theme-color);
}
.pop-card:hover a.bt-arrow {
  transform: translateX(2rem);
}
.pop-card a.bt-arrow:hover i {
  transform: translateX(10px) scale(1.5);
}

/* offer-card */
.offerSec .col-md-4:nth-child(2) {
  /* margin: 0 1rem; */
}
.offer-card {
  position: relative;
  flex: 0 0 32.75%;
  overflow: hidden;
}
.offer-card img {
  opacity: 0.7;
}
.offer-card .content {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  padding: 1rem 3rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
}
.offer-card .content h3 {
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-size: 4.375rem;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.071;
  transition: 0.2s ease-in-out;
}
.offer-card .content p {
  color: var(--white);
  font-size: 3.125rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1rem;
  transition: 0.3s ease-in-out;
}
.offer-card .content .themeBtn {
  transition: 0.4s ease-in-out;
  padding: 0.75em 2em;
}
.offer-card:hover img {
  transform: scale(1.125);
}

.offer-card:hover :is(h3,p,.themeBtn){
  transform: translateX(2rem);
}
/* arrivalBnnr */
.arrivalBnnr {
  padding-bottom: 0;
}
.arrivalCard {
  position: relative;
}
.arrivalCard .content {
  position: absolute;
  right: 10rem;
  bottom: 5rem;
  padding: 1rem 2.5rem;
  text-align: center;
  background: var(--white);
  transform: skewX(-10deg);
  box-shadow: 0px 6px 32px 0px rgba(0, 0, 0, 0.39);
}
.arrivalCard .content h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.125rem;
  margin: 0;
  line-height: 1;
  color: var(--black);
  font-weight: 500;
  transform: skewX(10deg);
  text-transform: uppercase;
}
.arrivalCard .content h2 span {
  font-family: "Poppins", sans-serif;
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--theme-color);
}
.reverse .arrivalCard .content {
  right: auto;
  left: 5rem;
  transform: none;
  padding: 1rem;
}
.reverse .arrivalCard .content h2 {
  transform: none;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
}
/* arrivalProducts */
.arrivalProducts p {
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
}
.proCard .imgWrap {
  overflow: hidden;
}
.proCard .imgWrap img {
  width: 100%;
  /* transition: 0.3s ease-in-out; */
}
.proCard .content {
  background: #252525;
  padding: 0.75rem 3rem;
  text-align: center;
}
.proCard .content h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}
.proCard .content p {
  color: var(--theme-color);
  font-size: 1.125rem;
  line-height: 1;
  margin: 0;
}

.newsLtr {
  padding: 3rem 0;
  background: var(--theme-color);
}
.newsLtr .secHeading {
  margin-bottom: 0;
}
.newsLtr .form-group {
  height: 5rem;
  display: flex;
  width: 100%;
}
.newsLtr .form-group input {
  background: var(--white);
  height: 100%;
  width: 100%;
  padding-left: 1rem;
  color: var(--black);
  font-size: 1.0675rem;
  border-radius: 0;
  outline: none;
  transition: 0.3s ease-in-out;
  border: 1px solid var(--white);
}
.newsLtr .form-group input:focus {
  background: var(--black);
  color: var(--white);
}
.newsLtr .form-group button {
  height: 100%;
  margin: 0;
  border-color: var(--black);
  background: var(--black);
}
.newsLtr .form-group button:hover {
  background: var(--theme-color);
  color: var(--black);
}

footer {
  padding-top: 6rem;
  background: var(--black);
}
footer h3 {
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1.5rem;
}
footer .links li a {
  font-size: 1rem;
  display: inline-block;
  color: #919191;
  line-height: 2;
}

.socialIo li a {
  display: inline-flex;
  align-items: center;
  color: #919191;
  font-size: 1rem;
  line-height: 2;
  gap: 0.75rem;
}
footer .links li a:hover,
.socialIo li a:hover {
  color: var(--theme-color);
  text-decoration: underline !important;
}

.copyRight {
  margin-top: 5rem;
  background: #252525;
  padding: 1.5rem 0;
}
.copyRight p {
  color: var(--white);
  margin: 0;
  font-size: 1rem;
}

.sliderWrapper {
  position: relative;
}
.sliderWrapper .swiper-button-prev-unique {
  width: 50px;
  position: absolute;
  top: 45%;
  left: -4rem;
  cursor: pointer;
}
.sliderWrapper .swiper-button-next-unique {
  width: 50px;
  position: absolute;
  top: 45%;
  right: -4rem;
  cursor: pointer;
}
.sliderWrapper .swiper-button-prev-unique:hover,
.sliderWrapper .swiper-button-next-unique:hover {
  filter: brightness(0) invert(1);
}
.reveal {
  visibility: hidden;
  position: relative;
  overflow: hidden;
}

/*Inner pages CSS Start*/
.banner {
  position: relative;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlay h2 {
  font-size: 5.625rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin-top: 7rem;
}

/*About Page CSS start*/
.abtSec h2 {
  font-size: 3.125rem;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}
.abtSec p{
  color: #fff;
}
.abtSec.storySec {
  background: #202020;
  padding: 7rem 0;
}
/*About Page CSS End*/
/*Contact Page CSS Start*/

.cntctLst {
  text-align: center;
}

.cntctLst figure {
  width: 125px;
  height: 125px;
  box-shadow: 0px 0px 2px 0px rgb(45 46 55 / 19%);
  background: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.cntctLst h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: #fff;
}

.cntctLst a {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
}

.cntctLst p {
  line-height: 27px;
  margin: 0;
  color: #fff;
}

.cntctSec .form-group {
  position: relative;
  display: flex;
  border: 1px solid #efefef;
  background-color: var(--white);
  margin-bottom: 2rem;
}

.cntctSec .form-group i {
  display: grid;
  place-items: center;
  color: #7e7e7e;
  font-size: 1.25rem;
  background-color: #dedede;
  width: 58px;
  height: 58px;
}

.cntctSec .form-group .form-control {
  border-radius: 0;
  background-color: var(--white);
  height: 58px;
  border: 0;
  font-size: 16px;
  color: var( --black);
  transition: 0.4s ease-in-out;
  line-height: 1;
}
.cntctSec .arvlHead h2 {
  color: #fff;
  font-size: 3.125rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
.cntctSec .arvlHead p {
  color: #fff;
  text-align: center;
  padding-bottom: 2rem;
}
.cntctSec .form-group textarea.form-control {
  height: 180px;
  padding-top: 1rem;
}

.cntctSec {
  background: #313131;
}

.cntctSec .arvlHead .sectionHeading {
  margin: 0 0 0;
}
.cntctLst i {
  color: var(--theme-color);
}
.mapSec {
  padding: 0;
}

/*Contact Page CSS End*/
/*Inner pages CSS End*/