

.text-image-slider__slide-wrapper{
  display: flex;
  align-items: center;  
  max-width: 950px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 1024px) { 
  .text-image-slider__slide-wrapper{
    padding: 0 20px;
  }
}

.text-image-slider--dark{
  background-color: #1d3e56;
}


.text-image-slider--dark .text-image-slider__text-description *{
  color: white;
}

.text-image-slider__text-column,
.text-image-slider__image-column{
  width: 50%;
  padding: 15px;
}

@media (max-width: 1024px) { 
  .text-image-slider__text-column{
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 660px;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 20px;
    position: relative;
  }

  .text-image-slider__text-column::before{
    content: "";
    background-color: #000000;
    opacity: 0.7;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
  }
  .text-image-slider__text-column *{
    z-index: 1;
  }
}

.text-image-slider__text-column .button{
  margin-top: 30px;
}

.text-image-slider__image-column{
  text-align: center;
}

@media (max-width: 1024px) { 
  .text-image-slider__image-column{
    display: none;
  }
}

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

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


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

.text-image-slider .swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.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: 10%;
  z-index: 1;
}

.swiper-control-next {
  right: 10%;
  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: 5px;
  }

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


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

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

.text-image-slider__pagination{
  padding-top: 15px;
}
