@keyframes carouselAnimation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*------------------------------------------
 *  Reponsive
 * -----------------------------------------*/
/*------------------------------------------
 *  BUTTON
 * -----------------------------------------*/
/*------------------------------------------
 *  Interpolation
 * -----------------------------------------*/
.ik-block-carousel .swiper-block-carousel.img-bg .swiper-slide {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ik-block-carousel .swiper-block-carousel.img-bg .swiper-slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.ik-block-carousel .swiper-block-carousel.img-bg .swiper-slide .ik-carousel-caption {
  z-index: 2;
  max-width: 580px;
}
.ik-block-carousel .swiper-block-carousel.img-bg .swiper-slide .ik-carousel-caption h2 {
  margin-bottom: 10px;
}
.ik-block-carousel .swiper-block-carousel .swiper-slide img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.ik-block-carousel .swiper-block-carousel .swiper-button-prev, .ik-block-carousel .swiper-block-carousel .swiper-button-next {
  height: 100px;
  width: 30px;
  background-color: var(--wp--preset--color--primary);
  margin: 0;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
}
.ik-block-carousel .swiper-block-carousel .swiper-button-prev {
  left: 0;
}
.ik-block-carousel .swiper-block-carousel .swiper-button-prev svg {
  transform: rotate(180deg);
}
.ik-block-carousel .swiper-block-carousel .swiper-button-next {
  right: 0;
}
.ik-block-carousel .swiper-block-carousel .swiper-pagination {
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
}
.ik-block-carousel .swiper-block-carousel .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
}
.ik-block-carousel:hover .swiper-button-prev, .ik-block-carousel:hover .swiper-button-next, .ik-block-carousel:hover .swiper-pagination {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 992px) {
  .ik-block-carousel .swiper-block-carousel.img-bg .swiper-slide {
    min-height: 450px;
  }
}
@media (max-width: 767px) {
  .ik-block-carousel .swiper-block-carousel.img-bg .swiper-slide {
    min-height: 400px;
  }
}
@media (max-width: 550px) {
  .ik-block-carousel .swiper-block-carousel.img-bg .swiper-slide {
    min-height: 350px;
  }
}/*# sourceMappingURL=block.css.map */