

/* HEADER */

.header {
  background-color: #444b52be;
  height: 80px;
  position: absolute;
  width: 100%;
  display: block;
  left: 0;
  top: 0;
  z-index: 222;
  transition:all 0.3s ease-in;
}

.hdbar{
  position: relative;
}

.InnerHeader {
  position: relative;
  background-color: var(--primary-color);
}

.headerIn {
  background-color: transparent;
}
.navBar .msRow {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
}
.navBar{

  height: 80px;
  display: flex;
  align-items: center;
}

.navMenu {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
  height: 100%;
}

.navMenu ul {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    height: 100%;
}



.navMenu ul li a {
  color: #fff;
  text-transform: uppercase;
  font-family: var(--text-font);
  font-size: 15px;
}

.navMenu ul .navli a::after{

  content: "";
  position: relative;
  display: block;
  bottom:0;
  left: 0;
  width: 100%;
  height: 1.4px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.48s cubic-bezier(0.77, 0, 0.175, 1);
}

.navMenu ul .navli:hover a::after{

  transform: scaleX(1);
}

.navMenu ul li .drplink::after{

  content: "";
  position: relative;
  display: block;
  bottom:0;
  left: 0;
  width: 100%;
  height: 1.4px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.48s cubic-bezier(0.77, 0, 0.175, 1);
}

.navMenu ul li:hover .drplink::after{

  transform: scaleX(1);
}

.navMenu ul li{

  height: 100%;
  display: flex;
  align-items: center;
}

.navMenu ul .ico::after{

  display: none;
}


.ico img{

  width: 18px;
}


.srch svg circle,
.cart svg path,
.srch svg line
{

  stroke: #fff;
}

.hrt svg path{

  fill: #fff;
}
.dropMenu{
  position: relative;
}

.dropMenu .dropDown{

  display: block;
  position: absolute;
  background-color: rgb(249 243 238 / 90%);
  padding: 12px;
  width: 200px;
  top: 80px;
  left: 0;
  height: fit-content;
  transform: translateY(-3px);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  z-index: 22;
  transition: all 0.3s;
}


.dropDown .submenu{

  font-family: var(--text-font);
  text-transform: uppercase;
  margin: 10px 0;
  width: fit-content;font-weight: 500;
}



