* {
  box-sizing: border-box;
}
body {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
}
.container {
  padding: 0 15px;
}
.btn {
  text-decoration: none;
  cursor: pointer;
  border: 0;
}
.btn .hover-effect {
  display: block;
  overflow: hidden;
  height: 20px;
  position: relative;
}
.btn .hover-effect span {
  display: block;
  transition: transform 0.2s ease-in;
}
.btn .hover-effect span:nth-child(2) {
  position: absolute;
  top: -100%;
  /* Below the first one */
  left: 0;
}
.btn:hover .hover-effect span {
  transform: translateY(100%);
}
.btnBlack {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-transform: uppercase;
  background-color: #0B0B0B;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Instrument Sans", sans-serif;
}
.btnBlackBorder {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  text-transform: uppercase;
  background-color: #ffffff;
  border: solid 1px #000000;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Instrument Sans", sans-serif;
}
.btnWhite {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  text-transform: uppercase;
  background-color: #ffffff;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Instrument Sans", sans-serif;
}
.btnWhiteBorder {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-transform: uppercase;
  border: solid 2px #ffffff;
  background: transparent;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Instrument Sans", sans-serif;
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1376px;
    width: 100%;
    margin: 0 auto;
  }
  .innerContainer {
    width: 100%;
    margin: 0 auto;
  }
  .iwowdStand .container {
    max-width: 1138px;
  }
  .whatIwowd .container,
  .customizeExp .container {
    max-width: 1346px;
  }
}
.menuToggleBtn {
  width: 30px;
  height: 30px;
  display: none;
}
.header {
  position: absolute;
  top: 0;
  width: 100%;
  transition: all 0.3s ease-in;
  z-index: 9;
}
.header.active {
  background-color: #ffffff;
  transform: translateY(-100px);
}
.header.fixed {
  position: fixed;
  transform: translateY(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
}
.header .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
}
.header .topBar {
  display: flex;
  justify-content: space-between;
}
.header .topBar img {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(124deg) brightness(102%) contrast(104%);
}
.header .topBar button {
  background: transparent;
  padding: 0;
  border: 0;
  cursor: pointer;
}
.header .topBar .topRightNav {
  display: inline-flex;
  gap: 32px;
}
.header .navigation ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
}
.header .navigation ul li {
  cursor: pointer;
  position: relative;
}
.header .navigation ul li .hover-effect {
  display: block;
  overflow: hidden;
  height: 20px;
  position: relative;
}
.header .navigation ul li .hover-effect a {
  display: block;
  transition: transform 0.2s ease-in;
  white-space: nowrap;
}
.header .navigation ul li .hover-effect a:nth-child(2) {
  position: absolute;
  top: -100%;
  /* Below the first one */
  left: 0;
}
.header .navigation ul li:hover .hover-effect a,
.header .navigation ul li.active .hover-effect a {
  transform: translateY(100%);
  color: #9D6585;
}
.header .navigation ul li a {
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  font-family: "Instrument Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
}
.header .navigation ul li.dropdown {
  padding-right: 30px;
}
.header .navigation ul li.dropdown .togglebtn {
  cursor: pointer;
  width: 24px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 0;
  background: url(../img/arrow-down-black.svg) right center no-repeat;
  border: 0;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(124deg) brightness(102%) contrast(104%);
}
.header .navigation ul li.dropdown.active .togglebtn,
.header .navigation ul li.dropdown:hover .togglebtn {
  filter: invert(48%) sepia(32%) saturate(531%) hue-rotate(273deg) brightness(85%) contrast(82%);
  background: url(../img/arrow-down-black.svg) right center no-repeat;
}
.header.active .topBar img {
  filter: none;
}
.header.active .navigation ul li a {
  color: #0B0B0B;
}
.header.active .navigation ul li.dropdown .togglebtn {
  filter: invert(48%) sepia(32%) saturate(531%) hue-rotate(273deg) brightness(85%) contrast(82%);
}
.header .dropdownMenu {
  box-shadow: 0 10px 20px #00000017;
  background: #ffffff;
  position: absolute;
  top: -30px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in;
}
.header .dropdownMenu ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 10px ;
}
.header .dropdownMenu ul li a {
  display: block;
  padding: 10px;
  color: #000000;
  white-space: nowrap;
}
.header .dropdownMenu ul li:hover a {
  color: #9D6585;
}
.header .dropdown:hover .dropdownMenu {
  top: 30px;
  opacity: 1;
  visibility: visible;
}
.title {
  text-align: center;
  margin-bottom: 32px;
}
.title h1 {
  font-weight: 400;
  font-size: 36px;
  margin-top: 0;
  margin-bottom: 16px;
  color: #000000;
  font-family: "IBM Plex Serif", serif;
}
.title p {
  margin-bottom: 0;
  font-size: 24px;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 400;
  color: #000000;
  max-width: 702px;
  margin: 0 auto;
}
.heroSection {
  position: relative;
  overflow: hidden;
}
.heroSection img {
  width: 100%;
  display: block;
}
.heroSection .sliderTrack {
  display: flex;
  transition: transform 0.6s ease;
}
.heroSection .item {
  min-width: 100%;
  position: relative;
}
.heroSection .item:before {
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #000000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  position: absolute;
  bottom: 0px;
  content: '';
}
.heroSection .item .caption {
  max-width: 600px;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 102px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}
