@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700|Hind:400,500,600,700,800&display=swap");

:root {
  --primary-color: #0079c2;
  --primary-color-dark: #013360;
  --secondary-color: #ea9320;
  --primary-dark: #24272b;
  --primary-dark-intense: #1a1a1a;
  --primary-light: #f4ebd8;
  --text-color: #383838;
  --text-color-light: #979797;
  --primary-bg-light: #f4ebd8;
  --light-bg: #f4f4f4;
  --base-letter-spacing: 0.05rem;
  --header-height: 120px;
  --stripe-width: 250px;
  --header-nav-offset: 80px;
  --section-gap: 4.375rem;
  --color-alt-1: #ffdfdf;
  --color-alt-2: #e6f2f9;
  --color-alt-3: #cdb7e9;
  --font-hind: "Hind", sans-serif;
  --font-mont: "Montserrat", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  outline: 0;
}

body {
  font-family: var(--font-hind);
  font-weight: 400;
  min-width: 360px;
}

a,
button,
.smooth {
  -webkit-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
  transition: all linear 0.2s;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-primary-dark {
  background-color: var(--primary-color-dark) !important;
}

.bg-primary-light {
  background-color: var(--primary-bg-light) !important;
}

.bg-dark {
  background-color: var(--primary-dark) !important;
}

.bg-input {
  background-color: #eee;
  border: none;
  outline: none;
}

.img-container {
  overflow: hidden;
  position: relative;
}

.img-container img {
  width: 100%;
}

.img-cover,
.img-contain {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-cover {
  object-fit: cover;
}

.img-contain {
  object-fit: contain;
}

/* custom colors */
.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-color {
  color: var(--text-color) !important;
}

.text-primary-dark {
  color: var(--primary-color-dark) !important;
}

.bg-light {
  background-color: var(--light-bg) !important;
}

.bg-soft {
  background-color: #f8f8f8 !important;
}

/* custom spacing */
.section-gap-top {
  padding-top: var(--section-gap);
}

.section-gap-bot {
  padding-bottom: var(--section-gap);
}

.wrap-balance {
  text-wrap: balance;
}

.br-6 {
  border-radius: 6px;
}

.br-8 {
  border-radius: 8px;
}

/* custom layout */
.flex-1 {
  flex: 1;
}

.shrink-0 {
  flex-shrink: 0;
}

.ratio-1 {
  aspect-ratio: 1/1;
}

.ratio-4_3 {
  aspect-ratio: 4/3;
}

.ratio-4_5 {
  aspect-ratio: 4/5;
}

.ratio-5_4 {
  aspect-ratio: 5/4;
}

.ratio-16_10 {
  aspect-ratio: 16/10;
}

.all-block>* {
  display: block;
}

.rounded-circle {
  border-radius: 50%;
}

.img-blend {
  mix-blend-mode: darken;
}

.flex-break {
  flex: 1 0 100% !important;
  height: 0 !important;
}

/* custom typography */
.sub-title {
  font-size: 18px;
  color: var(--secondary-color);
  letter-spacing: var(--base-letter-spacing);
  text-transform: uppercase;
  font-weight: 400;
  display: block;
}

*[class*="heading-"] {
  font-family: var(--font-mont);
  color: var(--primary-dark);
  font-weight: 600;
}

*[class*="heading-"]>a {
  color: inherit;
}

.heading-main {
  font-size: clamp(2.125rem, 1.9756rem + 0.6639vw, 2.625rem);
}

.heading-mid {
  font-size: 2rem;
}

.heading-lg-md {
  font-size: 30px;
}

.heading-sm {
  font-size: 18px;
}

.heading-info {
  font-size: 1.625rem;
}

.text-sm {
  font-size: 0.875rem !important;
}

.leading-sm {
  letter-spacing: var(--base-letter-spacing);
}

.leading-none {
  letter-spacing: 0 !important;
}

.line-heading {
  display: block;
  color: var(--primary-dark);
}

*[class*="title-"] {
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: var(--base-letter-spacing);
}

.title-showcase {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.4;
}

.title-card {
  font-size: 1.5rem;
}

.title-card-content {
  font-size: 1.25rem;
}

.title-lite {
  font-size: 1.125rem;
}

.title-base {
  font-size: 1rem;
}

.underline-heading {
  position: relative;
  padding-bottom: 1rem;
}

.underline-heading::after {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--primary-dark);
  position: absolute;
  bottom: 0;
  left: 0;
}

.normal-text {
  font-size: 1rem;
  color: var(--primary-dark);
}

.single-line-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

/* custom button and links */
a {
  text-decoration: none;
  display: inline-block;
}

.inline-link {
  display: inline;
  color: inherit;
}

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

.hover-secondary:hover {
  color: var(--secondary-color);
}

.link {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: var(--base-letter-spacing);
  color: var(--base-letter-spacing);
  text-decoration: underline solid var(--primary-dark) 1px;
  text-underline-offset: 10px;
}

.link:hover {
  color: var(--primary-color);
  text-decoration-color: var(--primary-color);
}

.link-text {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  color: var(--primary-dark);
}

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

.link-btn {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--text-color);
}

