.maincontent {
position: relative;
padding: 160px 0px 0px;
  background-image: linear-gradient(120deg, #fffffff7 30%, #fffffff7 100%), url(/imageserver/UserMedia/urcovered/logo-bg.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.intro-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.estimate-box {
display: none;
}

.mobile-intro-para {
display: none;
}

/* -- Home - Services -- */

.services-global {
    padding: 0 20px 50px;
}
.services-global .emphasis {
    text-align: center;
}

.services-list {
	position: relative;
	display: flex;
flex-flow: row wrap;
	list-style: none;
	margin: 40px auto;
	padding: 0;
	
}
.services-card {
    margin: 10px 1%;
    width: 31.333%;
    color: #fff;
    border: 4px solid #888;
    padding: 20px;
    text-align: center;
}
.services-icon {
    position: relative;
    font-size: 2em !important;
    border: 3px solid #888;
    padding: 8px;
    margin: 0 auto;
    color: var(--accent-color);
    border-radius: 5px;
}
.services-icon:before,
.services-icon:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 60px;
    height: 4px;
    background: #888;
    margin-top: -2px;
}
.services-icon:before {
    left: -75px;
}
.services-icon:after {
    right: -75px;
}
.services-card h3 {
    font-size: 1.5em;
    margin: 15px auto;
}
.services-card ul li {
    text-align: left;
}
@media (max-width: 981px) {
.services-card {
        width: 48%;
    }
}
@media (max-width: 700px) {

.desktop-intro-para {
display: none;
}

.mobile-intro-para {
display: block;
}

    .services-card {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}
.circle-underline {
    width: 10px;
    background: var(--accent-color);
    border: none;
    margin: 15px auto;
    height: 10px;
    border-radius: 50%;
}