.ana-img-slider {

  img {
    width: 239px;
    aspect-ratio: 269 / 334;
    object-fit: cover;
    object-position: center;
    margin: 0 auto;
    border-radius: 70px;
    @media screen and ( min-width: 576px ) {
      width: 300px;
    }
    @media screen and ( min-width: 768px ) {
      width: 350px;
    }
    @media screen and ( min-width: 992px ) {
      width: 400px;
    }
    @media screen and ( min-width: 1200px ) {
      width: 450px;
    }
  }

  .slick-dots {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    button {
      padding: 0;
      aspect-ratio: 1;
      height: 1rem;
      background-color: #00A6FC;
      border: none;
      border-radius: 50%;
      transition: .3s ease;
      cursor: pointer;
    }
    .slick-active button {
      background-color: white;
      box-shadow: 0 0 0 3px #00A6FC;
    }
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
}