{#---------GENERAL STYLES---------#}
.image-slider {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  padding: 20px;
  border-radius: 26px;
  border: solid 1px;
}

.image-slider .swiper-pagination {
  position: static;
}

.swiper-control-next svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.swiper-slide {
  transition: all 200ms linear;
}

{#-------LOGO IMAGE--------#}
.swiper-slide{
  align-self: center;
}


{#---------ARROW---------#}
.swiper-control-prev,
.swiper-control-next {
  cursor: pointer;
  position: absolute;
}

.swiper-control-prev {
  left: 40%;
  z-index: 1;
}

.swiper-control-next {
  right: 40%;
  z-index: 1;
}

@media only screen and (max-width: 1040px) {
  .swiper-control-prev {
    left: 40%;
  }

  .swiper-control-next {
    right: 40%;
  }
}

@media only screen and (max-width: 767px){
  .swiper-control-prev {
    left: 40%;
  }

  .swiper-control-next {
    right: 40%;
  }
}


{#---------ARROW IMAGE---------#}
.swiper-control-prev img{
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}