.maincontent {
width:100%;
position:relative;
padding:0;
}


    .accordion-section {
        border: 1px solid #ddd;
        margin-bottom: 10px;
    }

.accordion-title {
	background-color: #f0f0f0;
	padding: 10px;
	margin: 0;
	cursor: pointer;
	font-weight: 500;
}

.accordion-content {
	display: none;
	padding: 10px;
	background: #fff;
}

.services-icon {
	width: 50px;
	vertical-align: middle;
	height: 55px;
}

.accordion-title:hover {
color: var(--accent-color);
}

.highlighted-title {
color: var(--accent-color);
}



/**** HOME - CERTAINTEED *****/
body {
    margin: 0;
    font-family: "Poppins", serif;
}


.home-cert-wrap {
    background-image: url(/imageserver/UserMedia/foster/dot-background.jpeg);
    background-size: contain;
    background-position: bottom;
}

.home-cert {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 30px;
    row-gap: 30px;
    background: linear-gradient(to bottom, transparent, white, transparent);
    border-top: solid 8px #0AA202;
    border-bottom: solid 8px #0AA202;
    padding: 60px 0;
}

.home-cert-image-wrap {
    position: relative;
    width: 300px;
    height: 300px;
    max-width: 60vw;
    max-height: 60vw;
}

.home-cert-image-wrap::after {
    background-color: #0AA202;
    background: linear-gradient(to bottom right, black, #0AA202);
    content: '';
    height: 110%;
    width: 110%;
    position: absolute;
    left: -5%;
    top: -4%;
    z-index: 0;
    clip-path: polygon(0 37%, 50% 0, 100% 37%, 80% 95%, 20% 95%);
}

.home-cert-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.home-cert-content {
    width: 800px;
    max-width: 90vw;
    padding: 30px 20px;
    box-sizing: border-box;
    background-color: rgba(214, 214, 214, 0.512);
    border-radius: 20px;
}

.home-cert-content h2 {
    margin: 0 0 5px 0;
    font-size: 35px;
    font-weight: 600;
    font-style: normal;
    text-transform: none;
}

.home-cert-content h3 {
    margin: 0 0 15px 0;
    font-size: 25px;
    position: relative;
    font-weight: 500;
    color: rgb(78, 78, 78);
}

.home-cert-content h3 span {
    color: goldenrod;
}

.home-cert-content h3::after {
    background-color: #0AA202;
    width: 50px;
    border-radius: 0 10px 10px 0;
    height: 5px;
    position: absolute;
    content: '';
    bottom: -5px;
    left: 0;
}

.home-cert-content p {
    margin: 15px 0;
    font-size: 20px;
    color: black;
}

.home-cert-content p  span {
    color: rgb(198, 147, 17);
    font-weight: 500;
}

.home-cert-content ul {
    padding: 0;
    list-style: none;
    width: 100%;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(2, 40%);
    justify-content: center;
    column-gap: 10%;
    row-gap: 10%;
}

.home-cert-content ul li {
    background-color: #0be00066;
    color: white;
    padding: 20px 20px;
    transition: background-color 0.2s linear;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    cursor: default;
}

.home-cert-content ul li p {
    color: rgb(43, 43, 43);
}

.home-cert-content ul li p span {
    font-weight: 600;
    color: rgb(0, 0, 0);
}

.home-cert-content ul li:hover {
    background-color: #0ac800;
}

@media (max-width: 715px) {
    .home-cert-content h2 {
        font-size: 25px;
    }

    .home-cert-content h3 {
        font-size: 20px;
    }

    .home-cert-content p {
        font-size: 16px;
    }
}

/**** HOME - TEAM ****/
.home-team {
    background-color: #f9f9f9;
    padding: 60px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 50px;
    row-gap: 30px;
}

.home-team-photo {
    width: 500px;
    max-width: 80vw;
    height: auto;
}

.home-team-photo p {
    text-align: center;
    font-size: 14px;
}

.home-team-photo p span {
    font-weight: 600;
}

.home-team-image-wrap {
    width: 100%;
    height: 350px;
    max-height: calc(0.7 * 80vw);
    position: relative;
}

.home-team-image-wrap img {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px 20px 20px 20px;
}

.home-team-image-wrap::before {
    width: 30%;
    height: 30%;
    position: absolute;
    z-index: 0;
    border-top: double 8px #0AA202;
    border-left: double 8px #0AA202;
    border-radius: 30px 0 0 0;
    content: '';
    top: -14px;
    left: -14px;
}

.home-team-image-wrap::after {
    width: 30%;
    height: 30%;
    position: absolute;
    z-index: 0;
    border-bottom: double 8px #0AA202;
    border-right: double 8px #0AA202;
    border-radius: 0 0 30px 0;
    content: '';
    bottom: -14px;
    right: -14px;
}

.home-team-content {
    width: 800px;
    max-width: 85vw;
}

.home-team-content h2 {
    text-transform: none;
    font-style: normal;
    color: #0AA202;
    margin: 0 0 5px 0;
}

.home-team-content p {
    margin: 0 0 15px 0;
    font-size: 20px;
}

.accordion-content h4 span {
	content: "";
	position: relative;
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 1px solid #000;
	margin-right: 4px;
	vertical-align: middle;
	margin-block: -4px 0px;
}

@media (max-width: 715px) {

    .home-team-content p {
        font-size: 16px;
    }
}