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

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

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

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

.image-text__slide {
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 64px;
}

.image-text__text {
  width: 50%;
}

.image-text__image {
  height: 300px;
  width: 50%;
}

.image-text__image img {
  display: block;
  height: 100% !important;
  width: auto;
  object-fit: contain;
}

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


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

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

.swiper-control-next {
  right: 12px;
  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: 992px) {
  .image-text__slide {
    flex-direction: column;
    gap: 8px;
    padding: 24px;
  }
  .image-text__text {
    width: 100%;
  }
  .image-text__image {
    height: auto;
    width: 100%;
  }
  .image-text__image img {
    height: auto !important;
    width: 100%;
  }
}

@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);
}