.link-btn:hover {
  color: var(--primary-color-dark);
}

.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: var(--primary-dark);
}

.icon-btn:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.icon-btn-flat {
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: 1px solid #ddd;
}

.icon-btn-flat:hover {
  border-color: var(--primary-color);
}

.main-btn,
.outline-btn,
.alt-btn {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 35px;
  letter-spacing: var(--base-letter-spacing);
  border: none;
  border-radius: 6px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  outline: none !important;
  height: 3rem;
}

.main-btn-secondary,
.main-btn-secondary:hover {
  background-color: var(--secondary-color) !important;
  color: #fff;
}

.main-btn-shrinked {
  height: 2.5rem !important;
}

.alt-btn {
  height: 2.5rem !important;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
  background-color: var(--primary-bg-light);
  color: var(--primary-dark);
}

.outline-btn {
  background-color: transparent;
  border: 1px solid var(--primary-dark);
  color: var(--primary-dark);
  gap: 0 0.75rem;
  font-weight: 400;
  height: 46px;
}

.btn-dark {
  background-color: var(--primary-dark);
}

.main-btn:hover {
  background-color: var(--primary-color-dark);
  color: #fff;
}

.btn-dark:hover,
.alt-btn:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.title-link {
  display: inline;
  color: inherit;
}

.outline-btn:hover {
  background-color: var(--primary-dark);
  color: #fff;
}

