.service-slider {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 60px;
    height: 80vh;
}

.left-side {
	width: 50%;
	height: 100%;
}

.right-side {
	width: 50%;
	display: flex;
	flex-direction: column;	
	justify-content: center;
	height: 100%;
	padding-top: 30px;
}

.service-slider .slider-image {
    width: 100%;
    height: 100%;
    position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.service-slider .slider-image .swiper,
.service-slider .slider-image .swiper-wrapper,
.service-slider .slider-image .swiper-slide {
    width: 100%;
    height: 100%;
}

.service-slider .slider-image .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-slider .slider-title {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
    gap: 20px;
}

.service-slider .slider-title .slide-title{
	cursor: pointer;
	opacity: .2;
	transition: opacity .2s ease;
	display: unset;
}

.service-slider .slider-title .slide-title.active{
	opacity: 1;
	color: #BF4E30;
}

/* .title-item wrapper: her başlık + progress için kapsayıcı */
/* aktif olmayan title'larda progress görünmez */

.service-slider .title-progress{
	height:4px;
	background: rgba(0,0,0,.15);
	position: relative;
	margin: 6px 0 16px;
	overflow: hidden;
	display: none;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
}

.service-slider .title-progress-bar{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #BF4E30; /* istersen theme color */
    transform-origin: left center;
}

.service-slider .title-item.active .title-progress{
    display: block;
}

/* Accordion panel hidden by default, visible on active title-item */
.service-slider .slider-title .title-item .accordion-panel{
	display: none;
	padding-top: 30px;
}
.service-slider .slider-title .title-item.active .accordion-panel{
	display: block;
}

.service-slider .slider-title .title-item .desc a.first-button{
	background-color: #00000000;
	font-family: "Urbanist", Sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 17px;
	fill: #FFFFFF;
	color: #000;
	border-style: solid;
	border-width: 1px 1px 1px 1px;
	border-color: #0000006c;
	border-radius: 50px 50px 50px 50px;
	padding: 15px 34px 15px 34px;
	transition: all .3s ease;
}

.service-slider .slider-title .title-item .desc a.first-button:hover{
	background-color: #BF4E30;
	color: #fff;
	border-color: #BF4E30;
}


.service-slider .slider-title .title-item .button-container{
	display: flex;
	gap: 25px;
	justify-content: flex-start;
	align-items: center;
	margin-top: 45px;
	margin-bottom: 60px;
}


.service-slider .slider-title .title-item .button-container a.second-button{
	color: #000;
	font-weight: 500;
	transition: all .3s ease;
	position: relative;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}


.service-slider .slider-title .title-item .button-container a.second-button::after{
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #000;
	transition: all ease .3s;
	-webkit-transition: all ease .3s;
	-moz-transition: all ease .3s;
	-ms-transition: all ease .3s;
	-o-transition: all ease .3s;
}

.service-slider .slider-title .title-item .button-container a.second-button:hover::after{
	bottom: -10px;
	opacity: 0;
}

.explore{
	color: #BF4E30;
	margin-top: 30px;
}

@media screen and (max-width: 768px) {
    
    .service-slider .slide-content .desc a.first-button {
    font-size: 12px;
    padding: 13px 25px 13px 25px;
}

	.explore{
		color: #BF4E30;
		margin-top: 0px;
	}
	
	.service-slider .slider-title{
		margin-top: 30px;
	}
	
	.service-slider {
		flex-direction: column;
		height: auto;
		gap: 0;
	}

	.left-side {
		width: 100%;
	}

	.right-side {
		width: 100%;
	}

	.service-slider .slider-image {
		height: 400px;
	}

	.service-slider .slider-title {
		gap: 15px;
	}
	
	
}