.slider_container {
    margin: 30px auto;
    position: absolute; /* Temporarily switched to relative or fixed */
    z-index: 0; /* Place the images in the background as a slideshow */
    border: 0px solid;
    border-color: #fff;
    border-bottom-width: 100px;
    background-color: #f5f5f5;
    box-shadow: #666 0 0 5px;
    box-sizing: content-box;
}

.slider_container div {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-animation: round 15s linear infinite; /* Adjusted for 15s total duration */
    animation: round 15s linear infinite; /* Adjusted for 15s total duration */
}

.slider_container div img {
    width: 100%;
    height: auto;
    display: block;
}

@-webkit-keyframes round {
    20% { /* 100% / 5 images = 20% per image */
      opacity: 1;
      filter: alpha(opacity=100);
      /* Fade in */
    }
    60% { /* After 1 second, image remains visible */
      opacity: 1;
      filter: alpha(opacity=100);
    }
    80% { /* Image fades out */
      opacity: 0;
      filter: alpha(opacity=0);
    }
}

@keyframes round {
    20% {
      opacity: 1;
      filter: alpha(opacity=100);
    }
    60% {
      opacity: 1;
      filter: alpha(opacity=100);
    }
    80% {
      opacity: 0;
      filter: alpha(opacity=0);
    }
}

.slider_container div:nth-child(5) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.slider_container div:nth-child(4) {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.slider_container div:nth-child(3) {
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
}

.slider_container div:nth-child(2) {
    -webkit-animation-delay: 9s;
    animation-delay: 9s;
}

.slider_container div:nth-child(1) {
    -webkit-animation-delay: 12s;
    animation-delay: 12s;
}

.rwd_slider_container_wrapper {
    width: 1280px; /* Width of the image container */
    height: 300px; /* Height of the image container */
    max-width: 100%;
    box-sizing: border-box;
    box-shadow: #666 0 0 2px;
    padding: 0px;
    margin: 0 auto;
}

.rwd_slider_container {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    box-sizing: border-box;
    padding-bottom: calc(70% + 100px);
}

.rwd_slider_container .slider_container {
    box-shadow: none;
    margin: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    box-sizing: border-box;
    border: none;
    background-color: transparent;
}

.rwd_slider_container .slider_container div {
    width: 100%;
    line-height: 0;
}

.rwd_slider_container .slider_container span {
    top: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
