@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;
  --primary: #f9c2ce;
  --secondary: #ff9eb1;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  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;
}
.jcfs {
  justify-content: flex-start;
}
.jcfe {
  justify-content: flex-end;
}
.jcsb {
  justify-content: space-between;
}

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

.fw {
  flex-wrap: wrap;
}

.fnw {
  flex-wrap: nowrap;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  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 {
  max-height: 150px;
  transition: 0.3s ease-in-out;
}

.topRow {
  background: var(--secondary);
  text-align: center;
  padding: 1rem;
}
.topRow p {
  color: #000;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}
header {
  /* position: absolute; */
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99999;
  top: 0;
  width: 100%;
  background: var(--white);
  transition: 0.3s ease-in-out;
}

header.sticky {
  position: fixed;
}

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

.navbar-nav {
  gap: 1rem 2rem;
}
.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1;
  padding: 0;
  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(--secondary);
  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);
}
.form-inline {
  gap: 2rem;
  margin-left: 2rem;
}
.form-inline a {
  font-size: 1.25rem;
  color: var(--black);
}
.form-inline a:hover {
  color: var(--secondary);
}
.themeBtn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.25rem;
  color: #000;
  padding: 0.5em 1em;
  font-weight: 400;
  text-transform: uppercase;
  background: transparent;
  border: 2px solid #000;
}
.themeBtn i {
  font-size: 2rem;
}
.themeBtn:hover {
  background: var(--secondary);
  color: var(--white);
}

.secHeading {
  font-size: 3.125rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1;
  position: relative;
  text-transform: uppercase;
}

/* .form-inline {
  gap: 2rem;
  margin-left: 2rem;
}
.form-inline a {
  font-size: 1.25rem;
  color:#000;
}
.form-inline a:hover {
  color: var(--secondary);
}
.topRow p {
  color: #000;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  margin: 1;
  text-transform: uppercase;
  text-align: center;
} */

.CatogorieSec h2 {
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--secondary);
}

.CatogorieSec h3 {
  font-size: 3.125rem;
  font-weight: 400;
  color: #000;
  font-family: "Playfair Display";
  text-transform: uppercase;
}
.cartShop {
  display: flex;
  align-items: center;
  /* gap: 2rem; */
  border: 2px solid #c7c9ca;
  /* padding: 1rem 2rem; */
  margin-top: 2rem;
  padding: 10px;
}

.cartShop figure {
  width: 170px;
  height: 170px;
  /* object-fit: scale-down; */
  padding: 15px 2rem;
  padding-right: 0;
}
.cartShop figure img {
  width: 100%;
}
.cartShop h4 {
  font-size: 2.188rem;
  font-weight: 600;
  font-family: "Playfair Display";
  margin-left: 3rem;
  text-transform: uppercase;
  text-align: right;
  width: 50%;
  padding-right: 2rem;
}

.CatogorieSec {
  padding: 5rem 0;
}
.cartShop:hover {
  border-color: var(--secondary);
}
.cartShop:hover {
  color: var(--secondary);
}
.featureSec h2 {
  font-size: 1.625rem;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--secondary);
}

.featureSec h3 {
  font-size: 3.125rem;
  font-weight: 500;
  color: #000;
  font-family: "Playfair Display";
  text-transform: uppercase;
}
.featureSec {
  padding: 5rem 0;
  background-color: rgba(249, 194, 206, 0.4);
}
.featuredCard h4 {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 500;
  margin-top: 12px;
}

.featuredCard span {
  font-size: 1.125rem;
  font-weight: 600;
}

.featuredCard {
  text-align: center;
  padding-top: 2rem;
}
.shopSection {
  padding: 6rem 0;
  background: url(../images/shopBG.png) center/cover no-repeat;
  height: 100%;
  align-items: center;
  display: flex;
}
.shopCart h2 {
  font-size: 1.625rem;
  font-weight: 500;
}

.shopCart h3 {
  font-size: 3.125rem;
  font-weight: 500;
  font-family: "Playfair Display";
  text-transform: uppercase;
}