.clean-btn {
  background-color: transparent;
  border: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.clean-btn :is(svg, i, img) {
  flex-shrink: 0;
}

.counter-btn {
  font-size: 26px;
}

.theme-tabs .nav-tabs .nav-link {
  font-size: 1.125rem;
  border: none;
  border-bottom: 1px solid #ddd;
  color: var(--text-color-light);
}

.theme-tabs .nav-tabs {
  margin: 0 -1rem;
}

.theme-tabs .nav-tabs .nav-link.active {
  border-bottom: 1px solid var(--primary-dark-intense);
  color: var(--primary-dark);
  font-weight: 500;
}

.btn-check:focus+.btn-dark,
.btn-dark:focus {
  box-shadow: none;
}

/* header */
.header-nav,
.mobile-nav {
  background-color: #fff;
}

.nav-left {
  order: 0;
}

.nav-logo {
  width: fit-content;
  /* order: 1; */
  height: 65px;
}

.mobile-logo {
  height: 65px;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.foot-logo-container {
  max-width: 85px;
  height: 85px;
}

.nav-right {
  order: 2;
}

.primary-nav>li {
  padding: 30px 10px;
}

.primary-nav-text {
  font-size: 18px;
  color: var(--primary-dark);
  text-transform: capitalize;
  font-weight: 600;
}

@media screen and (min-width: 1400px) {
  .primary-nav>li {
    padding: 30px 15px;
  }

  .primary-nav-text {
    font-size: 1rem;
  }
}

.top-nav .account-dropdown .dropdown-menu li a {
  color: var(--text-color);
}

.account-dropdown .dropdown-menu {
  border-radius: 4px;
  border-color: #eee;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
  background-color: var(--light-bg);
}

.dropdown-item:focus {
  background-color: var(--primary-dark);
  color: #fff;
}

.full-width-dropdown {
  position: absolute;
  left: 0;
  top: var(--header-nav-offset);
  width: 100%;
  background-color: #fff;
  z-index: 99;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  display: none;
}

.primary-nav>li:hover {
  background-color: #fff;
}

.primary-nav>li:hover .full-width-dropdown {
  display: block;
}

.off-canvas-menu {
  width: 300px;
}

.accordion-nav-item {
  border: none;
  border-top: 1px solid #ddd;
  padding: 12px 0;
}

.accordion-nav-item .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-nav-item .accordion-header a {
  text-transform: uppercase;
  color: var(--primary-dark);
  letter-spacing: var(--base-letter-spacing);
  font-size: 1rem;
  font-weight: 500;
}

.accordion-btn {
  -webkit-transition: transform linear 0.2s;
  transition: transform linear 0.2s;
}

.accordion-btn[aria-expanded="true"] {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.full-search {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #eee;
}

/* product detail variations  */
label.radio-input {
  display: inline-block;
  position: relative;
  margin-right: 54px;
  margin-bottom: 34px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
}

label.radio-input input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

label.radio-input .radio-button {
  position: absolute;
  top: 0;
  left: 0;
  /* height: 30px; */
  /* width: 30px !important; */
  /* transition: all 0.65s ease; */
}

label.radio-input input[type="radio"]:checked+.radio-button {
  border-color: var(--secondary-color);
  border-width: 2px;
}

label.radio-input .radio-value {
  position: absolute;
  height: 100%;
  width: 100%;
  color: var(--text-color);
  font-size: 16px;
  display: flex;
  font-weight: 300;
  justify-content: center;
  align-items: center;
  text-align: center;
}

label.radio-input input[type="radio"]:checked+.radio-button .radio-value {
  color: #fff;
}

.colored-radio .radio-button {
  border: 1px solid #bbb;
  border-radius: 50% !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

.clean-radio .radio-button {
  border: 1px solid #ddd;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--text-color);
  width: auto !important;
  width: 50px !important;
  height: 45px !important;
  padding-top: 5px;
}

.label-check-mark {
  opacity: 0;
  /* mix-blend-mode: revert; */
  color: #fff;
}

.clean-radio input[type="radio"]:checked+.radio-button {
  background: #fff !important;
  border: 1px solid #c7c7c7;
  color: #000;
}

.colored-radio input[type="radio"]:checked+.radio-button {
  border: 1px solid #c7c7c7 !important;
}

.colored-radio input[type="radio"]:checked+.radio-button .label-check-mark {
  opacity: 1;
}

.colored-radio i {
  position: absolute;
  right: 0;
  top: -2px;
}

/* carousel and banners */
.slick-text .slick-slide {
  padding-right: 150px;
}

/* 
.banner-carousel .carousel-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
} */

.banner-captions .item-col {
  position: relative;
  overflow: hidden;
}

.banner-carousel .banner-image-col {
  height: 600px;
  overflow: hidden;
}

.banner-carousel .banner-image-col::before {
  --stripe-width: 250px;
  content: "";
  position: absolute;
  width: var(--stripe-width);
  background-color: var(--primary-color);
  height: 100%;
  left: calc(65% - var(--stripe-width) / 2);
}

.banner-carousel .captions-col h2 {
  font-size: 40px;
}

.banner-carousel .captions-col p {
  font-size: 18px;
}

.banner-carousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
}

.banner-carousel .carousel-indicators button.active {
  background-color: var(--secondary-color);
}

.banner-captions {
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.caption-contents {
  max-width: 450px;
}

.banner-image {
  height: calc(100vh - var(--header-height));
  max-height: 500px;
}

.carousel-left-align .slick-track {
  margin-left: 0 !important;
}

.products-carousel .carousel-btn-next {
  margin-top: 20px;
  -webkit-transform: translateX(25px);
  transform: translateX(25px);
}

.products-carousel .carousel-btn-prev {
  position: absolute;
  top: auto;
  bottom: 0;
  left: calc(50% - 50px);
}

.carousel-btn {
  color: var(--primary-dark);
}

.carousel-btn:hover {
  background-color: var(--primary-dark);
  color: #fff;
  border-color: var(--primary-dark);
}

/* intro */
.intro-cover-image {
  aspect-ratio: 5/4;
}

.intro-actions {
  margin-top: -25px;
}

/* show case */
.hero-showcase-row {
  gap: 28px 0;
}

.showcase-card {
  height: 220px;
}

.showcase-card-img img {
  object-position: bottom center;
}

/* cards */
.product-card-img {
  position: relative;
}

.product-card-badge {
  background-color: var(--primary-color);
  font-size: 0.875rem;
  padding: 2px 8px;
  color: #fff;
  font-weight: 400;
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 1;
}

.product-card-img .img-container {
  background-color: #f8f8f8;
}

.product-card-img img {
  mix-blend-mode: darken;
}

.product-card-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--primary-dark);
}

.product-card-subtitle {
  font-size: 0.875rem;
  color: var(--text-color);
}

.card-action-btn {
  background-color: var(--primary-bg-light);
  color: var(--primary-dark);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  z-index: 2;
}

.card-alt-img {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: opacity linear 0.2s;
  z-index: 1;
}

.card-action-btn:hover {
  background-color: var(--primary-dark);
  color: #fff;
}

.product-card:hover .card-action-btn,
.product-card:hover .card-alt-img {
  opacity: 1;
}

.product-card-text {
  font-size: 1rem;
  font-weight: 500;
}

.badge-title {
  background-color: var(--primary-color);
  display: inline-block;
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  padding: 1rem 2rem;
}

.clean-col-card .titles-wrapper {
  position: absolute;
  left: 0;
  bottom: -25px;
  width: 100%;
}

.info-card {
  background-image: url(../images/background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.info-overview {
  max-width: 265px;
  background-color: var(--primary-dark);
  padding: 1rem;
}

a.info-overview:hover {
  background-color: var(--primary-color);
}

.info-icon {
  font-size: 18px;
}

.lite-icon {
  color: var(--primary-dark);
}

.clip-hex {
  -webkit-clip-path: polygon(50% 0%,
      95% 25%,
      95% 76%,
      50% 100%,
      5% 76%,
      5% 24%);
  clip-path: polygon(50% 0%, 95% 25%, 95% 76%, 50% 100%, 5% 76%, 5% 24%);
}

.rainbow-showcase>div:nth-of-type(3n + 1) .showcase-card {
  background-color: var(--color-alt-1);
}

.rainbow-showcase>*:nth-of-type(3n - 1) .showcase-card {
  background-color: var(--color-alt-2);
}

.rainbow-showcase>*:nth-of-type(3n - 3) .showcase-card {
  background-color: var(--color-alt-3);
}

.inline-card {
  --image-width: 110px;
}

.inline-card-md {
  --image-width: 95px;
}

.inline-card .img-container {
  width: var(--image-width);
}

.inline-card-contents {
  width: calc(100% - var(--image-width));
}

.inline-card-contents .title-lite {
  width: calc(100% - 22px);
}

.inline-card-action {
  max-width: 300px;
}

.inline-card-close {
  line-height: 28px;
  font-size: 38px;
  color: var(--text-color-light);
}

.small-counter {
  border: 1px solid var(--text-color-light);
  color: var(--text-color);
  width: 90px;
  height: 30px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}

.small-counter .clean-btn {
  height: 28px;
  width: 28px;
  display: inline-flex;
  font-size: 22px;
  justify-content: center;
  align-items: center;
}

.color-inverted {
  -webkit-filter: invert(100%);
  filter: invert(100%);
}

.rating-stars i {
  font-size: 1rem !important;
}

.absolute-wishlist {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
}

.discount-abs {
  position: absolute;
  bottom: 2.65rem;
  right: 16px;
  font-weight: 600;
  background-color: var(--secondary-color);
  color: #fff;
}

.absolute-wishlist:hover {
  background-color: var(--primary-dark) !important;
}

/* carousel */
.slide-gap .slick-slide {
  margin: 0 0.75rem;
}

.abs-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.heading-abs-content {
  background-color: rgba(236, 236, 236, 0.8);
  color: var(--primary-dark-intense);
  font-size: 30px;
  padding: 0.75rem 1rem;
}

.product-carousel-thumbs {
  width: 100%;
  position: relative;
  margin: 0;
  gap: 1rem;
}

.product-carousel-thumbs [data-bs-target] {
  max-width: 90px;
}

@media screen and (min-width: 576px) {
  .product-carousel-thumbs {
    width: 90px;
  }

  .product-carousel-thumbs [data-bs-target] {
    max-width: 100%;
  }
}

.product-carousel-thumbs [data-bs-target] {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  margin: 0;
  background-clip: border-box;
  border: none;
  opacity: 1;
  text-indent: 0;
  border: 1px solid transparent;
}

.product-carousel-thumbs [data-bs-target].active {
  border-color: var(--primary-color);
}

.product-carousel :is(.carousel-control-next, .carousel-control-prev),
.carousel-btn {
  height: 40px;
  width: 40px;
  top: calc(50% - 20px);
  border: 1px solid var(--primary-dark);
  background-color: #fff;
}

.product-carousel :is(.carousel-control-next-icon, .carousel-control-prev-icon) {
  background-size: 75% 75%;
  filter: invert(100%);
}

@media screen and (orientation: portrait) {
  .inner-banner-carousel {
    height: calc(50vh - var(--header-height)) !important;
    min-height: 400px !important;
  }

  .mobile-nav .mobile-logo {
    height: 65px;
  }
}

/* form and inputs */
.letter-form {
  max-width: 650px;
}

.common-label {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.fixed-form {
  max-width: 530px;
}

.fixed-form-lg {
  max-width: 650px;
}

.form-control:not(input[type="radio"], input[type="checkbox"], textarea),
.form-select {
  height: 2.5rem;
  border-radius: 0;
  font-size: 0.938rem;
}

.block-input {
  border-color: #979797;
  height: 2.875rem !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-dark);
  box-shadow: 0 0 5px rgba(58, 58, 58, 0.8);
}

.input-mid {
  height: 2.5rem;
  font-size: 0.875rem;
}

.counter {
  max-width: 120px;
}

.pw-toggle {
  position: absolute;
  right: 0.75rem;
  top: calc(50% - 10px);
  height: 20px;
  width: 20px;
  cursor: pointer;
}

.pw-toggle svg {
  vertical-align: unset;
}

/* alert and badges */
.dot-badge {
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.dot-badge::before {
  content: "";
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background-color: #979797;
  position: absolute;
  left: 0;
  top: calc(50% - 8px);
}

.dot-badge[data-status="dispatched"]::before {
  background-color: #0d6efd;
}

.dot-badge[data-status="pending"]::before {
  background-color: #0078ff;
}

.dot-badge[data-status="delivered"]::before {
  background-color: green;
}

/* top nav */
.top-nav {
  list-style-type: none;
  display: inline-flex;
  margin: 0;
  padding: 0;
}

.top-nav li a {
  color: #fff;
  margin-right: 0.65em;
}

.top-nav.social-links li a {
  /* color: var(--secondary-color); */
  font-size: 18px;
}

.my-cart {
  position: relative;
}

/* footer */
.mapFrame iframe {
  width: 100%;
  height: 25vh;
}

.secondary-nav li {
  margin-bottom: 0.5rem;
}

.secondary-nav li a {
  color: var(--primary-dark);
  font-family: var(--font-hind);
}

.secondary-nav li a:hover {
  color: var(--primary-color);
}

.foot-nav-title {
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-mont);
  color: var(--primary-color);
  display: block;
  margin-bottom: 1rem;
}

.footer-socials li a {
  color: var(--secondary-color);
  margin-right: 1rem;
  font-size: 22px;
}

/* home featured service */

.featured__service .icon-wrapper {
  width: 60px;
  height: 60px;
  position: relative;
  overflow: hidden;
}

.featured__service .icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.img-contained {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* brands */

.brand-img-container {
  aspect-ratio: 5/3;
}

.brand-image-icons {
  border: 1px solid #eee;
  border-radius: 6px;
  height: 80px;
  padding: 10px 15px;
}

.brands-row {
  max-width: 1024px;
  flex-wrap: wrap;
}

.brand-image {
  width: 33%;
  padding: 0.25rem 0.5rem;
}

.brand-image img {
  width: 100%;
}

@media screen and (min-width: 576px) {
  .brand-image {
    width: 20%;
    padding: 0.25rem 0.75rem;
  }
}

@media screen and (hover: hover) {
  .clean-carousel-img .abs-content {
    opacity: 0;
  }

  .clean-carousel-img:hover .abs-content {
    opacity: 1;
  }
}

/* story */
.intro-info-card {
  min-height: 310px;
}

.intro-info-icon {
  height: 180px;
  width: 180px;
  background-image: url(../images/icon-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-info-icon img {
  width: 50px;
}

.offset-icon-intro {
  padding-right: 90px;
  padding-bottom: 80px;
}

.offset-icon-intro .intro-info-icon {
  margin-right: -90px;
}

/* product details */
.product-actions {
  max-width: 500px;
}

.reviews_style i {
  color: #ccc;
}

/* pyramid layout */
.home-brands {
  max-width: 1050px;
}

/* others */
.custom-dropdown .dropdown-item.active,
.custom-dropdown .dropdown-item:active {
  background-color: var(--primary-color);
}

.filter-components {
  margin-bottom: 20px;
}

.filter-title {
  display: flex;
  justify-content: space-between;
}

.filter-components h6 {
  text-transform: uppercase;
}

.filter-components .filter-title {
  cursor: pointer;
}

.wishlist-list a.icon-btn {
  display: none;
}

.order-info {
  gap: 2px 22px;
}

/* //order detail status  */
#order-detail-status li {
  position: relative;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--heading-text);
}

#order-detail-status li:not(:last-child) {
  margin-right: 174px;
}

#order-detail-status li .rounded-btn {
  background-color: inherit;
  color: inherit;
}

#order-detail-status li p {
  position: absolute;
  top: 40px;
  white-space: nowrap;
  color: var(--primary-dark);
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
}

#order-detail-status li:not(:last-child) {
  background-color: var(--primary-color);
  color: #fff;
}

#order-detail-status li:last-child {
  background-color: #f4f4f4;
  color: var(--heading-text);
}

