/* Banner */
.service-provider-banner-outer-wrapper {
	background-color: #ffffff;
	height: 150px;
}
#service-provider-main {
	width: 700px;
	border-right: 1px solid #d4d4d4;
	padding: 0 20px 0 0;
	margin: 0 0 0 10px;
}
#service-provider-sidebar {
	width: 190px;
	padding: 0 0 0 20px;
	margin: 0 10px 0 0;
}
.service-provider-banner {
	text-align: center;
	margin: 0;
	padding: 0;
}
.service-provider-mobile-img {
    width: 100%;
}
/* Home page links */
.service-providers {
	border-top: 2px solid black;
	padding: 30px 0;
	text-align: center;
}
.service-providers h3 {
	color: #cac4c4;
	font-size: 1.2em;
}
.service-provider-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 70px;
}
@media (max-width: 768px) {
    .service-provider-list {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items horizontally */
        gap: 50px; 
    }
    .service-provider-list img {
        width: 75%;
    }
}
