* {
  margin: 0;
  padding: 0;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  height: 10vh;
}
#main {
  padding-top: 10vh;
}
.searchDiv {
  position: relative;
  transition: all 0.5s;
  button {
    position: absolute;
    right: 3%;
  }
}
.searchDiv:hover {
  scale: 1.05;
}

.hero {
  position: relative;
  padding-top: 10vh;
  min-height: 95vh;
  #lottie {
    width: 250px;
  }
}

.infinity {
  width: 250px;
}

.cart {
  position: fixed;
  width: 200px;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  transition: all 0.3s;
  cursor: pointer;
  z-index: 999;
  align-items: center !important;
  height: 50px;
}

#searchProductList,
#searchList {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 70vh;
  overflow: auto;
}

.cart:hover {
  scale: 1.05;
}

.shopbtn {
  transition: all 0.3s;
}
.shopbtn:hover {
  color: black;
  scale: 1.1;
}

.hoverScale {
  transition: all 0.3s;
  cursor: pointer;
}
.hoverScale:hover {
  scale: 1.1;
}

#recentlyLaunched {
  display: grid;
  grid-template-columns: auto auto auto auto;
}

/* products */
.horizontalCardContainer {
  scrollbar-width: none;
  min-height: 310px;
}
.cardSmall {
  width: 200px !important;
  height: 270px;
  transition: all 0.3s;
  cursor: pointer;
}
.cardSmall:hover {
  scale: 1.1;
}

.verticalCardContainer {
  display: grid !important;
  grid-template-columns: auto auto auto auto;
}

.cardMid {
  width: 220px !important;
  height: 330px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  .rating {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.6);
    align-items: center;
    right: 0;
    top: 150px;
    z-index: 10;
    height: 30px;
  }
}
.cardMid:hover {
  scale: 1.1;
}

.cardLarge {
  width: 95%;
}

.cardLarge {
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
  .rating {
    position: absolute;
    right: -10px;
    top: -10px;
  }
}

#tagline {
  
  width: 50%;
  height: 25px;
  overflow: hidden;
  word-break: break-all;
  animation: slide 3s infinite;
}

/* #tagline::after {
  content: "|";
  position: absolute;
  word-break: break-all;
  left: 0;
  top: 0;
  animation: slide 3s infinite;
} */

@keyframes slide {
  0% {
    width: 0;
  }
  100% {
    width: 105%;
  }
}

.cardLarge:hover {
  scale: 1.03;
}

.cup {
  cursor: pointer;
}

/* shape divider */

.custom-shape-divider-bottom-1765084135 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1765084135 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}

.custom-shape-divider-bottom-1765084135 .shape-fill {
  fill: #ffffff;
}

#cartCheckOut {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
