.wrapper {
	width: 100%;
	min-height: 20vh;
	background: url('/assets/bg1.webp');
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
}
.wrapper .overlay {
	width: 100%;
	min-height: 20vh;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
}
.wrapper .overlay h1 {
	font-family: 'Work Sans', sans-serif;
	font-size: 2.5em;
	font-weight: 700;
	color: white;
}


.testimonial .card {
	box-shadow: 0 8px 10px rgba(0, 0, 0, 0.4);
	border: 10px solid;
	border-image: linear-gradient(-45deg, #FFFFFF 25%, #8E2DE2 25%, royalblue 75%, #FFFFFF 75%);
	border-image-slice: 5;
	border-radius: 5px;
	height: 100%;
}
.testimonial .card .card-body {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.testimonial .card img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
}
.testimonial .card h3 {
	font-family: 'Roboto', sans-serif;
	font-size: 1.4em;
	font-weight: bold;
	color: #30B5B5;
}
.testimonial .card h5 {
	font-family: 'Roboto', sans-serif;
	font-size: 0.9em;
	font-weight: 700;
	color: #666;
}
.testimonial .card p {
	font-family: 'Roboto', sans-serif;
	font-size: 0.9em;
	color: #333;
	text-align: justify;
}


@media(min-width: 992px) {
	.wrapper, .wrapper .overlay {
		min-height: 35vh;
	}
	.testimonial .card .card-body {
		padding: 2em;
	}
}
@media(min-width: 1200px) {
	.wrapper {
		min-height: 45vh;
	}
	.wrapper .overlay {
		min-height: 45vh;
		padding-top: 7em;
	}
}