.dropDown .submenu a::after{

  content: "";
  position: relative;
  display: block;
  bottom:0;
  left: 0;
  width: 100%;
  height: 1.4px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.48s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropDown .submenu a:hover::after{

  transform: scaleX(1);

}
.dropMenu:hover .dropDown{

  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropDown .submenu:hover::after{

  display: none;
}

.submenu a{

  color: var(--primary-color) !important;
}

.MegadropDown{

  display: block !important;
  position: absolute !important;
  background-color: rgb(249 243 238 / 90%);
  padding: 12px;
  width: 1000px;
  top:80px;
  left: -525px;
  height: fit-content;
  transform: translateY(-3px);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  z-index: 22;
  transition: all 0.3s ease-in;
}

.MegadropDown .submenu{

  font-family: var(--text-font);
  text-transform: uppercase;
  margin: 6px 0;
  width: fit-content;
}

.MegadropDown ul{

  display: block;
}

.MegadropDown ul li .li-cat{

  font-weight: 500;
}

.MegadropDown ul li a{

  color: var(--primary-color);
  font-size: 17px;
}


.MegadropDown ul li a::after{

  content: "";
  position: relative;
  display: block;
  bottom:0;
  left: 0;
  width: 100%;
  height: 1.4px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.48s cubic-bezier(0.77, 0, 0.175, 1);
}

.MegadropDown ul li a:hover::after{

  transform: scaleX(1) !important;
}

.MegadropDown ul li{

  height: auto;
  margin-bottom: 12px;
}

.MegadropMenu{
  position: relative;
}

.MegadropMenu:hover .MegadropDown{

  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.humTogg{

  cursor: pointer;
}

.humTogg span {
  display: block;
  background: #fff;
  width: 35px;
  height: 1px;
  margin: 6px 0;
  transition: all 0.6s;
  position: relative;
  z-index: 2;

}

.humTogg:hover span:nth-child(1) {

  width: 30px;

}
.humTogg:hover span:nth-child(2) {
  width: 25px;

}

.humTogg:hover span:nth-child(3) {

  width: 20px;

}



.CloseTogg{
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 55px;
  cursor: pointer;
  transition-delay: 1s;

}

.CloseTogg span{

  display: block;
  background: var(--primary-color);
  width: 30px;
  height: 1px;
  margin: 6px 0;
  transition: all 0.6s;


}

.CloseTogg span:nth-child(1){

  transform: rotate(43deg)  translate(5px, 5px);
}

.CloseTogg span:nth-child(2){

  transform: rotate(-43deg);
}

.srchIco{

  cursor: pointer;
}
.headSearch{

  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 22;
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
  display: block;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.48s cubic-bezier(0.77, 0, 0.175, 1);
}

.headSearch.show{

  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
  transition: transform 0.48s cubic-bezier(0.77, 0, 0.175, 1);
}
.headSearch .srch{

  display: flex;
  height: 100%;
}
.headSearch input{

  width: 100%;
  height: 100%;
  padding: 0 12px;
  background-color: var(--primary-color);
  border: none;
  color: var(--bg-secondary);
  font-size: 20px;
  font-family: var(--text-font);
}

.headSearch input:focus{

  outline: none;
}

.headSearch input::placeholder{

  color: #fff;
}

.searchClose{

  z-index: 222;
}

.searchClose span{

  background: var(--bg-secondary);
}

.ico{
  position: relative;
}

.ico span{

  color: #fff;
  margin-left: 12px;
  font-size: 14px;
  text-transform: uppercase;
}

.cart .cartDrop{

  position: absolute;
  top: 0;
  width: 260px;
  background-color: rgba(249, 243, 238, 0.964);
  padding: 12px;
  top: 80px;
  right: 0;
  height: fit-content;
  display: block !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-3px);
  transition: all 0.3s;
  z-index: 99;
}

.cart:hover .cartDrop{
  opacity: 1;
  visibility: visible;
  cursor: pointer;
  transform: translateY(0);
}

.cartLi{

  width: 100% !important;
  display: block !important;
}

.cartdropitemBlk{

  font-family: var(--text-font);
  align-items: center;
}

.cartdropTotal{

  display: flex;
  padding: 10px 0;
  border-top: 1px solid var(--primary-color);
}
.cartdropTotal span{

  margin-left: auto;
  color: var(--primary-color);
}

.cartdropitemBlk{

  display: flex;
  gap: 14px;
  color: var(--primary-color);
}

.cartdropDet span{

  color: var(--primary-color);
  margin-left: 0;
  font-size: 15px;
}

.cartdropDet h3{

  font-family: var(--text-font);
  font-weight: 500;
  font-size: 16px;
}

.cartdropDet{

  margin-bottom: 10px;
}

.cartitemcount{

  padding-top: 6px;
}

.cartImg img{

  width: 90px;
  height: 90px;
  object-fit: cover;
  object-position: center;
}

.cartdropBtn a{

  display: block !important;
  margin-bottom: 6px;
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 12px !important;
  letter-spacing: 1px;
}
/* SLIDER */

.heroItem{
  position: relative;
  overflow: hidden;
}

.heroSlidImg img{

  height: 100vh;
  object-fit: cover;
object-position: center;
}

.SlideContent h2 {
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  font-size: 68px;
  color: #fff;
  font-weight: 400;
  width: 720px !important;
}

.SlideContent span {
  display: block;
  font-size: 40px;
  color: #fff;
  font-family: var(--primary-font);
}

.SlideContent p {
  font-family: var(--text-font);
  max-width: 100%;
  color: #fff;
  width: 850px;
  font-size: 22px;
  margin: 20px 0;
}

.SlideContent a {
  display: block;
  padding: 15px 40px;
  text-align: center;
  width: fit-content;
  border: 2px solid #fff;
  color: #fff;
  font-family: var(--text-font);
  text-transform: uppercase;
  margin-top: 2.5em;
  transition: all 0.3s;
  font-size: 13px;
  letter-spacing: 0.35em;
  font-weight: 500;
  line-height: 2em;

}

.SlideContent a:hover{

  background: #fff;
  color: var(--primary-color);
}


.SlideContent a:hover {
  color: var(--primary-color);
}

.SlideContent a:hover::before {
  width: 100%;
}

.swiper-wrapper {
  height: 100vh !important;
}


.HeroSlide img{

  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heroSlide .slick-dots{

  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
}

.heroSlide .slick-dots li{

  margin: 0 10px;
  transition: all 0.3s linear;

}

.heroSlide .slick-dots li{
  background: transparent;
  border: none;
  font-size: 24px;
  font-family: var(--primary-font);
  color: #fff;
  position: relative;
  transition: all 0.3s cubic-bezier(.51,.43,.91,.65);
}

.slick-dots .slick-active::after{

  content: "";
  display: block;
  background-color: #fff;
  width: 40px;
  height: 1px;
  position: relative;
  transform: scale(1px);
  top: -12px;
  left: 15px;
  transition: all 0.3s cubic-bezier(.51,.43,.91,.65);
  margin: 0 12px;
}


/** Text Animation **/

@-webkit-keyframes fadeInUpSD {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.slick-active .SlideContent h2 {
  -webkit-animation-name: fadeInUpSD;
  animation-name: fadeInUpSD;
  animation-duration: 1s;
  opacity: 1;
  width: 100%;
}
.slick-active .SlideContent p {
  -webkit-animation-name: fadeInUpSD;
  animation-name: fadeInUpSD;
  animation-duration: 1.8s;
  opacity: 1;
  width: 100%;
}

.slick-active .SlideContent a {
  -webkit-animation-name: fadeInUpSD;
  animation-name: fadeInUpSD;
  animation-duration: 2s;
  opacity: 1;
}
.SlideContent {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  color: #fff;
  margin-left: 80px;
}


/* ABOUT */

.about {
  background: var(--bg-secondary);
  position: relative;
}

.aboutContent {
  padding-left: 6em;
}

.aboutContent span {
  font-family: var(--text-font);
  color: var(--seconday-color);
}

.aboutContent h2 {
  font-family: var(--primary-font);
  font-size: 27px;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}

.aboutContent h2 span{

  text-transform: capitalize !important;
  font-style: italic;
  font-family: var(--primary-font);
  font-size:35px;
  color: var(--primary-color);
  text-transform: uppercase;  
  font-weight: 500;
  display: block;
}

.aboutContent p {
  margin-bottom: 12px;
  font-family: var(--text-font);
}

.aboutContent .abtlefay {
  font-family: "Mrs Saint Delafield", cursive;
  text-transform: initial;
  font-size: 54px;
  color: var(--primary-color);
  font-weight: 400;
}

/* CATEGORY SECTION */

.sectionTitle h3 {
  font-size: 48px;
  font-family: var(--primary-font);
  text-transform: uppercase;
  margin-bottom: 38px;
  color: var(--primary-color);
  font-weight: 400;
}

.categoryImgMain {
  position: relative;
  overflow: hidden;
}

.categoryImgMain img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  object-position: center;
  transition: all 0.6s;
}

.categoryImgMain::after {
  content: "";
  display: block;
  padding-top: 120%;
}

.categoryImg {
  position: relative;
  overflow: hidden;
}

.categoryImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  object-position: center;
  transition: all 0.6s;
}

.categoryImg::after {
  content: "";
  display: block;
  padding-top: 84.5%;
}

.catTitle {
  position: absolute;
  bottom: 24px;
  left: 28px;
  width: 100%;
  z-index: 22;
}

.catTitle h4 {
  color: #fff;
  font-family: var(--primary-font);
  font-size: 30px;
  text-transform: none;
  font-weight: 400;
}

.categoryBlk {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.categoryBlk::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background:linear-gradient(
    182deg,
    rgba(237, 28, 36, 0) 0%,
    rgb(39 39 39 / 64%) 135%
  )
}

.categoryBlk:hover .categoryImg img,
.categoryBlk:hover .categoryImgMain img {
  transform: scale(1.05);
}

.categorySec{

  background: #fff;
}

/* BANNER */

.msRow {
  display: flex;
  flex-wrap: nowrap;
}

.bannerContentBlk {
  background-color: #bac5ce;
  display: flex;
  align-items: center;
  width: 40%;
  justify-content: center;
  text-align: center;
  padding: 4em 0;
}

.banContent span {
  font-family: var(--text-font);
  color: var(--seconday-color);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.banContent h2 {
  color: var(--primary-color);
  font-size: 40px;
  font-family: var(--primary-font);
  text-transform: uppercase;
  font-weight: 400;
}

.banContent h2 span {
  display: block;

  color: var(--primary-color);
  font-size: 45px;
  font-family: var(--primary-font);
  text-transform: uppercase;
  font-weight: 400;
}

.banContent {
  width: 500px;
  max-width: 100%;
}

.banContent a {
  display: block;
  width: fit-content;
  padding: 14px 40px;
  margin: auto;
  margin-top: 2.8em;
  background-color: var(--primary-color);
  color: #fff;
  text-transform: uppercase;
  font-family: var(--text-font);
  border: 1px solid var(--primary-color);
  transition: all 250ms;
  font-weight: 500;
  font-size: 13px;
  line-height: 2em;
  letter-spacing: 1px;
}

.banContent a::after{

  content: "";
    position: relative;
    display: block;
    bottom:0;
    left: 0;
    width: 100%;
    height: 1.4px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.48s cubic-bezier(0.77, 0, 0.175, 1);
}

.banContent a:hover::after {
  background-color: var(--primary-color);
  transform: scaleX(1);
}

.banContent a:hover{

  color: var(--primary-color);
  background-color: transparent;
}

.bannerImgLft,
.bannerImgRgt {
  width: 30%;
}

.bannerImgLft,
.bannerImgRgt {
  position: relative;
  overflow: hidden;
}


.bannerImgLft img,
.bannerImgRgt img{

  height: 100%;
  object-fit: cover;
  object-position: left;
}


.banContent p{

  margin-bottom: 12px;
}


.secBanner{

  height: 100%;
}

/* BEST SELLER */

.beSellerMain {
  position: relative;
  overflow: hidden;
}

.beSellerBlk {
  border: 1px solid var(--seconday-color);
  padding: 20px;
}

.beSellerDetail {
  display: flex;
  font-family: var(--text-font);
  color: var(--seconday-color);
  margin-top: 12px;
}

.beSellerDetail h5 {
  font-size: 15px;
  text-transform: uppercase;
}

.beSellerDetail .amount {
  margin-left: auto;
  font-size: 15px;
}

.ProductIcoBlk {
  background-color: #bac5cec4;
  width: fit-content;
  padding: 6px 0;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 250ms;
}

.beSellerMain:hover .ProductIcoBlk {
  opacity: 1;
  visibility: visible;
  cursor: pointer;
}

.ProductIcoBlk ul {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
}

.ProductIcoBlk ul li {
  border-right: 1px solid var(--primary-color);
  padding: 14px;
  line-height: 0;
}

.ProductIcoBlk ul li:last-child {
  border: none;
}

.bestSeller{

    background: #fff;
}
.bestSellerMain .moreBtn a {
  display: block;
  padding: 14px 40px;
  text-align: center;
  width: fit-content;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-family: var(--text-font);
  text-transform: uppercase;
  margin: auto;
  margin-top: 2.8em;
  position: relative;
  overflow: hidden;
  font-size: 13px;
  font-weight: 500;
  line-height: 2em;
  transition: all 0.3s;
  letter-spacing: 1px;
}

.bestSellerMain .moreBtn a::after{

  content: "";
  position: relative;
  display: block;
  bottom:0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.48s cubic-bezier(0.77, 0, 0.175, 1);
}

.bestSellerMain .moreBtn a:hover::after{

  transform: scaleX(1);
  background-color: #fff;
}
.bestSellerMain .moreBtn a:hover{

  background-color: var(--primary-color);
  color: #fff;
}
.bestSellerMain .relProductImg{

  border: 1px solid var(--primary-color);
  padding: 6px;
}

/* BLOG */

.blog {
  background: var(--bg-secondary);
}

.blog .sectionTitle span {
  font-family: var(--text-font);
  color: var(--seconday-color);
  margin-bottom: 6px;
  text-transform: initial;
}

.blogDetail h3 {
  color: var(--seconday-color);
  font-family: var(--primary-font);
  font-size: 25px;
  font-weight: 500;
  margin-top: 10px;
  text-transform: initial;
}

.blogBlk,
.blogImg {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.blogImg::after{

    content: "";
    display: block;
    padding-top: 130%;
}
.blogImg {
  line-height: 0;
}
.blogImg img {
    width: 100%;
    height: 100%;
    position: absolute;
  transition: all 0.6s;
  object-fit: cover;
  object-position: center;
}

.blogBlk:hover .blogImg img {
  transform: scale(1.1);
}


.moreBtn a {
  display: block;
  padding: 14px 40px;
  text-align: center;
  width: fit-content;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-family: var(--text-font);
  text-transform: uppercase;
  margin: auto;
  margin-top: 2.8em;
  position: relative;
  overflow: hidden;
  font-size: 13px;
  font-weight: 500;
  line-height: 2em;
  transition: all 0.3s;
  letter-spacing: 1px;
}

.moreBtn a::after{

  content: "";
  position: relative;
  display: block;
  bottom:0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.48s cubic-bezier(0.77, 0, 0.175, 1);
}
.moreBtn a:hover::after{

  transform: scaleX(1);
  background-color: #fff;
}
.moreBtn a:hover{

  background-color: var(--primary-color);
  color: #fff;
}

/* FEATURES */
.Features {
  background-color: #bac5ce;
  display: flex;
  align-items: center;
}

.featureCont {
  width: 400px;
}

.featureCont h4 {
  font-size: 50px;
  text-transform: uppercase;
  font-family: var(--primary-font);
  color: var(--primary-color);
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1;
}

.featureCont .moreBtn a {
  margin: unset;
  margin-top: 2.8em;
}

.feaIcon img {
  width: 90px;
}

.feaIconH img {
  height: 77px;
}
.featureDetail {
  margin-top: 2em;
  text-align: center;
  text-transform: uppercase;
}

.featureDetail p {
  margin-top: 12px;
  font-size: 18px;
}

.feaIconBlk {
  display: flex;
  justify-content: end;
}
.feaIconH{

  margin-top: 40px;
}

/* CTA */

.cta {
  background-image: url(../assets/banners/cta.webp);
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.ctaMainBlk {
  font-family: var(--primary-font);
  color: #fff;
  margin: 5em 0;
}

.ctaContent {
  margin-bottom: 2.6em;
}

.ctaMainBlk h3 {
  text-align: center;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--primary-font);
  color: #fff;
}

.ctaMainBlk h3 span {
  display: block;
  font-family: var(--primary-font);
  color: #fff;
}

.ctaFormInput input {
  width: 100%;
  padding: 18px;
  border: 1px solid #fff;
  color: #fff;
  font-family: var(--text-font);
  background-color: transparent;
  border-right: 0;
  font-size: 16px;
}

.ctaFormInput input:focus {
  outline: none;
}

.ctaFormInput {
  display: flex;
  width: 80%;
  margin: auto;
}

.ctaForm {
  position: relative;
}

.ctaFormInput input::placeholder {

  color: #fff;
  font-size: 16px;
}

.ctaMainBlk .col-md-8 {
  margin: auto;
}

.ctaFormSubmit button {
  display: block;
  background-color: #bac5ce;
  color: var(--primary-color);
  font-family: var(--text-font);
  text-transform: uppercase;
  padding: 0px 34px;
  border: none;
  position: absolute;
  right: 0;
  height: 100%;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.ctaFormSubmit button:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.ctaFormSubmit {
  margin-left: auto;
}

/* FOLLOW */

.followSec {
  position: relative;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 100px 0px 100px 0px;
  background-image: url(../assets/images/insta.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.flwBtn {
  padding: 34px 0px 40px 0px;
}

.followSecImg {
  line-height: 0;
}

.flwBtn a {
  display: block;
  width: fit-content;
  padding: 12px 50px;
  background-color: var(--primary-color);
  color: var(--bg-secondary);
  margin-top: 0;
  font-family: var(--text-font);
  text-transform: uppercase;
  transition: all 0.3s;
}

.flwBtn a:hover {
  background-color: #444b52e6;
  color: var(--bg-secondary);
}

/* FOOTER */
.footerLogo img{
  width: 180px;
}
.msFooter {
  background-color: var(--primary-color);
  color: #f9f3ee;
}

.msFooter .msRow{

  align-items: center;
}

.footerMainBlk {
  padding: 6em 0;
}


.footerLink {
  color: #f9f3ee;
  font-family: var(--text-font);
}

.footerLink h4 {
  margin-bottom: 12px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--text-font);
  color: var(--bg-secondary);
}

.footerLink ul li a {
  color: #f9f3ee;
}

.footerLink ul li {
  margin-bottom: 8px;
  font-weight: 400;
  transition: all 0.3s;
  width: fit-content;
}

.footerLink ul li a::after{

    content: "";
    position: relative;
    display: block;
    bottom:0;
    left: 0;
    width: 100%;
    height: 1.4px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.48s cubic-bezier(0.77, 0, 0.175, 1);

}

.footerLink ul li a:hover::after{

  transform: scaleX(1);
}

.copyRight {
  border-top: 1px solid #bac5ce;
  color: #fff;
  padding: 15px 0;
}

.copyRight p{

 color: #a0a0a0;
}

.copyRight span{

  color: var(--bg-secondary) !important;
}

.btmSocial ul{

  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.btmSocial ul li i{

  color: var(--bg-secondary);
}

/* ABOUT PAGE */

.aboutPage {
  background-image: url(../assets/banners/aboutBanner.jpg);
  width: 100%;
}

.pageHeader {
  position: relative;
  height: 390px;
  display: flex;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.pageHeader::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(14 14 14 / 55%)
}
.pageTitle h1 {
  font-size: 50px;
  color: #fff;
  font-family: var(--primary-font);
  text-transform: uppercase;
  font-weight: 500;
}

.pageTitle {
  position: relative;
  z-index: 11;
}

.aboutInContent .abtlefay {
  font-family: "Mrs Saint Delafield", cursive;
  text-transform: initial;
  font-size: 54px;
  color: var(--primary-color);
  display: block;
  font-weight: 400;
}

.aboutMission {
  background-image: url(../assets/banners/mission.jpg);
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 8em;
  height: 600px;
}

.aboutMission::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #00000084;
  top: 0;
  left: 0;
}

.missionContent {
  position: relative;
  z-index: 1;
}

.missionContent span {
  color: #fff;
  font-family: var(--text-font);
}

.missionContent h2 {
  font-family: var(--primary-font);
  color: #fff;
  text-transform: uppercase;
  font-size: 60px;
  font-weight: 500;
}

.missionContent p {
  margin-bottom: 16px;
  color: #fff;
  width: 700px;
  padding-left: 18em;
}

.aboutBtmContent p {
  font-size: 50px;
  color: var(--seconday-color);
  font-family: var(--primary-font);
}

.aboutInContentPl {
  padding-right: 0 !important;
  padding-left: 6em !important;
}

.aboutValueBlk {
  text-align: center;
}
.aboutValueMain .title h2 {
  font-family: var(--primary-font);
  color: var(--primary-color);
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.6em;
}

.aboutValues {
  background: #bac5ce;
}

.valueContent h3 {
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-size: 28px;
  text-transform: uppercase;
margin: 12px 0;
  font-weight: 400;
}

.valueContent p {
  font-size: 14px;
}

.valueImg img {
  width: 50px;
}

.aboutCta {
  background-image: url(../assets/banners/aboutcta.jpg);
  position: relative;
  padding: 100px 0px 100px 0px;
  display: flex;
  align-items: center;
}

.aboutCta::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #0000002b;
  top: 0;
  left: 0;
}

.aboutCTAContent {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
}

.aboutCTAContent h2 {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--bg-secondary);
}

.aboutCTAContent span {
  font-family: var(--text-font);
  color: #fff;
  font-size: 16px;
}
.aboutCTAContent a {
  display: block;
  width: fit-content;
  padding: 14px 40px;
  text-transform: uppercase;
  line-height: 2em;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
  text-align: center;
  margin: auto;
  margin-top: 2em;
  font-family: var(--text-font);
  border: 1px solid #fff;
  transition: all 0.3s;
}

.aboutCTAContent a:hover {
  border: 1px solid #fff;
  background-color: #fff !important;
  color: var(--primary-color) !important;
}

.aboutCTAContent a:hover:after{

    background: var(--primary-color);
    height: 1px;
}

.cta-btn{

    background: transparent !important;
}
/* ABOUT RICHE */

.aboutRiche {
  padding-bottom: 4em !important;
}
.aboutInContent {
  padding-right: 5em;
}

.richeBanner {
  background-image: url(../assets/banners/aboutRiche.jpg);
}

.aboutInContentTitle span {
  font-family: var(--text-font);
  color: var(--seconday-color);
}

.aboutInContentTitle {
  margin-bottom: 14px;
}

.aboutInContentTitle h2 {
  font-size: 40px;
  color: var(--primary-color);
  text-transform: uppercase;
  font-family: var(--primary-font);
  font-weight: 500;
}

.aboutInContent p {
  margin-bottom: 16px;
  color: var(--primary-color);
}

.aboutRicheContentImg img {
  position: relative;
  width: 550px;
}

.aboutRicheTwoImg {
  position: absolute;
  right: 0;
  bottom: -50px;
}

.aboutRicheTwoImg img {
  width: 250px;
}

/* LOGIN PAGE */

.loginPage {
  padding-bottom: 7em !important;
}
.loginImage img {
  position: relative;
  width: 460px;
}

.loginImageTwo {
  position: absolute;
  right: 0;
  bottom: -50px;
}

.loginImageTwo img {
  width: 250px;
}

.loginFormBlk {
  padding-right: 10em;
  width: 100%;
}

.loginFormBlk h2 {
  font-family: var(--primary-font);
  color: var(--primary-color);
  font-size: 45px;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 500;
}

.loginInput label {
  display: block;
  font-size: 16px;
  color: var(--primary-color);
  font-family: var(--text-font);
  margin-bottom: 12px;
}

.loginInput input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--primary-color);
  display: block;
  transition: all 0.3s;
  font-family: var(--text-font);
  background-color: transparent;
  margin-bottom: 12px;
}

.loginInput input:focus {
  outline: none;
  border: 1px solid var(--seconday-color);
}

.rememberForm input {
  position: relative;
}

.rememberForm span {
  font-family: var(--text-font);
  color: var(--primary-color);
  padding-left: 4px;
}

.forgotPass a {
  font-family: var(--text-font);
  color: var(--primary-color);
  display: block;
  width: fit-content;
  margin: 14px 0;
}

.loginSubmit button {
  display: block;
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
  text-transform: uppercase;
  padding: 14px 55px;
  font-family: var(--text-font);
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
  letter-spacing: 3px;
  font-weight: 500;
}

.loginSubmit button:hover {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
}

.loginSubmit button:hover::after{

  background: var(--primary-color);
}

.noLoginAccount span {
  color: var(--primary-color);
  font-family: var(--text-font);
}

.noLoginAccount span a {
  font-weight: 500;
  color: var(--primary-color);
  transition: all 0.3s;
  border: 1px solid transparent;
}

.noLoginAccount span a:hover {
  border-bottom: 1px solid var(--primary-color);
}

/* BLOG PAGE */
.BlogPage {
  background-image: url(../assets/banners/blog.jpg);
}


.blogPostMainContent{

  margin: 30px 0;
}
.blogPostMainContent h2 {
  font-size: 40px;
  text-transform: uppercase;
  font-family: var(--primary-font);
  color: var(--primary-color);
  font-weight: 500;
  display: block;
}

.blogPostMainContent span{

  color: var(--primary-color);
  text-transform: uppercase;
}

.blogPostMainContent p {
  margin-bottom: 24px;
  max-width: 100%;
  padding-right: 8em;
}

.blogPostMainContent a {
  font-family: var(--text-font);
  color: var(--seconday-color);
  text-transform: uppercase;
  border-bottom: 1px solid var(--seconday-color);
  display: block;
  width: fit-content;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}

.blogPostBlk {
  position: relative;
  overflow: hidden;
}

.blogPostMainDate {
  position: absolute;
  top: 0;
  right: 0;
}

.blogPostMainDate span {
  width: 80px;
  height: 80px;
  background-color: #bac5ce;
  display: block;
  text-align: center;
  font-size: 30px;
  padding: 10px;
  color: var(--primary-color);
}

.blogPostMainDate p {
  font-family: var(--primary-font);
  text-transform: uppercase;
  font-size: 16px;
}

.blogPostMain {

  transition: all 0.3s;
}

.blogPostMain:hover .blogPostImgMain img {
  transform: scale(1.05);
}

.blogPostImgMain img {
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.blogPostImgMain {
  line-height: 0;
  overflow: hidden;
}

.blogPostImgMain::after{

    content: "";
    padding-top: 50%;
    display: block;
}

.blogPostMain,
.blogPostImgMain {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.blogInContentBottom {
  display: flex;
  flex-wrap: wrap;

  margin-top: 23px;
  margin-bottom: 10px;
}

.blogInContentBottomLeft {
  flex-basis: 50%;
  max-width: 100%;
}

.blogInContentBottomRight {
  flex-basis: 50%;
  max-width: 100%;
}
.blogInContentTags a {
  display: inline-block;
  margin: 0 10px 10px 0;
  position: relative;
  vertical-align: top;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  background-color: var(--primary-color);
  color: #fff !important;
  padding: 3px 16px;
  border: 1px solid  var(--primary-color);
}

.blogInContentBottomRight {
  display: flex;
}
.BlogsocialShare {
  display: flex;
  margin-left: auto;
}

.BlogsocialShare ul {
  display: flex;
}

.BlogsocialShare span {
  color: var(--primary-color);
  font-size: 21px;
  line-height: 21px;
}

.BlogsocialShare ul li {
  padding: 0 6px;
}

.BlogsocialShare ul li i {
  font-size: 14px;
  padding-right: 4px;
}

.blgnavlink img {
  width: 30px;
  height: 30px;
}

.blgContentNavigationInner {
  display: flex;
}

.blogContentNavigation i {
  font-size: 20px;
}
.blgnav-prev img {
  margin-right: 22px;
}

.blgnav-next img {
  margin-left: 22px;
}

.blogContentNavigation {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin: 30px 0 30px;
}

.blgContentInner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blgnavlink {
  position: relative;
  display: flex;
  align-items: center;
}

.blgnav-prev {
  left: 0;
}

.blgnav-next {
  flex-direction: row-reverse;
  right: 0;
  margin-left: auto;
  text-align: right;
}

.bcn-inner-Title {
  display: inline-flex;
  vertical-align: middle;
  flex-wrap: wrap;
  color: #000;
  font-family: Arsenal, sans-serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #000;
  font-family: Jost, sans-serif;
  font-size: 13px;
  line-height: 2em;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0;
}

.blogRelatedPostMain {


  margin-top: 50px;
}

.blogRelatedPostMain .title h3{

  font-size: 35px;
  margin-bottom: 20px;
  font-weight: 400;
}

.blogRelatedPost .blogPostMainDate {
  right: 15px;
}

.relatedThumbContent .related-tag {
  text-transform: uppercase;
  margin: 6px 0;
  display: block;
}

.relatedThumbContent h3 {
  margin-bottom: 6px;
  text-transform: initial;

}
.relatedThumbContent .relatedThumbMore {
  display: block;
  width: fit-content;
  border-bottom: 1px solid var(--seconday-color);
  text-transform: uppercase;
  color: var(--seconday-color);
  font-size: 14px;
  margin: 14px 0;
}

.relatedThumbnail {
  overflow: hidden;
  line-height: 0;
  transition: all 0.3s;
}

.relatedThumbnail img {
  transition: all 0.3s;
}
.blogRelatedPost:hover .relatedThumbnail img {
  transform: scale(1.04);
}
/* PRESS PAGE */

.pressPage {
  background-image: url(../assets/banners/press.jpg);
}
.pressMainContent span {
  color: var(--seconday-color);
  display: block;
}

.pressMainContent h2 {
  text-transform: uppercase;
  color: var(--primary-color);
  font-size: 60px;
  font-weight: 500;
  margin-bottom: 14px;
}

.pressMainContent {
  width: 500px;
  padding-left: 5em;
}

.pressMainContent p {
  margin-bottom: 12px;
}

.pressGrpMain{

    margin-bottom: 28px;
}

.pressMainImg{

    overflow: hidden;
    position: relative;
}

.pressMainImg::after{

    content: "";
    padding-top: 90%;
    display: block;
}

.pressMainImg img{

    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;

}
.pressGrpImg{

    line-height: 0;
}

/* PRESS INNER PAGE */

.breadCrumb {
  background: #f9f3ee;
  color: var(--primary-color);
  padding: 20px 0;
}

.logoTitle h1 {
  font-size: 22px;
  font-weight: 400;
}

.breadCrumbBlk {
  display: flex;
  align-items: center;
}

.pageDirectory {
  margin-left: auto;
}
.pageDirectory ul {
  display: flex;
  gap: 10px;
}

.pageDirectory ul li {
  border-right: 1px solid var(--primary-color);
  padding-right: 10px;
}
.pageDirectory ul li:last-child {
  border-right: none;
}

.pageDirectory ul li a {
  font-family: var(--text-font);
  font-size: 16px;
  color: var(--primary-color);
  margin-right: 5px;
  text-transform: uppercase;
}

.pageDirectory ul li .active {
  font-weight: 600;
}

.pressInContentImg {
  position: relative;
  overflow: hidden;
}

.pressInContentImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.pressInContentImg::after {
  content: "";
  display: block;
  padding-top: 80%;
}

.pressInContentTitle h2 {
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
}

.pressInContent p {
  margin: 12px 0;
}

.pressInContentImg {
  margin: 20px 0;
}

.pressGrpContent h2 {
  font-size: 30px;
  margin: 12px 0;
  font-weight: 400;
}

.pressGrpContent p {
  font-size: 14px;
}

.pressGrpImg{

    overflow: hidden;
    position: relative;
}

.pressGrpImg::after{

    content: "";
    display: block;
    padding-top: 130%;
}

.pressGrpImg img{

    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}

/* CONTACT US PAGE */

.contactPage {
  background-image: url(../assets/banners/contact.jpg);
}

.contactInfoBlk {
  padding-right: 7em;
}

.contactInfoBlk h2 {
  font-weight: 400;
  font-size: 40px;
  margin-bottom: 12px;
}

.contactDetail ul {
  margin-top: 14px;
}

.contactDetail ul li {
  color: var(--seconday-color);
  text-transform: uppercase;
  font-family: var(--text-font);
  font-weight: 500;
  margin-bottom: 14px;
}

.contactDetail ul li a {
  color: var(--primary-color);
  padding-left: 6px;
  text-transform: initial;
}

.contactInput input {
  width: 100%;
  display: block;
  padding: 12px;
  border: 1px solid var(--primary-color);
  background-color: transparent;
  font-family: var(--text-font);
  color: var(--primary-color);
  font-size: 16px;
  margin-bottom: 12px;
}

.contactInput input:focus,
.contactInput textarea:focus {
  outline: none;
  border: 1px solid var(--seconday-color);
}

.contactInput input::placeholder {
  font-family: var(--text-font);
}

.contactInput textarea {
  resize: none;
  width: 100%;
  display: block;
  padding: 12px;
  font-size: 16px;
  border: 1px solid var(--primary-color);
  background-color: transparent;
  font-family: var(--text-font);
  color: var(--primary-color);
  margin-bottom: 12px;
  height: 150px;
}

.contactInput button {
  display: block;
  width: fit-content;
  padding: 14px 20px;
  text-transform: uppercase;
  font-family: var(--text-font);
  color: #fff;
  background-color: var(--primary-color);
  border: none;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid var(--primary-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  letter-spacing: 1px;
}

.contactInput button:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.contactInput button::after{

  background-color: #fff;
  left: 0;
}

.contactInput button:hover::after{

  background-color: var(--primary-color);
}
/* CAREER PAGE */

.careerPage {
  background-image: url(../assets/banners/career.jpg);
}

.careersContent h2 {
  font-size: 40px;
  margin-bottom: 12px;
  font-weight: 500;
}

.careersContent p {
  margin-bottom: 30px;
}


.careerInput input {
  width: 100%;
  display: block;
  padding: 12px;
  font-size: 16px;
  border: 1px solid var(--primary-color);
  font-family: var(--text-font);
  margin-bottom: 8px;
  background-color: transparent;
  color: var(--seconday-color);
}


.careerInput select{
  width: 100%;
  display: block;
  padding: 15px;
  font-size: 16px;
  border: 1px solid var(--primary-color);
  font-family: var(--text-font);
  margin-bottom: 8px;
  background-color: transparent;
  color: var(--seconday-color);
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHhtbG5zOnhsaW5rPSdodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rJyB4PScwcHgnIHk9JzBweCcgd2lkdGg9JzEwLjhweCcgaGVpZ2h0PSc2LjJweCcgdmlld0JveD0nMCAwIDEwLjggNi4yJyBzdHlsZT0nZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxMC44IDYuMjsnIHhtbDpzcGFjZT0ncHJlc2VydmUnPjxwYXRoIHN0eWxlPSdmaWxsOiAjQThBN0E3JyBkPSdNMTAuNiwwLjNjMC4zLDAuMywwLjMsMC43LDAsMUw1LjksNS45QzUuOCw2LjEsNS42LDYuMiw1LjQsNi4yQzUuMiw2LjIsNSw2LjEsNC45LDUuOUwwLjIsMS4zIGMtMC4zLTAuMy0wLjMtMC43LDAtMWMwLjMtMC4zLDAuNy0wLjMsMSwwbDQuMiw0LjFsNC4yLTQuMUM5LjktMC4xLDEwLjItMC4xLDEwLjYsMC4zeicvPjwvc3ZnPg==);
  background-position: calc(100% - 20px) center;
  background-repeat: no-repeat;
  -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-appearance: none;
}
.careerInput input:focus,
.careerInput select:focus {
  outline: none;
  border: 1px solid var(--seconday-color);
}
.careerInput textarea:focus {
  outline: none;
  border: 1px solid var(--seconday-color);
}

.careerInput textarea {
  width: 100%;
  display: block;
  padding: 12px;
  border: 1px solid var(--primary-color);
  font-family: var(--text-font);
  margin-bottom: 8px;
  background-color: transparent;
  height: 150px;
  resize: none;
  font-size: 16px;
  color: var(--seconday-color);
  margin-bottom: 20px;
}
.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 16px;
  background-color: transparent;
  border: none;
  font-family: var(--text-font);
  border-bottom: 1px solid var(--primary-color);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.upload-btn-wrapper .btn{

  font-weight: 500;
}

.upload-btn-wrapper input[type="file"] {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
}

.careerSubmit button {
  display: block;
  width: fit-content;
  padding: 12px 50px;
  text-transform: uppercase;
  font-family: var(--text-font);
  color: #fff;
  background-color: var(--primary-color);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid var(--primary-color);
  margin: 16px 0;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.careerSubmit button:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.careerSubmit button:hover::after{

    background: var(--primary-color);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* BLOG INNER PAGE */
.blogInMainBlk .col-md-9,
.blogInMainBlk .col-md-3 {
  padding: 0;
}

.blogInMainImg {
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
}

.blogInMainImg img{

    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center;
}
.blogInMainImg::after{

    content: "";
    display: block;
    padding-top: 70%;
}

.blogInMainHead .blogPostMainDate {
  right: 15px;
}

.blogInMainContent .blogincontenttag {
  text-transform: uppercase;
  color: var(--primary-color);
  font-size: 14px;
}

.blogInMainContent h2 {
  text-transform: uppercase;
  font-size: 55px;
  color: var(--primary-color);
  line-height: 0.8em;
  letter-spacing: 0.05em;
  margin-top: 6px;
  font-weight: 500;
  margin-bottom: 12px;
}

.blogInMainContent .Quote {
  color: var(--primary-color);
  margin: 16px 0;
}

.blogInMainContent p {
  color: #7a7a7a;
  font-size: 16px;
  margin: 25px 0;
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
}

.blogInContentImgBlk {
  margin: 30px 0;
}

.blogInContentImg {
  position: relative;
  overflow: hidden;
}

.blogInContentImg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blogInContentImg::after {
  content: "";
  display: block;
  padding-top: 100%;
}

/* BLOG SIDEBAR */

.blogPostProfile img {
  width: 230px;
}
.bMarg40 {
  margin: 40px 0;
}

.blogInSideBar .title h3 {
  font-family: var(--primary-font);
  margin: 14px 0;
  color: var(--primary-color);
  font-size: 22px;
}

.blogCategoryList ul li {
  margin-bottom: 12px;
}

.blogCategoryList ul li a {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 14px;
  color: var(--primary-color);
}

.blogCategoryList ul li a span {
  margin-left: 6px;
  color: var(--primary-color);
}

.blogSideTags {
  margin: 15px 0;
}

.blogSideTags ul {
  display: flex;
}

.blogSideTags a {
  font-size: 11px ;
  margin-right: 8px;
  margin-bottom: 8px;
  padding: 4px 12px;
  background: var(--primary-color);
  color: #fff;
  text-transform: uppercase;
  line-height: 2em;
  letter-spacing: 0.35em;
  float: left;
  font-weight: 500;
  transition: color 0.2s ease-out, background-color 0.2s ease-out,
    border-color 0.2s ease-out;
}

.blogSideTags a:hover {
  color: var(--primary-color);
  background: #fff;
}

.blogRecentItem {
  display: flex;
  gap: 15px;
  margin-bottom: 14px;
}

.blogRecentSideThumb img {
  width: 150px;
}

.blogRecentSideContent h3 {
  font-size: 16px;
}

.sideRecentDate {
  color: var(--primary-color);
  margin-top: 4px;

  display: block;
}

.blogSideSearch input {
  display: block;
  width: 100%;
  border: 1px solid var(--primary-color);
  color: var(--seconday-color);
  padding: 14px;
  background-color: transparent;
}

.blogSideSearch {
  position: relative;

  max-width: 100%;
}
.blogSideSearch input {
  font-family: var(--text-font);
  font-size: 17px;
}

.blogSearchBtn {
  position: absolute;
  top: 0;
  right: 0;
  width: 55px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--primary-color);
  background-color: transparent;
  border: 0;
}

.blogSideSearch input:focus {
  outline: none;
}

.blogSideSocial ul li i {
  padding-right: 6px;
}

.SideSocialLinkBlk {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.BlogSideicon {
  display: flex;
  align-items: center;
  max-width: 17px;
  width: 100%;
  font-size: 16px;
  margin-right: 10px;
}

.SideSocialLinkBlk .BlogSideSocialText {
  display: flex;
  position: relative;
  align-items: center;
  font-size: 15px;
  color: #000;
  font-weight: 400;
  letter-spacing: 0.05em;
}
/* SIZE GUIDE PAGE */

.sizeguidePage {
  background-image: url(../assets/banners/sizeguide.jpg);
}

.sizeTabBtn {
  display: block;
  margin-bottom: 18px;
  background: transparent;
  color: var(--primary-color);
  font-family: var(--text-font);
  border: none;
  font-size: 16px;
  font-weight: 400;
  border-bottom: 1px solid #BAC5CE;
  padding-bottom: 6px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s;
}

.sizeTabBtn:hover {
  color: var(--seconday-color);
}

.SizeTabBlk {
  width: 15%;
}
.sizeContentBlk {
  width: 85%;
}

.sizeBlkContainer {
  display: flex;
  gap: 50px;
}

.tabContent h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 20px;
}

.tabContentDetail{
  padding-right:80px;
}

.tabContentDetail img {
  width: 110px;
}

.tabContentDetail h3 {
  margin: 12px 0;
  font-size: 21px;
  font-weight: 400;
}


.tbheadText{

  display: block;
  margin-top:20px;
  margin-bottom: 12px;
}
.tabTable {
  background-color: #02010105;
  width: 100%;
  vertical-align: middle;
  border: medium none;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
  color: inherit;
  line-height: inherit;

}

.tabTable thead th {
  background-color: #766c62;
  text-align: left;
  font-family: var(--text-font);
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 24px;
  letter-spacing: 0.4px;
  padding: 7px 2px 7px 6px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #bbb7b3;
}

.tabTable tbody td {
  padding: 7px 2px 7px 6px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #bbb7b3;
  font-family: var(--text-font);
  width: 5%;
  font-size: 14px;
}

/* TERMS & CONDITIONS PAGE */

.termsPage {
  background-image: url(../assets/banners/terms.jpg);
}

.termsContent h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 4px;
}

.termsContent h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 20px 0;
  font-family: var(--text-font);
  text-transform: initial;
}

.termsContent .points{

  padding-top: 6px;


}

.termsContent .points li{
  font-family: var(--text-font);
  margin-bottom: 12px;
  position: relative;
  padding-left: 12px;

}

.points ul li::before{

  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--primary-color);
}


/* SHOP CATEGORY PAGE */

.shopCategoryMain h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 60px;
}

.shopCategoryBlk a {
  display: block;
  padding: 14px 45px;
  background: var(--primary-color);
  color: #fff;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  margin: 20px auto;
  border: 1px solid var(--primary-color);
  transition: all 0.3s;
  font-weight: 500;
}

.shopCategoryBlk a:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.shopCategoryBlk a:hover::after{

    background: var(--primary-color);
}
.shopCategoryLarge {
  margin-top: 40px;
}

/* PRODUCT PAGE */

.product-img--main {
  position: relative;
  overflow: hidden;
  /* margin-bottom: 30px; */
  width: 460px;
  height: 600px;
}

.product-img--main__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.5s ease-out;
  transition: -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}

