/** Shopify CDN: Minification failed

Line 144:2 Expected ":"
Line 145:2 Expected ":"
Line 146:2 Expected ":"
Line 147:2 Expected ":"

**/
.featured-section .container {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
}

.featured-section .inner-container{
  width: 50%;
  flex-basis: 50%;
}

.featured-section .fea__image{
  width: 100%;
  height: 100%;
}
.featured-section .featured-title{
  font-weight: bold;
  font-size: 6rem;
  color: #000000;
  line-height: 1.4em;
  text-align: center;
}
.featured-section .featured-dots-wrapper{
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 50px;
}
.featured-section  .featured-dot {
    flex: 1 1 calc(33.333% - (20px / 3));
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    position: relative;
    max-width: calc(33.333% - (20px / 3));
}
.featured-section  .featured-dot .line{
    width: 100%;
    position: absolute;
}
.featured-section  .featured-dot.active .line,
.featured-section  .featured-dot.active .fill-line{
    width: 100%;
    height: 2px;
    background: #ddd;
    position: absolute;
    bottom: -20px;
}
.featured-section  .featured-dot.active .fill-line{
  bottom: 0; 
  background: var(--line-color);
  animation: grow var(--animation-time) linear forwards;
}

@keyframes grow{
  0%{
    width: 0%;
  }
  100%{
    width: 100%;
  }
}
.featured-section .dot-color {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* box-shadow: inset 5px -4px 4px 0px rgba(0, 0, 0, 0.25); */
    flex-shrink: 0;
}
.featured-section .title-wrapper,
.featured-section .desc-wrapper{
  padding-left: 80px;
  text-align: center;
}
.featured-section .featured-desc{
  font-size: 4rem;
  color: #000;
  margin-bottom: 50px;
  text-align: center;
}
.featured-section .inner-container.content-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-section .back-container{
  position: absolute;
  top: 64%;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
  z-index: 0;
}
@media(max-width:798px){
  .featured-section .back-container{
      top: 30%;
  }
  .featured-section .container {
    flex-direction: column;
  }
  .featured-section .featured-dot{
    gap: 10px;
    line-height: 1.1em;
    font-size: 1.4rem;
  }
  .featured-section .dot-color {
    width: 30px;
    height: 30px;
  }
  .featured-section .featured-dots-wrapper{
    row-gap: 30px;
           
  }
  .featured-section .inner-container{
    width: 100%;
    flex-basis: 100%;
  }
  .featured-section .title-wrapper,
  .featured-section .desc-wrapper{
    padding-left:0px;
  }
  .featured-section .featured-desc{
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .featured-section .swiper-pagination {
    justify-content: center;
  }
}

.back.swiper-wrapper{
    -webkit-transition-timing-function: linear; /*之前是ease-out*/
    -moz-transition-timing-function: linear;
    -ms-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
}
.back img{
  width: 100%;
  height: auto;
}
.featured-section .container:has(.swiper-pagination__wrapper){
  justify-content: center;
}
.swiper-pagination .swiper-pagination-bullet{
  background: #747474;
}

.featured-section .swiper-pagination .swiper-pagination-bullet-active:before{
  width: 1rem;
  background:black;
}