.maincontent {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: none;
}
.svg-bg-wrapper {
width: 100%;
position: absolute;
}

.svg-bg-container {
	text-align: center;
}

#svgBG {
max-width: 860px;
width: 100%;
height: auto;
margin: auto;
}


.st0 {
fill: transparent;
}

.st1 {
fill: #f3f3f3;
}

.featured-gallery-container {
    display: flex;
    max-width: 98%;
    margin: 40px auto;
    gap: 20px;
}

.thumbnails-wrapper {
    position: relative;
    max-width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featured-gallery-thumbnails {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 380px;
}

.featured-gallery-thumbnails img {
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s;
max-width: 180px;
}

.featured-gallery-thumbnails img.active {
    border: 2px solid #007bff;
}
.scroll-indicator {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
    white-space: nowrap;
}

.featured-gallery-image {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.featured-gallery-image img {
    max-width: 100%;
    max-height: 560px;
height: auto;
    border-radius: 8px;
}

@media (max-width: 981px) {
    .featured-gallery-container {
        flex-direction: column;
        align-items: center;
    }

.thumbnails-wrapper {
        max-width: 100%;
    }

    .featured-gallery-thumbnails {
display: flex;
        flex-direction: row;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding: 10px 0;
    }

.featured-gallery-thumbnails img {
	width: 90px;
	height: auto;
}
}