.manutention-features {
    padding: 4rem 7%;
    text-align: center;
    background: #eee;
}
.manutention-features span {
    font-size: .9rem;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
}
.manutention-features h2 {
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}
.manutention-features .cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem;
}
.manutention-features .card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 16/9;
    cursor: pointer;
}
.manutention-features .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.manutention-features .card img {
    transition: 300ms ease-in-out;
}
.manutention-features .card:hover img {
    transform: scale(1.1);
}
.manutention-features .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgb(0 0 0 / 82%));
    z-index: 1;
}
.manutention-features .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.manutention-features .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
    z-index: 2;
}
.manutention-features .card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.manutention-features .card-description {
    font-size: 0.9rem;
    opacity: 0.9;
}
.manutention-features .card-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.manutention-features .card-icon svg {
    width: 15px;
    height: 15px;
    fill: #80433F;
}

.services-main-section {
    background: url(/ressources/images/manutention-bg.jpg) no-repeat;
    background-position: center;
}

@media (max-width: 650px) {
    .manutention-features .cards-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}