:root {
  --hero-image-bg: url(https://s3.amazonaws.com/subscribe-funnels-production/assets/9f5cf23f-25dc-4cbb-83ff-52d3e30c26c6/placeholder);
  --main-color: #ededed;
  --accent-color: #ededed;
}

body {
  font-family: "Montserrat", sans-serif;
}

section {
  padding: 3rem 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

ul {
  list-style: none;
}

svg {
  width: 100%;
}

/******************
* TOKENIZED COLORS
******************/
.bg-main {
  background: var(--main-color) !important;
  color: var(--main-color-txt) !important;
}

.bg-main-lt {
  background: var(--main-color-lt) !important;
  color: var(--main-color-lt-txt) !important;
}

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

.bg-accent-lt {
  background: var(--accent-color-lt) !important;
  color: var(--accent-color-lt-txt) !important;
}

.bg-accent-dk {
  background: var(--accent-color-dk) !important;
  color: var(--accent-color-dk-txt) !important;
}

.bg-accent-dk a {
  color: inherit;
}

.bg-accent-dk a:hover {
  color: inherit;
  opacity: 0.75;
}

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

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

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

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

.shadow-main {
  box-shadow: 0 .5rem 1rem rgba(var(--main-color-rgb), 0.25) !important;

}

.shadow-accent {
  box-shadow: 0 .5rem 1rem rgba(var(--accent-color-rgb), 0.25) !important;
}

.btn-main {
  background-color: var(--main-color);
  color: var(--main-color-txt);
}

.btn-main:hover {
  background-color: transparent;
  color: var(--main-color);
  border: 1px solid var(--main-color);
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--accent-color-txt);
}

.btn-accent:hover {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

/******************
* END TOKENIZED COLORS
******************/

/* Banner Slider */
.slick-track {
  height: fit-content;
}

.banner-slider .banner-slider--message {
  width: fit-content;
  font-weight: 900;
  padding: 1rem 3rem
}

#navbarNavDropdown {
  flex-wrap: wrap;
  width: 100%;
}

/* Navigation */
.brand-logo {
  max-width: 120px;
}

.cart-count {
  background-color: var(--main-color);
  color: var(--main-color-txt);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font-weight: 900;
  text-align: center;
  line-height: 1.7;
  top: 0;
  left: 20px;
}

/* Hero */
.hero {
  position: relative;
  height: 80vh;
  max-height: 80vh;
  overflow: hidden;
  background-color: var(--main-color);
  color: var(--main-color-txt);
  background-image: var(--hero-image-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero img {
  width: auto;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

/*Prouct Cards*/
.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars-container {
  max-width: 180px;
  margin: auto;
}

.ocean {
  height: 5%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #015871;
}

.w1 {
  stroke: none;
  fill: var(--accent-color-lt);
  opacity: 55%;
  animation: move1 5s ease-in-out infinite;
}

.w2 {
  stroke: none;
  fill: var(--accent-color-lt);
  opacity: 35%;
  transform: translate3d(0, 0, 0);
  animation: move2 4s ease-in-out infinite;
}

.w3 {
  stroke: none;
  fill: var(--accent-color);
  opacity: 30%;
  transform: translate3d(0, 0, 0);
  animation: move3 6s ease-in-out infinite;
}

.w1-main {
  stroke: none;
  fill: var(--main-color-lt);
  opacity: 55%;
  animation: move1 5s ease-in-out infinite;
}

.w2-main {
  stroke: none;
  fill: var(--main-color-lt);
  opacity: 35%;
  transform: translate3d(0, 0, 0);
  animation: move2 4s ease-in-out infinite;
}

.w3-main {
  stroke: none;
  fill: var(--main-color);
  opacity: 30%;
  transform: translate3d(0, 0, 0);
  animation: move3 6s ease-in-out infinite;
}

@keyframes move1 {
  0% {
    transform: translateX(-500px) scaleX(2.5);
  }

  25% {
    transform: translateX(-100) scaleX(2.5);
  }

  50% {
    transform: translateX(0) scaleX(2.5);
  }

  75% {
    transform: translateX(-100) scaleX(2.5);
  }

  100% {
    transform: translateX(-500px) scaleX(2.5);
  }
}

@keyframes move2 {
  0% {
    transform: translateX(-600px) scaleX(3);
  }

  25% {
    transform: translateX(-100) scaleX(2.5);
  }

  50% {
    transform: translateX(0) scaleX(3);
  }

  75% {
    transform: translateX(-100) scaleX(2.5);
  }

  100% {
    transform: translateX(-600px) scaleX(3);
  }
}

@keyframes move3 {
  0% {
    transform: translateX(-800px) scaleX(3);
  }

  25% {
    transform: translateX(-100) scaleX(2.5);
  }

  50% {
    transform: translateX(0) scaleX(3);
  }

  75% {
    transform: translateX(-100) scaleX(2.5);
  }

  100% {
    transform: translateX(-800px) scaleX(3);
  }
}

/*Testimonials*/
.testimonial-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-container i.bi-quote {
  top: 0;
  right: 0;
  transform: rotate(180deg);
  margin: 0;
}

#it7akq {
  background-color: #f5f5f5;
}

#i80c6f {
  background-color: #f5f5f5;
}

#ikxbxc {
  background-color: #f5f5f5;
}

.bar {
  width: 100%;
  height: 2px;
  background-color: #000;
  top: 30px;
}

.z-1 {
  z-index: 1;
}

.icon-badge {
  width: 60px;
  display: inline-block;
  height: 60px;
}

.icon-badge i {
  font-size: 30px;
  line-height: 55px;
}

.specs>div {
  width: 140px;
}

.p-col {
  width: 50%;
}

.q-col {
  width: 20%;
}

.t-col {
  width: 30%;
}

.image-icon {
  max-width: 100px;
}

.w-fit {
  width: fit-content;
}

@media (min-width: 768px) {
  .desk-img {
    width: 100%;
    max-width: 15%;
  }

  .desk-desc {
    width: 100%;
    max-width: 35%;
  }

  .desk-q {
    width: 100%;
    max-width: 20%;
  }
}


/* 4.4 Product
/*----------------------------------------------*/
.card-concern {
  text-align: center;
  bottom: 145px;
  display: flex;
  justify-content: center;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease-out;
  opacity: 0;
}

.card-concern .btn {
  padding: 1.125rem;
}

.card-concern svg {
  width: 27px;
  height: 27px;
  cursor: pointer;
}

.card:hover .card-concern {
  bottom: 160px;
  opacity: 1;
}

.thumbnail {
  max-width: 85px;
  cursor: pointer;
}

.qty-btn {
  padding: 0 0.5rem;
  border: 1px solid #A0C436;
  border-radius: 5px;
  font-size: .75rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  height: 35px;
  cursor: pointer;
}

.qty-btn.decrease-btn {
  border-radius: 5px 0 0 5px;
}

.qty-btn.increase-btn {
  border-radius: 0 5px 5px 0px;
}

.qty-value {
  display: flex;
  align-items: center;
  border-top: 1px solid #A0C436;
  border-bottom: 1px solid #A0C436;
  padding: 0.5rem 1.25rem;
  font-weight: bold;
  height: 35px;
}

/* 4.5 Items Listings
/*----------------------------------------------*/
#items-listing img {
  max-width: 80px;
  max-height: 90px;
}

/*------------Swiper Pagination -----------*/
.product-store .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 35px;
}

.swiper-pagination span.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
}