div.sbc-background-swiper{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.sbc-background-slider__slide{
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
}

.sbc-background-swiper .swiper-pagination-bullets{
  display: flex;
  justify-content: center;
  align-items: center;
}

.sbc-background-swiper .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  transition: width 0.3s ease, height 0.3s ease;
}

.sbc-background-swiper .swiper-pagination-bullets > .swiper-pagination-bullet { 
  opacity: 1;
}

.sbc-background-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active{
  width: 16px;
  height: 16px;
}

/* arrows */

.sbc-background-swiper-wrapper .swiper-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  z-index: 10;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  width: 64px;
  height: 64px;
  background-color: rgba(231,121,45,.6);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  visibility: hidden;
}

.sbc-background-swiper-wrapper:hover .swiper-arrows{
  opacity: 1;
  visibility: visible;
}

.sbc-background-swiper-wrapper .swiper-arrows:hover{
  background-color: #e7792d;
}

.sbc-background-swiper-wrapper .swiper-arrows.sbc-swiper-arrow-right {
  right: 0px;
}
.sbc-background-swiper-wrapper .swiper-arrows.sbc-swiper-arrow-left {
  left: 0px;
}

@media only screen and (max-width: 1160px) {
  .sbc-background-swiper-wrapper .swiper-arrows.sbc-swiper-arrow-left {
    left: 0;
  }
  .sbc-background-swiper-wrapper .swiper-arrows.sbc-swiper-arrow-right {
    right: 0;
  }
}