.nav_cars-wrap {
    .nav_cars {
        display: flex;
        flex-direction: column;
        padding-block: 1.5rem;
        @media (min-width: 768px){
            flex-direction: row;
        }
        &:not(:last-child) {
            border-bottom: 1px solid #e4dcd3;
        }
        h2 {
            color: #676767;
            width: 25%;
            font-size: 2.5rem;
        }
        .nav_cars-list {
            display: grid;
            width: 100%;
            gap: 3rem;
            justify-content: center;
            @media (min-width: 768px) {
                grid-template-columns: repeat(auto-fit, 20rem);
            }
        }
        .nav_cars-list-el-link {
            display: flex;
            flex-direction: column;
            gap: 0.625rem;
            text-align: center;
            img {
                max-width: 20rem;
            }
        }
    }
}