.shopCart p {
  font-size: 1.375rem;
  color: #000;
  font-weight: 400;
}
.shopCart {
  background: rgba(255, 182, 193, 0.88);
  opacity: 1;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 6rem 5rem;
}
.featureSec.ProductSec {
  background: none;
}
.suitedSec {
  padding: 6rem 0;
  background: url(../images/suited.png) center/cover no-repeat;
  height: 100%;
  display: flex;
  align-items: center;
}
.suitedSec h2 {
  font-size: 3.125rem;
  font-weight: 600;
  font-family: "Playfair Display";
}

.suitedSec p {
  font-size: 1.125rem;
  color: #000;
  font-weight: 400;
}
.testimonialSec {
  padding: 6rem 0;
  text-align: center;
}

.testimonialSec h2 {
  font-size: 1.625rem;
  color: var(--secondary);
}

.testimonialCard h4 {
  font-size: 3.125rem;
  font-family: "Playfair Display";
  font-weight: 600;
}

.testimonialCard h3 {
  font-size: 1.625rem;
  font-weight: 500;
}

.testimonialCard span i {
  color: #f3b50a;
  font-size: 1.75rem;
}
.testimonialCard p {
  font-size: 1.125rem;
  line-height: 2.3;
  padding: 0 2rem;
}
.testimonialCard p img:nth-child(1) {
  display: inline-block;
  margin-left: -2rem;
  margin-top: -2rem;
}
.testimonialCard p img:nth-child(2) {
  display: inline-block;
  margin-bottom: -2em;
}
.newsLtrSec {
  padding: 5rem 0;
  background: var(--primary);
}
.newsLtrSec h2 {
  font-size: 2.5rem;
  color: var(--black);
  font-weight: 500;
  font-family: "Playfair Display";
}
.newsLtrSec .form-group {
  display: flex;
  align-items: center;
  width: 100%;
  height: 5rem;
}
.newsLtrSec .form-group input {
  width: 100%;
  height: 5rem;
  padding-left: 1.5rem;
  background: transparent;
  transition: 0.3s ease-in-out;
  border: 1px solid var(--black);
}
.newsLtrSec .form-group button {
  background: var(--black);
  color: var(--white);
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 600;
  height: 5rem;
  padding: 0 1.5em;
  border: 1px solid var(--black);
}
.newsLtrSec .form-group button:hover {
  background: var(--white);
  color: var(--black);
}
footer {
  padding-top: 5rem;
  background: #ff9eb1;
}

footer h3 {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1;
  color: var(--black);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-family: "Playfair Display";
}
footer .links {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.5rem;
  height: 160px;
}
footer .links li a {
  color: var(--black);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.125rem;
}
footer .links li a:hover {
  color: var(--white);
}
.contactInfo li a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--black);
}
.footerSocial {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footerSocial li a {
  width: 4rem;
  height: 4rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.125rem;
  color: var(--black);
  background: var(--white);
}
.footerSocial li a:hover {
  background: #efefef;
  color: var(--secondary);
}
.copyRight {
  margin-top: 4rem;
  padding: 1.75rem 0;
  border-top: 1px solid #474747;
}
.copyRight p {
  font-size: 1.0625rem;
  margin: 0;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  color: var(--black);
}
.serviceSec h3 {
  font-size: 1.625;
  font-weight: 400;
  color: #ff9eb1;
  font-family: "Poppins", sans-serif;
}
.serviceSec h2 {
  font-size: 3.125rem;
  color: #000;
  font-family: "Playfair Display";
  text-transform: uppercase;
}
.servImg img {
  display: block;
}
.servImg .imgBox {
  width: fit-content;
  width: -moz-fit-content;
  margin: -18rem -5rem 0 auto;
}

.serviceSec .frr .servImg .imgBox {
  margin: -10rem auto 0 -5rem;
}
.serviceSec .logo-medium {
  position: absolute;
  right: 0;
  bottom: -6rem;
}
.serviceSec p {
  color: #000;
  font-size: 1.125rem;
  font-weight: 400;
}

.serviceSec::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 95%;
  height: 780px;
  background: #f9c2ce;
  opacity: 0.3;
}
.wrapper {
  position: relative;
}
.wrapper .swiper-next,
.wrapper .swiper-prev {
  display: inline-grid;
  place-items: center;
  font-size: 1rem;
  color: var(--black);
  width: 3rem;
  height: 3rem;
  top: calc(50% - 3rem);
  position: absolute;
  border: 1px solid var(--black);
}
.wrapper .swiper-next {
  right: -4rem;
}
.wrapper .swiper-prev {
  left: -4rem;
}
.ProductSec .wrapper .swiper-next,
.ProductSec .wrapper .swiper-prev {
  border-color: #c7c9ca;
  color: #c7c9ca;
}
.ProductSec .wrapper .swiper-next:hover,
.ProductSec .wrapper .swiper-prev:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}
.ProductSec .featuredCard figure {
  border: 1px solid #c7c9ca;
}
.ProductSec .featuredCard:hover figure {
  border-color: var(--secondary);
}
.ProductSec .themeBtn {
  color: var(--secondary);
  border-color: var(--secondary);
}
.review-next,
.review-prev {
  color: #c7c9ca;
  font-size: 2.5rem;
}
.review-next:hover,
.review-prev:hover {
  color: var(--secondary);
}
.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  text-align: left;
  align-items: center;
  justify-content: center;
}
.main-slider.innerslide {
  height: auto;
  background: none;
}
.serviceSec.serviceInner::before {
  background-color: white;
}
.featureSec.featureInner {
  background: white;
}

