section.super-section {
    padding: 0;
    margin: 0;
}
.content-box-section {
    padding: 1rem 1.5rem;
}
.content-box-small-section {
    padding: 1rem;
}
@media (min-width: 992px) {
    .content-box-section {
        padding: 3rem 5rem;
    }
    .content-box-small-section {
        padding: 1rem 2rem;
    }
}
@media (max-width: 768px) {
  .super-slider {
    background-color: #fff;
  }
  .swiper-pagination {
    position: relative;
    padding: 1rem;
  }
}
.swiper {
    width: 100%;
}
.swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
	.autoplay-progress {
      position: absolute;
      left: 1rem;
      bottom: 1rem;
      z-index: 10;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #000;
    }
	.autoplay-progress svg {
      --progress: 0;
      position: absolute;
      left: 0;
      top: 0;
      z-index: 10;
      width: 100%;
      height: 100%;
      stroke-width: 2px;
      stroke: #000;
      fill: none;
      stroke-dashoffset: calc(75.4px * (1 - var(--progress)));
      stroke-dasharray: 75.4;
      transform: rotate(-90deg);
    }