.heroSection .item .caption h1 {
  font-size: 60px;
  font-weight: 400;
  color: #ffffff;
  font-family: "IBM Plex Serif", serif;
  margin: 0;
  line-height: 72px;
}
.heroSection .item .caption p {
  font-size: 24px;
  font-weight: 400;
  font-family: "Instrument Sans", sans-serif;
  color: #ffffff;
  margin-bottom: 0;
}
.heroSection .item .caption .btn {
  margin-top: 24px;
}
.heroSection .indicator {
  position: absolute;
  bottom: 56px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}
.heroSection .indicator span {
  width: 8px;
  height: 8px;
  background-color: #D9D9D9;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.heroSection .indicator span.active {
  width: 40px;
}
.innerBanner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.innerBanner:before {
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #000000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  position: absolute;
  bottom: 0px;
  content: '';
}
.innerBanner .caption {
  z-index: 3;
  position: absolute;
  font-family: "IBM Plex Serif", serif;
  font-size: 48px;
  font-weight: 400;
  color: #ffffff;
}
.marqueeSlider {
  border-bottom: solid 1px #A4A7AE;
}
.marqueeSlider .scrollText {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  font-size: 30px;
  font-weight: 400;
  font-family: "Instrument Sans", sans-serif;
  color: #000000;
  padding: 30px 0;
}
.marqueeSlider .scrollText .scrolling-content {
  display: inline-flex;
  animation: scroll-left 10s linear infinite;
}
.marqueeSlider .scrollText span {
  padding-right: 2rem;
  /* optional spacing between repeats */
  white-space: nowrap;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.categorySection {
  padding: 24px 0 32px;
}
.categorySection .container {
  padding: 32px;
}
.categorySection .grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1112px;
  margin: 0 auto;
}
.categorySection .grid .gridItem {
  position: relative;
}
.categorySection .grid .gridItem a {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  height: 100%;
}
.categorySection .grid .gridItem a img {
  margin-bottom: 0;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}