.featureSec.featureInner .featuredCard figure img {
  border: 2px solid #c7c9ca;
}

.featureSec.featureInner .featuredCard:hover figure img {
  border: 2px solid #ff9eb1;
}
.featureSec.featureInner.catagorieInner .featuredCard:hover h4 {
  color: #ff9eb1;
}
/* sideList */
.sideList ul li a {
  background-color: var(--white);
  display: inline-block;
  padding: 1em;
  font-size: 1.125rem;
  color: var(--black);
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  border: 1px solid #ebebeb;
  width: 100%;
}
.sideList ul li a.active,
.sideList ul li a:hover {
  background-color: #ff9eb1;
  color: var(--white);
}

.ftrCalmain {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contactSec .ftrLst.cntlst {
  flex-direction: column;
  width: 29%;
}
.ftrLst figure {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c7c9ca;
}
.ftrSetion {
  min-height: 79px;
}
.contactSec .ftrSetion h3 {
  color: var(--black);
  font-size: 1.125rem;
  text-transform: uppercase;
  font-weight: 600;
}
.contactSec .ftrSetion a {
  color: var(--black);
  font-weight: 400;
  font-size: 1.125rem;
  font-weight: 500;
}
.ftrSetion p {
  /* width: 61%; */
  margin: 0 auto;
  line-height: 1.2;
  color: var(--black);
  font-weight: 400;
}

.ftrLst {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}
.contactSec {
  padding: 6rem 0 3.5rem;
}

h1.cntctHead {
  font-family: "Playfair Display", serif;
  color: #000;
  font-size: 3.125rem;
  font-weight: 600;
  text-transform: uppercase;
}
.contactSection .form-group .form-control {
  border-radius: 1px;
  border: 1px 0px 0px #c7c9ca;
  height: 73px;
  width: 100%;
  background-color: #fff;
  font-weight: 500;
  padding: 1rem 1.5rem;
  margin: 0 0 1.5rem;
  color: #c0c0c0;
}
.contactSection .form-group textarea.form-control {
  height: 190px;
  width: 100%;
  margin: 0 0 1.5rem;
}
.contactSection.contactPAge {
  padding: 0 0 8rem;
}
.contactSection.contactPAge p {
  color: #000;
  font-weight: 400;
}

.contactSection.contactPAge .themeBtn {
  color: #ff9eb1;
  border-color: #ff9eb1;
}
.contactSection.contactPAge .themeBtn:hover {
  color: #000;
  border-color: #ff9eb1;
}
