@use "../../../../src/scss/utilities.scss";
.sliderGallery {
  &--item {
    width: 100%;
    display: block;
    min-height: 456px;
    position: relative;
    .imgAbsolute {
      @extend %img-absolute;
    }
  }
  .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;

    .swiper-pagination-bullet {
      color:#004976;
      background-color: transparent;
      border: 1px solid #004976;
      height: 20px;
      width: 20px;
      font-size: 1rem;
      opacity: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      &-active {
        border: 1px solid #991e66;
        background-color: #991e66;
        color: #fff;
      }
    }
  }
}