.ib-wrapper{
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: row;
    width: 100%;
}


.ib-wrapper .swiper-wrapper .swiper-slide-active .image-container{
    width: 100%;
    min-height: 600px;
    background-size: cover;
    object-fit: contain;
    animation: zoom 50s infinite;
    max-width: 100vw;
    background-position: center;
}

@keyframes zoom {
  0% { background-size: 100%; }
  100% { background-size: 150%; }
}

.ib-wrapper::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: 2;}

.ib-wrapper .ib-content{
    position: absolute;
    top: 0;
    left: auto;
    width: 70%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 3;
    padding: 0px 20px;
    text-align: center;
}

.ib-wrapper .ib-content h1{
    color: white!important;
}

.ib-wrapper .ib-content p{
    color: white!important;
}


@media screen and (max-width: 768px) {
    .ib-wrapper .swiper-wrapper .swiper-slide-active .image-container{
        width: 100%;
        min-height: 600px;
        background-size: 300%;
        object-fit: contain;
        animation: none;
        max-width: 100vw;
        background-position: center;
        background-repeat: no-repeat;
        background-
    }

    .ib-wrapper .ib-content{
        padding: 32px;
    }

    .ib-wrapper .ib-content .rs-cta{
        text-align: center;
        padding: 16px;
    }
}