.commonserv-wraper {
    position: relative;
    overflow: hidden;
}

.commonserv-wraper .commonserv-list {
    position: relative;
}

.commonserv-wraper .swiper-wrapper {
    align-items: stretch;
}

.commonserv-wraper .swiper-slide {
    position: relative;
    background-color: #FAFAFA;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: auto;
}
.section-color .commonserv-wraper .swiper-slide {
    background-color: #ffffff;
}
.commonserv-wraper .swiper-slide .commonserv-item-image {
    display: block;
    width: 100%;
    height: 400px;
}
.commonserv-wraper .swiper-slide .commonserv-item-image img,
.commonserv-wraper .swiper-slide .commonserv-item-image video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.commonserv-wraper .swiper-slide .commonserv-item-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.commonserv-wraper .swiper-slide .commonserv-item-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
}
.commonserv-wraper .swiper-slide .commonserv-item-text {
    font-size: 14px;
    line-height: 20px;
}

/* .commonserv-wraper .swiper-button-next,
.commonserv-wraper .swiper-button-prev {
	top: 200px;
} */

@media (max-width: 992px) {
    
    .commonserv-wraper .swiper-wrapper {
        padding-bottom: 2.5rem;
    }
}
@media (max-width: 768px) {
    
}
@media (max-width: 576px) {
    
    .commonserv-wraper .swiper-slide .commonserv-item-image {
        height: 220px;
    }
}

