@font-face {
  font-family: "roboto_bold";
  src: url(../Resources/font/roboto_bold.ttf);
}

@font-face {
  font-family: "roboto_regular";
  src: url(../Resources/font/roboto_regular.ttf);
}

@font-face {
  font-family: "poppins_semi";
  src: url(../Resources/font/poppins_semi.ttf);
}

@font-face {
  font-family: "poppins_bold";
  src: url(../Resources/font/poppins_bold.ttf);
}

@font-face {
  font-family: "poppins_regular";
  src: url(../Resources/font/poppins_regular.ttf);
}

@font-face {
  font-family: "poppins_medi";
  src: url(../Resources/font/poppins_medium.ttf);
}

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  /* z-index: 1; */
}

/* slider start  */

.slider-container {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.slider-wrapper .slider-item {
  position: relative;
  width: 100%;
  aspect-ratio: 3.4;
  /* height: 38rem; */
  display: flex;
  align-items: center;
}

.slider-wrapper .slider-item::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(20%);
  background-image: url("../Resources/img/homeimg/slider/slider1.webp");
  background-size: cover;
  background-position: center;
}

.slider-wrapper .slider-item:nth-child(2):before {
  background-image: url("../Resources/img/homeimg/slider/slider2.webp");
}

.slider-wrapper .slider-item:nth-child(3):before {
  background-image: url("../Resources/img/homeimg/slider/slider3.webp");
}

.slider-wrapper .slider-item:nth-child(4):before {
  background-image: url("../Resources/img/homeimg/slider/slider4.webp");
}

.slider-wrapper .slider-item .slide-content {
  opacity: 0;
  color: #fff;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 10px;
  max-width: 1400px;
  position: relative;
}

.slider-item.swiper-slide-active .slide-content {
  animation: animate_opacity 0.8s 0.6s linear forwards;
}

@keyframes animate_opacity {
  100% {
    opacity: 1;
  }
}

.slider-wrapper .slider-item .slide-content>* {
  max-width: 35%;
}

.slider-item .slide-content .slide-subtitle {
  font-size: 1rem;
  font-weight: 100;
  font-family: "roboto_regular";
  opacity: 0;
  transform: translateY(60%);
}

.slider-item .slide-content .slide-title {
  font-size: 1.5rem;
  font-weight: 100;
  font-family: "roboto_bold";
  margin-top: 5px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(60%);
}

.slider-item.swiper-slide-active :where(.slide-subtitle, .slide-title) {
  animation: animate_text 0.6s 0.6s linear forwards;
}

