

.text_on_bg{
	position: absolute;
	width: 100%;
	z-index: 1;
	display: flex;
}
.info_text{

	margin: 0 auto;
	width: 100%;
	text-align: center;
	color: white;
/*	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));*/
/*	background-color: white;*/
	padding: 15px;
/*	backdrop-filter: blur(1px);*/
}
.info_text p{
    font-size: 22px;
	font-family: 'Trebuchet MS';
	text-shadow: 1px 1px 3px black, -1px -1px 3px black;
	padding: 3px;
}

.img_nav_buttons{
	height: 100%;
	position: absolute;
	width: 100%;
	display: flex;
	justify-content: space-between;
	left: 0%;
	top: 0%;
}
.img_nav_buttons button{
	z-index: 2;
	color: white;
	font-size: 20px;
	width: 20%;
	border: none;
}


.slider_wrap{
	width: 100%;
	position: relative;
	overflow: hidden;
	user-select: none;
	background-color: white;

}
.slider{
	max-height: 700px;
	min-height: 250px;
	display: flex;
	transition: transform 1s;
}
.slide{
	min-width: 100%;
}
.slide img{
	width: 100%;
	display: block;
	height: 100%;
	object-fit: contain;
}
#l_btn, #r_btn{
	text-shadow: 1px 1px 3px black;
}
#l_btn{
	background: linear-gradient(90deg, rgba(89, 89, 89, 0.1), rgba(89, 89, 89, 0.1), rgba(89, 89, 89, 0));
/*	background: rgba(245, 253, 255, 0);*/
}
#r_btn{
	background: linear-gradient(-90deg, rgba(89, 89, 89, 0.1), rgba(89, 89, 89, 0.1), rgba(89, 89, 89, 0));
/*	background: rgba(245, 253, 255, 0);*/
}

.before_after_text{
	position: absolute;
	width: 100%;
	display: flex;
	color: white;
	z-index: 1;
	bottom: 30px;
	font-size: 24px;
	font-weight: bold;
	text-shadow: 1px 1px 3px black, -1px -1px 3px black;
}
.before_after_text span{
	width: 50%;
	text-align: center;

}

@media (max-width:767px){
	.slider{
		margin: 20px 0 15px 0;
	}
	.info_text{
		padding: 0 15px 15px 15px;
	}
	.info_text p{
    	font-size: 18px;
    	margin-top: 10px;
    }
    .before_after_text{
		font-size: 20px;
		bottom: 10px;
	}
}