
#section-3 {
    margin-top: 100px;
}

#section-3 .card-services-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    margin-top: 50px;
}

#section-3 .item-card-service {
    position: relative;
}

#section-3 .image-service {
    width: 375px;
    max-width: 100%;
    height: 375px;
    object-fit: cover;
    border-radius: var(--border-radius-30);
}

#section-3 .number-of-service {
    width: 70px;
    position: absolute;
    bottom: 0px;
    height: 70px;
    background: var(--primary-color-rent-car);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

#section-3 .number-of-service p {

    font-family: Outfit;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color-rent-car);
}

#section-3 .details-service {
    position: relative;
}

#section-3 .name-service {

    font-family: Outfit;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

@media (max-width :768px) {
    #section-3 .card-services-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width :578px) {
    .image-service {
        width: 100%;
    }

    #section-3 .card-services-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}