
.slider {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }
    
    .slidepage {
      
      position: relative;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
    
    .slide.active {
      display: block;
    }
    
    .slideImage {
      margin: 10px;
      float: right;
      width: 45%;
      height: 100%;
    }
    
    
    
    .slide-content {
      margin-left: 60px;
      float: left;
      width: 40%;
      height: 100%;
      padding: 20px;
      box-sizing: border-box;
      
    }
    
    .slide-content h3 {
      margin-top: 0;
    }

    .slide-btn-group {
      position: relative;
      display: flex;
      gap: 40px;
      padding-top:30px;
      padding-bottom:20px;
    }
    
    
    
    .slider-nav {
  top: 47%;
  width: calc(100%);
  display: flex;
  justify-content: space-between;
  position: absolute;
  
}

.slider-nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-decoration: none;
  font-size: 30px;
  font-weight:bold;
}
    
    .slider-nav-button:first-child {
      margin-right: 10px;
    }

/* Styles for the bullet container */
  .slider-bullets {
    display: flex;
    justify-content: center;
    margin: 10px auto 0 auto;
    width: 90%
  }

  /* Styles for each bullet */
  .slider-bullet {
    width: 10px;
    height: 10px;
    background-color: #999; /* Inactive bullet color */
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
  }

  /* Style for the active bullet */
  .slider-bullet.active {
    background-color: #333; /* Active bullet color */
  }

@media (max-width: 768px) {
  .slider-box {
   height: 700px !important;
  }
  .slideImage {
    display: none;
  }
  .slide-content {
    width: 80% !important;
  }
  .slide-btn-group {
    gap: 40px;
  }