#order-detail-status li:first-child::after {
  content: "";
  position: absolute;
  width: 174px;
  height: 4px;
  background-color: var(--primary-color);
  top: 50%;
  transform: translate(0%, -50%);
  left: 100%;
}

#order-detail-status li:last-child:before {
  content: "";
  position: absolute;
  width: 174px;
  height: 4px;
  background-color: #f4f4f4;
  top: 50%;
  transform: translate(0%, -50%);
  right: 100%;
}

#order-detail-status li.delivered {
  background-color: var(--primary-color);
  color: #fff;
}

.descriptions :is(tbody, td, tfoot, th, thead, tr) {
  border: 1px solid #c7c7c7 !important;
  border-width: 1px solid !important;
  padding: 6px 8px;
}

#order-detail-status li.delivered::before {
  content: "";
  position: absolute;
  width: 174px;
  height: 4px;
  background-color: var(--primary-color);
  top: 50%;
  transform: translate(0%, -50%);
  right: 100%;
}

/* write review rating  */
#rating-review .rating-group {
  display: inline-flex;
  overflow: hidden;
}

#rating-review .rating__icon {
  pointer-events: none;
}

#rating-review .rating__input {
  position: absolute !important;
  left: -9999px !important;
}

#rating-review .rating__input--none {
  display: none;
}

