/** Shopify CDN: Minification failed

Line 57:2 Unexpected "}"

**/
.container-sl {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 600px;
    overflow: hidden;
    position: relative;
  
  } 

.your-image-class {
  display: block;
  max-width: 100%;
  margin-top: 5rem;
  margin-bottom: 8rem;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
  animation: float 3s ease-in-out infinite;
  height: 200px;
}

.heading{

  font-size: calc(34px / 60 * var(--base-headings-primary-size) + 0px);
  font-family: var(--font-stack-headings-primary);
    font-weight: var(--font-weight-headings-primary);
    font-style: var(--font-style-headings-primary);
    line-height: var(--base-headings-line);
    letter-spacing: var(--base-headings-spacing);
    margin-bottom: 1rem;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/*   h1 {
    color: black;
    font-size: 4vmin;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
/*     padding-left: 40px; */
  } */

  .blob {
   display:none
  }
/* path{
  display:none
} */

  .content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .buy-now {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 30px;
    background-color: #7fcca6;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
    border-radius: 5px;
  }


  .buy-now:hover {
    background-color: black;
  }



.slider {
  position: relative;
  width: 100%;
  height: 500px;
  margin-top: 3%;
}

.slide {
/*   display:flex; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s;
  pointer-events: none;  /* Add this line */

}

.slide.active {
  opacity: 1;
  pointer-events: all;  /* Add this line */

}
.arrow {
  position: absolute;
  top: 50%;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: #7fcca6;
  cursor: pointer;
  z-index: 10;
  transform: translateY(-50%);
}

.arrow-left {
  left: 1rem;
}

.arrow-right {
  right: 1rem;
}

@media (max-width: 600px) {
  .blob {
    display:block;
    position: absolute;
/*     top: 1%;
    left: 5%; */
    fill: #7fcca6 ;
    width: 90vw;
    z-index: -1;
    transform-origin: 50% 50%;
  }
  path{
  display:block;
}

}

@media (max-width: 450px) {
  .blob {
    display:block;
 position: absolute;
/*     top: 7%; */
    left: 5%;
    fill: #7fcca6 ;
    width: 87vw;
    z-index: -1;
    transform-origin: 50% 50%;
  }
    path{
  display:block;
}
}

@media (max-width: 360px) {
  .blob {
    display:block;
 position: absolute;
    top: 7%;
    left: 5%;
    fill: #7fcca6 ;
    width: 87vw;
    z-index: -1;
    transform-origin: 50% 50%;
  }
.your-image-class {
  margin-top: 5rem;
  margin-bottom: 8rem;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
  animation: float 3s ease-in-out infinite;
  height: 200px;
}
  
}

/* Add this new CSS animation */
@keyframes scaleBlob {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Update the existing .blob svg:nth-child(2) selector */
.blob svg:nth-child(2) {
  animation: scaleBlob 3s ease-in-out infinite;
}

@media screen and (min-width: 580px) {
  .container-sl {
    display: none;
  }
}


@media screen and (min-width: 405px) and (max-width: 450px) {
  .your-image-class {
    height: 240px;
    margin-top: 6rem;
  }
    .container-sl{
    height: 630px;
  }
}

@media screen and (min-width: 450px) and (max-width: 480px) {
  .your-image-class {
    height: 280px;
    margin-top: 5rem;
  }
  .container-sl{
    height: 700px;
  }
}

@media screen and (min-width: 480px) and (max-width: 530px) {
  .your-image-class {
    height: 300px;
    margin-bottom: 10rem;
    margin-top: 6rem;
  }
      .container-sl{
    height: 780px;
  }
}



@media screen and (min-width: 530px) and (max-width: 580px) {
  .your-image-class {
    height: 320px;
    margin-top: 8rem;
    margin-bottom: 9rem;
  }
    .container{
    height: 780px;
  }
}