/* top_slider */
    .top_slider_container {
      width: 100%;
      height: 450px;
      position: relative;
      overflow: hidden;
      margin: 0 auto;
    }

    .top_slider_image {
      width: 100%;
      height: 100%;
      background-image: url('../img/top_slider/qwe346ee.JPG'); 
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .top_slider_content {
      position: absolute;
      top: 50%;
      left: 5%;
      transform: translateY(-50%);
      width: 90%;
      max-width: 600px;
      color: white;
      text-align: left;
      z-index: 2;
      padding: 20px;
      background-color: rgb(42 100 150 / 70%);
      border-radius: 8px;
    }

    .top_slider_title {
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .top_slider_subtitle {
      font-size: 1.1rem;
      margin-bottom: 15px;
      line-height: 1.4;
    }

    .top_slider_highlight {
      font-size: 1.3rem;
      color: #8cff7a;
      font-weight: bold;
      margin: 15px 0;
    }

    .top_slider_button {
      display: inline-block;
      padding: 10px 35px;
      background-color: #4caf50;
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      border-radius: 10px;
      margin-top: 10px;
      transition: all 0.3s ease;
      border: 2px solid transparent;
      font-size: 1rem;
    }

    .top_slider_button:hover {
      background-color: transparent;
      color: #4caf50;
      border-color: #4caf50;
    }

    
    .top_slider_slide {
      opacity: 0;
      transition: opacity 0.5s ease;
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
    }

    .top_slider_slide.active {
      opacity: 1;
    }

    
    @media (min-width: 768px) {
      .top_slider_content {
        left: 10%;
        width: 50%;
        padding: 30px;
      }
      
      .top_slider_title {
        font-size: 2.2rem;
      }
      
      .top_slider_subtitle {
        font-size: 1.3rem;
      }
      
      .top_slider_highlight {
        font-size: 1.6rem;
      }
      
      .top_slider_button {
        padding: 12px 30px;
        font-size: 1.1rem;
      }
    }

    @media (max-width: 480px) {
      .top_slider_container {
        height: 400px;
      }
      
      .top_slider_content {
        padding: 15px;
      }
      
      .top_slider_title {
        font-size: 1.5rem;
      }
      
      .top_slider_subtitle {
        font-size: 1rem;
      }
      
      .top_slider_highlight {
        font-size: 1.1rem;
        margin: 10px 0;
      }
    }