#rating-review .rating__label {
  cursor: pointer;
  padding: 0 0.1em;
  font-size: 1.15rem;
}

#rating-review .rating__icon--star {
  color: var(--primary-color);
}

#rating-review .rating__input:checked~.rating__label .rating__icon--star {
  color: #ddd;
}

#rating-review .rating-group:hover .rating__label .rating__icon--star {
  color: var(--primary-color);
}

#rating-review .rating__input:hover~.rating__label .rating__icon--star {
  color: #ddd;
}

.blog-img-large {
  width: 100%;
  max-height: 70vh;
}

.blog-col:hover .link {
  color: #0d6efd;
  text-decoration-color: #0d6efd;
}

.cart-loaded::after {
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  position: absolute;
  right: -4px;
  top: -4px;
  background-color: var(--primary-color);
}

.my-cart .cart-counter {
  position: absolute;
  right: -7px;
  top: -7px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

@media screen and (max-width: 575px) {
  .heading-mid {
    font-size: 1.625rem;
  }

  .main-btn,
  .outline-btn,
  .alt-btn {
    font-size: 0.938rem;
    padding: 10px 20px;
  }

  .pyramid-row>*:nth-child(14) {
    flex: unset !important;
  }

  .pyramid-row>*:nth-of-type(n=1) {
    padding: 0.25rem 0.75rem;
  }

  #order-detail-status li:first-child::after,
  #order-detail-status li:last-child:before {
    width: 100px;
  }

  #order-detail-status li:not(:last-child) {
    margin-right: 100px;
  }

  .badge-title {
    font-size: 20px;
  }

  .slick-text .slick-slide {
    padding-right: 70px;
  }

  .product-actions .main-btn svg {
    display: none;
  }

  .inline-card {
    --image-width: 90px;
  }

  .alt-btn {
    flex-shrink: 0;
  }

  .modal-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media screen and (max-width: 400px) {
  .showcase-card-contents .link {
    font-size: 0.875rem;
  }
}

