{#---------GENERAL STYLES---------#}
.image-slider {
  position: relative;
  z-index: 2;
  overflow-y: hidden;
}

@media (max-width: 576px) { 
  .image-slider {
    overflow-y: visible;
  }
}


.image-slider-wrapper{
  max-width: 1238px;
}

.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: 8px;
  z-index: 1;
}

.swiper-control-next {
  right: 8px;
  z-index: 1;
}


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

  .swiper-control-next {
    right: 10px;
  }
}

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

  .swiper-control-next {
    right: -6px;
  }
}


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

.swiper-button-disabled{
  opacity: 0.5;
}