.productInImg {
  display: flex;
  gap: 25px;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.productThumbBlk {
  margin-bottom: 10px;
}

.productThumbBlk img {
  width: 185px;
  height: 190px;
}

.productInContent h2 {
  font-family: var(--primary-font);
  font-size: 45px;
  font-weight: 400;
  color: var(--primary-color);
  line-height: 1.13em;
  margin: 25px 0;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  text-transform: uppercase;
}

.productInPrice span {
  letter-spacing: 0.05em;
  color: #000;
  font-size: 21px;
  line-height: 1.19em;
  color: #000;
  font-weight: 300;
}


.qtyNbtn{

  display: flex;
  gap: 40px;
}

.variation{

    vertical-align: middle;
    border: medium none;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
    font-family: var(--text-font);
    margin-top: 30px;
}

.variation tr{
  display: block;
  margin-bottom: 6px;
  border: 0.5px solid var(--primary-color);

}

.variation td{

  padding: 12px;
  display: inline-flex;
}
.variation select,
.variation option{

  font-family: var(--seconday-color);
  font-size: 16px;
  text-align: right;
  min-width: 220px;
}

.variation select{
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
  color: var(--primary-color);
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHhtbG5zOnhsaW5rPSdodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rJyB4PScwcHgnIHk9JzBweCcgd2lkdGg9JzEwLjhweCcgaGVpZ2h0PSc2LjJweCcgdmlld0JveD0nMCAwIDEwLjggNi4yJyBzdHlsZT0nZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxMC44IDYuMjsnIHhtbDpzcGFjZT0ncHJlc2VydmUnPjxwYXRoIHN0eWxlPSdmaWxsOiAjQThBN0E3JyBkPSdNMTAuNiwwLjNjMC4zLDAuMywwLjMsMC43LDAsMUw1LjksNS45QzUuOCw2LjEsNS42LDYuMiw1LjQsNi4yQzUuMiw2LjIsNSw2LjEsNC45LDUuOUwwLjIsMS4zIGMtMC4zLTAuMy0wLjMtMC43LDAtMWMwLjMtMC4zLDAuNy0wLjMsMSwwbDQuMiw0LjFsNC4yLTQuMUM5LjktMC4xLDEwLjItMC4xLDEwLjYsMC4zeicvPjwvc3ZnPg==);
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
    min-width: 220px;
    text-align-last: right;
    padding-right: 35px;
}

