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

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

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

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

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


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

.swiper-control-prev {
  left: -60px;
  z-index: 1;
}

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

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

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

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

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


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

.image-slider .swiper-slide img {
  max-height: 90px;
}

{#---------FIXED GRID TILE (crossfade mode)---------#}
.image-slider__tile {
  position: relative;
  width: 100%;
  min-width: 0;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

{#-------CROSSFADE LOGO LAYERS--------#}
.image-slider__logo {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0;
  padding: 0 24px;
}

.image-slider__logo.is-active {
  opacity: 1;
}
