.slider_container {
    position: relative;
    width: 60%;
    min-width: fit-content;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
  }
  
  .slider {
    position: relative;
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    animation: 30s cubic-bezier(1, 0.95, 0.565, 1) sliding infinite;
  }
  
  .slide {
    position: relative;
    min-width: fit-content;
    height: fit-content;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
  }
  
  .slide .caption {
    position: absolute;
    left: 0;
    bottom: 5%;
    font-size: 5rem;
    font-weight: 600;
    color: white;
    text-transform: capitalize;
    background: rgba(0, 0, 0, 0.348);
    backdrop-filter: blur(10px);
    padding: 1rem 5rem;
    border-radius: 0 2rem 2rem 0;
  }
  
  .slide.one {
    background: rgb(182, 19, 109);
    width: 100%;
    height: 100%;
  }
  .slide.two {
    background: rgb(255, 64, 64);
    width: 100%;
    height: 100%;
  }
  .slide.three {
    background: rgb(11, 173, 188);
    width: 100%;
    height: 100%;
  }
  .slide.four {
    background: rgb(11, 188, 14);
    width: 100%;
    height: 100%;
  }
  .slide.five {
    background: rgb(173, 11, 188);
    width: 100%;
    height: 100%;
  }
  .slide.six {
    background:  rgb(0, 9, 90);
    width: 100%;
    height: 100%;
  }
  
  @keyframes sliding {
    0% {
      transform: translateX(0%);
    }
    20% {
      transform: translateX(0%);
    }
    25% {
      transform: translateX(-100%);
    }
    45% {
      transform: translateX(-100%);
    }
    50% {
      transform: translateX(-200%);
    }
    70% {
      transform: translateX(-200%);
    }
    75% {
      transform: translateX(-300%);
    }
    95% {
      transform: translateX(-300%);
    }
    100% {
      transform: translateX(-400%);
    }
  }





  
  .box23 {
    width: 40%;
    margin: 0 auto;
    background: rgba(255,255,255,0.2);
    padding: 35px;
    border: 2px solid #fff;
    border-radius: 20px/50px;
    background-clip: padding-box;
    text-align: center;
  }
  
  .button23 {
    font-size: 1em;
    padding: 10px;
    color: #fff;
    border: 2px solid #06D85F;
    border-radius: 20px/50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
  }
  .button23:hover {
    background: #06D85F;
  }
  
  .overlay23 {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
  }
  .overlay23:target {
    visibility: visible;
    opacity: 1;
  }
  
  .popup23 {
    margin: 70px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 30%;
    position: relative;
    transition: all 5s ease-in-out;
  }
  
  .popup23 h2 {
    margin-top: 0;
    color: #333;
    font-family: Tahoma, Arial, sans-serif;
  }
  .popup23 .close23 {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
  }
  .popup23 .close23:hover {
    color: #06D85F;
  }
  .popup23 .content23 {
    max-height: 30%;
    overflow: auto;
  }