.variation label{

  color: var(--primary-color);
  width: 85px;
}

.variation option{

  padding:11px 40px 15px 20px;
  display: block;
}
.variation select{

  border: none;
  background-color: transparent;
}
.productInCustomerReview {
  display: flex;
  align-items: center;
  margin: 12px 0;
}

.productInCustomerReview .reviewStar i {
  font-size: 14px;
}

.productInCustomerReview .reviewStar {
  margin-right: 20px;
}

.productInCustomerReview a {
  color: #000;
  font-family: Jost, sans-serif;
  font-size: 13px;
  line-height: 2em;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
}

.productinDescription {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 30px 0;
  color: var(--primary-color);
}

.ProductStockCount span{

  font-size: 17px;
  color: var(--primary-color);
  margin: 28px 0;
  display: block;
}

.value-button {
  display: inline-block;
  border: 1px solid #000;
  margin: 0px;
  width: 40px;
  height: 20px;
  text-align: center;
  vertical-align: middle;
  padding: 11px 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.value-button:hover {
  cursor: pointer;
}

.productInQuanty #decrease {
  position: absolute;
  right: 0;
  width: 25px;
  height: 25px;
  line-height: 0;
  border-left: 0;
  bottom: 0;
  cursor: pointer;
  transition: color 0.2s ease-out, background-color 0.2s ease-out;
}
.productInQuanty #increase {
  position: absolute;
  right: 0;
  top: 0;
  width: 25px;
  height: 25px;
  line-height: 0;
  border-left: 0;
  cursor: pointer;
  transition: color 0.2s ease-out, background-color 0.2s ease-out;
}