@keyframes animate_text {
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

.slider-item .slide-content .slide-description {
  margin-top: 25px;
  line-height: 25px;
  opacity: 0;
  transform: translateY(60%);
}

.slider-item.swiper-slide-active .slide-description {
  animation: animate_text 0.6s 1s linear forwards;
}

.slider-item .slide-content .slide-button {
  color: rgb(255, 255, 255);
  opacity: 0;
  width: 0;
  padding: 13px 0;
  display: block;
  margin-top: 45px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1px;
  white-space: nowrap;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #fff;
  transition: 0.5s ease;
}

.slider-item .slide-content .slide-button span {
  opacity: o;
}

.slider-item.swiper-slide-active .slide-button span {
  animation: animate_opacity 0.6s 1.5s linear forwards;
}

.slider-item.swiper-slide-active .slide-button {
  animation: animate_button 0.6s 1.3s linear forwards;
}

@keyframes animate_button {
  100% {
    opacity: 1;
    width: 250px;
  }
}

.slider-item .slide-content .slide-button:hover {
  color: #000000;
  background-color: rgb(255, 255, 255);
}

.slider-container .slider-controls {
  position: absolute;
  bottom: 10px;
  z-index: 5;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.slider-controls .slider-pagination {
  position: relative;
  display: flex;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1600px;
  list-style: none;
  justify-content: space-between;
}

.slider-pagination .slider-indicator {
  position: absolute;
  bottom: 0;
  width: 300px;
  border-bottom: 2px solid #fff;
  transition: 0.4s ease-in-out;
}

.slider-pagination .slider-tab {
  color: white;
  font-size: 0.85rem;
  text-align: center;
  cursor: pointer;
  padding: 10px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.slider-navigations button {
  position: absolute;
  top: 50%;
  height: 40px;
  width: 40px;
  cursor: pointer;
  z-index: 5;
  color: white;
  border: none;
  background: #202022;
  transform: translateY(-50%);
  transition: 04s ease;
}

.slider-navigations button.swiper-button-disabled {
  display: none;
}

.slider-navigations button:hover {
  background-color: #323235;
}

.slider-navigations button#slide-prev {
  left: 20px;
}

.slider-navigations button#slide-next {
  right: 20px;
}

@media screen and (min-width: 300px) and (max-width: 400px) {
  .slider-wrapper .slider-item {
    aspect-ratio: 2;
  }

  .slider-controls {
    display: none;
  }

  .slider-item .slide-content .slide-subtitle {
    font-size: 0.6rem;
    display: flex;
  }

  .slider-item .slide-content .slide-title {
    font-size: 0.8rem;
    /* margin-top: 5px; */
  }

  .slider-item .slide-content .slide-description {
    display: none;
  }

  .slider-item .slide-content .slide-button {
    padding: 5px 0px;
    margin-top: 5px;
    font-size: 0.8rem;
    border: 1px solid #fff;
  }
}

@media screen and (min-width: 401px) and (max-width: 449px) {
  .slider-wrapper .slider-item {
    aspect-ratio: 1.4;
  }

  .slider-controls {
    display: none;
  }

  .slider-item .slide-content .slide-subtitle {
    font-size: 0.6rem;
  }

  .slider-item .slide-content .slide-title {
    font-size: 1rem;
    /* margin-top: 5px; */
  }

  .slider-item .slide-content .slide-description {
    display: flex;
    font-size: 0.8rem;
    margin-top: 3px;
  }

  .slider-item .slide-content .slide-button {
    padding: 5px 0;
    margin-top: 6px;
    font-size: 0.8rem;
    border: 1px solid #fff;
  }
}

@media screen and (min-width: 450px) and (max-width: 499px) {
  .slider-wrapper .slider-item {
    aspect-ratio: 1.8;
  }

  .slider-controls {
    display: none;
  }

  .slider-item .slide-content .slide-subtitle {
    font-size: 0.6rem;
  }

  .slider-item .slide-content .slide-title {
    font-size: 1rem;
    /* margin-top: 5px; */
  }

  .slider-item .slide-content .slide-description {
    display: flex;
    font-size: 0.8rem;
    margin-top: 3px;
  }

  .slider-item .slide-content .slide-button {
    padding: 7px 0;
    margin-top: 6px;
    font-size: 0.8rem;
    border: 1px solid #fff;
  }
}

@media screen and (min-width: 500px) and (max-width: 599px) {
  .slider-wrapper .slider-item {
    aspect-ratio: 2.1;
  }

  .slider-controls {
    display: none;
  }

  .slider-item .slide-content .slide-subtitle {
    font-size: 0.7rem;
  }

  .slider-item .slide-content .slide-title {
    font-size: 1rem;
    /* margin-top: 5px; */
  }

  .slider-item .slide-content .slide-description {
    display: flex;
    font-size: 0.8rem;
    margin-top: 8px;
  }

  .slider-item .slide-content .slide-button {
    padding: 7px 0;
    margin-top: 8px;
    font-size: 0.8rem;
    border: 1px solid #fff;
  }

  .slider-wrapper .slider-item .slide-content {
    margin-top: -2rem;
  }
}

@media screen and (min-width: 600px) and (max-width: 799px) {
  .slider-wrapper .slider-item {
    aspect-ratio: 2.5;
  }

  .slider-controls {
    display: none;
  }

  .slider-item .slide-content .slide-subtitle {
    font-size: 0.8rem;
  }

  .slider-item .slide-content .slide-title {
    font-size: 1rem;
    /* margin-top: 5px; */
  }

  .slider-item .slide-content .slide-description {
    display: flex;
    font-size: 0.8rem;
    margin-top: 8px;
  }

  .slider-item .slide-content .slide-button {
    padding: 7px 0;
    margin-top: 8px;
    font-size: 0.9rem;
    border: 2px solid #fff;
  }

  .slider-wrapper .slider-item .slide-content {
    margin-top: -1rem;
  }
}

@media screen and (min-width: 800px) and (max-width: 900px) {
  .slider-wrapper .slider-item {
    aspect-ratio: 2.3;
  }

  .slider-controls {
    display: none;
  }

  .slider-item .slide-content .slide-subtitle {
    font-size: 0.8rem;
  }

  .slider-item .slide-content .slide-title {
    font-size: 1.2rem;
    /* margin-top: 5px; */
  }

  .slider-item .slide-content .slide-button {
    padding: 9px 0;
    margin-top: 20px;
    font-size: 0.9rem;
    border: 2px solid #fff;
  }

  .slider-wrapper .slider-item .slide-content {
    margin-top: -8rem;
  }
}

@media screen and (min-width: 901px) and (max-width: 1135px) {
  .slider-wrapper .slider-item {
    aspect-ratio: 2.3;
  }

  .slider-controls {
    display: flex;
  }

  .slider-item .slide-content .slide-subtitle {
    font-size: 0.8rem;
  }

  .slider-item .slide-content .slide-title {
    font-size: 1.2rem;
    /* margin-top: 5px; */
  }

  .slider-item .slide-content .slide-button {
    padding: 9px 0;
    margin-top: 20px;
    font-size: 0.9rem;
    border: 2px solid #fff;
  }

  .slider-wrapper .slider-item .slide-content {
    margin-top: -8rem;
  }
}

@media screen and (min-width: 1136px) and (max-width: 1259px) {
  .slider-wrapper .slider-item {
    aspect-ratio: 2.5;
  }

  .slider-controls {
    display: flex;
  }

  .slider-item .slide-content .slide-subtitle {
    font-size: 0.8rem;
  }

  .slider-item .slide-content .slide-title {
    font-size: 1.2rem;

  }

  .slider-item .slide-content .slide-button {
    padding: 9px 0;
    margin-top: 20px;
    font-size: 0.9rem;
    border: 2px solid #fff;
  }

  .slider-wrapper .slider-item .slide-content {
    margin-top: -8rem;
  }

}

@media screen and (min-width: 1260px) and (max-width: 1430px) {
  .slider-wrapper .slider-item {
    aspect-ratio: 2.8;
  }

  .slider-controls {
    display: flex;
  }

  .slider-item .slide-content .slide-subtitle {
    font-size: 0.8rem;
  }

  .slider-item .slide-content .slide-title {
    font-size: 1.2rem;

  }

  .slider-item .slide-content .slide-button {
    padding: 9px 0;
    margin-top: 20px;
    font-size: 0.9rem;
    border: 2px solid #fff;
  }

  .slider-wrapper .slider-item .slide-content {
    margin-top: -8rem;
  }

}

@media screen and (min-width: 1431px) and (max-width: 1580px) {
  .slider-wrapper .slider-item {
    aspect-ratio: 3.4;
  }

  .slider-controls {
    display: flex;
  }

  .slider-item .slide-content .slide-subtitle {
    font-size: 0.8rem;
  }

  .slider-item .slide-content .slide-title {
    font-size: 1.2rem;
    /* margin-top: 5px; */
  }

  .slider-item .slide-content .slide-button {
    padding: 9px 0;
    margin-top: 20px;
    font-size: 0.9rem;
    border: 2px solid #fff;
  }

  .slider-wrapper .slider-item .slide-content {
    margin-top: -8rem;
  }

}

@media screen and (min-width: 1581px) {
  .slider-wrapper .slider-item .slide-content {
    margin-top: -8rem;
  }

}

@media (max-width: 1024px) {

  .slider-wrapper .slider-item .slide-content,
  .slider-controls .slider-pagination {
    width: 100%;
  }

  .slider-wrapper .slider-item .slide-content>* {
    max-width: 66%;
  }

  .slider-navigations button {
    top: 50%;
    /* bottom: -15px; */
    background: none;
    height: 20px;
    width: 20px;
  }

  .slider-navigations button:hover {
    background: none;
  }


  .slider-navigations button#slide-prev {
    left: 5px;
  }

  .slider-navigations button#slide-next {
    right: 5px;
  }
}

