.section01A{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30%;
  }
  
  .slider-container {
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #5d5d5d;
  }
  
  .slider {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .slide {
    width: 100%;
    height: 100%;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .slide img:hover{
    cursor: pointer;
  }
  
  
  .slider-container button {
    background-color: transparent;
    border: none;
    margin: 0 10px;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
  }
  
  .sliderCont{
    width: 400px;
    height: 250px;
    border-radius: 10px;
    border: 1px solid #04b4ec;
    overflow: hidden;
  }
  
  .dot {
    border: none;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    padding: 0;
    background-color: #000;
    margin: 1% 1%;
    margin-bottom: 0;
  }
  
  .dots-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
  }
  
  .dots-container .activeDot {
    background-color: #04b4ec;
  }

  @media (max-width: 991px) {
    .section01A{
      width: 100%;
      height: fit-content;
    }

    .slider-container {
      width: 100%;
      height: fit-content;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #000;
    }
    .slider-container button {
      background-color: #04b4ec;
    }

    .dot {
      background-color: #dcdcdc;
      margin: 1% 1%;
    }

    .sliderCont{
      width: 600px;
      height: 350px;
    }

    .dots-container{
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: start;
    }
  }