#section-6 {
    margin-top: 100px;
}

#section-6 .container-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin-top: 50px;
}

#section-6 .item-card-steps {
    position: relative;
    background: #F2F2F2;
    height: 272px;
    border-radius: var(--border-radius-30);
}


#section-6 .number-of-steps {
    width: 60px;
    position: absolute;
    bottom: 0px;
    height: 60px;
    background: #F2F2F2;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

#section-6 .number-of-steps p {

    font-family: Outfit;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color-rent-car);
}

#section-6 .text-details-steps {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

#section-6 .name-steps {
    font-family: Outfit;
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color-rent-car);
    margin-bottom: 20px;
    z-index: 1;
    transform: none;
}

#section-6 .description-steps {
    font-family: Outfit;
    font-size: 15px;
    font-weight: 400;
    color: var(--gray-dark);
    line-height: 28px;
}

#section-6 .icon-card-bottom-left-steps {
    position: absolute;
    bottom: 0;
    width: 78px;
    height: 78px;
    line-height: 55px;
    text-align: center;
    border-radius: 0 40px 0 0;
    background: var(--white);
}

#section-6 .br-right-bottom-steps {
    position: absolute;
    right: -50px;
    bottom: -26px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    line-height: 1;
    width: 50px;
    height: 50px;
}


@media (max-width :768px) {
    #section-6 .container-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width :578px) {
    #section-6 .image-category {
        width: 100%;
    }

    #section-6 .container-steps {
        grid-template-columns: repeat(1, 1fr);
    }
}