:root {
  --swiper-theme-color: orangered;
}

/*main parent  container  */
.swiper {
  /* border: 2px solid gold; */
  /* 
  set a background color so when the swiprs move from 
  left to right the background does show white 
  */
  width: 100%;
  height: 555px;
  background: linear-gradient(0deg, rgba(76, 46, 21, 0.91), rgba(230, 146, 101, 0.98));
  -webkit-background: linear-gradient(0deg, rgba(76, 46, 21, 0.91), rgba(227, 88, 13, 0.98));
  -moz-background: linear-gradient(0deg, rgba(76, 46, 21, 0.91), rgba(227, 88, 13, 0.98));
}

.swiper-slide {
  width: inherit;
  height: inherit;
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  /* border: 1px solid white; */
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.autoplay-progress {
  right: 16px;
  bottom: 16px;
  z-index: 10;
  position: absolute;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--swiper-theme-color);
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: var(--swiper-theme-color);
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

.floating-text {
  /* border: 1px solid gold; */
  width: 100%;
  padding: 20px 10px;
  bottom: 90px;
  position: absolute;
  color: white;
  z-index: 1000;
}

.floating-text {
  color: white;
}