.text-with-image-swiper {
    display: block;
    --swiper-pagination-color: #111111;
}

.text-with-image-swiper .text-with-image-swiper__wrapper:nth-child(2) {
    margin-top: -100px;
}

.text-with-image-swiper__wrapper {
    display: flex;
    gap: 100px;
}

.text-with-image-swiper__image-container {
    flex: 1;
}

.text-with-image-swiper__text-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-with-image-swiper .text-with-image-swiper__wrapper:nth-child(1) .text-with-image-swiper__text-wrapper > div {
    display: inline-block;
    width: fit-content;
}

.text-with-image-swiper .text-with-image-swiper__wrapper:nth-child(1) .image-with-text-swiper__product-card {
    right: 10%;
    bottom: 10%;
}

.text-with-image-swiper .text-with-image-swiper__wrapper:nth-child(2) .image-with-text-swiper__product-card {
    left: 10%;
    bottom: 10%;
}

.text-with-image-swiper .text-with-image-swiper__wrapper:nth-child(1) .text-with-image-swiper__text-wrapper {
    align-items: flex-end;
}

.image-with-text-swiper__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-with-text-swiper__image-wrapper {
    position: relative;
}

.image-with-text-swiper__product-card {
    position: absolute;
}

.image-with-text-swiper__product-card {
    display: flex;
    height: 80px;
    gap: 15px;
    background-color: #fff;
    padding: 4px 4px 4px 10px;
    border-radius: 5px;
}

.image-with-text-swiper__product-card >div:nth-child(1) {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-with-text-swiper__product-card img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

a.text-with-image-swiper__button {
    padding: 10px 30px;
    border: 1px solid;
    box-sizing: border-box;
    display: block;
    width: fit-content;
}

@media(max-width: 959px) {
    .text-with-image-swiper__wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .text-with-image-swiper__image-container {
        width: 100%;
    }

    .text-with-image-swiper .text-with-image-swiper__wrapper:nth-child(2) {
        margin-top: 20px;
    }
   
    .text-with-image-swiper .text-with-image-swiper__wrapper:nth-child(1) .text-with-image-swiper__text-wrapper {
        align-items: flex-start;
    }
    
    .image-with-text-swiper__product-card {
        padding: 4px;
    }
   
}