.maincontent {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: none;

}


/*** About Us ****/
.about-row {
align-items: center;
}

.about-title-wrapper {
display: flex;
flex-flow: row;
justify-content: center;
gap: 10px;
align-items: center;
}

.about-image{
text-align: center;
}

/* -- Service Areas -- */

.sa-global {
	padding: 50px 15px;
	box-shadow: 0 0 25px #ccc;
	margin: 30px auto 80px;
	background-color: var(--accent-color);
    background-image: url(/imageserver/UserMedia/busyboys/abstract-squares.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}
.sa-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    max-width: 1450px;
    width: 100%;
    margin: 25px auto;
    padding: 0;
}
.sa-item {
    display: flex;
    align-items: center;
    width: 19%;
    margin: 10px .5%;
}
.sa-item i {
	font-size: 1.75em;
	margin-right: 15px;
	color: white;
	border-radius: 50%;
	padding: 5px;
	background: #f00;
	border: 2px solid var(--accent-color);
}
.sa-item p {
    margin: 0;
    line-height: 1.3em;
    font-style: italic;
    font-weight: 500;
color: #fff;
}

.about-para-bottom{
background: #fafafa;
  padding: 50px 25px;
  margin: 30px auto;
  border-radius: 6px;
}

@media (max-width: 1200px) {
    .sa-item {
        width: 24%;
    }
}

@media (max-width: 981px) {
    .sa-item {
        width: 32.3333333333%;
    }
}

@media (max-width: 700px) {
    .sa-item {
        width: 49%;
    }
}

@media (max-width: 500px) {
    .sa-item {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}