.ssl {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  .slider {
    position: relative;
    max-width: 100%;
    overflow: hidden;
  }
  .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  .slide {
    position: relative;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .slide img {
    width: 100%;
    height: 100vh;
  }
  .captionS {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    font-size: 200%;
    letter-spacing: 2px;
    font-weight: bold;
    color: white;
    padding: 10px;
  }
  
  .arrow {
    font-size: 30px;
    margin-bottom: 25%;
    line-height: 1;
    padding: 10px;
    background-color: rgb(129 129 129 / 50%);
    color: white;
    cursor: pointer;
  }

  .controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  .dots {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .dot {
    width: 12px;
    height: 12px;
    margin: 0 6px;
    border-radius: 50%;
    background-color: #ccc;
    transition: background-color 0.3s ease-in-out;
  }

  .dot.active {
    background-color: #333;
  }

  @media (max-width:500px){
    .slide img {
      width: 100%;
      height: 65vh;
  }
  } 