.categorySection .grid .gridItem a:hover img {
  transform: scale(1.3);
}
.categorySection .grid .gridItem .itemName {
  width: 100%;
  height: 115px;
  background: #000000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  position: absolute;
  bottom: 3px;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  font-family: "Instrument Sans", sans-serif;
}
.categorySection .adBanner {
  position: relative;
  max-width: 1112px;
  margin: 32px auto 0;
  border-radius: 4px;
  overflow: hidden;
}
.categorySection .adBanner a {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 4px;
}
.categorySection .adBanner a img {
  margin-bottom: 0;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.categorySection .adBanner a:hover img {
  transform: scale(1.2);
}
.categorySection .adBanner .itemName {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  font-family: "Instrument Sans", sans-serif;
  text-transform: uppercase;
  position: absolute;
  z-index: 1;
}
.designYourClothing {
  padding: 24px 0 32px;
}
.designYourClothing .container {
  padding: 32px;
  gap: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.designYourClothing .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
.designYourClothing .info h1 {
  font-size: 48px;
  font-weight: 400;
  color: #000000;
  font-family: "IBM Plex Serif", serif;
  margin: 0;
  line-height: 60px;
}
.designYourClothing .info p {
  font-size: 24px;
  font-weight: 400;
  font-family: "Instrument Sans", sans-serif;
  color: #000000;
  margin-bottom: 0;
  margin-top: 0;
}
.designYourClothing .info .btn {
  margin-top: 32px;
}
.designYourClothing .CustomizedImg {
  width: 100%;
}
.desiStitch {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.desiStitch img {
  width: 100%;
  display: block;
}
.desiStitch:before {
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #000000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  position: absolute;
  bottom: 0px;
  content: '';
}
.desiStitch .caption {
  position: absolute;
  text-align: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.desiStitch .caption h1 {
  margin: 0;
  color: #ffffff;
  font-size: 48px;
  font-weight: 400;
  line-height: 60px;
  text-transform: uppercase;
  padding: 0 20px;
}
.desiStitchCategories {
  padding: 64px 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.desiStitchCategories .title {
  margin-bottom: 0;
}
.desiStitchCategories .title h1 {
  margin: 0;
}
.desiStitchCategories .tab-buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  padding: 0;
}
.desiStitchCategories .tab-buttons li {
  display: inline-flex;
  border: solid 2px #000000;
  padding: 8px 16px;
  text-transform: uppercase;
  color: #000000;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  font-family: "Instrument Sans", sans-serif;
  transition: all 0.2s ease-in;
}
.desiStitchCategories .tab-buttons li:hover,
.desiStitchCategories .tab-buttons li.active {
  background: #000000;
  color: #ffffff;
}
.desiStitchCategories .tabContent {
  margin-bottom: 48px;
}
.desiStitchCategories .tabContent .tab-content {
  display: none;
  text-align: center;
}
.desiStitchCategories .tabContent .tab-content.active {
  display: block;
}
.desiStitchCategories .grid {
  padding: 16px 0;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 32px;
}
.desiStitchCategories .grid .gridItem {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.desiStitchCategories .grid .gridItem a {
  display: block;
  overflow: hidden;
  height: 100%;
}
.desiStitchCategories .grid .gridItem a img {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  max-width: 310px;
  max-height: 510px;
  object-fit: cover;
}
.desiStitchCategories .grid .gridItem a .hover {
  display: none;
  margin: 0 auto;
  opacity: 0;
}
.desiStitchCategories .grid .gridItem a:hover .main {
  display: none;
}
.desiStitchCategories .grid .gridItem a:hover .hover {
  opacity: 1;
  z-index: 1;
  display: block;
}
.desiStitchCategories .grid .gridItem .itemName {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  font-family: "Instrument Sans", sans-serif;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.desiStitchCategories .grid .gridItem .itemPrice {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  font-family: "Instrument Sans", sans-serif;
}
.desiStitchCategories .grid .gridItem .btn {
  position: absolute;
  bottom: 75px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
  transition: all 0.2s ease-in;
  max-width: 294px;
  opacity: 0;
}
.desiStitchCategories .grid .gridItem:hover .btn {
  bottom: 85px;
  opacity: 1;
}
.newArrivals .title,
.bestSellers .title {
  margin-bottom: 32px;
}
.exploreFebrics {
  padding: 24px 0 32px;
}
.exploreFebrics .container {
  padding: 32px;
}
.exploreFebrics .grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
.exploreFebrics .grid .gridItem {
  position: relative;
  max-width: 310px;
  height: 280px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.exploreFebrics .grid .gridItem a {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  height: 100%;
}
.exploreFebrics .grid .gridItem a img {
  margin-bottom: 0;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}
.exploreFebrics .grid .gridItem a:hover img {
  transform: scale(1.3) rotate(10deg);
}
.exploreFebrics .grid .gridItem .btn {
  position: absolute;
  bottom: 32px;
  z-index: 1;
}
.exploreFebrics .grid.row01 .gridItem:last-child {
  max-width: 644px;
}
.exploreFebrics .grid.row03 .gridItem:nth-child(2) {
  max-width: 644px;
}
.footer {
  background: #171717;
  display: flex;
  flex-direction: column;
  padding: 24px 0;
}
.footer hr {
  border: solid 1px #515151;
  width: 100%;
  margin: 26px 0 15px;
}
.footer .footerTop {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer .footerTop .col {
  width: 15%;
}
.footer .footerTop .col .links {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer .footerTop .col:first-child {
  width: 30%;
}
.footer .footerTop .col:nth-child(3),
.footer .footerTop .col:nth-child(4) {
  width: 20%;
}
.footer .footerTop .col .group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  font-family: "Instrument Sans", sans-serif;
  margin-top: 38px;
}
.footer .footerTop .col .group strong {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}
.footer .footerTop h4 {
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  font-family: "Instrument Sans", sans-serif;
  pointer-events: none;
}
.footer .footerTop a {
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  font-family: "Instrument Sans", sans-serif;
  text-decoration: none;
  line-height: 32px;
  transition: all 0.1s ease-in-out;
}
.footer .footerTop a:hover {
  color: #9D6585;
}
.footer .footerBottom {
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  font-family: "Instrument Sans", sans-serif;
}
.footer .socialLinks {
  display: flex;
  gap: 16px;
  margin-top: 38px;
}
.footer .socialLinks a {
  width: 34px;
  height: 34px;
  border-radius: 100%;
  background-color: #ffffff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.footer .socialLinks a:hover {
  background-color: #9D6585;
}
.iwowdStand {
  background-color: #9D6585;
  padding: 64px 0;
}
.iwowdStand p {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 400;
  font-size: 30px;
  color: #ffffff;
  text-align: center;
  margin: 0;
}
.OurVision {
  padding: 24px 0 32px;
}
.OurVision .container {
  padding: 32px;
  gap: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.OurVision .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
.OurVision .info h1 {
  font-size: 48px;
  font-weight: 400;
  color: #000000;
  font-family: "IBM Plex Serif", serif;
  margin: 0;
  line-height: 60px;
}
.OurVision .info h5 {
  font-size: 30px;
  font-weight: 500;
  color: #000000;
  font-family: "Instrument Sans", sans-serif;
  margin: 0;
  line-height: 38px;
}
.OurVision .info p {
  font-size: 24px;
  font-weight: 400;
  font-family: "Instrument Sans", sans-serif;
  color: #000000;
  margin-bottom: 0;
  margin-top: 10px;
}
.OurVision .CustomizedImg {
  width: 100%;
}
.whatIwowd {
  padding: 24px 0 32px;
}
.whatIwowd .title {
  margin-bottom: 64px;
}
.whatIwowd .title p {
  max-width: 1248px;
}
.whatIwowd .title p:last-child {
  margin-top: 24px;
}
.whatDiff {
  padding: 24px 0 32px;
}
.whatDiff .container {
  padding: 32px;
  gap: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.whatDiff .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
.whatDiff .info h1 {
  font-size: 48px;
  font-weight: 400;
  color: #000000;
  font-family: "IBM Plex Serif", serif;
  margin: 0;
  line-height: 60px;
}
.whatDiff .info h5 {
  font-size: 30px;
  font-weight: 500;
  color: #000000;
  font-family: "Instrument Sans", sans-serif;
  margin: 0;
  line-height: 38px;
}
.whatDiff .info p {
  font-size: 24px;
  font-weight: 400;
  font-family: "Instrument Sans", sans-serif;
  color: #000000;
  margin-bottom: 0;
  margin-top: 10px;
}
.whatDiff .info ul {
  margin: 0;
  padding-left: 25px;
}
.whatDiff .info ul li {
  font-size: 24px;
  font-family: "Instrument Sans", sans-serif;
}
.whatDiff .CustomizedImg {
  width: 100%;
}
.customizeExp {
  padding: 24px 0 32px;
}
.customizeExp .container {
  padding-top: 32px;
  padding-bottom: 32px;
}
.customizeExp .title h5 {
  font-size: 30px;
  font-family: "Instrument Sans", sans-serif;
  margin: 0;
}
.customizeExp .imageContainer {
  height: 220px;
  overflow: hidden;
}
.customizeExp .imageContainer img {
  object-position: center;
  object-fit: cover;
}
.customizeExp .info {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  font-size: 24px;
  color: #000000;
  font-family: "Instrument Sans", sans-serif;
  margin-top: 32px;
}
.fashionPrinciples .info {
  max-width: 612px;
}
.founderStory h1 {
  margin: 0 0 16px;
  text-align: center;
  font-weight: 400;
  font-size: 36px;
  font-family: "IBM Plex Serif", serif;
  color: #ffffff;
}
.founderStory p {
  margin-bottom: 24px;
  font-size: 24px;
}
.founderStory p:last-child {
  margin-bottom: 0;
}
.team {
  padding: 24px 0 32px;
}
.team .container {
  padding: 32px;
  gap: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.team .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 612px;
  width: 100%;
}
.team .info h1 {
  font-size: 48px;
  font-weight: 400;
  color: #000000;
  font-family: "IBM Plex Serif", serif;
  margin: 0;
  line-height: 60px;
}
.team .info h5 {
  font-size: 30px;
  font-weight: 500;
  color: #000000;
  font-family: "Instrument Sans", sans-serif;
  margin: 0;
  line-height: 38px;
}
.team .info p {
  font-size: 24px;
  font-weight: 400;
  font-family: "Instrument Sans", sans-serif;
  color: #000000;
  margin-bottom: 0;
  margin-top: 10px;
}
.team .info p strong {
  display: block;
  margin-bottom: 5px;
}
.team .info ul {
  margin: 0;
}
.team .info ul li {
  font-size: 24px;
  font-family: "Instrument Sans", sans-serif;
}
.whyChoose {
  background-color: #482E3D;
  padding: 64px 0;
}
.whyChoose .container {
  flex-direction: column;
  gap: 64px;
}
.whyChoose h1 {
  font-size: 36px;
  color: #ffffff;
  font-family: "IBM Plex Serif", serif;
  text-align: center;
  margin: 0 0 64px;
}
.whyChoose .colContainer {
  display: flex;
  gap: 24px;
}
.whyChoose .colContainer .col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #ffffff;
}
.whyChoose .colContainer .circle {
  width: 104px;
  height: 104px;
  border-radius: 100%;
  background-color: #D9D9D9;
}
.whyChoose .colContainer h5 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  font-family: "Instrument Sans", sans-serif;
}
.whyChoose .colContainer p {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  font-family: "Instrument Sans", sans-serif;
}
.productListingWrapper {
  padding: 50px 0;
}
.productListingWrapper .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.productListingWrapper .productFilter {
  max-width: 302px;
  width: 25%;
}
.productListingWrapper .productFilter .btnsGroup {
  display: flex;
  justify-content: space-around;
  margin-top: 32px;
  gap: 16px;
}
.productListingWrapper .productFilter .btnsGroup .btn {
  flex-grow: 1;
}
.productListingWrapper .productListing {
  max-width: 978px;
  width: 75%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.productListingWrapper .productListing .topBar {
  display: flex;
  align-items: center;
}
.productListingWrapper .productListing .topBar h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 400;
  font-family: "IBM Plex Serif", serif;
}
.productListingWrapper .productListing .topBar .productCount {
  font-size: 20px;
  font-weight: 500;
  font-family: "Instrument Sans", sans-serif;
  margin-left: 16px;
}
.productListingWrapper .productListing .topBar .sortBy {
  margin-left: auto;
  border: 1px solid #D5D7DA;
  max-width: 280px;
  width: 100%;
  background-color: #ffffff;
  height: 40px;
  font-size: 16px;
  padding: 0 20px;
  appearance: none;
  -webkit-appearance: none;
  font-family: "Instrument Sans", sans-serif;
  background: url(../img/arrow-down-black.svg) 94% center no-repeat;
}
.productListingWrapper .productListing .tab-buttons {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  padding: 0;
}
.productListingWrapper .productListing .tab-buttons li {
  display: inline-flex;
  border: solid 2px #000000;
  padding: 8px 16px;
  text-transform: uppercase;
  color: #000000;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  font-family: "Instrument Sans", sans-serif;
  transition: all 0.2s ease-in;
}
.productListingWrapper .productListing .tab-buttons li:hover,
.productListingWrapper .productListing .tab-buttons li.active {
  background: #000000;
  color: #ffffff;
}
.productListingWrapper .productListing .tabContent {
  margin-bottom: 48px;
}
.productListingWrapper .productListing .tabContent .tab-content {
  display: none;
  text-align: center;
}
.productListingWrapper .productListing .tabContent .tab-content.active {
  display: block;
}
.productListingWrapper .productListing .grid {
  padding: 16px 0;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 32px;
}
.productListingWrapper .productListing .grid .gridItem {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.productListingWrapper .productListing .grid .gridItem a {
  display: block;
  overflow: hidden;
  height: 100%;
}
.productListingWrapper .productListing .grid .gridItem a img {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  max-width: 310px;
  max-height: 510px;
  object-fit: cover;
}
.productListingWrapper .productListing .grid .gridItem a .hover {
  display: none;
  margin: 0 auto;
  opacity: 0;
}
.productListingWrapper .productListing .grid .gridItem a:hover .main {
  display: none;
}
.productListingWrapper .productListing .grid .gridItem a:hover .hover {
  opacity: 1;
  z-index: 1;
  display: block;
}
.productListingWrapper .productListing .grid .gridItem .itemName {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  font-family: "Instrument Sans", sans-serif;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.productListingWrapper .productListing .grid .gridItem .itemPrice {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  font-family: "Instrument Sans", sans-serif;
}
.productListingWrapper .productListing .grid .gridItem .btn {
  position: absolute;
  bottom: 75px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
  transition: all 0.2s ease-in;
  max-width: 294px;
  opacity: 0;
}
.productListingWrapper .productListing .grid .gridItem:hover .btn {
  bottom: 85px;
  opacity: 1;
}
.headerSticky {
  position: fixed !important;
  top: 0;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
}
.headerSticky .topBar img {
  filter: none;
}
.headerSticky .navigation ul li a {
  color: #0B0B0B;
}
.headerSticky .navigation ul li.dropdown .togglebtn {
  filter: invert(48%) sepia(32%) saturate(531%) hue-rotate(273deg) brightness(85%) contrast(82%);
}
.spacer {
  height: 135px;
  width: 100%;
}
.accordion {
  width: 100%;
}
.accordion ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
.accordion ul li {
  border-bottom: solid 1px #000000;
  cursor: pointer;
}
.accordion ul li .loadMore {
  color: #717680;
  font-size: 12px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  margin-bottom: 10px;
  padding-left: 15px;
  background: url(../img/plus.svg) left center no-repeat;
}
.accordion ul li .loadMore.active {
  background: url(../img/minus.svg) left center no-repeat;
}
.accordion ul li h5 {
  margin: 0;
  padding: 12px 24px;
  font-weight: 500;
  font-size: 16px;
  font-family: "Instrument Sans", sans-serif;
  text-transform: uppercase;
  background: url(../img/arrow-down-black.svg) 90% center no-repeat;
}
.accordion ul li.active h5 {
  background: url(../img/arrow-up-black.svg) 90% center no-repeat;
}
.accordion ul li .item {
  padding: 12px 24px;
  display: none;
}
.accordion ul li .item label {
  display: flex;
  width: 100%;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Instrument Sans", sans-serif;
  cursor: pointer;
  position: relative;
}
.accordion ul li .item label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  opacity: 0;
}
.accordion ul li .item label .inputValue {
  margin-left: 3px;
}
.accordion ul li .item label .inputValue:before {
  width: 18px;
  height: 18px;
  border: 1px solid #0B0B0B;
  background-color: #ffffff;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion ul li .item label .inputValue:after {
  width: 12px;
  height: 12px;
  border: 0;
  background-color: #000000;
  border-radius: 2px;
  position: absolute;
  left: 4px;
  top: 4px;
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.accordion ul li .item label input[type="checkbox"]:checked + span:after {
  opacity: 1;
}
.accordion ul li .item .colours {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5px;
  row-gap: 8px;
  margin-bottom: 10px;
}
.accordion ul li .item .colours span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  cursor: pointer;
  padding: 10px;
  border: solid 2px #ffffff;
}
.accordion ul li .item .colours span img {
  opacity: 0;
}
.accordion ul li .item .colours span.active {
  box-shadow: 0 0 0 1px currentColor;
}
.accordion ul li .item .colours span.active img {
  opacity: 1;
}
.accordion ul li .item .prints {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.accordion ul li .item .prints span {
  display: inline-flex;
}
.price-range-slider {
  width: 100%;
  float: left;
  padding: 10px 0;
}
.price-range-slider .range-value {
  margin: 0;
}
.price-range-slider .range-value input {
  width: 100%;
  background: none;
  color: #000;
  font-weight: initial;
  box-shadow: none;
  border: none;
  margin: 20px 0 20px 0;
  font-size: 14px;
  font-weight: 500;
  font-family: "Instrument Sans", sans-serif;
  word-spacing: 165px;
}
.price-range-slider .range-value input:focus {
  outline: none;
}
.price-range-slider .range-bar {
  border: none;
  background: #d1d1d1;
  height: 6px;
  width: 100%;
  border-radius: 20px;
}
.price-range-slider .range-bar .ui-slider-range {
  background: #000000;
  height: 6px;
}
.price-range-slider .range-bar .ui-slider-handle {
  border: none;
  border-radius: 25px;
  background: #000000;
  border: 2px solid #000000;
  height: 17px;
  width: 17px;
  top: -0.4em;
  cursor: pointer;
}
.price-range-slider .range-bar .ui-slider-handle + span {
  background: #000000;
}
/*--- /.price-range-slider ---*/
.productDetailWrapper {
  padding: 50px 0;
}
.productDetailWrapper .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.productDetailWrapper .productDetilSlider {
  max-width: 644px;
  width: 47.5%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.productDetailWrapper .productDetilSlider .thumbItem ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
  margin: 0;
  max-width: 100px;
}
.productDetailWrapper .productDetilSlider .thumbItem ul li {
  border: solid 2px transparent;
}
.productDetailWrapper .productDetilSlider .thumbItem ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productDetailWrapper .productDetilSlider .thumbItem ul li.active,
.productDetailWrapper .productDetilSlider .thumbItem ul li:hover {
  border: solid 2px #000000;
}
.productDetailWrapper .productDetail {
  max-width: 664px;
  width: 50%;
}
.productDetailWrapper .productDetail h1 {
  font-size: 36px;
  color: #000000;
  font-weight: 400;
  font-family: "IBM Plex Serif", serif;
  margin: 0 0 16px;
  line-height: 44px;
}
.productDetailWrapper .productDetail .mrp .mrp {
  color: #717680;
  text-transform: uppercase;
  margin-right: 8px;
  font-family: "Instrument Sans", sans-serif;
}
.productDetailWrapper .productDetail .mrp .price {
  font-size: 30px;
  font-weight: 600;
  color: #000000;
  font-family: "Instrument Sans", sans-serif;
}
.productDetailWrapper .productDetail .mrp p {
  font-size: 16px;
  color: #000000;
  font-family: "Instrument Sans", sans-serif;
  margin: 0;
}
.productDetailWrapper .productDetail hr {
  border: solid 1px #A2A2A2;
  margin: 16px 0;
}
.productDetailWrapper .productDetail .size {
  font-family: "Instrument Sans", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #000000;
}
.productDetailWrapper .productDetail .size label {
  font-weight: 500;
  font-size: 16px;
}
.productDetailWrapper .productDetail .size ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 8px;
}
.productDetailWrapper .productDetail .size ul li {
  padding: 15px;
  color: #000000;
  border: solid 2px #000000;
  cursor: pointer;
}
.productDetailWrapper .productDetail .size ul li:hover,
.productDetailWrapper .productDetail .size ul li.active {
  background-color: #000000;
  color: #ffffff;
}
.productDetailWrapper .productDetail .size .sizeChart {
  font-size: 14px;
  text-decoration: underline;
}
.productDetailWrapper .productDetail .height {
  font-family: "Instrument Sans", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.productDetailWrapper .productDetail .height label {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
}
.productDetailWrapper .productDetail .height .btnGroup {
  display: flex;
  gap: 8px;
}
.productDetailWrapper .productDetail .height .btnGroup .btn {
  border-width: 2px;
}
.productDetailWrapper .productDetail .height .btnGroup .btn:hover {
  background-color: #000000;
  color: #ffffff;
}
.productDetailWrapper .productDetail .quantity_ {
  font-family: "Instrument Sans", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  align-items: flex-start;
}
.productDetailWrapper .productDetail .quantity_ label {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
}
.productDetailWrapper .productDetail .quantity_ .quantity {
  width: 120px;
  height: 40px;
  border: 1px solid #D5D7DA;
  display: flex;
  justify-content: center;
  align-items: center;
}
.productDetailWrapper .productDetail .quantity_ .quantity .btn,
.productDetailWrapper .productDetail .quantity_ .quantity input {
  background: transparent;
  border: 0;
  text-align: center;
}
.productDetailWrapper .productDetail .quantity_ .quantity input {
  font-size: 16px;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 500;
}
.productDetailWrapper .productDetail .quantity_ .quantity .btn {
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}
.productDetailWrapper .productDetail .addtoCart {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.productDetailWrapper .productDetail .addtoCart .btn {
  flex-grow: 1;
  border-width: 2px;
}
.productDetailWrapper .productDetail .customizeDress {
  font-family: "Instrument Sans", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.productDetailWrapper .productDetail .customizeDress label {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
}
.productDetailWrapper .productDetail .customizeDress .febrics {
  padding: 16px;
  border: 1px solid #A2A2A2;
}
.productDetailWrapper .productDetail .customizeDress .btnGroup {
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 16px;
}
.productDetailWrapper .productDetail .customizeDress .btnGroup .btn {
  flex-grow: 1;
  border-width: 2px;
  max-width: 272px;
}
.productDetailWrapper .productDetail .customizeDress .btnGroup .clear {
  text-decoration: underline;
}
.productDetailWrapper .productDetail .customizeDress .selectedFebric {
  border-radius: 4px;
  border: 1px solid #D1D1D1;
  padding: 16px;
  display: flex;
  gap: 8px;
}
.productDetailWrapper .productDetail .customizeDress .selectedFebric .img {
  max-width: 195px;
  width: 33%;
}
.productDetailWrapper .productDetail .customizeDress .selectedFebric .info {
  max-width: 377px;
  width: 77%;
  display: flex;
  flex-direction: column;
  padding: 16px 24px;
  gap: 10px;
}
.productDetailWrapper .productDetail .customizeDress .selectedFebric .info h5 {
  margin: 0;
  font-size: 18px;
}
.productDetailWrapper .productDetail .customizeDress .selectedFebric .info p {
  font-size: 12px;
  margin: 0;
  line-height: 18px;
}
.productDetailWrapper .productDetail .accordion .item {
  display: flex;
  justify-content: flex-start;
}
.productDetailWrapper .productDetail p {
  text-align: left;
  font-weight: 500;
  font-size: 16px;
  line-height: 34px;
  font-family: "Instrument Sans", sans-serif;
  text-indent: 0;
  display: inline-block;
  max-width: 532px;
  width: 100%;
  word-wrap: break-word;
}
.searchBar {
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}
.searchBar .container {
  margin: 5% auto 0;
}
.searchBar .group {
  display: flex;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  position: relative;
}
.searchBar .group input {
  width: 100%;
  padding: 20px;
  border: solid 2px #000000;
  font-size: 20px;
  font-family: "Instrument Sans", sans-serif;
}
.searchBar .group input:focus {
  outline: none;
}
.searchBar .group .searchBtn {
  position: absolute;
  right: 90px;
  top: 20px;
  border: 0;
  background: transparent;
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
}
.searchBar .close {
  width: 68px;
  height: 68px;
  border: 0;
  cursor: pointer;
  background: transparent;
}
.searchBar {
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in;
}
.searchBar.open {
  opacity: 1;
  visibility: visible;
}
.modalOverlay {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}
.modal {
  background-color: #ffffff;
  width: 98%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 992;
  font-family: "Instrument Sans", sans-serif;
}
.modal .modalHeader {
  display: flex;
  width: 100%;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: solid 1px #000000;
}
.modal .modalHeader h1 {
  font-size: 36px;
  font-family: "IBM Plex Serif", serif;
  margin: 0;
  font-weight: 400;
  line-height: 44px;
}
.modal .modalHeader .productCount {
  margin-left: 15px;
  font-weight: 500;
}
.modal .modalHeader .close {
  margin-left: auto;
  align-self: flex-start;
  cursor: pointer;
}
.modal .modalContent {
  display: flex;
  gap: 16px;
  padding: 24px 0;
}
.modal .modalContent .febricCategories {
  max-width: 280px;
  width: 22%;
}
.modal .modalContent .febricCategories h5 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 24px;
}
.modal .modalContent .febricCategories .categories {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.modal .modalContent .febricCategories .categories .btn {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.modal .modalContent .febrics {
  max-width: 602px;
  width: 47%;
  padding: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  overflow-y: auto;
  border: 1px solid #A2A2A2;
}
.modal .modalContent .febrics .img {
  width: 107px;
  height: 107px;
  border-radius: 4px;
  overflow: hidden;
}
.modal .modalContent .febrics .img img {
  object-fit: cover;
}
.modal .modalContent .selectedFebric_ {
  background: #F3F3F3;
  padding: 16px;
  max-width: 380px;
  width: 30%;
  min-height: 100%;
  border-radius: 4px;
}
.modal .modalContent .selectedFebric_ .selectedFebric {
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal .modalContent .selectedFebric_ .selectedFebric .info {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 16px 24px;
  gap: 10px;
  border-radius: 4px;
  background-color: #ffffff;
}
.modal .modalContent .selectedFebric_ .selectedFebric .info h5 {
  margin: 0;
  font-size: 18px;
}
.modal .modalContent .selectedFebric_ .selectedFebric .info p {
  font-size: 12px;
  margin: 0;
  line-height: 18px;
}
.modal .modalFooter {
  border-top: solid 1px #000;
  padding: 24px 0 0;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}
.modalOverlay,
.modal {
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in;
}
.modalOverlay.open,
.modal.open {
  opacity: 1;
  visibility: visible;
}
