body {
  background-color: #fffff4;
}

#product_spotlight {
  padding: calc(var(--paddingY) / 2) 0px;
  position: relative;
}
#product_spotlight .product_spotlight-next, #product_spotlight .product_spotlight-prev {
  cursor: pointer;
}
#product_spotlight > img {
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: -1;
}
#product_spotlight .swiper-slide.swiper-slide-next > img {
  transform: translateX(-300px);
}
#product_spotlight .swiper-slide.swiper-slide-prev > img {
  transform: translateX(300px);
}
#product_spotlight .swiper-slide.swiper-slide-active > img {
  transform: translateX(-150px);
}
#product_spotlight .swiper-slide {
  max-height: 768px;
  display: block;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
#product_spotlight .swiper-slide > img {
  width: calc(100% + 300px);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 1s ease;
}
#product_spotlight .swiper-slide .product_detail {
  width: 30%;
  min-width: 400px;
  max-width: 600px;
  height: 100%;
  background: rgba(0, 0, 0, 0.5019607843);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
  padding: 40px;
  display: flex;
  gap: 40px;
  flex-direction: column;
  justify-content: center;
}
#product_spotlight .swiper-slide .product_detail p {
  font-size: var(--font-20);
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
#product_spotlight .swiper-slide .product_detail h2 {
  font-size: var(--font-46);
  line-height: 1.2;
  font-weight: 300;
  color: #fff;
}
#product_spotlight .product_spotlight_bottom {
  margin-top: clamp(2.5rem, 1.5625rem + 2.5vw, 3.75rem);
  padding: 0px var(--paddingX);
}
#product_spotlight .product_spotlight_bottom .product_spotlight_buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
#product_spotlight .product_spotlight_bottom .product_spotlight_buttons button {
  padding: 15px;
  height: var(--navBtn);
  width: var(--navBtn);
  background-color: #d4ff32;
  border: 0px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
}
#product_spotlight .product_spotlight_bottom .product_spotlight_buttons button img {
  height: 100%;
  width: 100%;
  opacity: 1;
}
#product_spotlight .product_spotlight_bottom .product_spotlight_buttons button.swiper-button-disabled {
  background-color: #e4e4e4;
}
#product_spotlight .product_spotlight_bottom .product_spotlight_buttons button.swiper-button-disabled img {
  opacity: 0.4;
}
#product_spotlight .product_spotlight_bottom .product_spotlight_buttons .product_spotlight-prev img {
  transform: rotate(180deg);
}

#explore_products {
  padding: var(--paddingY) var(--paddingX);
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}
#explore_products > img {
  width: 100%;
  position: absolute;
  transform: rotate(193deg);
  inset: 0;
  z-index: 0;
  opacity: 0.2;
}
#explore_products .heading {
  position: relative;
}
#explore_products .heading h2 {
  color: var(--secondaryBlack);
}
#explore_products .explore_products_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  position: relative;
}
#explore_products .explore_products_container .products_item {
  position: relative;
  overflow: hidden;
  display: grid;
}
#explore_products .explore_products_container .products_item .product_image {
  position: relative;
  width: 100%;
  aspect-ratio: 345/295;
  overflow: hidden;
}
#explore_products .explore_products_container .products_item .product_image video, #explore_products .explore_products_container .products_item .product_image img {
  width: 100%;
  height: calc(100% + 100px);
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: 0;
}
#explore_products .explore_products_container .products_item .product_detail {
  margin-top: 20px;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#explore_products .explore_products_container .products_item .product_detail .product_title {
  color: var(--blue);
  font-size: var(--font-24);
  line-height: 1.5;
  font-weight: 700;
}
#explore_products .explore_products_container .products_item .product_detail .product_description {
  color: var(--secondaryBlack);
  font-size: var(--font-14);
  margin: 10px 0px;
  font-weight: 300;
}
#explore_products .explore_products_container .products_item .product_detail button {
  transform: scale(0.8);
  transform-origin: left;
  margin-top: auto;
}

