/**
 * Areas Covered Banner Section
 */

.areas-covered-banner-section {
	background: var(--blue);
	text-align: center;
}
.areas-covered-banner-section .subtitle {
	color: var(--gray);
}
.areas-covered-banner-section h2 {
	color: var(--white);
	margin-bottom: 0;
}

.areas-covered-banner-section .banner-note {
    color: var(--white);
    margin: 30px 0 0;
}
.areas-covered-banner-section .areas-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 30px;
}
.areas-covered-banner-section .area-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--white);
    border-radius: 50px;
    padding: 10px 37px;
    font-weight: 600;
    color: var(--white);
}
.areas-covered-banner-section .banner-note {
	margin: 40px 0 0;
}

@media only screen and (max-width: 767px) {
	.areas-covered-banner-section .area-pill {
		padding: 10px 20px;
	}
	.areas-covered-banner-section .areas-pills {
		gap: 8px;
	}
}