@media (max-width: 1536px) {

  .slider-wrapper .slider-item .slide-content,
  .slider-controls .slider-pagination {
    width: 100%;
  }
}

/* slider end  */

/* product slider start  */


.product--sec1 {
  padding: 3rem 0;
}

.product--sec1--div1 {
  display: flex;
  flex-direction: row;
  width: 90%;
  margin: auto;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  cursor: grab;
}

.product--sec1--div1:active {
  cursor: grabbing;
}

.product--sec1--div2 {
  display: inline-flex;
  flex-direction: row;
  width: fit-content;
  gap: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  animation: trueContinuousSlide 60s infinite linear;
  transition: transform 0.3s ease;
}

.product--sec1--div2.dragging {
  animation-play-state: paused;
  transition: none;
}

.product--sec1--div1:before,
.product--sec1--div1:after {
  position: absolute;
  width: 250px;
  height: 155px;
  content: "";
  z-index: 2;
}

.product--sec1--div1:before {
  left: 0%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.product--sec1--div1:after {
  right: 0%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.product--sec1--div1:hover .product--sec1--div2 {
  animation-play-state: paused;
}

.product--sec1--div3 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-shrink: 0;
  min-width: 120px;
}

.product--sec1--div4 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: black;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  margin-bottom: 0.5rem;
}

