.maincontent {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: none;
}
.main-wrapper {
    align-items: center;
}
.main-image {
    box-shadow: -8px -8px 0 var(--light-brown);
}



/* -- Projects -- */

#projects_section {
    margin: 30px 0 15px;
}
.projects-wrapper {
    display: flex;
    flex-wrap: wrap;
}
.projects-col {
    position: relative;
    width: 50%;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid #fff;
    transition: opacity .4s;
}
.projects-col:hover {
    opacity: .6;
}
.projects-img {
    width: 100%;
    height: auto;
}
.projects-label {
    position: absolute;
    bottom: 20px;
    background-color: var(--lighter-teal);
    color: #fff;
    padding: 15px 25px;
    font-weight: 600;
    text-transform: uppercase;
}
.projects-col-before .projects-label {
    right: 0px;
    border-radius: 25px 0 0 25px;
}
.projects-col-after .projects-label {
    left: 0px;
    border-radius: 0 25px 25px 0;
}
.projects-zoom {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.projects-zoom-icon {
    display: block;
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: auto;
    fill: #fff;
    background-color: rgba(5, 5, 5, .75);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    padding: 8px;
}

@media (max-width: 981px) {
    .projects-col {
        width: 100%;
    }
}

@media (max-width: 750px) {
    .projects-label {
        font-size: .85rem;
        padding: 10px 15px;
        bottom: 10px;
    }
}



/* -- Remodeling - Services -- */

.r-svc-global {
    text-align: center;
    background: linear-gradient(180deg, transparent 0, #eee 25%);
}
.r-svc-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    max-width: 1600px;
    width: 100%;
    margin: 40px auto 20px;
    padding: 0;
    gap: 1%;
}
.r-svc-item {
    max-width: 600px;
    width: 31.3333333333%;
    margin: 10px auto;
}
.r-svc-item-header {
    background-color: #ddd;
    background-size: cover;
    background-position: center;
    height: 300px;
}
#r-svc-bathroom .r-svc-item-header {
    background-image: url(/imageserver/UserMedia/totalroofingsolutions/remodeling/svc_bathroom.webp);
}
#r-svc-flooring .r-svc-item-header {
    background-image: url(/imageserver/UserMedia/totalroofingsolutions/remodeling/svc_flooring.webp);
}
#r-svc-painting .r-svc-item-header {
    background-image: url(/imageserver/UserMedia/totalroofingsolutions/remodeling/svc_painting.webp);
}
#r-svc-additions .r-svc-item-header {
    background-image: url(/imageserver/UserMedia/totalroofingsolutions/remodeling/svc_additions.webp);
}
.r-svc-item-body {
    padding: 35px 0 20px;
}
.r-svc-item-body h3 {
    font-weight: 600;
    color: var(--lighter-teal);
    margin: 0 0 15px;
    text-align: left;
}
.r-svc-item-body p {
    font-size: .95rem;
    text-align: left;
    padding-left: 10px;
    border-left: 2px solid var(--light-brown);
}

@media (max-width: 981px) {
    .r-svc-item {
        width: 100%;
    }
}