.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;
}


.services {
	position: relative;
	margin-bottom: 5em;
	overflow: hidden;
}
.services .services-bg-1 {
	background: transparent;
	width: 80%;
	height: 100%;
	position: absolute;
	left: -10%;
	border: 10px solid #ddd;
	border-left: 0;
	transform: skewX(15deg);
}
.services .services-bg-2 {
	background: transparent;
	width: 80%;
	height: 100%;
	position: absolute;
	right: -10%;
	border: 10px solid #ddd;
	border-right: 0;
	transform: skewX(15deg);
}
.services .img-container {
	z-index: 0;
}
.services img {
	aspect-ratio: 3/2;
}
.services h3 {
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	font-weight: bold;
	text-transform: uppercase;
	color: #333;
}
.services h4 {
	font-family: 'Work Sans', sans-serif;
	font-size: 2em;
	font-weight: 700;
	color: #333;
}
.services p {
	text-align: justify;
}
.services .btn {
	padding: 10px 25px;
	font-weight: 500;
	border-radius: 0;
	background: linear-gradient(#8E2DE2, #4A00E0);
	color: white;
}
.services .btn:hover, .services .btn:focus {
	background: transparent;
	color: #333;
	border: 2px solid #8E2DE2;
}

@media(min-width: 992px) {
	.wrapper {
		min-height: 35vh;
		margin-bottom: 5em;
	}
	.wrapper .overlay {
		min-height: 35vh;
	}
	.services .service-container {
		padding-top: 5em;
		padding-bottom: 5em;
	}
	.services h3 {
		font-size: 1.2em;
	}
	.services h4 {
		font-size: 2.6em;
	}
}
@media(min-width: 1200px) {
	.wrapper {
		min-height: 45vh;
	}
	.wrapper .overlay {
		min-height: 45vh;
		padding-top: 7em;
	}
}