/* faq */

.sect-faq-inner .faqs {
  background-color: #fff;
  border: 2px solid var(--primary-bg-light);
  border-radius: 4px;
  padding: 1.5rem;
}

.sect-faq-inner .faqs:hover {
  background-color: var(--primary-bg-light);
}

.faq-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;
  width: 90px;
  background-color: var(--primary-bg-light);
  color: #444;
  font-size: 34px;
  border-radius: 50%;
}

.sect-faq-inner .faqs:hover .icon-wrapper {
  outline: 1px solid #c7c7c7;
  background-color: var(--secondary-color) !important;
}

.sect-faq-detail .ques-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-dark);
  display: block;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  width: 100%;
  margin-top: 15px;
}

.sect-faq-detail .ques-title[aria-expanded="true"] i {
  transform: rotate(180deg);
}

/* video banner homepage*/

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.video-banner .video-card .image {
  position: relative;
  aspect-ratio: 5/4;
}

.video-banner .video-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-banner .video-card .image::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--primary-color-dark);
  opacity: 0.1;
  /* border-radius: 8px; */
  transition: all 600ms ease;
}

.video-banner .video-card:hover .image::before {
  opacity: 0.2;
}

.video-banner .play-now .icon {
  height: 60px;
  width: 60px;
  font-size: 18px;
  line-height: 60px;
  transition: all 300ms ease;
}