#explore_other_categories {
  padding: var(--paddingY) 0px;
}
#explore_other_categories .explore_other_head {
  padding: 0px var(--paddingX);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spaceBelow_heading);
}
#explore_other_categories .explore_other_head .heading h2 {
  color: var(--secondaryBlack);
}
#explore_other_categories .explore_other_buttons {
  display: flex;
  gap: 15px;
}
#explore_other_categories .explore_other_buttons button {
  padding: 15px;
  height: var(--navBtn);
  width: var(--navBtn);
  background-color: #d4ff32;
  border: 0px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
}
#explore_other_categories .explore_other_buttons button img {
  height: 100%;
  width: 100%;
  opacity: 1;
}
#explore_other_categories .explore_other_buttons button.swiper-button-disabled {
  background-color: #e4e4e4;
}
#explore_other_categories .explore_other_buttons button.swiper-button-disabled img {
  opacity: 0.4;
}
#explore_other_categories .explore_other_buttons .explore_other-prev img {
  transform: rotate(180deg);
}
#explore_other_categories .in_mobile_explore {
  display: none;
  padding: 0 var(--paddingX);
  justify-content: flex-end;
}
#explore_other_categories .explore_other_categories_container .explore_other_categories {
  padding-left: var(--paddingX);
  padding-right: var(--paddingX);
}
#explore_other_categories .explore_other_categories_container .explore_other_categories .swiper-slide .category_image > img {
  transform: translateX(-120px);
}
#explore_other_categories .explore_other_categories_container .explore_other_categories .swiper-slide.swiper-slide-next .category_image > img {
  transform: translateX(-80px);
}
#explore_other_categories .explore_other_categories_container .explore_other_categories .swiper-slide.swiper-slide-active .category_image > img {
  transform: translateX(-40px);
}
#explore_other_categories .explore_other_categories_container .explore_other_categories .swiper-slide.swiper-slide-prev .category_image > img {
  transform: translateX(0px);
}
#explore_other_categories .explore_other_categories_container .explore_other_categories .category_item .category_image {
  width: 100%;
  aspect-ratio: 526/450;
  position: relative;
  overflow: hidden;
  display: block;
}
#explore_other_categories .explore_other_categories_container .explore_other_categories .category_item .category_image > img {
  width: calc(100% + 120px);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 1s ease-in-out;
}
#explore_other_categories .explore_other_categories_container .explore_other_categories .category_item .category_image p {
  white-space: nowrap;
  position: absolute;
  bottom: calc(var(--font-20) * 1.3);
  right: calc(var(--font-20) * 1.3);
}
#explore_other_categories .explore_other_categories_container .explore_other_categories .category_item .category_title {
  margin: calc(var(--font-20) * 1.5) var(--font-20);
  text-decoration: none;
  font-size: var(--font-46);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--secondaryBlack);
  display: block;
}

.swiper {
  width: 100%;
  height: 100%;
}

#our_clients .heading {
  padding: 0 var(--paddingX);
}

@media screen and (max-width: 1200px) {
  #explore_products .explore_products_container {
    grid-template-columns: repeat(2, 1fr);
  }
  #product_spotlight .swiper-slide .product_detail {
    width: -moz-fit-content;
    width: fit-content;
    min-width: auto;
  }
}
@media screen and (max-width: 768px) {
  #explore_products .explore_products_container {
    grid-template-columns: 1fr;
  }
  #explore_other_categories .explore_other_buttons {
    display: none;
  }
  #explore_other_categories .in_mobile_explore {
    display: flex;
  }
  #product_spotlight .swiper-slide {
    aspect-ratio: 4/5;
  }
  #product_spotlight .swiper-slide .product_detail {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    max-width: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    gap: 20px;
  }
}
@media screen and (max-width: 500px) {
  #product_spotlight {
    padding: var(--paddingY) 0px;
  }
  #explore_products .explore_products_container .products_item .product_image {
    aspect-ratio: 1/1.2;
  }
  #explore_other_categories .explore_other_categories_container .explore_other_categories .category_item .category_image {
    aspect-ratio: 1/1.2;
  }
}/*# sourceMappingURL=style.css.map */