.productInQuanty #increase:hover,
.productInQuanty #decrease:hover {
  background-color: #000;
  color: #fff;
}

.productInQuanty #input-wrap {
  margin: 0px;
  padding: 0px;
}

.productInQuantityBtn input#qtyNumber {
  position: relative;
  height: 50px;
  width: 50px;
  padding: 0;
  margin: 0 25px 0 0;
  font-family: inherit;
  font-size: 20px;
  font-family: var(--text-font);
  line-height: 48px;
  outline: 0;
  text-align: center;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid #000;
  font-weight: 300;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.productInQuantityBtn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.productInAddtoCart button {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 13px;
  line-height: 2em;
  letter-spacing: 0.10em;
  padding: 11px 34px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--text-font);
}
.productInQuanty {
  margin: 34px 0;
}
.productInQuanty form {
  display: flex;
  gap: 30px;
}

button::after {
  content: "";
  position: relative;
  display: block;
  bottom: 5 px;
  left: -2px;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.48s cubic-bezier(0.77, 0, 0.175, 1);
}

button:hover::after {
  transform: scaleX(1);
}

.productInInfo {
  position: relative;
  display:flex;
  width: 100%;
  vertical-align: top;
 font-family: var(--text-font);
  font-size: 14px;
  line-height: 2em;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 36px;
}

