/** Shopify CDN: Minification failed

Line 121:3 Expected "}" to go with "{"

**/
.swiper {
  width: 100%;
  overflow: hidden;
  background-color: #053353;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; /* Adjust as needed */
  margin: 0;
  padding: 0;
  border: none;
}

.slider-container {
  
  display: flex;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: none;
}

.slider-product-image-container {
  width: 60%;
}

.product-image {
  padding: 30px;
  width: 100%;
  height: 100%;
}

.slider-product-content-container {
  display: flex;
  flex-direction: column;
  padding: 0 60px 30px 0;
  width: 40%;
  margin: auto auto 0;
  border: none;
}

.product-icon {
  width: 42px;
  height: 42px;
}

.slider-content-heading {
  color: #ffffff;
  font-size: 36px;
  line-height: 44px;
  margin-top: 20px;
}

.slider-content-para {
  color: #ffffff;
  margin: 10px 0 0;
  font-size: 20px;
  line-height: 31.2px;
  font-weight: 400;
  display: -webkit-box;            /* Required for webkit-based browsers */
  -webkit-line-clamp: 4;          /* Number of lines to show */
  -webkit-box-orient: vertical;   /* Vertical orientation for the box */
  overflow: hidden;               /* Hide overflowing text */
  text-overflow: ellipsis;
}

.slider-content-btn {
  background: #ffffff;
  color: #494948;
  width: max-content;
  margin: 40px 0 5px;
  border-radius: 40px;
  padding: 9px 30px;
  border: 1px solid #ffffff;
}

.swiper-scrollbar {
  /* color: #ffffff; */
  border-radius: 4px;
  height: 4px;
  margin: 0 15px;
}
.swiper-scrollbar-drag {
  background: #ffffff;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

@media screen and (max-width:900px){
  .slider-container{
    flex-direction: column;
  }
  .slider-product-image-container{
    width: 100%;
  }
  .slider-product-content-container{
    width: 100%;
    padding: 0 30px 20px;
  }
  .slider-content-para{
  -webkit-line-clamp: 2;
  }
}

@media screen and (max-width:768px){
  .slider-content-heading{
    font-size: 30px;
  }