.i-case-study-slider .swiper {
	width: 100%;
	height: 100%;
	overflow: visible;
}
.i-case-study-slider .swiper {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.i-case-study-slider .i-case-study-slide {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	column-gap: 5rem;
}

.i-case-study-slide-content {
    width: 40%;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}
.i-case-study-slide-image {
    width: 60%;
    border-radius: 16px;
    overflow: hidden;
}
.i-case-study-slide-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.i-case-study-slide-category {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--e-theme-color-green-light);
}

.i-case-study-slide-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 38.4px */
    margin: 0;
    color: #fff;
}

.i-case-study-slide-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.i-case-study-content {
    min-height: var(--content-min-height-desktop);
}

.i-case-study-slider-wrapper .swiper-navigation {
   margin: 0;
   position: absolute;
   left: 0;
   bottom: 0;
}

.i-case-study-slide .elementor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.i-case-study-slide .elementor-button:after {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M8.4043 1.6543L14.7499 7.99995L8.4043 14.3456" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M14.7499 8L1.25 8" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 13.5px auto;
    margin-left: 8px;
}
.i-case-study-slide .elementor-widget-button .elementor-button:hover, 
.i-case-study-slide .elementor-widget-button .elementor-button:focus, 
.i-case-study-slide .elementor-widget-button .elementor-button:active {
    background: var(--e-theme-color-grey-400);
    color: #fff;
    border-color: var(--e-theme-color-grey-400);
}

.i-case-study-slider-wrapper .swiper-button-next.swiper-button-disabled, 
.i-case-study-slider-wrapper .swiper-button-prev.swiper-button-disabled {
    display: none;
}

@media (max-width: 1024px) {
	.i-case-study-content {
		min-height: var(--content-min-height-mobile);
	}
	.i-case-study-slider .i-case-study-slide {
		flex-direction: column;
		row-gap: 2rem;
	}
	.i-case-study-slide-content {
		width: 100%;
	}
	.i-case-study-slide-image {
		width: 100%;
	}
	.i-case-study-slide-image img {
		width: 100%;
		height: 250px;
		object-fit: cover;
		display: block;
	}
	.i-case-study-slider-wrapper .swiper-navigation {
		bottom: -76px;
	}
}

