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

.services-highlight{
display: flex;
flex-direction: column;
align-items: center;
}

.services-highlight-list{
display: flex;
flex-direction: row;
justify-content: center;
gap: 30px;
font-size: 1.4rem;
}

@media(max-width: 1025px){
.services-highlight-list{
flex-direction: column;
}
}


/*** Image Slider ***/
.slider-container {
    width: 100%;
    max-width: 800px;
    height: auto;
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    width: 200%; /* Twice the width because of duplicated slides */
    height: auto;
    animation: scroll 18s linear infinite; 
}

.slide {
	width: 40.667%;
	flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

/*** Keyframes ***/
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-122%); 
    }
}