.product--a1 {
  text-decoration: none;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.product--img1 {
  height: 4rem;
  width: 4rem;
  object-fit: contain;
  transition: background-color 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.product--img1:hover {
  transform: scale(1.5);
  cursor: pointer;
}

.product--span1 {
  font-family: "poppins_medium";
  font-size: 0.9rem;
}

/* Enhanced animation for true continuous sliding */
@keyframes trueContinuousSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 499px) {
  .product--sec1--div1 {
    width: 100%;
    margin: auto;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
  }

  .product--sec1--div2 {
    gap: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .product--sec1--div3 {
    min-width: 80px;
  }

  .product--sec1--div1:before,
  .product--sec1--div1:after {
    position: absolute;
    width: 0px;
    height: 0px;
    content: "";
    z-index: 2;
  }

  .product--sec1--div4 {
    width: 4rem;
    height: 4rem;
  }

  .product--img1 {
    height: 2.5rem;
    width: 2.5rem;
  }
}

@media screen and (min-width: 500px) {
  .product--sec1--div1 {
    width: 90%;
    margin: auto;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
  }

  .product--sec1--div2 {
    gap: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .product--sec1--div3 {
    min-width: 120px;
  }

  .product--sec1--div1:before,
  .product--sec1--div1:after {
    position: absolute;
    width: 120px;
    height: 150px;
    content: "";
    z-index: 2;
  }

  .product--sec1--div4 {
    width: 5rem;
    height: 5rem;
  }

  .product--img1 {
    height: 3.5rem;
    width: 3.5rem;
  }
}

/* .product--sec1--div1 {
  display: flex;
  flex-direction: row;
  width: 90%;
  margin: auto;
  white-space: nowrap;
  overflow: hidden;
  position: relative;

}


.product--sec1--div2 {
  display: inline-flex;
  flex-direction: row;
  animation: 60s slide infinite linear;
  column-gap: 0.2rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.product--sec1--div1:before,
.product--sec1--div1:after {
  position: absolute;
  width: 80px;
  height: 155px;
  content: "";
  z-index: 2;
}

.product--sec1--div1:before {
  left: 0%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.product--sec1--div1:after {
  right: 0%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

@media screen and (max-width: 800px) {
  .product--sec1--div1 {
    width: 100%;
  }

  .product--sec1--div1:before,
  .product--sec1--div1:after {
    display: none;
  }
}

.product--sec1--div1:hover .product--sec1--div2 {
  animation-play-state: paused;
}

.product--sec1--div3 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 8rem;

}

.product--sec1--div4 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: black;
  padding: 1rem;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  margin-bottom: 0.5rem;
}

.product--a1 {
  text-decoration: none;
  text-align: center;
  width: 6rem;

}

.product--sec1--div4:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.product--img1 {
  height: 4rem;
  margin: 0 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.product--img1:hover {
  transform: scale(1.5);
}

.product--span1 {
  font-family: "poppins_semi";

}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@media screen and (min-width: 300px) and (max-width: 699px) {
  .product--sec1--div2 {
    animation: 60s slide infinite linear;
    column-gap: 0rem;
 
  }

  .product--sec1--div3 {
    width: 7rem;
  }

  .product--sec1--div4 {
    padding: 1rem;
  }

  .product--a1 {
    text-decoration: none;
    text-align: center;
    width: 5rem;
    text-align: center;
  }

  .product--img1 {
    height: 3rem;
    margin: 0 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .product--span1 {
    font-size: 0.8rem;
  }
}

@media screen and (min-width: 700px) and (max-width: 1100px) {
  .product--span1 {
    font-size: 1rem;
  }
} */

/* product slider end  */

/* promotion slider start */

.home--sec3--div1 {
  width: 100%;
  height: fit-content;
  margin-top: 0rem;
  margin-bottom: 2rem;
  box-sizing: border-box;
  width: 100%;
  /* background-color: red; */
}

.wrapper1 {
  width: 98%;
  /* background-color: #0072bc; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: auto;
}

.carousel {
  width: 1600px;
  margin: auto;
  padding: 0 20px;
}

.carousel .card {
  color: #fff;
  text-align: center;
  /* margin: 20px 0; */
  border-radius: 20px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.card-1 {
  width: 100%;
  /* height: 10rem; */
}

.card-1:hover {
  cursor: pointer;
}

.owl-dots {
  text-align: center;
  margin-top: 40px;
}

.owl-dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  outline: none;
  border-radius: 14px;
  /* border: 2px solid #00000028 !important; */
  background: #0000002a !important;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.158);
  transition: all 0.3s ease;
}

.owl-dot:hover {
  background: #00000075 !important;
}

.owl-dot.active {
  background: #08b4b8 !important;
}

.promo--img {
  width: 100%;
  height: 10rem;
}

@media screen and (min-width: 300px) and (max-width: 650px) {
  .home--sec3--div1 {
    margin-top: 0rem;
  }

  .carousel {
    padding: 0 0px;
  }

  .owl-dots {
    margin-top: 10px;
  }
}

/* promotion slider end */

/* best offers start  */

.home--sec4--div1 {
  width: 100%;
  margin: auto;
  /* background-color: #00B21B; */
}

.container {
  min-width: 98%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, 250px);
  gap: 2rem;
  justify-content: center;
  /* background-color: #08B4B8; */
}

@media screen and (min-width: 300px) and (max-width: 387px) {
  .container {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    padding: 0 0.5rem;
    gap: 0.5rem;
    row-gap: 0.5rem;
  }
}

@media screen and (min-width: 387px) and (max-width: 421px) {
  .container {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    padding: 0 0.5rem;
    gap: 0.5rem;
    row-gap: 0.5rem;
  }
}

/* @media screen and (min-width: 422px) and (max-width: 500px) {
    .container {
        grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
        padding: 0 0.5rem;
        gap: 0.5rem;
        row-gap: 1rem;
    }
} */

@media screen and (min-width: 422px) {
  .container {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    padding: 0 0.5rem;
   
    gap: 0.5rem;
  }
}

@media screen and (min-width: 768px) {
  .container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
}

@media screen and (min-width: 1217px) {
  .container {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
}

@media screen and (min-width: 1600px) {
  .container {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }
}

@media screen and (min-width: 1800px) {
  .container {
    grid-template-columns: repeat(auto-fit, 290px);
    gap: 2rem;
  }
}


.container-row {
  width: 100%;
  height: fit-content;
  display: flex;
  /* justify-content: center;
  align-items: center; */
  flex-direction: column;
  /* background-color: #fceaea; */
  border-radius: 0.5rem;
  padding: 0.5rem;
  transition: transform 3s ease-in;
  /* background-color: red; */
  box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset,
    rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
  transition-duration: 600ms;
  transition-timing-function: ease;
}

.container-row .tp-transform {
  transition-property: transform;
}

.container-row:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

  -webkit-transform: scale(1.06);
  -moz-transform: scale(1.06);
  -ms-transform: scale(1.06);
  -o-transform: scale(1.06);
  transform: scale(1.06);
}

.container-row1 {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* background-color: #fceaea; */
  border-radius: 0.5rem;
  padding: 1rem;
  transition: transform 3s ease-in;
  /* background-color: red; */
  box-shadow: rgb(43, 47, 49) 3px 3px 6px 0px inset,
    rgba(24, 24, 24, 0.5) -3px -3px 6px 1px inset;
  transition-duration: 600ms;
  transition-timing-function: ease;
}

.container-row1 .tp-transform {
  transition-property: transform;
}

.container-row1:hover {
  box-shadow: rgba(240, 240, 255, 0.288) 0px 7px 29px 0px;

  -webkit-transform: scale(1.06);
  -moz-transform: scale(1.06);
  -ms-transform: scale(1.06);
  -o-transform: scale(1.06);
  transform: scale(1.06);
}

.container-card {
  width: 100%;
  display: flex;
  /* height: 15rem; */
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
  aspect-ratio: 3;
  /* background-color: #000000; */
}

.card-span1 {
  position: absolute;
  z-index: 2;
  background-color: #ff0000;
  padding: 0.4rem 0.8rem;
  font-size: 0.67rem;
  font-family: "poppins_regular";
  color: white;
  border-radius: 0rem 0.5rem 0 0.5rem;
  width: max-content;
}

.card--img1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100%;
  position: relative;
  z-index: 1;
}

.card--content {
  width: 100%;
  margin-top: 1rem;
  line-height: 1.1rem;
}

.card--span2 {
  font-family: "poppins_semi";
  font-size: 0.9rem;
  color: #000000;
  opacity: 83%;
  /* background-color: #00b21b; */
}

.card--heading2 {
  display: flex;
  flex-direction: row;
  width: 100%;
  /* background-color: #000000; */
}

.card--heading2--div1 {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 0.5rem;
  row-gap: 0.5rem;
  /* background-color: #00b21b; */
}

.card--heading2--divEx {
  display: flex;
  flex-direction: column-reverse;
  /* gap: 0.5rem; */
  /* background-color: red; */
}

.card--span3 {
  font-family: "poppins_medium";
  font-size: 1rem;
  color: rgb(56, 56, 56);
  /* background-color: #00b21b; */
}

.card--spanEx {
  font-family: "poppins_regular";
  font-size: 0.8rem;
  text-decoration: line-through;
  color: gray;
  margin-top: 0.15rem;
}

.card--span4g {
  font-family: "poppins_bold";
  font-size: 0.8rem;
  color: #00b21b;
}

.card--span4r {
  font-family: "poppins_bold";
  font-size: 0.8rem;
  color: #f70000;
}

.card--heading2--div2 {
  width: 20%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.card--icon1 {
  width: 1.7rem;
}

@media screen and (min-width:400px) {
 .card--heading2--divEx {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  /* background-color: red; */
}
}
@media screen and (min-width:500px) {
 .card-span1 {
 
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  
}

  .card--span2 {
    font-size: 1rem;

  }

 

}


/* best offers end  */

/* promotion slider end */

/* main heading */

.home--heading {
  width: fit-content;
  background: linear-gradient(90deg,
      rgba(8, 180, 184, 1) 0%,
      rgba(255, 255, 255, 0) 100%);
  padding: 1rem;
  margin-top: 1rem;
  width: 15rem;
  display: flex;
  flex-direction: row;
}

.home--heading--span {
  font-family: "poppins_regular";
}

.home--heading--span1 {
  font-family: "poppins_bold";
}

@media screen and (min-width: 1150px) {
  .home--heading {
    width: max-content;
    padding: 1rem 4rem 1rem 4rem;
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }
}

@media screen and (min-width: 1400px) {
  .home--heading {
    width: max-content;
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }
}

/* main heading */

/* mid-banner */

.home--sec5 {
  width: 100%;
  margin-top: 5rem;
}

.home--sec5--div1 {
  width: 100%;
  display: flex;
  flex-direction: row;
  background-color: #000000;
  position: relative;
}

.home--sec5--div2 {
  width: 60%;
  display: flex;
  flex-direction: column;
  padding: 2rem 2rem 2rem 2rem;
  /* background-color: red; */
  height: max-content;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  align-self: center;
}

.home--sec5--span1 {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 1.8rem;
  font-family: "poppins_regular";
}

.home--sec5--span2 {
  color: #08b4b8;
  font-family: "poppins_bold";
}

.home--sec5--span3 {
  color: #ffffff;
  margin-top: 2rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  font-family: "poppins_medi";
}

.home--sec5--div3 {
  width: 40%;
  /* background-color: blue; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -5rem;
}

.home--sec5--img1 {
  height: 25rem;
}

@media screen and (max-width: 599px) {
  /* .home--sec5 {
    margin-top: 0rem;
  } */

  .home--sec5--div1 {
    display: flex;
    flex-direction: column;
  }

  .home--sec5--div2 {
    width: 90%;
    z-index: 1;
    padding: 1rem;
  }

  .home--sec5--div3 {
    width: 90%;
    justify-content: right;
    align-items: end;
  }

  .home--sec5--span1 {
    font-size: 1.4rem;
  }

  .home--sec5--span3 {
    font-size: 0.8rem;
    margin-top: 1.5rem;
    line-height: 1.5rem;
  }

  .home--sec5--img1 {
    height: 15rem;
  }
}

@media screen and (min-width: 600px) and (max-width: 699px) {
  /* .home--sec5 {
    margin-top: 0rem;
  } */

  .home--sec5--div2 {
    width: 50%;
  }

  .home--sec5--div3 {
    width: 50%;
    margin-top: 8rem;
  }

  .home--sec5--img1 {
    height: 20rem;
  }
}

@media screen and (min-width: 700px) and (max-width: 799px) {
  .home--sec5--div2 {
    width: 55%;
  }

  .home--sec5--div3 {
    width: 45%;
  }

  .home--sec5--span1 {
    font-size: 1.5rem;
  }

  .home--sec5--span3 {
    font-size: 0.8rem;
  }

  .home--sec5--img1 {
    height: 20rem;
  }
}

@media screen and (min-width: 800px) and (max-width: 949px) {
  .home--sec5--div2 {
    width: 55%;
  }

  .home--sec5--div3 {
    width: 45%;
  }
}

@media screen and (min-width: 1150px) {
  .home--sec5--div2 {
    padding: 2rem 2rem 2rem 4rem;
  }

  .home--sec5--span3 {
    line-height: 2rem;
  }

  .home--sec5--img1 {
    height: 30rem;
  }
}

@media screen and (min-width: 700px) {
  .home--sec5 {
    width: 100%;
    /* margin-top: 6rem; */
  }
}

/* mid-banner */

/* popular categories  */

.home--sec6 {
  margin-top: 5rem;
}

.home--sec6--div1 {
  width: 100%;
  margin: 0;
  padding: 0;
}

.home--sec6--div2 {
  width: 90%;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  margin: auto;
  margin-bottom: 1rem;
}

.home--sec6--div3 {
  width: 100%;
  display: flex;
  flex-direction: row;
  column-gap: 0.5rem;
  margin: auto;
}

.home--sec6--img6 {
  border-radius: 10px;
}

@media screen and (max-width: 400px) {
  .home--sec6--div2 {
    row-gap: 1rem;
  }

  .home--sec6--div3 {
    row-gap: 1rem;
    flex-direction: column;

  }

}

@media screen and (max-width: 699px) {
  .home--sec6--div12 {
    display: none;
  }
}

@media screen and (min-width: 700px) {
  .home--sec6--div1 {
    display: none;
  }

  .home--sec6--div12 {
    width: 100%;
    display: flex;
    margin-bottom: 1rem;
    flex-direction: column;
    row-gap: 1rem;
  }
}

.home--sec6--div5 {
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: row;
  /* height: 20rem; */
  column-gap: 1rem;
}

.home--sec6--div6 {
  width: 30%;
  /* background-color: red; */
}

.home--sec6--div7 {
  width: 40%;
  /* background-color: rgb(0, 26, 255); */
}

.home--sec6--div8 {
  width: 30%;
}

.home--sec6--img7 {
  width: 100%;
  height: 9rem;
  border-radius: 10px;
}

.home--sec6--img7:hover {
  cursor: pointer;
}

.home--sec6--div9 {
  width: 37%;
}

.home--sec6--div10 {
  width: 26%;
}

.home--sec6--div11 {
  width: 37%;
}

@media screen and (min-width: 900px) {
  .home--sec6--img7 {
    height: 12rem;
  }
}

@media screen and (min-width: 1250px) {
  .home--sec6--img7 {
    height: 14rem;
  }
}

@media screen and (min-width: 1500px) {
  .home--sec6--img7 {
    height: 16rem;
  }
}

@media screen and (min-width: 1700px) {
  .home--sec6--img7 {
    height: 18rem;
  }
}


.home--sec7 {
  margin-top: 5rem;
}

/* popular categories  */

.home--sec8 {
  background-color: #000000;
  margin-top: 5rem;
}

.home--sec8--div1 {
  padding: 1rem 0 2rem 0;
}

.home--sec9 {
  margin-top: 5rem;
}

/* last section start  */

.home--sec10 {
  width: 100%;
  background-color: #000000;
  display: flex;
  justify-content: center;
  margin: 7rem 0 2rem 0;
}

.home--sec10--div1 {
  width: 90%;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-self: center;
  align-items: center;
  flex-direction: column;
}

.home--sec10--span1 {
  font-family: "roboto_bold";
  color: #08b4b8;
  font-size: 0.8rem;
  text-align: center;
  letter-spacing: 1rem;
}

.home--sec10--span2 {
  font-family: "poppins_bold";
  color: #ffffff;
  font-size: 1.5rem;
  text-align: center;
  margin-top: 0.5rem;
}

.home--sec10--span3 {
  font-family: "poppins_regular";
  color: #ffffff;
  line-height: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.home--sec10--span4 {
  font-family: "poppins_regular";
  color: #ffffff;
  text-align: center;
  margin-top: 1.5rem;
}

.home--sec10--btn1 {
  width: max-content;
  padding: 0.5rem 2rem;
  border-radius: 0.5rem;
  color: #000000;
  background-color: #08b4b8;
  font-family: "poppins_bold";
  font-size: 1.2rem;
  margin-top: 4rem;
  border: none;
  outline: none;
  position: relative;
  z-index: 0;
  cursor: pointer;
}

.home--sec10--btn1::before {
  content: "";
  background: linear-gradient(45deg,
      #08b4b8,
      #000000,
      #00ffd5,
      #08b4b8,
      #000000,
      #00ffd5,
      #08b4b8,
      #000000,
      #00ffd5);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}

.home--sec10--btn1:active {
  color: #08b4b8;
}

.home--sec10--btn1:active:after {
  background: transparent;
}

.home--sec10--btn1:hover:before {
  opacity: 1;
}

.home--sec10--btn1:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #08b4b8;
  left: 0;
  top: 0;
  border-radius: 10px;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

/* last section end  */