.maincontent {
    max-width: 100%;
    margin: 0;
    padding: 0;
}


/* Before & After grid */
.before-after-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    max-width: 1350px;
    margin: 0 auto;
}

.before-after-item {
    position: relative;
    flex: 1;
    min-width: 260px;
    max-width: 420px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(5, 5, 5, .14);
    background: #111;
    transition: transform .3s, box-shadow .3s;
}

.before-after-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(5, 5, 5, .22);
}

.before-after-item a {
    display: block;
    text-decoration: none;
}

.before-after-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity .3s;
}

.before-after-item:hover img {
    opacity: .88;
}

.before-after-label {
    display: block;
    padding: 12px 16px;
    background: var(--accent-color);
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-align: center;
}

#offers_section {
	position: relative;
	padding: 70px 10%;
	text-align: center;
	background-image: linear-gradient(rgba(255, 255, 255, .5) 0%,rgba(255, 255, 255, .5) 100%), url(/imageserver/Textures/BG3.jpg);
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

#myp_section {
background: #fff;
}

/* Responsive */
@media (max-width: 700px) {
    .before-after-item {
        max-width: 100%;
        width: 100%;
    }
}