.productInInfo > div {
  position: relative;
  display: block;
  margin-bottom: 8px;
  margin-right: 42px;
}

.productInInfo span {
  display: block;
}


.productInInfo span a{

  color: var(--seconday-color);
}

.productInDescriptionSection {
  position: relative;
  margin-top: 95px;
  text-align: center;
}

.productInDescriptionTab {
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

.pdesTab {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
  border-bottom: 1px solid #ccc;
  gap: 35px;
}

.pdesTab button {
  display: block;
  padding: 0 3px 13px;
  position: relative;
  color: var(--primary-color);
  transition: color 0.2s ease-out, background-color 0.2s ease-out;
  font-family: var(--text-font);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.19em;
  background-color: transparent;
  border: none;
  cursor: pointer;

}

.pdesTab button::after{

    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1.5px;
    bottom: -1px;
    left: 0;
    background-color: #766C62;
    transform-origin: bottom left;
    transition: transform 0.48s cubic-bezier(0.77, 0, 0.175, 1);

}

.pdesTab button:hover::after{

    transform: scaleX(1);
    height: 1px;
}

.pdesTab button span{

    font-family: var(--text-font);
    color: var(--primary-color);
}


.productDescription-container{

    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin: auto;
    margin-top: 36px;
    max-width: 1125px;
}

.productDescription-container p{

    font-size:16px;
    font-weight: 400;
}

.productDescription-container table{

    width: 100%;
    vertical-align: middle;
    border: medium none;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: inherit;
    color: inherit;
    line-height: inherit;

}

.pdesTable tr{

    border: 1px solid #e1e1e1;
}

.pdesTable tr th{

    font-family: var(--text-font);
    font-weight: 400;
    letter-spacing: .05em;
    color: var(--primary-color);
    font-size: 17px;
    line-height: 1.23em;
    padding: 10px 7px;
    text-align: left;
    border-right: 1px solid #e1e1e1;
}

.pdesTable tr td{
  font-family: var(--text-font);
    vertical-align: middle;
    padding: 5px 10px;
    text-align: left;
    font-size: 17px;
    border: 0;
    color: var(--primary-color);
    border-right: 1px solid #e1e1e1;

}
.productUserReview{

    display: flex;
    gap: 20px;
    align-items: center;
}

.productUserReviewProfile img{

    width: 80px;
    height: 80px;
}


.productinReview h3,
.productinAddReview h3{

    font-family: var(--primary-font);
    font-weight: 500;
    color: var(--primary-color);
    font-size: 30px;
    line-height: 1.2em;
    margin: 25px 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

.productinReview span{

    color: var(--primary-color);
    font-family: var(--primary-font);
}
.userReviewName{

    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 8px;
    font-family: var(--text-font);
    font-weight: 400;

    color: var(--primary-color);
    font-size: 17px;
    line-height: 1.23em;
}
.userReviewName p{

    font-weight: 400;
    color: var(--primary-color);
    font-size: 17px;
    line-height: 1.23em;
    font-family: var(--text-font);
}

.userReviewName time{

    display: inline-flex;
    vertical-align: middle;
    flex-wrap: wrap;
    color: var(--primary-color);
    font-family: var(--text-font);
    font-weight: 400;
    font-size: 13px;
    line-height: 2em;
    letter-spacing: .25em;
    text-transform: uppercase;
    margin: 0;
}

.productinReview{

    text-align: left;
}
.userReviewStar i{

    font-size: 12px;
}

.productinAddReviewMain{

    text-align: left;
    margin-top: 50px;
}

.productinComment textarea{

    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    height: 200px;
    margin: 0 0 10px;
    padding: 15.5px 20px;
    font-family: inherit;
    font-size: 17px;
    line-height: 24px;
    font-weight: inherit;
    color: #000;
    background-color: transparent;
    border: 1px solid #949494;
    border-radius: 0;
    box-sizing: border-box;
    outline: 0;
    cursor: pointer;
    transition: color .2s ease-out,background-color .2s ease-out,border-color .3s ease;
    font-family: var(--text-font);
    font-weight: 300;
}

.productinComment textarea:hover,

.productinReviewField input[type="text"]:hover{

    border: 1px solid #000;
}

.productinComment textarea:focus
.productinReviewField input[type="text"]:focus{

    outline: none;
    border: 1px solid #000;
}


.productinReviewInput{

    display: flex;
    gap: 12px;

}

.productinReviewField{

    width: 100%;

}

.productinReviewField input[type="text"]{
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin: 10px 0;
    padding: 15.5px 20px;
    font-family: inherit;
    font-size: 17px;
    line-height: 24px;
    font-weight: inherit;
    color: #000;
    background-color: transparent;
    border: 1px solid #949494;
    border-radius: 0;
    box-sizing: border-box;
    outline: 0;
    cursor: pointer;
    transition: color .2s ease-out,background-color .2s ease-out,border-color .3s ease;
    font-family: var(--text-font);
    font-weight: 300;
}

.productinReviewField label{

    font-family: var(--text-font);
    font-weight: 300;
    font-size: 17px;
    margin: 10px 0;
    display: inline-block;
}

.buttonMain{

    background-color: var(--primary-color);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 2em;
    padding: 11px 34px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-family: var(--text-font);
}

.productinYourRating label,
.productinAddReview p{

    font-family: var(--text-font);
    font-weight: 300;
    font-size: 19px;
    display: block;

}

.productinYourRating i{

    font-size: 12px;
    margin: 0 -2px;
    cursor: pointer;
}

.productinYourRating{

    margin-bottom: 12px;
}




.productinRelatedProductMain h2{

  font-size: 40px;
  font-weight: 400;
  text-align: center;

}

.relProductCont{

  margin-top: 2.6em;
}


.relProductImgBlk{

  position: relative;
  line-height: 0;
  overflow: hidden;
}

.relProductTag{

  position: absolute;
  top: 0;
  right: 0;
  z-index: 11;
}

.relProductTag span{

  background-color: var(--primary-color);
  text-transform: uppercase;
  color: #fff;
  font-size: 13px;
  display: block;
  padding: 18px;
  letter-spacing: 3px;
}


.relProductDet{

  display: flex;
  align-items: center;
  margin: 12px 0;
  position: relative;
  z-index: 1;
  width: 100%;
}

.relProductDet .title h3{
  font-family: var(--text-font);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 17px;
  color: var(--seconday-color);
}
.relprAmount span{

  font-size: 20px;
  font-weight: 300;
  margin-left: auto;
}

.relprAmount{
  margin-left: auto;
}



.relPrHvrDet{

  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: wrap;
    padding: 23px 20px;
    background-color: rgba(255,255,255,.8);
    text-align: center;
    opacity: 0;
    transition: opacity .3s ease;
}

.relProductImgBlk:hover .relPrHvrDet{

  opacity: 1;
  cursor: pointer;
}


.relprdBtn{

  position: absolute;
  top: 40%;
  transform: translate(0, -50%);
  transform: translateY(20px);
  transition: color .2s ease-out,background-color .2s ease-out,border-color .2s ease-out,opacity .44s cubic-bezier(.34,.24,.09,.73),transform .44s cubic-bezier(.34,.24,.09,.73);
  opacity: 0;
}

.relProductImgBlk:hover .relprdBtn{

  opacity: 1;
  transition-delay: 0.14s;
  transform: translateY(0);
}

.relprdBtn a{

  color: #fff;
  font-weight: 400;
  letter-spacing: 0;
}

.relprdBtn a::after{
  content: "";
  position: relative;
  display: block;
  bottom: 4px;
  left: -2px;
  width: 100%;
  height: 1px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.48s cubic-bezier(0.77, 0, 0.175, 1);
}

.relprdBtn:hover a::after{

  transform: scaleX(1);
}
.relprdBtn:hover a{

  color: var(--primary-color);
}
.relprdBtn:hover{

  background-color: transparent;
 border: 1px solid var(--primary-color);
}


.relPrAddition-cont{

  display: flex;
  gap: 40px;
  font-size: 14px;
  transform: translateY(10px);
  transition: all 0.30s;
  opacity: 0;

}

.relPrAddition-cont a{

    color: var(--primary-color);
}

.relProductImgBlk:hover .relPrAddition-cont{

  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.30s;

}

/* PRODUCTS LIST PAGE */

.bestsellerbanner{

  background-image: url(../assets/banners/bestseller.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.pageHeaderDup{

  height: 350px;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  width: 100%;
  background-size: cover;
}

.pageTitle h1{

  text-align: center;
  font-size: 55px;

}

.prodListTop{

  display: flex;align-items: center;
}

.prodListFilterDrop{

  margin-left: auto;
}

.productListImg img{
  height: 355px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;

}

.prodListMain{

  margin-bottom: 42px;
}

.prodListTop{

  margin-bottom: 3em;
}

.relProductDetBlk .productsTag p{
  font-size: 15px;
    color: var(--seconday-color);
    text-transform: uppercase;
  }



  .relProductDetBlk .relProductDet{

    margin-bottom: 4px;
  }

  .prodListTotal{

    text-transform: uppercase;
    color: var(--seconday-color);
  }

  .prodListFilterDrop {

    background: #F9F3EE;
    display: flex;
    padding: 12px;
    width: 300px;
  }

  .prodListFilterDrop select{
    background: #F9F3EE;
    border: 1px solid #F9F3EE;
    color: var(--seconday-color);
    font-family: var(--text-font);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    width: 100%;
  }

  .prodListSelect{

    margin-left: auto;
    width: calc(100% - 100px)
  }


  .prodListFilterDrop select:focus{

    outline: none;
  }

  .prodListSideBar{

    margin-top: 6em;
  }

  .prodListSideBarFilter h4{

    font-size: 16px;
    font-weight: 500;
    font-family: var(--text-font);
  }

  .prodListSideBarFilter ul li{

    margin: 8px 0;
    font-size: 14px;
  }

  .range-slider {
    width: 250px;
    position: relative;
    margin-top: 24px;
  }
  .range-slider .rangeValues {
    display: block;
    padding-top: 24px;
  }

  .range-slider input[type=range] {
    -webkit-appearance: none;
    border: 1px solid white;
    width: 250px;
    position: absolute;
    left: 0;
  }

  .range-slider input[type=range]::-webkit-slider-runnable-track {
    width: 250px;
    height: 5px;
    background: var(--seconday-color);
    border: none;
    border-radius: 3px;
  }

  .range-slider input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 14px;
    width: 14px;
    background: var(--seconday-color);
    margin-top: -4px;
    cursor: pointer;
    position: relative;
    z-index: 1;
  }

  .range-slider input[type=range]:focus {
    outline: none;
  }

  input[type=range]:focus::-webkit-slider-runnable-track {
    background: var(--seconday-color);
  }

   .range-slider input[type=range]::-moz-range-track {
    width: 300px;
    height: 5px;
    background: var(--seconday-color);
    border: none;
    border-radius: 3px;
  }

   .range-slider input[type=range]::-moz-range-thumb {
    border: none;
    height: 12px;
    width: 12px;

    background: #21c1ff;
  }

  /*hide the outline behind the border*/
   .range-slider input[type=range]:-moz-focusring {
    outline: 1px solid white;
    outline-offset: -1px;
  }

   .range-slider input[type=range]::-ms-track {
    width: 300px;
    height: 5px;
    /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
    background: transparent;
    /*leave room for the larger thumb to overflow with a transparent border */
    border-color: transparent;
    border-width: 6px 0;
    /*remove default tick marks*/
    color: transparent;
    z-index: -4;
  }

   .range-slider input[type=range]::-ms-fill-lower {
    background: #777;
    border-radius: 10px;
  }

   .range-slider input[type=range]::-ms-fill-upper {
    background: #ddd;
    border-radius: 10px;
  }

   .range-slider input[type=range]::-ms-thumb {
    border: none;
    height: 16px;
    width: 16px;
    background: #21c1ff;
  }

  .range-slider  input[type=range]:focus::-ms-fill-lower {
    background: #888;
  }

   .range-slider input[type=range]:focus::-ms-fill-upper {
    background: #ccc;
  }

  .filterBtn{

    margin-top: 60px;
  }
/* ORDER TRACKING PAGE */


.LefayInput input {
  width: 100%;
  padding: 16px;
  border: 1.6px solid #fff;
  color: #fff;
  font-family: var(--text-font);
  background-color: transparent;
  border-right: 0;
  font-size: 16px;
}

.LefayInput  input:focus {
  outline: none;
}
.orderTrackingForm h2{

  font-size: 40px;
  font-weight: 400;
}
.orderTrackingForm p{

  margin: 20px 0;
  color: var(--primary-color);
}

.orderTrackInput{

  margin: 18px 0;
}

.orderTrackInput input{

  display: block;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--primary-color);
  font-family: var(--text-font);
  background-color: transparent;
  color: var(--seconday-color);
  font-size: 16px;
}

.orderTrackInput input:focus{
  outline: none;
}

.orderTrackInput label{

  font-family: var(--text-font);
  color: var(--seconday-color);
  font-size: 16px;
  display: block;
  margin-bottom: 6px;
}

.orderTrackInput button{

  font-weight: 400;
}

.orderTrackInput button{

  border: 1px solid var(--primary-color);
  transition: all 0.3s;
}
.orderTrackInput button:hover{

  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

/* GIFT PAGE */

.giftsPage{

  background-image: url(../assets/banners/gift.jpg);
}

.giftImg{

  position: relative;
}


.giftCont{

  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  transform: translate(-50%, -50%);
  z-index: 11;
  text-align: center;
}

.giftContLg{

  left: 120px;
  transform: translate(0, -50%);
}



.giftCont h3{

  font-size: 50px;
  color: #fff;
  font-family: var(--primary-font);
  margin-bottom: 20px;
  text-align: center;
}

.giftCont h3 span{
  font-size: 50px;
  display: block;
  color: #fff;
  font-family: var(--primary-font);
}

.gftBtn button{

  background-color: #fff;
  color: var(--primary-color);
}

.gftBtn button::after{

  background: var(--primary-color);
}

.giftContLg h3,
.giftContLg h3 span{

  color: var(--primary-color);
  font-size: 50px;
  display: block;
}

.giftContainer .col-md-12{

  margin-top: 30px;
}

/* FAQ PAGE */

.faqPage{

  background-image: url(../assets/banners/faq.jpg);
}



.faqContact h2{

  font-weight: 400;
  font-size: 36px;
}

.faqContact p{

  margin: 10px 0;
}

.faqContact span{

  font-weight: 400;
}

.faqBtn{
  margin-top: 40px;
}

.faqAccordionBlk{
  padding-left: 3em;
}

.faqAccordionBlk ul.accordion-list {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 20px 0;
  margin: 0;
  list-style: none;

}
.faqAccordionBlk ul.accordion-list li {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 20px 0;
  margin: 0 auto 15px auto;
  border-bottom: 1px solid var(--primary-color);

  cursor: pointer;
}
.faqAccordionBlk ul.accordion-list li h3 {
  font-weight: 400;
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0 0 0 0;
  margin: 0;
  font-size: 22px;
  text-transform: inherit;
  font-family: var(--text-font);
  cursor: pointer;
}

.faqAccordionBlk ul.accordion-list li div.answer {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.faqAccordionBlk ul.accordion-list li div.answer p {
  position: relative;
  display: block;
  font-weight: 400;
  padding: 10px 0 0 0;
  cursor: pointer;
  line-height: 150%;
  margin: 0 0 15px 0;
  font-size: 16px;
  color: var(--primary-color);
}


.acc-title-head{

  display: flex;
}

.acc-mark{

  border: 1px solid #766C62;
  position: relative;
  width: 22px;
  height: 22px;
  line-height: 1;
  text-align: center;
  transition: border .15s ease-out;
}

.acc-mark span{

  display: block;
  line-height: .5;
  height: 18px;
  width: 22px;
  position: absolute;
  font-size: 30px;
  transition: opacity .3s ease,color .2s ease-out;
  color: #766C62;;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: 'Arsenal', sans-serif;
font-weight: 400;
}

.faqAccordionBlk ul.accordion-list li.active .acc-minus{

  opacity: 1;
}
.faqAccordionBlk ul.accordion-list li.active .acc-plus{

  opacity: 0;
}

.acc-plus{

  opacity: 1;
}
.acc-minus{

  opacity: 0;
}
/* SHIPPING DELIVERY PAGE */

.shippingPage{

  background-image: url(../assets/banners/Banner-delivery.jpg);
}


/* REFUND PAGE */

.refundPage{

  background-image: url(../assets/banners/Returns-and-refunds.jpg);
}

.pgCont p{

  margin: 10px 0;
}

.refundCont h2{
  font-size: 30px;
  margin: 28px 0 ;
}

.refundCont{

  margin-bottom: 30px;
}

/* REGISTER PAGE */

.RegisterFormBlk .rememberForm{

  margin-bottom: 20px;
}



/* MENU SIDEBAR */

.toggCatImg img{

  width: 100%;
  line-height: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.toggCatImg{

  position: relative;
  overflow: hidden;

}

.toggCatImg::after{

  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;

}

.toggCatMenuContain{


  position: fixed;
  top: 0;
  right: 0;
  width: 440px;
  height: 100%;
  min-height: 100%;
  padding: 106px 50px 35px;
  text-align: center;
  background-color: #f9f3ee;
  overflow-y: scroll;
  visibility: hidden;
  opacity: 0;
  transform: translateX(50%);
  z-index: 222;
  color: #a0a0a0;
  transition: all .6s cubic-bezier(.77,0,.175,1);
}

.toggCatMenuContain.open{

  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}



/* width */
.toggCatMenuContain::-webkit-scrollbar {
  width: 8px;
}



/* Handle */
.toggCatMenuContain::-webkit-scrollbar-thumb {
  background-color: #aaa;
  border-radius: 10px;

}

/* Handle on hover */
.toggCatMenuContain::-webkit-scrollbar-thumb:hover {
  background-color: #8b8b8b;
  transition: all 0.6s;
}

.toggCatTitle a{


  font-size: 30px;
  font-weight: 600;
  color: #fff;
  font-family: var(--primary-font);
  text-transform: uppercase;
  display: block;
}

.toggCatMenublk{

  position: relative;
  margin-bottom: 8px;
  cursor: pointer;
  line-height: 0;
  overflow: hidden;

}

.toggCatMenublk::after{

  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255,255,255);
background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(20, 20, 20, 0.712) 100%);

}
.toggCatTitle{

  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  text-align: center;
  width: 100%;
  z-index: 11;
}

.toggCatMenublk:hover .toggCatImg img{

  transform: scale(1.02);
}

/* ACCOUNT PAGE */

.dashSideMenu ul li{

  margin: 12px 0;
  border-bottom: 1px solid #cebcac;
  padding-bottom: 8px;
}

.dashSideMenu ul li a,
.dashboardContent a{

  color: var(--primary-color);
}

.dashboardContent p span{

  font-weight: 500;
  color: var(--primary-color);
}

.dashboardContent p{
  margin: 10px 0;
}

.dashboardContent{

  padding-left: 2em;
}

.dashSideMenu ul li button{

    border: none;
    background-color: transparent;
    color: var(--primary-color);
    font-family: var(--text-font);
    cursor: pointer;
    font-size: 16px;
}

.dashboardContent button{

    border: none;
    background-color: transparent;
    color: var(--primary-color);
    font-family: var(--text-font);
    cursor: pointer;
    font-size: 16px;
    margin-left: 6px;
}

.login-status{
    display: flex;
    align-items: center;
}

.orderTable{

  width: 100%;
  font-family: var(--text-font);

}

.orderTable tr th{

  text-align: left;
  padding: 10px 0 !important;
  color: var(--primary-color);
  font-weight: 400;
  font-size: 18px;
  border-bottom: 1px solid #cebcac !important;

}


.orderTable td{

  padding: 10px 0;
}

.billingAddress h3{

  font-size: 40px;
  margin-bottom: 40px;
  font-weight: 400;
}

.orderDetCont span{

  color: var(--primary-color);
  font-weight: 500;
  display: inline-block !important;
  padding: .25em 0 !important;
  background: #ffd451 !important;
  color: #ffffff;
}

.orderDetailsBlk h3{

  font-size: 35px;
  font-weight: 400;
  margin-bottom: 35px;
}

.orderdetTabHead {

  display: flex;
  border-bottom: 1px solid #cebcac ;
  font-size: 18px;
  font-weight: 800;
}

.ordTxtRight{
  margin-left: auto;
  margin-right: 200px;
}

.orderdetTabContent{

  padding: 12px 0;
}

.orderdetTabContent h4{

  font-weight: 600;font-family: var(--text-font);
  margin-top: 6px;
  font-size: 14px;
  margin-bottom: 2px;
}

.orderdetTabContent p{

  margin-top: 0;
}
.orderdetTabContent{

  display: flex;
  align-items: center;
  border-bottom: 1px solid #cebcac ;

}

.ordContRight{

  margin-left: auto;
  margin-right: 175px;
}

.ordContLeft p{

  margin-bottom: 0;
}

.dashboardContent .billingAddress{

  margin-top:40px;
}

.dashboardContent .billingAddress h3{

  margin-bottom: 20px;
}

/* BRIDAL PAGE */

.bridalbanner{

  background-image: url(../assets/banners/bridal.jpg);
}

.bridalCont{

  background-color: #F9F3EE;
  padding: 80px 0;
}

.bridalContMain h3{

  font-size: 60px;
  font-weight: 400;
}

.bridalContDesc{

  padding-right: 12em;
  padding-left: 5em;
}

.bridalContDesc p{

  font-size: 18px;
}

/* CART PAGE */

.cartTable{

  width: 100%;
  font-family: var(--text-font);
  font-weight: 400;
  color: var(--primary-color);
  border-collapse: collapse;
}

.cartTable th{

  font-weight: 400;
}

.cartTable tr{

  border-bottom: 1px solid #e1e1e1;
  text-align: center;
}

.cartTable .productThumb{

  width: 15%;
}

.prdo-thumb img{

  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: center;
}

.cartTable .productInQuanty form{

  justify-content: center;
}

.cartTable span{

  color: var(--primary-color);
}

.tbltCont{

  padding: 8px 0;

}

.tbltCont td{

  padding: 14px 0;
}

.cartBtm{

  display: flex;
  padding: 13px 0;
}

.cpnCart form{

  display: flex;
  gap: 12px;
}

.cpnCart input{

  padding: 13px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-family: var(--text-font);
  background-color: transparent;
}
.cpnCart input:focus{

  outline: none;
}
.updtaCart{

  margin-left: auto;
}

.cartBtm button{

  font-weight: 400;
}

.cartBtm button{

  transition: all 0.3s;
  border: 1px solid var(--primary-color);
}
.cartBtm button:hover{

  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}
.cartBtm button:hover::after{

  background: var(--primary-color);

}

.cartdropBtn .buttonMain:hover{

  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.cartdropBtn .buttonMain{

  transition: all 0.3s;
  border: 1px solid var(--primary-color);
}

.carttotalTable{

  font-family: var(--text-font);
  width: 100%;
  font-weight: 400;
  color: var(--primary-color);
  border-collapse: collapse;
  margin-bottom: 20px;
}

.carttotalTable th,
.carttotalTable td{

  padding: 20px 0;
  text-align: left;
  font-weight: 400;
  font-size: 16px;
}

.carttotalTable tr{

  border-bottom: 1px solid #e1e1e1;
}

.carttotalTable td span{

  color: var(--text-font);
}

.flat-rate{

  display: block;
}
.order-total{

  font-weight: 500;
}

.chckout-btn .buttonMain{

  display: block;
  margin-bottom: 14px;
  font-weight: 400;
  width: fit-content;
  color: var(--bg-secondary);
}

.cartTotalSec h2{

  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 400;
}

/* CHECKOUT PAGE */


.checkoutPage{

  color: var(--primary-color);
}
.checkoutContainHead{

  display: flex;
  margin-bottom: 40px;
}

.checkoutContainHead{

  display: flex;

}
.checkoutContainHead a{
  color: var(--primary-color);
  font-size: 16px;
}

.chcklog{

  margin-left: auto;

}

.chcklog span{

  color: var(--primary-color);
}

.checkCoupon{

  text-align: center;
  margin-bottom: 40px;
}

.checkCoupon span{

  display: block;
}

.checkCoupon input{

  display: block;
  width: 100%;
  padding: 14px;
  color: var(--primary-color);
  font-family: var(--text-font);
  border: 1px solid var(--primary-color);
  background-color: transparent;
margin: 10px 0;
}

.checkCoupon form{

  text-align: left;
}

input:focus,
select:focus,
textarea:focus{

outline: none;
}

.checkCoupon > div{

  margin-bottom: 20px;
}

.chckcpnForm{

  display: none;
}

.chckcpnForm.shw{

  display: block;
}

.chcktoutInput input,
.chcktoutInput select{
  width: 100%;
  padding: 14px;
  border: 1px solid var(--primary-color);
  background-color: transparent;
  display: block;
  margin: 12px 0;
}


.chcktoutInput textarea{

  width: 100%;
  padding: 14px;
  border: 1px solid var(--primary-color);
  background-color: transparent;
  display: block;
  margin: 12px 0;
  height: 100px;
  resize: none;
  font-family: var(--text-font);
}
.chcktoutInput label,
.logincheckoutInput label{

  font-family: var(--text-font);
  display: block;
  font-size: 16px;
}

.chcktoutInput input,
.chcktoutInput select{


    font-family: var(--text-font);
    font-size: 16px;
}


.checkoutRadio span{

  font-size: 20px;
}


.checkoutRadio input[type="checbox"]:checked ~ .newshipform {

display: block;
}

.checkBillDetHead{

  display: flex;
  align-items: center;
  margin: 20px 0;
}
.checkBillDetHead span{

  margin-left: auto;
  margin-right: auto;
}

.checkoutFormContain h2 {

  margin-bottom:20px;
}

.checkoutFormContain .chckrd{

  display: inline-block;
  margin-bottom: 20px;
}

.chckout-btn p{

  margin-bottom: 10px;
  font-size: 14px;
}

.lognformContain span{

  font-size: 14px;
  color: var(--primary-color);
  display: block;
}

.checkoutFormContain .rememberForm{
  display: flex;
  align-items: center;
}

.calshipLink {
  display: block;
}


.lognformContain{

  display: none;
}

.lognformContain.shw{

  display: block;
}


.cartTotalDetailTable th{

    width: 50%;
}

.flat-rate{

    color: var(--seconday-color) !important;
}

.prOrderCount{

    font-weight: 800;
    color: var(--primary-color);
}
/* PRODUCT QUICK VIEW */

.prodQuickoverlay{

  position: fixed;
  background-color: #000000af;
  width: 100%;
  height: 100%;
  z-index: 222;
  display: block;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.prodQuickContain{

  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  background: #fff;
  width: 800px;
  z-index: 222;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}



.prodQuickoverlay.open{

  opacity: 1;
  visibility: visible;
}


.prodQuickContain.open{

  opacity: 1;
  visibility: visible;
}
.productQuickImg .product-img--main{

  width:100%;
  height: 100%;
  position: absolute;
}

.productQuickHead{

  display: flex;
}

.productQuickHead .closepop{

  margin-left: auto;
}

.closepop span{

  display: block;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: #fff;
  line-height: 60px;
  text-align: center;
  cursor: pointer;
}

.producQuickCont{

  padding: 20px 0;
}
.producQuickCont p{

  padding-right: 4em;
}
.producQuickCont h2{

  font-size: 40px;
  margin-bottom: 6px;
  font-weight: 400;
}

.quickAmnt{

  display: block;
  font-size: 22px;
  font-weight: 400;
}

.producQuickCont p{

  margin-top: 20px;
  margin-bottom: 8px;
}

.prQuickCont p{

  margin: 0 !important;
  padding-right: 0;
}

.prQuickWish a{

  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
}

.addwish{

  display: none;
}

.addwish.shw{

  display: block;
}

.calcshippingform{

  display: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.calcshippingform.shw{

  display: block;
  opacity: 1;
  visibility: visible;
}
.hrt-liked{

  display: none;
}

.hrt-liked.shw{

  display: block;
}

.pq-pl-0{

  padding-left: 0 !important;
}
.pq-pr-0{

  padding-right: 0 !important;
}