.video-box {
  position: relative;
}

.play-now {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  z-index: 9;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.play-now:hover .icon {
  background-color: var(--secondary-color);
  color: #fff;
}

.play-now .icon {
  position: relative;
  display: inline-block;
  height: 70px;
  width: 70px;
  text-align: center;
  line-height: 70px;
  /* background-color: #ffffff; */
  /* color: var(--primary-color); */
  background-color: var(--primary-color);
  color: #fff;
  z-index: 1;
  padding-left: 5px;
  font-size: 20px;
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
  -moz-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
  -ms-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
  -o-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
  box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
  -webkit-transform-origin: center;
  transform-origin: center;
}

.play-now .ripple {
  display: none;
}

.video-box:hover .play-now .ripple {
  display: block;
}

.play-now .ripple,
.play-now .ripple:before,
.play-now .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 50px;
  width: 50px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
  -webkit-animation: ripple 3s infinite;
  -moz-animation: ripple 3s infinite;
  -ms-animation: ripple 3s infinite;
  -o-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.play-now .ripple:before {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.play-now .ripple:after {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

@-webkit-keyframes ripple {
  70% {
    box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes ripple {
  70% {
    box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@media (max-width: 992px) {
  .banner-carousel :is(.carousel-control-prev, .carousel-control-next) {
    top: unset;
    bottom: 16px;
  }

  .banner-carousel .banner-image-col::before {
    display: none;
  }

  .banner-carousel .banner-image-col {
    height: unset;
  }

  .video-banner .video-box .image {
    aspect-ratio: 5/4;
  }
}

@media (max-width: 600px) {
  .slider__center .carousel-btn-prev {
    left: 0 !important;
  }

  .slider__center .carousel-btn-next {
    right: 0 !important;
  }
}